/* Contact Form Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info takes less space, Form takes more */
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    background-color: #1e1e1e; /* Slightly lighter than main bg */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffb800; /* Theme accent color */
    box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.btn-submit {
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Slide Right Animation */
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}
