/* ================= FAQ PAGE STYLES ================= */
:root {
    --lux-gold: #c5a059;
    --lux-emerald: #064e3b;
    --lux-dark: #0f172a;
    --lux-bg: #f8fafc;
}

.faq-modern-lux {
    font-family: 'Outfit', sans-serif;
    color: var(--lux-dark);
    background: var(--lux-bg);
    overflow-x: hidden;
}

.serif-gold {
    font-family: 'Playfair Display', serif;
    color: var(--lux-gold);
}

.text-gold {
    color: var(--lux-gold);
}

/* HERO */
.faq-hero-lux {
    height: 60vh;
    min-height: 500px;
    background: url('/images/3.webp') center bottom/cover no-repeat fixed;
    position: relative;
    border-radius: 0 0 100px 100px;
    overflow: hidden;
}

.hero-glass-faq {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(6, 78, 59, 0.7));
}

.prof-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.prof-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.prof-lead {
    font-size: 1.25rem;
    color: #d1fae5;
    max-width: 800px;
    font-weight: 500;
}

.gold-line {
    width: 80px;
    height: 5px;
    background: var(--lux-gold);
    border-radius: 10px;
}

/* TABS */
.faq-nav-lux {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.tabs-lux-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-lux-btn {
    background: white;
    padding: 25px 45px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    min-width: 200px;
}

.tab-lux-btn i {
    font-size: 2.2rem;
    color: #94a3b8;
    transition: 0.4s;
}

.tab-lux-btn span {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #64748b;
}

.tab-lux-btn:hover {
    border-color: var(--lux-gold);
    transform: translateY(-5px);
}

.tab-lux-btn.active {
    background: var(--lux-emerald);
    border-color: var(--lux-emerald);
    color: white;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.2);
}

.tab-lux-btn.active i,
.tab-lux-btn.active span {
    color: white;
}

/* ACCORDION */
.faq-group {
    display: none;
}

.faq-group.show {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.lux-accordion .accordion-item {
    border: none;
    background: white;
    margin-bottom: 25px;
    border-radius: 35px !important;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.lux-accordion .accordion-item:hover {
    transform: translateX(10px);
    border-color: var(--lux-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.lux-accordion .accordion-button {
    padding: 35px 45px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lux-dark);
    background: transparent;
    box-shadow: none;
    align-items: center;
}

.q-num {
    width: 45px;
    height: 45px;
    background: rgba(6, 78, 59, 0.05);
    border-radius: 50%;
    color: var(--lux-emerald);
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    transition: 0.3s;
}

.lux-accordion .accordion-button:not(.collapsed) {
    color: var(--lux-emerald);
    background: rgba(6, 78, 59, 0.02);
}

.lux-accordion .accordion-button:not(.collapsed) .q-num {
    background: var(--lux-gold);
    color: white;
}

.lux-accordion .accordion-button::after {
    background-image: none;
    font-family: "Font Awesome 6 Free";
    content: "\f067";
    font-weight: 900;
    transition: 0.4s;
    color: var(--lux-gold);
    font-size: 1.2rem;
}

.lux-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    transform: rotate(180deg);
}

.lux-accordion .accordion-body {
    padding: 0 45px 45px 115px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
}

.director-lux-list {
    list-style: none;
    padding: 0;
}

.director-lux-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--lux-emerald);
}

.director-lux-list li i {
    color: var(--lux-gold);
}

/* CTA */
.faq-cta-lux {
    padding: 80px 0 120px;
}

.glass-cta-hist {
    background: var(--lux-emerald);
    padding: 90px;
    border-radius: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(6, 78, 59, 0.3);
}

.btn-lux-gold {
    background: var(--lux-gold);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    transition: 0.4s;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-lux-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

.btn-lux-outline.white {
    border: 2px solid white;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.btn-lux-outline.white:hover {
    background: white;
    color: var(--lux-emerald);
}

/* REVEALS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   CONSOLIDATED FAQ MOBILE STYLES (Max-Width: 991px)
   ========================================================= */
