/* ==================================================
   FAQs PAGE
   ================================================== */

/* ---- dark navbar override ---- */
.navbar--dark {
    background-color: #000 !important;
}

.navbar--dark .navbar__link,
.navbar--dark .navbar__logo-text,
.navbar--dark .navbar__login {
    color: #fff !important;
}

.navbar--dark .navbar__dropdown-menu {
    background: #111;
}

.navbar--dark .navbar__dropdown-item {
    color: #ddd;
}

.navbar--dark .navbar__dropdown-item:hover {
    color: #fff;
    background: #222;
}

/* ── HERO ─────────────────────────────────────── */
.faq-hero {
    background: #000;
    color: #fff;
    padding: 140px 0 70px;
    text-align: center;
}

.faq-hero__title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 16px;
}

.faq-hero__subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
}

.btn--cta-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    background: #E53935;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.btn--cta-icon:hover {
    background: #c62828;
    transform: translateY(-1px);
}

.btn--cta-icon svg {
    width: 16px;
    height: 16px;
}

/* ── FAQ GRID ────────────────────────────────── */
.faq-content {
    padding: 60px 0 80px;
    background: #f5f5f5;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── FAQ CARD ────────────────────────────────── */
.faq-card {
    background: transparent;
}

.faq-card__header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.faq-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #0B0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.faq-card__icon svg {
    width: 22px;
    height: 22px;
}

.faq-card__question {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.faq-card__answer {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #555;
}

.faq-card__answer strong {
    color: #1a1a1a;
    font-weight: 700;
}

.faq-card__answer a {
    color: #E53935;
    font-weight: 700;
    text-decoration: none;
}

.faq-card__answer a:hover {
    text-decoration: underline;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
    .faq-hero {
        padding: 110px 0 50px;
        text-align: left;
    }

    .faq-hero .container {
        padding: 0 24px;
    }

    .faq-hero .btn--cta-icon {
        display: flex;
        margin: 0 auto;
        width: fit-content;
    }

    .faq-hero__title {
        font-size: 2.1rem;
    }

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

    .faq-card__header {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 8px;
    }

    .faq-card__answer {
        padding-left: 0;
    }

    .navbar--dark .navbar__nav {
        background: #111;
        /* Keep drop-down dark so white text remains readable */
    }
}

@media (max-width: 480px) {
    .faq-hero__title {
        font-size: 1.7rem;
    }

    .contact-modal {
        padding: 24px 20px;
        width: 90%;
    }

    .modal-option {
        padding: 12px 16px;
    }
}

/* ── CONTACT MODAL (GLASSMORPHIC) ─────────────── */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal-overlay.active .contact-modal {
    transform: translateY(0) scale(1);
}

.contact-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-modal__close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.contact-modal__close svg {
    width: 18px;
    height: 18px;
}

.contact-modal__title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
    padding-right: 24px;
}

.contact-modal__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-modal__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.modal-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.modal-option--whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.4);
}

.modal-option--email:hover {
    background: rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.4);
}

.modal-option__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-option--whatsapp .modal-option__icon {
    background: #25D366;
}

.modal-option__icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.modal-option__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modal-option__text strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.modal-option__text span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}