/* ===== IMPORTS & ROOT ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary:       #16a34a;
    --primary-dark:  #15803d;
    --primary-hover: #14532d;
    --primary-light: rgba(22, 163, 74, 0.09);
    --primary-glow:  rgba(22, 163, 74, 0.22);
    --secondary:     #22c55e;
    --light-green:   #dcfce7;
    --accent:        #bbf7d0;

    --bg:     #ffffff;
    --bg-2:   #f8fdf9;
    --bg-3:   #f0faf2;
    --bg-4:   #e6f7ea;

    --dark:    #111827;
    --dark-2:  #1f2937;
    --heading: #111827;
    --text:    #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;

    --white:    #ffffff;
    --border:   #e2f0e6;
    --border-2: #bbddc4;

    --gradient:      linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-soft: linear-gradient(135deg, #dcfce7, #bbf7d0);

    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow:    0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 28px rgba(0,0,0,0.09), 0 4px 10px rgba(0,0,0,0.05);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.11), 0 6px 16px rgba(0,0,0,0.06);
    --shadow-green: 0 8px 28px rgba(22, 163, 74, 0.20);

    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius:    12px;
    --radius-lg: 20px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-3); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ===== SELECTION ===== */
::selection { background: var(--primary); color: #fff; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
}

/* ===== TAGLINE ===== */
.tagline {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--light-green);
    border: 1px solid var(--border-2);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    color: var(--heading);
}
.section-title span { color: var(--primary); }
.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 50px;
}
.title-line {
    width: 60px; height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 14px auto 20px;
}
.title-line.left { margin-left: 0; }

/* ===== BUTTONS ===== */
.btn-gym {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-gym::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.btn-gym:hover::before { transform: translateX(0); }

.btn-primary-gym {
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--shadow-green);
}
.btn-primary-gym:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(22,163,74,0.30);
    color: #fff;
}
.btn-outline-gym {
    background: transparent;
    color: var(--heading);
    border: 2px solid var(--border-2);
}
.btn-outline-gym:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}
.btn-white-gym {
    background: #fff;
    color: var(--primary);
}
.btn-white-gym:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
#mainNavbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}
#mainNavbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.07);
    border-bottom: 1px solid var(--border);
}

.navbar-brand .brand-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.25rem;
    letter-spacing: 2px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}
#mainNavbar.scrolled .brand-logo { color: var(--heading); }
.navbar-brand .brand-logo span { color: var(--secondary); }
.navbar-brand .brand-logo i  { color: var(--secondary); font-size: 1.6rem; }
.navbar-brand .brand-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}
#mainNavbar.scrolled .navbar-nav .nav-link { color: var(--text) !important; }

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 16px; right: 16px; }

.navbar-nav .nav-link:hover { color: #fff !important; }
#mainNavbar.scrolled .navbar-nav .nav-link:hover,
#mainNavbar.scrolled .navbar-nav .nav-link.active { color: var(--primary) !important; }

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.4);
    padding: 6px 10px;
    border-radius: 8px;
}
#mainNavbar.scrolled .navbar-toggler { border-color: var(--border-2); }
.navbar-toggler-icon { filter: brightness(0) invert(1); }
#mainNavbar.scrolled .navbar-toggler-icon { filter: none; }

@media (max-width: 991px) {
    .navbar-brand .brand-logo {
        font-size: 1.9rem;
        gap: 10px;
    }
    .navbar-brand .brand-logo img { height: 46px; }

    #mainNavbar .navbar-collapse {
        background: rgba(255,255,255,0.98);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 12px;
        box-shadow: var(--shadow-md);
    }
    #mainNavbar .navbar-nav .nav-link { color: var(--text) !important; }
    #mainNavbar .navbar-nav .nav-link:hover { color: var(--primary) !important; }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background: #0a0a0a;
}

/* Each slide */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 0;
    opacity: 0;
    transition: opacity 0s;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: all;
}
.hero-slide.entering  { animation: slideIn  0.8s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
.hero-slide.leaving   { animation: slideOut 0.8s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }

@keyframes slideIn  { from{opacity:0;transform:scale(1.04)} to{opacity:1;transform:scale(1)} }
@keyframes slideOut { from{opacity:1;transform:scale(1)}    to{opacity:0;transform:scale(0.96)} }

/* Background image */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 6s ease;
}
.hero-slide.active .slide-bg { transform: scale(1); }

/* Gradient overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(5,10,5,0.88) 0%, rgba(5,10,5,0.60) 55%, rgba(5,10,5,0.30) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}

/* Content column */
.hero-slide .container { position: relative; z-index: 2; height: 100%; padding-top: 90px; }
.hero-slide .row       { height: 100%; }

/* Slide content wrapper – all children animated */
.slide-content { padding: 20px 0; }

/* Tag pill */
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22,163,74,0.18);
    border: 1px solid rgba(22,163,74,0.4);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
    /* entry anim */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s 0.15s ease, transform 0.5s 0.15s ease;
}
.hero-slide.active .slide-tag {
    opacity: 1; transform: translateY(0);
}

/* Main title */
.slide-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 22px;
}
.slide-title .st-line1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 7vw, 6.5rem);
    letter-spacing: 4px;
    color: #fff;
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.55s 0.30s ease, transform 0.55s 0.30s ease;
}
.slide-title .st-line2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    letter-spacing: 5px;
    color: transparent;
    -webkit-text-stroke: 2px var(--secondary);
    line-height: 0.9;
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.55s 0.45s ease, transform 0.55s 0.45s ease;
}
.slide-title .st-line3 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 5vw, 4.5rem);
    letter-spacing: 3px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.55s 0.60s ease, transform 0.55s 0.60s ease;
}
.hero-slide.active .st-line1,
.hero-slide.active .st-line2,
.hero-slide.active .st-line3 {
    opacity: 1; transform: translateX(0);
}

/* Description */
.slide-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.68);
    max-width: 500px;
    line-height: 1.85;
    margin-bottom: 36px;
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.5s 0.75s ease, transform 0.5s 0.75s ease;
}
.hero-slide.active .slide-desc { opacity: 1; transform: translateY(0); }

/* CTA buttons */
.slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.5s 0.90s ease, transform 0.5s 0.90s ease;
}
.hero-slide.active .slide-btns { opacity: 1; transform: translateY(0); }

/* Slider-specific outline button (white on dark) */
.btn-slider-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.45);
}
.btn-slider-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.75);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Stats bar ---- */
.hero-stats-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    background: rgba(5,10,5,0.70);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(22,163,74,0.2);
    padding: 20px 0;
}
.hstats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.hstat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}
.hstat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--secondary);
    line-height: 1;
}
.hstat-lbl {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 3px;
}
.hstat-divider {
    width: 1px; height: 36px;
    background: rgba(255,255,255,0.12);
}

/* ---- Arrows ---- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 54px; height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.30);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* ---- Dots ---- */
.slider-dots {
    position: absolute;
    bottom: 110px;
    left: 50%; transform: translateX(-50%);
    z-index: 4;
    display: flex; gap: 10px;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.slider-dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.35);
}
.slider-dot:hover:not(.active) {
    border-color: rgba(255,255,255,0.8);
}

/* ---- Progress bar ---- */
.slider-progress-wrap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,0.08);
    z-index: 5;
}
.slider-progress-bar {
    height: 100%;
    background: var(--gradient);
    width: 0%;
    transition: width 0.1s linear;
}

/* ---- Slide Visual (right side) ---- */
.slide-visual {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
}

/* Radial glow backdrop */
.sv-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 260px; height: 260px;
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
}

/* Concentric decorative rings */
.sv-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(34,197,94,0.18);
    pointer-events: none;
}
.sv-ring-1 { width: 190px; height: 190px; animation: svRing 3s ease-in-out infinite; }
.sv-ring-2 { width: 290px; height: 290px; animation: svRing 3s ease-in-out 0.6s infinite; }
.sv-ring-3 { width: 380px; height: 380px; animation: svRing 3s ease-in-out 1.2s infinite; }
@keyframes svRing {
    0%,100% { opacity: 0.35; transform: translate(-50%,-50%) scale(1); }
    50%      { opacity: 0.70; transform: translate(-50%,-50%) scale(1.04); }
}

/* Central icon circle */
.sv-icon-wrap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150px; height: 150px;
    border-radius: 50%;
    background: rgba(5,20,5,0.65);
    border: 2px solid rgba(34,197,94,0.40);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    animation: svFloat 3.5s ease-in-out infinite;
    z-index: 2;
}
@keyframes svFloat {
    0%,100% { transform: translate(-50%,-50%) translateY(0); }
    50%      { transform: translate(-50%,-50%) translateY(-14px); }
}

/* Floating feature pills */
.sv-feat {
    position: absolute;
    background: rgba(5,12,5,0.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34,197,94,0.28);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex; align-items: center; gap: 10px;
    white-space: nowrap;
    z-index: 3;
    opacity: 0;
    transform: translateY(12px) scale(0.9);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero-slide.active .sv-feat {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.sv-feat i     { font-size: 0.95rem; flex-shrink: 0; }
.sv-feat span  { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.88rem; color: #fff; letter-spacing: 0.3px; }

/* Position each pill + stagger delay */
.sv-feat-1 { top: 4%;  left: 52%; transition-delay: 0.65s; }
.sv-feat-2 { top: 42%; left: -12%; transition-delay: 0.85s; }
.sv-feat-3 { bottom: 6%; left: 38%; transition-delay: 1.05s; }

/* ---- Scroll hint ---- */
.scroll-indicator {
    position: absolute;
    bottom: 112px; right: 36px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.30);
    font-size: 0.62rem; letter-spacing: 2.5px; text-transform: uppercase;
    z-index: 4;
    writing-mode: vertical-lr;
}
.scroll-mouse {
    width: 22px; height: 34px;
    border: 2px solid rgba(255,255,255,0.22);
    border-radius: 11px; position: relative;
    writing-mode: horizontal-tb;
}
.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 7px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim { 0%{opacity:1;transform:translateX(-50%) translateY(0)} 100%{opacity:0;transform:translateX(-50%) translateY(10px)} }

/* ===== MARQUEE ===== */
.marquee-strip { background: var(--gradient); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marqueeScroll 25s linear infinite; }
.marquee-item {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: #fff; padding: 0 30px;
}
.marquee-item i { font-size: 0.8rem; opacity: 0.7; }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== INTRO SECTION ===== */
.intro-section { background: var(--bg); }
.intro-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.intro-img-wrap img {
    width: 100%; height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
    box-shadow: var(--shadow-lg);
}
.intro-img-wrap:hover img { transform: scale(1.02); }
.intro-img-badge {
    position: absolute;
    bottom: 30px; right: -20px;
    background: var(--gradient);
    color: #fff; padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-green);
}
.intro-img-badge .badge-num { font-family: 'Bebas Neue', cursive; font-size: 3rem; line-height: 1; display: block; }
.intro-img-badge .badge-text { font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }
.intro-feature {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 14px; padding: 18px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.intro-feature:hover {
    border-color: var(--border-2);
    background: var(--light-green);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.intro-feature-icon {
    width: 50px; height: 50px; min-width: 50px;
    background: var(--light-green);
    border: 1px solid var(--border-2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.3rem;
    transition: var(--transition);
}
.intro-feature:hover .intro-feature-icon { background: var(--primary); color: #fff; border-color: var(--primary); }
.intro-feature h6 { font-size: 1rem; margin-bottom: 4px; color: var(--heading); }
.intro-feature p  { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--dark);
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(22,163,74,0.07) 0%, transparent 70%);
}
.stat-card { text-align: center; padding: 40px 20px; position: relative; z-index: 1; }
.stat-card::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}
.stat-card:last-child::after { display: none; }
.stat-card .stat-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 12px; display: block; }
.stat-card .counter  { font-family: 'Bebas Neue', cursive; font-size: 4rem; line-height: 1; color: #fff; display: block; }
.stat-card .stat-label { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 8px; }

/* ===== FACILITIES ===== */
.facilities-section { background: var(--bg-2); }
.facility-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.facility-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-2);
    box-shadow: var(--shadow-green);
}
.facility-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.facility-card:hover .facility-img { transform: scale(1.06); }
.facility-img-wrap { overflow: hidden; position: relative; }
.facility-img-wrap::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--bg));
}
.facility-body { padding: 24px; }
.facility-icon {
    width: 54px; height: 54px;
    background: var(--light-green);
    border: 1px solid var(--border-2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.4rem;
    margin-bottom: 16px;
    transition: var(--transition);
}
.facility-card:hover .facility-icon { background: var(--primary); color: #fff; border-color: var(--primary); }
.facility-body h5 { font-size: 1.3rem; margin-bottom: 10px; color: var(--heading); }
.facility-body p  { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ===== PACKAGES ===== */
.packages-section { background: var(--bg); }
.package-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center; height: 100%;
    position: relative; overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.package-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.package-card:hover::before,
.package-card.featured::before { transform: scaleX(1); }
.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-2);
    box-shadow: var(--shadow-green);
}
.package-card.featured {
    border-color: var(--primary);
    background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg) 60%);
    box-shadow: 0 8px 32px rgba(22,163,74,0.13);
}
.featured-badge {
    position: absolute; top: 20px; right: -28px;
    background: var(--gradient);
    color: #fff; font-size: 0.68rem; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 40px; transform: rotate(45deg);
}
.package-icon   { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; }
.package-name   { font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; font-weight: 700; }
.package-price  { font-family: 'Bebas Neue', cursive; font-size: 4rem; line-height: 1; color: var(--heading); margin-bottom: 4px; }
.package-price sup { font-family: 'Poppins', sans-serif; font-size: 1.3rem; color: var(--primary); vertical-align: top; margin-top: 12px; display: inline-block; }
.package-duration { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.package-features { text-align: left; margin-bottom: 30px; }
.package-features li {
    padding: 8px 0; font-size: 0.88rem; color: var(--text);
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--border);
}
.package-features li:last-child { border-bottom: none; }
.package-features li i { color: var(--primary); font-size: 0.8rem; }
.package-features li.disabled { color: var(--text-muted); }
.package-features li.disabled i { color: var(--border-2); }

/* ===== TRAINERS ===== */
.trainers-section { background: var(--bg-2); }
.trainer-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--bg); border: 1px solid var(--border);
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.trainer-card:hover { transform: translateY(-8px); border-color: var(--border-2); box-shadow: var(--shadow-green); }
.trainer-img-wrap { position: relative; overflow: hidden; height: 300px; }
.trainer-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.trainer-card:hover .trainer-img { transform: scale(1.08); }
.trainer-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(17,24,39,0.82) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 24px;
}
.trainer-social {
    position: absolute; top: 16px; right: 16px;
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transform: translateX(20px);
    transition: var(--transition);
}
.trainer-card:hover .trainer-social { opacity: 1; transform: translateX(0); }
.trainer-social a {
    width: 36px; height: 36px;
    background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.85rem;
    box-shadow: var(--shadow-green);
}
.trainer-social a:hover { background: var(--secondary); }
.trainer-body { padding: 24px; }
.trainer-name { font-size: 1.4rem; margin-bottom: 4px; color: var(--heading); }
.trainer-role  { font-size: 0.78rem; color: var(--primary); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; display: block; }
.trainer-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-tag {
    font-size: 0.72rem; padding: 4px 12px;
    background: var(--light-green);
    border: 1px solid var(--border-2);
    border-radius: 50px; color: var(--primary-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg); }
.testimonial-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 30px;
    height: 100%; transition: var(--transition); box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 0; border-radius: 4px 0 0 4px;
    background: var(--gradient);
    transition: height 0.4s ease;
}
.testimonial-card:hover::before { height: 100%; }
.testimonial-card:hover { border-color: var(--border-2); transform: translateY(-5px); box-shadow: var(--shadow-green); }
.quote-icon { font-size: 3.5rem; color: var(--primary); opacity: 0.18; line-height: 1; margin-bottom: 16px; font-family: Georgia, serif; }
.testimonial-text { font-size: 0.93rem; line-height: 1.8; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testimonial-rating { color: #f59e0b; margin-bottom: 20px; font-size: 0.9rem; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.author-name  { font-size: 1rem; margin-bottom: 2px; color: var(--heading); }
.author-title { font-size: 0.78rem; color: var(--primary); letter-spacing: 1px; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--bg-2); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 10px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item.large { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(22,163,74,0.72);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: #fff; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--dark); position: relative; overflow: hidden; }
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(17,24,39,0.93) 0%, rgba(17,24,39,0.87) 100%),
        url('https://images.unsplash.com/photo-1517838277536-f5f99be501cd?w=1920&q=80') center/cover no-repeat;
}
.cta-section::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(22,163,74,0.09) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title { font-family: 'Bebas Neue', cursive; font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: 3px; color: #fff; }
.cta-title span { color: var(--secondary); }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-2); }
.contact-info-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 30px;
    height: 100%; box-shadow: var(--shadow);
}
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: var(--light-green); border: 1px solid var(--border-2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.2rem;
}
.contact-item h6 { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-item p  { margin: 0; font-size: 0.93rem; color: var(--text); }
.contact-form-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px;
    box-shadow: var(--shadow);
}
.form-control-gym {
    background: var(--bg-2) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    color: var(--heading) !important;
    padding: 13px 18px !important;
    font-size: 0.9rem !important;
    transition: var(--transition) !important;
}
.form-control-gym:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px var(--primary-light) !important;
    background: var(--bg) !important;
    outline: none !important;
}
.form-control-gym::placeholder { color: var(--text-muted) !important; }
.form-label { font-size: 0.84rem; color: var(--text); margin-bottom: 8px; font-weight: 500; }
select.form-control-gym option { background: var(--bg); color: var(--heading); }

/* ===== FOOTER ===== */
footer { background: var(--dark); border-top: none; }
.footer-top { padding: 80px 0 50px; }
.footer-brand { margin-bottom: 24px; }
.footer-brand .brand-name { font-family: 'Bebas Neue', cursive; font-size: 2.2rem; letter-spacing: 2px; color: #fff; }
.footer-brand .brand-name span { color: var(--secondary); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.42); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 0.95rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-heading { font-size: 1.05rem; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.42); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a i { font-size: 0.65rem; color: var(--secondary); }
.footer-links a:hover { color: var(--secondary); padding-left: 6px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.42); margin-bottom: 12px; }
.footer-contact li i { color: var(--secondary); margin-top: 3px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom p span { color: var(--secondary); }

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 160px 0 80px;
    background:
        linear-gradient(135deg, rgba(17,24,39,0.90) 0%, rgba(17,24,39,0.75) 100%),
        url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80') center/cover no-repeat;
    position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(22,163,74,0.09) 0%, transparent 65%);
}
.page-hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--bg));
}
.page-hero-title { font-family: 'Bebas Neue', cursive; font-size: clamp(3rem, 7vw, 6rem); letter-spacing: 4px; color: #fff; position: relative; z-index: 1; }
.page-hero-title span { color: var(--secondary); }
.breadcrumb-gym { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 16px; position: relative; z-index: 1; }
.breadcrumb-gym a { color: var(--secondary); }
.breadcrumb-gym i { font-size: 0.6rem; }

/* ===== ABOUT PAGE ===== */
.about-vision {
    background: var(--bg-2);
    border-radius: var(--radius-lg); padding: 30px;
    border: 1px solid var(--border); border-left: 4px solid var(--primary);
}
.about-vision h4 { color: var(--primary); margin-bottom: 10px; }
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent)); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot { position: absolute; left: -33px; top: 4px; width: 18px; height: 18px; background: var(--primary); border-radius: 50%; border: 3px solid var(--bg); box-shadow: 0 0 0 3px var(--primary-light); }
.timeline-year { font-size: 0.73rem; color: var(--primary); letter-spacing: 2px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.timeline-title { font-size: 1.2rem; margin-bottom: 6px; color: var(--heading); }
.timeline-text  { font-size: 0.87rem; color: var(--text-light); }

/* ===== MEMBERSHIP TABLE ===== */
.comparison-table { background: var(--bg); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.comparison-table table { width: 100%; }
.comparison-table th { background: var(--bg-3); color: var(--heading); font-family: 'Rajdhani', sans-serif; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; padding: 18px 24px; text-align: center; border-bottom: 1px solid var(--border); }
.comparison-table th:first-child { text-align: left; }
.comparison-table th:nth-child(3) { background: var(--light-green); color: var(--primary-dark); }
.comparison-table td { padding: 14px 24px; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text); text-align: center; }
.comparison-table td:first-child { text-align: left; color: var(--heading); font-weight: 500; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-3); }
.check-yes { color: var(--primary); font-size: 1rem; }
.check-no  { color: var(--border-2); font-size: 1rem; }

/* ===== GALLERY FILTER ===== */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
    padding: 8px 24px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    border: 1.5px solid var(--border-2); background: var(--bg); color: var(--text);
    cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.gallery-masonry { columns: 3; column-gap: 12px; }
.gallery-masonry-item { break-inside: avoid; margin-bottom: 12px; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-masonry-item:hover img { transform: scale(1.06); }
.gallery-masonry-item:hover .gallery-overlay { opacity: 1; }

/* ===== SUCCESS STORIES ===== */
.story-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); height: 100%; box-shadow: var(--shadow-sm); }
.story-card:hover { border-color: var(--border-2); transform: translateY(-6px); box-shadow: var(--shadow-green); }
.story-img-wrap { position: relative; overflow: hidden; }
.story-img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s ease; }
.story-card:hover .story-img { transform: scale(1.06); }
.story-badge { position: absolute; top: 16px; left: 16px; background: var(--gradient); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; }
.story-body { padding: 24px; }
.story-transform { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.transform-num { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; color: var(--heading); }
.transform-label { font-size: 0.75rem; color: var(--text-muted); }
.transform-arrow { color: var(--primary); font-size: 1.2rem; }
.story-name { font-size: 1.2rem; margin-bottom: 4px; color: var(--heading); }
.story-duration { font-size: 0.8rem; color: var(--primary); margin-bottom: 12px; display: block; }
.story-text { font-size: 0.87rem; color: var(--text-light); }

/* ===== BLOG ===== */
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); height: 100%; box-shadow: var(--shadow-sm); }
.blog-card:hover { border-color: var(--border-2); transform: translateY(-6px); box-shadow: var(--shadow-green); }
.blog-img-wrap { overflow: hidden; position: relative; }
.blog-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-cat { position: absolute; top: 16px; left: 16px; background: var(--gradient); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--primary); }
.blog-title   { font-size: 1.15rem; margin-bottom: 10px; color: var(--heading); transition: var(--transition); }
.blog-card:hover .blog-title { color: var(--primary); }
.blog-excerpt  { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.blog-read-more { font-family: 'Rajdhani', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.blog-read-more:hover { gap: 12px; color: var(--primary-dark); }

/* ===== REGISTRATION ===== */
.registration-section { background: var(--bg-2); padding: 100px 0; }
.reg-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 50px 40px; box-shadow: var(--shadow-md); }
.reg-step { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.reg-step-num { width: 40px; height: 40px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', cursive; font-size: 1.2rem; color: #fff; flex-shrink: 0; }
.reg-step h5  { margin: 0; font-size: 1.1rem; color: var(--heading); }
.reg-step span { font-size: 0.82rem; color: var(--text-muted); }

/* ===== ACCORDION ===== */
.accordion-button { background: var(--bg) !important; color: var(--heading) !important; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: var(--primary) !important; background: var(--bg-2) !important; }

/* ===== ANIMATIONS ===== */
.fade-up   { opacity:0; transform:translateY(40px);  transition:opacity .7s ease,transform .7s ease; }
.fade-left { opacity:0; transform:translateX(-40px); transition:opacity .7s ease,transform .7s ease; }
.fade-right{ opacity:0; transform:translateX(40px);  transition:opacity .7s ease,transform .7s ease; }
.scale-in  { opacity:0; transform:scale(0.85);       transition:opacity .6s ease,transform .6s ease; }
.fade-up.visible,.fade-left.visible,.fade-right.visible,.scale-in.visible { opacity:1; transform:none; }
.delay-1{transition-delay:.1s!important} .delay-2{transition-delay:.2s!important}
.delay-3{transition-delay:.3s!important} .delay-4{transition-delay:.4s!important}
.delay-5{transition-delay:.5s!important} .delay-6{transition-delay:.6s!important}

/* ===== BACK TO TOP ===== */
#backToTop {
    position:fixed; bottom:30px; right:30px;
    width:46px; height:46px;
    background:var(--gradient); border:none; border-radius:12px;
    color:#fff; font-size:1rem; cursor:pointer; z-index:999;
    opacity:0; transform:translateY(20px);
    transition:var(--transition); box-shadow:var(--shadow-green);
}
#backToTop.show { opacity:1; transform:translateY(0); }
#backToTop:hover{ transform:translateY(-4px); }

/* ===== LIGHTBOX ===== */
.lightbox-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.92); z-index:9999; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .3s ease; }
.lightbox-overlay.active { opacity:1; pointer-events:all; }
.lightbox-img { max-width:90vw; max-height:85vh; border-radius:var(--radius); }
.lightbox-close { position:absolute; top:20px; right:20px; background:var(--primary); border:none; color:#fff; width:44px; height:44px; border-radius:50%; font-size:1.2rem; cursor:pointer; display:flex; align-items:center; justify-content:center; }

/* ===== RESPONSIVE ===== */
@media (max-width:991px){
    .gallery-grid{grid-template-columns:repeat(2,1fr);grid-template-rows:auto}
    .gallery-item.large{grid-column:span 2}
    .gallery-masonry{columns:2}
    .hero-img{max-height:60vh}
    .hero-stats{gap:24px}
    .intro-img-badge{right:0}
}
@media (max-width:767px){
    .section-pad{padding:70px 0}
    .gallery-masonry{columns:2}
    .hero-title{font-size:3.5rem}
    .hero-stats{gap:20px}
    .reg-card{padding:30px 20px}
    .footer-bottom{flex-direction:column;text-align:center}
}
@media (max-width:575px){
    .hero-buttons{flex-direction:column}
    .gallery-masonry{columns:1}
    .gallery-grid{grid-template-columns:1fr}
    .gallery-item.large{grid-column:span 1}
    .hero-stats{flex-wrap:wrap}
    .stat-card::after{display:none}
}
