/* ========================================
   FAQ Section - SEO Rich Content
======================================== */
.faq {
    background: var(--navy-light, #0e1d35);
}

.faq__grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    gap: 1rem;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer strong {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    .faq-question h3 {
        font-size: 0.9rem;
    }
    .faq-answer p {
        font-size: 0.85rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
}

/* ========================================
   Part 6: CTA, Contact, Footer
======================================== */

/* CTA Section */
.cta {
    position: relative;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

.cta__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a1628' fill-opacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-lg);
}

.cta__title .text-gold {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--navy);
    text-underline-offset: 5px;
}

.cta__desc {
    font-size: 1.1rem;
    color: rgba(10,22,40,0.8);
    margin-bottom: var(--space-2xl);
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.cta__features {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
}

.cta-feature i {
    color: var(--navy);
}

/* Contact Preview */
.contact-preview {
    background: var(--white);
}

.contact-preview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
}

.contact-item__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212,175,55,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-item__content h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-item__content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-lg) center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--navy-dark);
}

.footer__top {
    padding: var(--space-4xl) 0 var(--space-3xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    margin-bottom: var(--space-lg);
}

.footer__about {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer__links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer__contact .contact-item {
    margin-bottom: var(--space-md);
}

.footer__contact .contact-item i {
    color: var(--gold);
    width: 20px;
}

.footer__contact .contact-item span {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-lg) 0;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Back to Top & WhatsApp */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 100;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* Contact & Footer Mobile */
@media (max-width: 992px) {
    .contact-preview__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer__brand {
        grid-column: span 2;
        max-width: none;
    }
}

@media (max-width: 768px) {
    /* CTA Section */
    .cta {
        padding: var(--space-3xl) 0;
    }

    .cta__title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: var(--space-md);
    }

    .cta__desc {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
    }

    .cta__actions {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
        margin-bottom: var(--space-lg);
    }

    .cta__features {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .cta-feature {
        font-size: 0.8rem;
    }

    /* Contact Preview */
    .contact-preview {
        padding: var(--space-3xl) 0;
    }

    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
    }

    .contact-details {
        gap: var(--space-md);
    }

    .contact-item {
        gap: var(--space-sm);
    }

    .contact-item__icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .contact-item__content h4 {
        font-size: 0.85rem;
    }

    .contact-item__content p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* Contact Form */
    .contact-form-wrapper {
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
    }

    .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: var(--space-md);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .form-group {
        margin-bottom: var(--space-sm);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.85rem;
        border-radius: var(--radius-sm);
    }

    .form-group textarea {
        min-height: 100px;
    }

    /* Footer */
    .footer {
        padding: var(--space-3xl) 0 var(--space-lg);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .footer__brand {
        grid-column: auto;
        max-width: none;
    }

    .footer__logo {
        justify-content: center;
        margin-bottom: var(--space-md);
    }

    .footer__logo .logo-mark {
        width: 40px;
        height: 40px;
    }

    .footer__logo .logo-name {
        font-size: 1.1rem;
    }

    .footer__logo .logo-tagline {
        font-size: 0.6rem;
    }

    .footer__desc {
        font-size: 0.8rem;
        margin-bottom: var(--space-md);
    }

    .footer__social {
        justify-content: center;
        gap: var(--space-sm);
    }

    .footer__social a {
        width: 38px;
        height: 38px;
    }

    .footer__title {
        font-size: 0.95rem;
        margin-bottom: var(--space-md);
    }

    .footer__links li {
        margin-bottom: var(--space-xs);
    }

    .footer__links li a {
        font-size: 0.8rem;
    }

    .footer__contact p {
        font-size: 0.8rem;
        margin-bottom: var(--space-sm);
    }

    .footer__contact p i {
        font-size: 0.85rem;
    }

    .footer__bottom {
        padding-top: var(--space-lg);
        margin-top: var(--space-lg);
    }

    .footer__bottom-content {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer__copyright {
        font-size: 0.75rem;
    }

    /* Back to Top & WhatsApp */
    .back-to-top {
        display: none;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: var(--space-2xl) 0;
    }

    .cta__title {
        font-size: 1.2rem;
    }

    .cta__desc {
        font-size: 0.85rem;
    }

    .cta-feature {
        font-size: 0.75rem;
    }

    .contact-preview {
        padding: var(--space-2xl) 0;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: var(--space-md);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--space-sm);
        font-size: 0.8rem;
    }

    .footer {
        padding: var(--space-2xl) 0 var(--space-md);
    }

    .footer__col {
        padding: 0;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .back-to-top {
        display: none;
    }
}
