  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
        url('assets/img2/background/bg.jpggggg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

header, .section, footer {
    position: relative;
    z-index: 2;
}

/* SPOTLIGHT EFFECT */
.spotlight {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(255,215,0,0.25) 0%, rgba(255,215,0,0.1) 20%, transparent 60%);
    animation: moveLight 8s infinite linear;
    z-index: 1;
}

@keyframes moveLight {
    0% {
        transform: translate(0%, 0%);
    }
    25% {
        transform: translate(20%, 10%);
    }
    50% {
        transform: translate(40%, -10%);
    }
    75% {
        transform: translate(-10%, 20%);
    }
    100% {
        transform: translate(0%, 0%);
    }
}

    header {
        background: #000;
        padding: 20px;
        border-bottom: 2px solid gold;
    }

    header img {
        height: 80px;
    }

    h1 {
        color: gold;
        margin: 10px 0;
    }

    .section {
        padding: 40px 20px;
    }

    .plans {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .card {
        background: #111;
        border: 1px solid gold;
        padding: 20px;
        border-radius: 10px;
        width: 220px;
        box-shadow: 0 0 10px rgba(255,215,0,0.5);
    }

    .card h3 {
        color: gold;
    }

    .btn {
        background: gold;
        color: black;
        padding: 10px 20px;
        border: none;
        margin-top: 10px;
        cursor: pointer;
        border-radius: 5px;
        font-weight: bold;
    }

    .form-box {
        max-width: 400px;
        margin: auto;
        background: #111;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid gold;
    }

    input {
        width: 90%;
        padding: 10px;
        margin: 10px 0;
        border-radius: 5px;
        border: none;
    }

    #audition-section {
        display: none;
        background: #000;
        border-top: 2px solid gold;
    }

    footer {
        padding: 20px;
        font-size: 14px;
        color: #aaa;
    }
  
  /* ===== HERO IMAGE ===== */
.hero-img {
    width: 100%;
    height: 500px;
    background: url('../img2/hero/hero.png') center/cover no-repeat;
    position: relative;
}

/* OPTIONAL: subtle cinematic effect 
.hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.6)
    );
}  */
  
  .hero-img {
    animation: zoomHero 12s infinite alternate ease-in-out;
}

@keyframes zoomHero {
    from {
        background-size: 100%;
    }
    to {
        background-size: 110%;
    }
}
  
  /* ===== MEMBERSHIP ===== */
.membership {
    padding: 60px 20px;
}

.section-title {
    font-size: 32px;
    color: gold;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 14px;
}

/* CARDS */
.plans {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD */
.card {
    background: rgba(15,15,15,0.95);
    border: 1px solid rgba(255,215,0,0.3);
    padding: 25px;
    border-radius: 12px;
    width: 260px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

/* FEATURED PLAN */
.featured {
    border: 1px solid gold;
    transform: scale(1.05);
}

.featured:hover {
    transform: scale(1.08);
}

/* TAG */
.tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: gold;
    color: #000;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* PRICE */
.price {
    font-size: 28px;
    color: gold;
    margin: 10px 0;
}

.duration {
    color: #bbb;
    margin-bottom: 15px;
}

/* FEATURES */
.card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.card ul li {
    font-size: 13px;
    color: #ddd;
    margin: 6px 0;
}

/* BUTTON */
.btn {
    background: linear-gradient(135deg, #c9a227, #ffd700);
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    box-shadow: 0 0 15px rgba(255,215,0,0.6);
}
  
  /* ===== FEATURED AUDITIONS ===== */
.featured-auditions {
    padding: 60px 0;
    overflow: hidden;
}

/* TITLE */
.fa-title {
    text-align: center;
    font-size: 30px;
    color: gold;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

/* WRAPPER */
.fa-wrapper {
    overflow: hidden;
    position: relative;
}

/* TRACK */
/* TRACK (DESKTOP MARQUEE) */
.fa-track {
    display: flex;
    gap: 20px;
    width: max-content;

    animation: scrollTrack 14s linear infinite; /* ⚡ faster = visible */
}
/* PAUSE ON HOVER */
.fa-wrapper:hover .fa-track {
    animation-play-state: paused;
}
@keyframes scrollTrack {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* CARD */
/* ===== CARD ===== */
.fa-card {
    min-width: 240px;
    min-height: 150px; /* ✅ INCREASE HEIGHT */
    
    background: rgba(15,15,15,0.95);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 14px;

    padding: 22px 18px;

    display: flex;                 /* ✅ FLEX FOR PERFECT ALIGNMENT */
    flex-direction: column;
    justify-content: space-between; /* ✅ SPREAD CONTENT */

    text-align: center;
    transition: 0.3s;

    box-shadow: 0 0 10px rgba(255,215,0,0.15);
}

/* HOVER */
.fa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255,215,0,0.45);
}

/* TITLE */
.fa-card h3 {
    color: gold;
    font-size: 17px;
    margin-bottom: 6px;
    line-height: 1.3;
}

/* AGE */
.fa-card p {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 4px;
}

/* LOCATION */
.fa-card span {
    font-size: 12px;
    color: #aaa;
}

/* CONTACT BADGE (IMPROVED) */
.contact-lock {
    margin-top: 12px;
    font-size: 12px;
    color: #bbb;
    
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    
    padding: 5px 12px;
    border-radius: 20px;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* OPTIONAL: ICON COLOR */
.contact-lock span {
    color: gold;
}
@media (max-width: 768px){

    .fa-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .fa-track {
        animation: none;      /* ❌ STOP marquee */
        width: max-content;   /* ✅ keep natural width */
        padding: 10px;

        scroll-snap-type: x mandatory; /* 🔥 smooth swipe */
    }

    .fa-card {
        min-width: 200px;
        min-height: 140px;
        flex-shrink: 0;

        scroll-snap-align: start; /* 🔥 snap */
    }

    /* hide scrollbar */
    .fa-wrapper::-webkit-scrollbar {
        display: none;
    }
}
  /* ===== APPLY SECTION ===== */
.apply-section {
    padding: 70px 20px;
    text-align: center;
}

.apply-box {
    max-width: 600px;
    margin: auto;
    background: rgba(15,15,15,0.95);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 12px;
    padding: 40px 25px;
    box-shadow: 0 0 20px rgba(255,215,0,0.1);
}

.apply-box h2 {
    color: gold;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.apply-box p {
    color: #bbb;
    margin-bottom: 25px;
    font-size: 14px;
}

/* BUTTON */
.apply-btn {
    background: linear-gradient(135deg, #c9a227, #ffd700);
    color: #000;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.apply-btn:hover {
    box-shadow: 0 0 20px rgba(255,215,0,0.6);
    transform: scale(1.05);
}
  /* ===== MEMBERSHIP MODAL ===== */
.member-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
}

/* BOX */
.member-box {
    max-width: 420px;
    margin: 120px auto;
    background: rgba(15,15,15,0.95);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,215,0,0.4);
    text-align: center;
    animation: popUp 0.4s ease;
}

/* TITLE */
.member-box h2 {
    color: gold;
    margin-bottom: 10px;
}

/* TEXT */
.member-box p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
}

/* BUTTON */
.member-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    background: linear-gradient(135deg, #c9a227, #ffd700);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.member-btn:hover {
    box-shadow: 0 0 15px rgba(255,215,0,0.6);
    transform: scale(1.05);
}

/* CLOSE */
.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
}

.close:hover {
    color: gold;
}

/* ANIMATION */
@keyframes popUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
  /* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

/* CONTENT */
.modal-content {
    background: #111;
    max-width: 400px;
    margin: 100px auto;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid gold;
    text-align: center;
    position: relative;
    animation: modalFade 0.4s ease;
}

/* CLOSE */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
}

.close:hover {
    color: gold;
}

/* FORM */
.modal-content h3 {
    color: gold;
    margin-bottom: 15px;
}

.modal-content input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: none;
    outline: none;
}

/* BUTTON */
.modal-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: gold;
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

/* ANIMATION */
@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== HEADER ===== */
.main-header {
    background: rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(255,215,0,0.25);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
    font-family: 'Poppins', sans-serif;
}

/* NAV CONTAINER */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
}

/* LOGO */
.logo-box img {
    height: 60px;
    transition: 0.3s;
}

.logo-box img:hover {
    transform: scale(1.05);
}

/* NAV MENU */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s;
}

/* UNDERLINE ANIMATION */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: linear-gradient(to right, transparent, gold, transparent);
    transition: 0.4s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #fff;
}

/* ENQUIRE BUTTON */
.enquire-btn {
    background: linear-gradient(135deg, #c9a227, #ffd700);
    color: #000 !important;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 0 8px rgba(255,215,0,0.3);
    transition: 0.3s;
}

.enquire-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(255,215,0,0.6);
}

/* ===== MARQUEE ===== */
.marquee {
    width: 100%;
    overflow: hidden;
    background: rgba(10,10,10,0.95);
    border-top: 1px solid rgba(255,215,0,0.15);
}

.marquee-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 13px;
    color: #e6c200;
    animation: marqueeMove 18s linear infinite;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* ===== FOOTER ===== */
.main-footer {
    background: #000;
    color: #ccc;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

/* SUBTLE TOP GLOW LINE */
.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, gold, transparent);
}

/* CONTAINER */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    padding: 0 80px 50px;
    flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
    flex: 1;
    min-width: 220px;
}

/* CENTER COLUMN ALIGN */
.center-col {
    text-align: center;
}

/* LOGO */
.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

/* HEADINGS */
.footer-col h4 {
    color: gold;
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* LINKS */
.footer-col a {
    display: block;
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: 0.3s;
}

/* HOVER */
.footer-col a:hover {
    color: gold;
    transform: translateX(5px);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255,215,0,0.15);
    font-size: 13px;
    color: #aaa;
}

/* ACP LINK */
.footer-bottom a {
    color: gold;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px){

    /* ===== FOOTER CONTAINER ===== */
    .footer-container {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px 35px;
        text-align: center;
    }

    /* ===== EACH COLUMN ===== */
    .footer-col {
        width: 100%;
        min-width: unset;
        text-align: center;
    }

    /* ===== LOGO ===== */
    .footer-logo {
        height: 50px;
        margin-bottom: 10px;
    }

    /* ===== TEXT ===== */
    .footer-col p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* ===== HEADINGS ===== */
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    /* ===== LINKS ===== */
    .footer-col a {
        font-size: 13px;
        margin-bottom: 6px;
    }

    /* ❌ remove hover shift on mobile */
    .footer-col a:hover {
        transform: none;
    }

    /* ===== BOTTOM TEXT ===== */
    .footer-bottom {
        font-size: 12px;
        padding: 12px 10px;
        line-height: 1.4;
    }

}

/* ===== MODAL ===== */
.enquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
}

/* BOX */
.enquiry-box {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    backdrop-filter: blur(20px);
    text-align: center;
    position: relative;
    animation: fadeIn 0.4s ease;
}

/* LOGO */
.form-logo {
    width: 60px;
    margin-bottom: 10px;
}

/* TITLE */
.enquiry-box h2 {
    color: gold;
    margin-bottom: 15px;
}

/* INPUTS */
.enquiry-box input,
.enquiry-box textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.enquiry-box textarea {
    resize: none;
    height: 80px;
}

/* CAPTCHA */
.captcha-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

#captchaCode {
    background: #111;
    color: gold;
    padding: 8px 12px;
    letter-spacing: 3px;
    border-radius: 6px;
    font-weight: bold;
}

.refresh-btn {
    background: gold;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: linear-gradient(135deg, #c9a227, #ffd700);
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* CLOSE */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    cursor: pointer;
    font-size: 20px;
}

/* MESSAGE */
#formMsg {
    margin-top: 10px;
    font-size: 13px;
}

/* ANIMATION */
@keyframes fadeIn {
    from { opacity:0; transform: translateY(-20px); }
    to { opacity:1; transform: translateY(0); }
}

/* =========================================
   📱 MOBILE RESPONSIVE (FULL FIX)
========================================= */
@media (max-width: 768px){

    /* ===== BODY FIX ===== */
    body {
        background-attachment: scroll; /* ❗ FIX iOS zoom issue */
    }

    /* ===== HEADER ===== */
    .nav-container {
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-box img {
        height: 50px;
    }

    /* ===== HERO ===== */
    .hero-img {
        height: 250px; /* smaller for mobile */
    }

    /* ===== SECTIONS ===== */
    .section {
        padding: 30px 15px;
    }

    /* ===== MEMBERSHIP CARDS ===== */
    .plans {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 300px;
    }

  

    /* ===== APPLY SECTION ===== */
    .apply-box {
        padding: 25px 15px;
    }

    .apply-box h2 {
        font-size: 20px;
    }

    .apply-box p {
        font-size: 13px;
    }

    /* ===== MODALS ===== */
    .modal-content,
    .member-box,
    .enquiry-box {
        width: 90%;
        margin: 60px auto;
        padding: 20px;
    }

 
    /* ===== TEXT SCALING ===== */
    .section-title {
        font-size: 22px;
    }

    .fa-title {
        font-size: 22px;
    }

}


/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 20px;
    text-align: center;
    background: #000;
}

/* TITLE */
.hiw-title {
    color: gold;
    font-size: 32px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.hiw-sub {
    color: #aaa;
    margin-bottom: 60px;
    font-size: 14px;
}

/* WRAPPER */
.hiw-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    position: relative;
}

/* CONNECT LINE */
.hiw-wrapper::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, gold, transparent);
}

/* STEP */
.hiw-step {
    width: 250px;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

/* CIRCLE */
.circle {
    width: 60px;
    height: 60px;
    border: 2px solid gold;
    border-radius: 50%;
    color: gold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
    font-weight: bold;
}

/* TEXT */
.hiw-step h3 {
    margin-bottom: 8px;
    color: #fff;
}

.hiw-step p {
    color: #aaa;
    font-size: 14px;
}

/* HOVER */
.hiw-step:hover {
    transform: translateY(-10px);
}

/* CTA BUTTON */
.hiw-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 10px 30px;
    background: linear-gradient(135deg, #c9a227, #ffd700);
    border-radius: 25px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* ===========================
   📱 MOBILE RESPONSIVE
=========================== */
@media (max-width: 768px){

    .how-it-works {
        padding: 60px 15px;
    }

    .hiw-title {
        font-size: 24px;
    }

    .hiw-sub {
        margin-bottom: 30px;
        font-size: 13px;
    }

    /* STACK STEPS */
    .hiw-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    /* REMOVE LINE */
    .hiw-wrapper::before {
        display: none;
    }

    .hiw-step {
        width: 100%;
        max-width: 280px;
    }

    .circle {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }

    .hiw-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* ===== FAQ SECTION (PREMIUM) ===== */
.faq-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top, rgba(255,215,0,0.08), #000);
    text-align: center;
}

/* TITLE */
.faq-title {
    color: gold;
    font-size: 34px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.faq-sub {
    color: #aaa;
    margin-bottom: 50px;
    font-size: 14px;
}

/* CONTAINER */
.faq-container {
    max-width: 850px;
    margin: auto;
}

/* ITEM (CARD STYLE) */
.faq-item {
    background: rgba(15,15,15,0.95);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 15px 18px;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255,215,0,0.05);
}

/* HOVER */
.faq-item:hover {
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 0 20px rgba(255,215,0,0.15);
}

/* QUESTION */
.faq-question {
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */
.faq-question .icon {
    color: gold;
    font-size: 20px;
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.4s ease;
    opacity: 0;
}

/* ACTIVE STATE */
.faq-item.active {
    border-color: gold;
    box-shadow: 0 0 25px rgba(255,215,0,0.25);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
    opacity: 1;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* =========================
   📱 MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px){

    .faq-section {
        padding: 60px 15px;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-sub {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-item {
        padding: 12px 14px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

}


/* ===== WHY CHOOSE US ===== */
.rs-why-wrap {
    padding: 100px 20px;
    background: radial-gradient(circle at top, rgba(255,215,0,0.06), #000);
    text-align: center;
}

/* TITLE */
.rs-why-title {
    color: gold;
    font-size: 34px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.rs-why-sub {
    color: #aaa;
    margin-bottom: 60px;
    font-size: 14px;
}

/* GRID */
.rs-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.rs-why-card {
    background: rgba(15,15,15,0.95);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 14px;
    padding: 30px 20px;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255,215,0,0.05);
}

/* HOVER */
.rs-why-card:hover {
    transform: translateY(-10px);
    border-color: gold;
    box-shadow: 0 0 25px rgba(255,215,0,0.3);
}

/* ICON */
.rs-why-icon {
    font-size: 26px;
    color: gold;
    margin-bottom: 12px;
}

/* TEXT */
.rs-why-card h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
}

.rs-why-card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   📱 MOBILE RESPONSIVE
========================= */
@media (max-width: 768px){

    .rs-why-wrap {
        padding: 60px 15px;
    }

    .rs-why-title {
        font-size: 24px;
    }

    .rs-why-sub {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .rs-why-grid {
        grid-template-columns: 1fr; /* STACK */
        gap: 20px;
    }

    .rs-why-card {
        padding: 25px 15px;
    }

}

/* ===== TESTIMONIALS ===== */
.rs-test-wrap {
    padding: 100px 20px;
    background: radial-gradient(circle at top, rgba(255,215,0,0.05), #000);
    text-align: center;
}

.rs-test-title {
    color: gold;
    font-size: 34px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.rs-test-sub {
    color: #aaa;
    margin-bottom: 50px;
    font-size: 14px;
}

/* SLIDER */
.rs-test-slider {
    overflow: hidden;
}

.rs-test-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: rsScroll 18s linear infinite;
}

/* CARD */
.rs-test-card {
    min-width: 280px;
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.rs-test-card:hover {
    transform: translateY(-10px);
    border-color: gold;
    box-shadow: 0 0 25px rgba(255,215,0,0.2);
}

/* TOP */
.rs-test-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rs-test-top img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.rs-test-top h4 {
    color: #fff;
    margin: 0;
}

.rs-test-top span {
    color: gold;
    font-size: 12px;
}

/* TEXT */
.rs-test-card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

/* ANIMATION */
@keyframes rsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* PAUSE ON HOVER */
.rs-test-slider:hover .rs-test-track {
    animation-play-state: paused;
}

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 768px){

    .rs-test-wrap {
        padding: 60px 15px;
    }

    .rs-test-title {
        font-size: 24px;
    }

    .rs-test-track {
        animation: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .rs-test-card {
        min-width: 240px;
        scroll-snap-align: start;
    }

    .rs-test-slider::-webkit-scrollbar {
        display: none;
    }

}