/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.contact-form-section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-form-section .section-subtitle {
    text-align: center;
    color: #cccccc;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-form {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
    outline: none;
    border-color: #7ED321;
    box-shadow: 0 0 0 3px rgba(126, 211, 33, 0.1);
}

.whatsapp-form input::placeholder,
.whatsapp-form textarea::placeholder {
    color: #888;
}

.whatsapp-form select {
    cursor: pointer;
}

.whatsapp-form select option {
    background: #1a1a1a;
    color: #ffffff;
}

.whatsapp-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 20px;
}

.btn-large {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Logo text color fix */
.logo span {
    color: #ffffff !important;
}

.footer .logo span {
    color: #ffffff !important;
}

.nav-brand .logo span {
    color: #ffffff !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-form {
        padding: 30px 20px;
    }
    
    .whatsapp-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-form {
        padding: 25px 15px;
    }
    
    .whatsapp-form input,
    .whatsapp-form select,
    .whatsapp-form textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .contact-form-section h2 {
        font-size: 1.8rem;
    }
}
