/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #2A9D8F 0%, #264653 100%);
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 72px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.contact-hero p {
    font-size: 24px;
    font-weight: 300;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 36px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.25px;
    color: #000;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #2A9D8F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: #fff;
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.contact-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-text a {
    font-size: 14px;
    color: #2A9D8F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #264653;
}

.contact-text .social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact-text .social-links a {
    width: 35px;
    height: 35px;
    background-color: #2A9D8F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-text .social-links a:hover {
    background-color: #F4A259;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border: 2px solid #ddd;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #ddd;
    background-color: #fff;
    color: #000;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2A9D8F;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Verification Group */
.verification-group {
    background-color: #f8f8f8;
    padding: 20px;
    border: 2px solid #2A9D8F;
}

.verification-challenge {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.verification-question {
    font-size: 18px;
    font-weight: 700;
    color: #2A9D8F;
    min-width: 150px;
}

.verification-challenge input {
    flex: 1;
    min-width: 150px;
}

.verification-help {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    text-transform: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    background-color: #fff;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background-color: #2A9D8F;
    border-color: #2A9D8F;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

.checkbox-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* Submit Button */
.submit-btn {
    margin-top: 10px;
    padding: 15px 40px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
}

.submit-btn i {
    font-size: 14px;
}

/* Form Message */
.form-message {
    display: none;
    padding: 15px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 0.25px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background-color: #f8f8f8;
    border-left: 4px solid #2A9D8F;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.faq-item a {
    color: #2A9D8F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-item a:hover {
    color: #264653;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 48px;
    }

    .contact-hero p {
        font-size: 18px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .faq-section h2 {
        font-size: 32px;
    }

    .faq-item {
        padding: 25px;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 320px; /* slightly taller to clear fixed header */
        padding-top: 40px; /* push content down under header */
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .contact-info h2,
    .faq-section h2 {
        font-size: 28px;
    }

    .contact-info > p {
        font-size: 15px;
    }

    .contact-detail-item {
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 20px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-item p {
        font-size: 14px;
    }
}


