@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #0a0a0a;
    --bg-card: #111111;
    --bg-elevated: #161616;
    --bg-subtle: #1a1a1a;
    --accent: #c9a84c;
    --accent-light: #e0c36a;
    --accent-dim: rgba(201,168,76,0.12);
    --white: #ffffff;
    --white-90: rgba(255,255,255,0.9);
    --white-70: rgba(255,255,255,0.7);
    --white-50: rgba(255,255,255,0.5);
    --white-30: rgba(255,255,255,0.3);
    --white-10: rgba(255,255,255,0.1);
    --white-05: rgba(255,255,255,0.05);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xl: 24px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: all 0.5s var(--ease-out);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: pulse-glow 1.6s ease-in-out infinite;
}
.preloader-text {
    margin-top: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--white-30);
}
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.08); filter: brightness(1.3); }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 100001;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px var(--accent);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 10000;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--white-05);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1001;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.nav-logo-text span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white-70);
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
    background: var(--accent) !important;
    color: var(--bg) !important;
    font-weight: 600 !important;
    padding: 10px 28px !important;
    border-radius: 100px !important;
    margin-left: 12px;
}

.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.dropdown-trigger svg { width: 12px; height: 12px; transition: transform 0.3s ease; }
.dropdown:hover .dropdown-trigger svg { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg-elevated);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
    color: var(--white-70);
}

.dropdown-menu a:hover {
    background: var(--accent-dim);
    color: var(--accent);
}

/* Hamburger */
.hamburger {
    display: none;
    width: 32px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.hamburger.active span:nth-child(3) { bottom: 9px; transform: rotate(-45deg); }

.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    padding: 12px 24px;
    color: var(--white-50);
    transition: var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg img {
    filter: brightness(0.5);
    transform: scale(1.05);
    animation: slowZoom 25s ease-in-out infinite alternate;
}

.hero-bg video {
    /* No filter on the video — the overlay handles darkening to avoid GPU compositing lag */
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,10,1) 0%,
        rgba(10,10,10,0.6) 30%,
        rgba(10,10,10,0.35) 60%,
        rgba(10,10,10,0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    max-width: 900px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--white-50);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-gold {
    background: var(--accent);
    color: var(--bg);
}

.btn-gold:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white-30);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: var(--white-10);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-30);
    writing-mode: vertical-rl;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--white-10);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 20px 0;
    background: var(--bg);
    border-top: 1px solid var(--white-05);
    border-bottom: 1px solid var(--white-05);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: scroll-x 35s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-30);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 48px;
}

.marquee-item::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

@keyframes scroll-x {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-img {
    overflow: hidden;
    border-radius: var(--radius-xl);
}
.reveal-img img {
    transform: scale(1.1);
    transition: transform 1.2s var(--ease-out);
}
.reveal-img.active img { transform: scale(1); }

.stagger-1 { transition-delay: 0.05s !important; }
.stagger-2 { transition-delay: 0.12s !important; }
.stagger-3 { transition-delay: 0.19s !important; }
.stagger-4 { transition-delay: 0.26s !important; }
.stagger-5 { transition-delay: 0.33s !important; }
.stagger-6 { transition-delay: 0.40s !important; }

/* Facility card staggered reveal */
.reveal-facility {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-facility.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== SECTION COMMON ===== */
.section { padding: 120px 0; position: relative; }

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    max-width: 700px;
}

.section-heading em {
    font-style: italic;
    color: var(--accent);
}

.section-text {
    font-size: 1rem;
    color: var(--white-50);
    max-width: 520px;
    line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 5px solid var(--bg);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.about-stat {
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--white-05);
    transition: var(--transition);
}

.about-stat:hover {
    border-color: var(--accent-dim);
    transform: translateY(-4px);
}

.about-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--white-50);
    letter-spacing: 1px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white-05);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--white-70);
    border: 1px solid var(--white-05);
}

.about-feat i { color: var(--accent); font-size: 0.7rem; }

/* ===== FACILITIES ===== */
.facilities { overflow: hidden; }

.facilities-scroll {
    display: flex;
    gap: 20px;
    padding: 0 40px 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.facilities-scroll::-webkit-scrollbar { display: none; }

.facility-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--white-05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.facility-card:hover {
    border-color: var(--white-10);
    transform: translateY(-6px);
}

.facility-card:hover::before { transform: scaleX(1); }

.facility-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), rgba(201,168,76,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg);
    margin-bottom: 24px;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.facility-emoji {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
}

.facility-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.facility-card p {
    font-size: 0.85rem;
    color: var(--white-50);
    line-height: 1.7;
}

/* ===== BRANCHES ===== */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.branch-card {
    display: block;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.branch-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
    filter: brightness(0.6) saturate(0.8);
}

.branch-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.4) saturate(1);
}

.branch-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.branch-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.branch-loc {
    font-size: 0.82rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

.branch-extras {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s var(--ease-out);
}

.branch-card:hover .branch-extras {
    opacity: 1;
    transform: translateY(0);
}

.branch-tag {
    font-size: 0.7rem;
    padding: 4px 12px;
    background: var(--white-10);
    border-radius: 100px;
    color: var(--white-70);
    backdrop-filter: blur(8px);
}

/* ===== STATS ===== */
.stats-section {
    padding: 100px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--white-05);
    border-bottom: 1px solid var(--white-05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-block { text-align: center; }

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.78rem;
    color: var(--white-30);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== MEMBERSHIP ===== */
.membership { background: var(--bg); }

.membership-header {
    text-align: center;
    margin-bottom: 48px;
}

.membership-header .section-label,
.membership-header .section-heading,
.membership-header .section-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.branch-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.branch-tab {
    padding: 10px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--white-10);
    border-radius: 100px;
    color: var(--white-50);
    cursor: pointer;
    transition: var(--transition);
}

.branch-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.branch-tab.active {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    font-weight: 600;
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: fadeUp 0.5s var(--ease-out); }

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--white-05);
}

.pricing-table thead th {
    background: var(--bg-elevated);
    padding: 20px 28px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--white-05);
}

.pricing-table tbody tr {
    transition: var(--transition);
    border-bottom: 1px solid var(--white-05);
}

.pricing-table tbody tr:last-child { border-bottom: none; }

.pricing-table tbody tr:hover { background: var(--white-05); }

.pricing-table td {
    padding: 18px 28px;
    font-size: 0.92rem;
    color: var(--white-70);
}

.price-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--white-30);
    font-size: 0.85rem;
    margin-right: 8px;
}

.price-na {
    color: var(--white-30);
    font-style: italic;
    font-size: 0.85rem;
}

.platinum-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-dim);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
    border: 1px solid rgba(201,168,76,0.2);
}

/* ===== WHY JOIN ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.why-card {
    padding: 48px 36px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--white-05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    border-color: var(--white-10);
    transform: translateY(-6px);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 24px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--accent);
    color: var(--bg);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--white-50);
    line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.05rem;
    color: var(--white-50);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-cards { display: grid; gap: 16px; }

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--white-05);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--accent-dim);
    transform: translateX(6px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--bg);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--white-50);
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--white-05);
}

.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.contact-form .form-sub {
    font-size: 0.88rem;
    color: var(--white-30);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--white-50);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-30); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group select option { background: var(--bg-card); }
.form-group textarea { min-height: 110px; resize: vertical; }

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--bg);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--white-05);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand-text {
    font-size: 0.9rem;
    color: var(--white-30);
    line-height: 1.8;
    margin: 16px 0 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--white-05);
    border: 1px solid var(--white-05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-50);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--white-30);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); padding-left: 6px; }

.footer-bottom {
    border-top: 1px solid var(--white-05);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--white-30);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 1rem;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== POLICY PAGES ===== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--bg-card);
    text-align: center;
    border-bottom: 1px solid var(--white-05);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.page-hero .breadcrumb {
    color: var(--white-30);
    font-size: 0.85rem;
}

.page-hero .breadcrumb a { color: var(--accent); }

.policy-content { padding: 80px 0; }

.policy-body {
    max-width: 760px;
    margin: 0 auto;
}

.policy-body h2 {
    font-size: 1.4rem;
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--white-10);
}

.policy-body h3 {
    font-size: 1.1rem;
    margin: 28px 0 12px;
    color: var(--accent);
}

.policy-body p {
    color: var(--white-50);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.policy-body ul, .policy-body ol {
    color: var(--white-50);
    line-height: 1.9;
    margin-bottom: 16px;
    padding-left: 20px;
}

.policy-body li { margin-bottom: 8px; }

.policy-notice {
    background: var(--accent-dim);
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 28px 0;
}

.policy-notice p { color: var(--white-70); margin: 0; font-weight: 500; }

/* ===== BRANCH MODAL ===== */
.branch-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

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

.branch-modal {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--white-10);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s var(--ease-out);
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.branch-modal::-webkit-scrollbar { width: 6px; }
.branch-modal::-webkit-scrollbar-track { background: transparent; }
.branch-modal::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

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

.branch-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--white-10);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.branch-modal-close:hover {
    background: var(--accent);
    color: var(--bg);
}

.branch-modal-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.branch-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-modal-body {
    padding: 32px;
}

.branch-modal-body h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.branch-modal-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.branch-modal-detail i {
    color: var(--accent);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.branch-modal-detail a {
    color: var(--white-70);
    transition: var(--transition);
}

.branch-modal-detail a:hover {
    color: var(--accent);
}

.branch-modal-timings {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--white-10);
}

.branch-modal-timings h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.branch-modal-timing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--white-70);
}

.branch-modal-timing-row + .branch-modal-timing-row {
    border-top: 1px solid var(--white-05);
}

.timing-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--white-50);
}

.timing-label i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.branch-modal-facilities {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--white-10);
}

.branch-modal-facilities h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.branch-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.branch-modal-tags span {
    font-size: 0.78rem;
    padding: 6px 16px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 100px;
    color: var(--white-70);
}

/* ===== MOBILE POLICIES GROUP ===== */
.mobile-policies-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mobile-policies-toggle {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    padding: 12px 24px;
    color: var(--white-50);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.mobile-policies-toggle:hover {
    color: var(--accent);
}

.mobile-policies-toggle svg {
    transition: transform 0.3s ease;
}

.mobile-policies-group.active .mobile-policies-toggle svg {
    transform: rotate(180deg);
}

.mobile-policies-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.mobile-policies-group.active .mobile-policies-links {
    max-height: 400px;
}

.mobile-policies-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 8px 24px;
    color: var(--white-30);
    transition: var(--transition);
}

.mobile-policies-links a:hover {
    color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .branches-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .why-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .branches-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .branch-card { aspect-ratio: 3/3.5; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-content { padding: 0 24px 60px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-scroll-hint { display: none; }
    .nav-inner { padding: 0 24px; }
    .facility-card { flex: 0 0 280px; padding: 32px 24px; }
    .facilities-scroll { padding: 0 24px 40px; }
}

@media (max-width: 480px) {
    .about-img-float { right: -16px; bottom: -24px; width: 50%; }
    .about-stats { grid-template-columns: 1fr; }
    .stat-num { font-size: 2.5rem; }
    .branch-tabs { gap: 6px; }
    .branch-tab { padding: 8px 16px; font-size: 0.75rem; }
}
