/* ============ FAQ PAGE OVERRIDES ============ */
.faq-body{overflow:auto;height:auto}
.faq-body .page-bg{height:auto;padding:16px}
.faq-container{
    height:auto!important;max-height:none!important;
    overflow:hidden!important;
    display:flex;flex-direction:column;
    background:linear-gradient(135deg,#904050,#c06070,#b04060);
    border-radius:20px;
}

/* ============ NAVBAR ============ */
.faq-nav{
    position:sticky;top:0;z-index:50;
    padding:16px 48px;
    background:transparent;
    border-bottom:none;
}

.faq-scroll{
    display:flex;flex-direction:column;
    color:#fff;
}

/* ============ HERO ============ */
.faq-hero{
    display:flex;align-items:center;justify-content:space-between;
    padding:60px 48px 40px;
    min-height:280px;
    position:relative;overflow:hidden;
}
.faq-hero-content{max-width:520px;z-index:2}
.faq-label{
    font-size:11px;font-weight:500;letter-spacing:3px;text-transform:uppercase;
    color:rgba(255,255,255,0.4);margin-bottom:16px;
    transition:color 0.4s, letter-spacing 0.4s;
}
.faq-label:hover{color:rgba(255,255,255,0.7);letter-spacing:5px}
.faq-hero-title{
    font-size:clamp(36px,5vw,56px);font-weight:800;line-height:1.1;letter-spacing:-1.5px;
    transition:text-shadow 0.4s;
}
.faq-hero-title:hover{text-shadow:0 0 40px rgba(255,255,255,0.15)}
.faq-hero-sub{
    font-size:14px;font-weight:300;color:rgba(255,255,255,0.5);margin-top:14px;
    letter-spacing:1px;
}
.faq-hero-img{
    position:absolute;right:80px;bottom:20px;
    width:38%;max-width:480px;opacity:0;
    z-index:0;
    transform:translateY(-80px);
}
.faq-hero-img img{
    width:100%;object-fit:contain;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    transition:transform 0.5s ease;
}
.faq-hero:hover .faq-hero-img img{transform:scale(1.02)}

/* ============ FAQ SECTION ============ */
.faq-section{
    padding:20px 48px 60px;
}
.faq-intro{
    font-size:13px;color:rgba(255,255,255,0.45);font-weight:300;
    margin-bottom:36px;
}
.faq-list{
    display:flex;flex-direction:column;gap:12px;
}

/* ============ FAQ ITEM ============ */
.faq-item{
    border-radius:16px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    overflow:hidden;
    transition:border-color 0.3s, background 0.3s, box-shadow 0.4s;
}
.faq-item:hover{
    border-color:rgba(255,255,255,0.15);
    background:rgba(255,255,255,0.08);
}
.faq-item.open{
    border-color:rgba(255,255,255,0.2);
    background:rgba(255,255,255,0.1);
    box-shadow:0 8px 30px rgba(0,0,0,0.15);
}

/* Question button */
.faq-question{
    width:100%;display:flex;align-items:center;justify-content:space-between;
    padding:20px 24px;
    background:none;border:none;color:#fff;
    font-size:14px;font-weight:600;letter-spacing:-0.2px;
    cursor:pointer;text-align:left;
    font-family:'Inter',sans-serif;
    transition:color 0.3s;
}
.faq-question:hover{color:#fff}
.faq-chevron{
    flex-shrink:0;color:rgba(255,255,255,0.4);
    transition:transform 0.35s, color 0.3s;
}
.faq-item.open .faq-chevron{
    transform:rotate(180deg);
    color:#fff;
}

/* Answer */
.faq-answer{
    max-height:0;overflow:hidden;
    transition:max-height 0.4s ease, padding 0.3s;
    padding:0 24px;
}
.faq-item.open .faq-answer{
    max-height:300px;
    padding:0 24px 20px;
}
.faq-answer p{
    font-size:12.5px;line-height:1.8;color:rgba(255,255,255,0.6);
    font-weight:300;
}

/* ============ CTA ============ */
.faq-cta{
    padding:80px 48px;text-align:center;
    background:rgba(0,0,0,0.1);
    border-top:1px solid rgba(255,255,255,0.08);
}
.faq-cta-title{
    font-size:clamp(28px,4vw,44px);font-weight:800;line-height:1.15;letter-spacing:-1px;
    margin-bottom:12px;transition:text-shadow 0.4s;
}
.faq-cta-title:hover{text-shadow:0 0 40px rgba(255,255,255,0.12)}
.faq-cta-sub{
    font-size:13px;color:rgba(255,255,255,0.45);font-weight:300;
    margin-bottom:28px;
}
.faq-cta-btn{
    display:inline-block;padding:14px 36px;border-radius:30px;
    background:#fff;color:#0d0d0d;font-size:14px;font-weight:600;
    text-decoration:none;
    transition:background 0.3s,transform 0.3s,box-shadow 0.3s,letter-spacing 0.3s;
    box-shadow:0 4px 20px rgba(255,255,255,0.1);
    position:relative;overflow:hidden;
}
.faq-cta-btn::after{
    content:'';position:absolute;inset:0;
    background:linear-gradient(135deg,transparent 40%,rgba(255,255,255,0.4) 50%,transparent 60%);
    transform:translateX(-100%);
    transition:transform 0.6s;
}
.faq-cta-btn:hover::after{transform:translateX(100%)}
.faq-cta-btn:hover{
    background:#e0e0e0;transform:translateY(-3px) scale(1.05);
    box-shadow:0 12px 40px rgba(255,255,255,0.2);
    letter-spacing:1px;
}
.faq-cta-btn:active{transform:translateY(0) scale(0.97)}

/* ============ FOOTER ============ */
.faq-footer{
    display:grid;grid-template-columns:1fr 1fr 1fr;gap:24px;
    padding:40px 48px;
    border-top:1px solid rgba(255,255,255,0.08);
    align-items:start;
}
.faq-footer .footer-logo{
    height:20px;width:auto;object-fit:contain;margin-bottom:8px;
    transition:transform 0.3s;
}
.faq-footer .footer-logo:hover{transform:scale(1.08)}
.faq-footer .footer-tagline{font-size:10px;color:rgba(255,255,255,0.35);letter-spacing:1px}
.faq-footer .footer-contact-item{
    display:flex;align-items:center;gap:8px;
    font-size:11px;color:rgba(255,255,255,0.5);margin-bottom:8px;
    transition:color 0.3s, transform 0.25s;cursor:default;
}
.faq-footer .footer-contact-item:hover{color:rgba(255,255,255,0.9);transform:translateX(4px)}
.faq-footer .footer-contact-item svg{flex-shrink:0;color:rgba(255,255,255,0.35);transition:color 0.3s}
.faq-footer .footer-contact-item:hover svg{color:rgba(255,255,255,0.7)}
.faq-footer .footer-right{text-align:right}
.faq-footer .footer-avail{
    font-size:11px;font-weight:600;color:rgba(255,255,255,0.7);
    letter-spacing:1px;margin-bottom:4px;
}
.faq-footer .footer-emerg{font-size:10px;color:rgba(255,255,255,0.35)}
.faq-footer .footer-bottom{
    grid-column:1/-1;
    text-align:center;padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.06);
    font-size:10px;color:rgba(255,255,255,0.25);
}
.faq-footer .footer-bottom a{color:rgba(255,255,255,0.3);text-decoration:none;transition:color 0.3s}
.faq-footer .footer-bottom a:hover{color:rgba(255,255,255,0.6)}
.faq-footer .managed-by{margin-top:12px;font-size:10px;color:rgba(255,255,255,0.35);display:flex;flex-direction:column;align-items:center;gap:4px}
.faq-footer .managed-by a{display:inline-flex;align-items:center;gap:6px;color:rgba(255,255,255,0.7);text-decoration:none;transition:color 0.3s}
.faq-footer .managed-by a:hover{color:#fff}
.faq-footer .coreorbit-logo{height:32px;width:auto;display:inline-block;vertical-align:middle;opacity:0.75;transition:opacity 0.3s}
.faq-footer .managed-by a:hover .coreorbit-logo{opacity:1}

/* ============ RESPONSIVE ============ */
@media(max-width:900px){
    .faq-nav{padding:12px 20px}
    .faq-hero{flex-direction:column;padding:50px 20px 40px;min-height:auto}
    .faq-hero-img{display:none}
    .faq-section{padding:20px 20px 40px}
    .faq-question{padding:16px 18px;font-size:13px}
    .faq-answer{padding:0 18px}
    .faq-item.open .faq-answer{padding:0 18px 16px}
    .faq-cta{padding:50px 20px}
    .faq-footer{grid-template-columns:1fr;padding:30px 20px;gap:20px}
    .faq-footer .footer-right{text-align:left}
}
