/* =====================================================
   TARGET FITNESS GYM - ATHLETIC POWER TYPOGRAPHY PALETTE
   Display: Teko (Condensed High-Impact Athletic Display)
   Accents: Montserrat (Bold Premium Geometric Sans)
   Body: Inter (Ultra-Clean Modern Sans)
   ===================================================== */

:root {
    --black: #080808;
    --dark: #0f0f0f;
    --dark2: #141414;
    --dark3: #1a1a1a;
    --dark4: #242424;
    --red: #CC0000;
    --red-dark: #990000;
    --red-glow: rgba(204, 0, 0, 0.35);
    --white: #FFFFFF;
    --muted: #a0a0a0;
    --dim: #505050;
    --border: rgba(255, 255, 255, 0.08);
    --border-r: rgba(204, 0, 0, 0.40);
    --font-disp: 'Teko', sans-serif;
    --font-sub: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background-color: var(--black); color: var(--white); overflow-x: hidden; width: 100%; max-width: 100vw; }
body { font-family: var(--font-body); font-weight: 400; line-height: 1.6; color: var(--white); background-color: var(--black); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; width: 100%; max-width: 100vw; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Typography Helpers --- */
.eyebrow { font-family: var(--font-sub); font-weight: 800; font-size: 12px; letter-spacing: 3px; color: var(--red); text-transform: uppercase; margin-bottom: 8px; }
.highlight { color: var(--red); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; font-family: var(--font-sub); font-weight: 900;
    font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 6px; cursor: pointer; transition: all 0.3s var(--ease);
    border: none; text-decoration: none; white-space: nowrap; max-width: 100%; box-sizing: border-box;
}
.btn-solid {
    background: var(--red); color: var(--white);
    box-shadow: 0 4px 20px var(--red-glow);
}
.btn-solid:hover {
    background: #e60000; transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(204,0,0,0.55);
}
.btn-outline {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
    border-color: var(--red); color: var(--red);
    background: rgba(204,0,0,0.08); transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 14px; letter-spacing: 2px; }
.btn-full { width: 100%; }

/* --- Animations / Scroll Reveal --- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rvl { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rvr { opacity: 0; transform: translateX(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.on, .rvl.on, .rvr.on { opacity: 1; transform: translate(0, 0); }

/* --- Header / Nav --- */
.main-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 76px; background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); transition: background 0.3s;
}
.main-header.scrolled { background: rgba(8, 8, 8, 0.95); border-bottom-color: rgba(204,0,0,0.25); }
.header-container { max-width: 1380px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo-wrapper { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 46px; width: auto; border-radius: 4px; }
.logo-text .line-1 { font-family: var(--font-disp); font-weight: 700; font-size: 26px; letter-spacing: 1px; line-height: 0.9; color: var(--white); }
.logo-text .line-2 { font-family: var(--font-sub); font-size: 8px; letter-spacing: 2px; color: var(--red); font-weight: 800; margin-top: 2px; }

.nav-center { display: flex; gap: 32px; }
.nav-link { font-family: var(--font-sub); font-weight: 800; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); transition: color 0.3s; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after { content: ''; position: absolute; bottom: -8px; left: 0; right: 0; height: 2px; background: var(--red); border-radius: 2px; }

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Hamburger Menu Icon */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
    background: rgba(8, 8, 8, 0.98); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 40px; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-bottom: 40px; }
.mob-link { font-family: var(--font-disp); font-weight: 700; font-size: 42px; letter-spacing: 1px; color: var(--muted); transition: color 0.3s; text-transform: uppercase; }
.mob-link:hover { color: var(--red); }
.mobile-nav-buttons { display: flex; gap: 16px; }

/* --- Hero Section --- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 24px 80px; overflow: hidden; background: var(--black);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.38; filter: grayscale(30%); }
.hero-base-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(8,8,8,0.95) 30%, rgba(8,8,8,0.6) 70%, rgba(8,8,8,0.3)); }
.hero-radial-1 { position: absolute; top: -10%; left: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, var(--red-glow), transparent 70%); z-index: 1; pointer-events: none; }
.hero-radial-2 { position: absolute; bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(204,0,0,0.15), transparent 70%); z-index: 1; pointer-events: none; }
.hero-diagonal-slash { position: absolute; top: -20%; right: 15%; width: 300px; height: 140%; background: rgba(204,0,0,0.03); transform: rotate(15deg); z-index: 1; pointer-events: none; }
.hero-slash-line { position: absolute; top: -20%; right: 25%; width: 2px; height: 140%; background: linear-gradient(to bottom, transparent, rgba(204,0,0,0.2), transparent); transform: rotate(15deg); z-index: 1; pointer-events: none; }
.hero-grid-overlay { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 32px 32px; z-index: 1; pointer-events: none; }

.hero-content { position: relative; z-index: 2; max-width: 780px; margin-left: max(0px, calc((100vw - 1380px) / 2)); }

.animated-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(204,0,0,0.12); border: 1px solid rgba(204,0,0,0.3);
    padding: 8px 18px; border-radius: 100px; font-family: var(--font-sub);
    font-size: 12px; font-weight: 800; letter-spacing: 1.5px; color: var(--white);
    margin-bottom: 24px; text-transform: uppercase; white-space: nowrap;
    transition: all 0.4s var(--ease); max-width: 100%; box-sizing: border-box;
}
.animated-pill.pill-open {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}
.animated-pill.pill-closed {
    background: rgba(255, 77, 77, 0.12);
    border: 1px solid rgba(255, 77, 77, 0.4);
    color: #ff4d4d;
    box-shadow: 0 4px 20px rgba(255, 77, 77, 0.15);
}
.blinking-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: blink 1.5s infinite; flex-shrink: 0; }
.blinking-dot.dot-open { background: #25D366; box-shadow: 0 0 10px #25D366; }
.blinking-dot.dot-closed { background: #ff4d4d; box-shadow: 0 0 10px #ff4d4d; }
@keyframes blink { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(0.8); } }

.today-highlight { color: var(--white) !important; font-weight: 800 !important; }
.today-highlight-time { color: var(--red) !important; font-weight: 800 !important; }
.status-tag {
    font-size: 10px; font-family: var(--font-sub); font-weight: 800;
    padding: 2px 6px; border-radius: 4px; margin-left: 6px; text-transform: uppercase;
}
.status-tag.tag-open { background: rgba(37, 211, 102, 0.18); color: #25D366; border: 1px solid rgba(37, 211, 102, 0.4); }
.status-tag.tag-closed { background: rgba(255, 77, 77, 0.18); color: #ff4d4d; border: 1px solid rgba(255, 77, 77, 0.4); }

.hero-giant-text {
    font-family: var(--font-disp); font-weight: 700;
    font-size: clamp(72px, 12vw, 136px); line-height: 0.85; letter-spacing: 1px;
    margin-bottom: 24px; text-transform: uppercase;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.hero-giant-text span { display: block; }
.word-1 { color: var(--white); }
.word-2 { color: var(--red); }
.word-3 { color: var(--white); -webkit-text-stroke: 1px var(--white); }

.hero-sub { font-size: 18px; color: var(--muted); max-width: 580px; margin-bottom: 36px; line-height: 1.7; font-weight: 500; }
.hero-btns { display: flex; gap: 20px; }

/* Hero Stats Sidebar */
.hero-stats {
    position: absolute; right: max(24px, calc((100vw - 1380px) / 2)); bottom: 80px; z-index: 2;
    display: flex; flex-direction: column; gap: 20px;
}
.stat-chip {
    background: rgba(20,20,20,0.8); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-left: 3px solid var(--red);
    padding: 16px 24px; border-radius: 8px; min-width: 160px;
}
.stat-chip .stat-num { font-family: var(--font-disp); font-weight: 700; font-size: 40px; line-height: 0.9; color: var(--white); }
.stat-chip .stat-lbl { font-family: var(--font-sub); font-weight: 700; font-size: 11px; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; margin-top: 2px; }

/* Scroll Indicator (desktop) */
.scroll-indicator {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.6;
}
.scroll-txt { font-family: var(--font-sub); font-weight: 700; font-size: 10px; letter-spacing: 3px; color: var(--muted); }
.scroll-bar { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--red), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Mobile-only scroll down arrow */
.mob-scroll-hint { display: none; }
@media (max-width: 680px) {
    .mob-scroll-hint {
        display: flex;
        justify-content: center;
        margin-top: 32px;
    }
    .mob-scroll-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 50%;
        color: rgba(255,255,255,0.5);
        animation: bounceDown 2s ease-in-out infinite;
        transition: color 0.3s, border-color 0.3s;
    }
    .mob-scroll-arrow svg { width: 22px; height: 22px; }
    .mob-scroll-arrow:hover { color: var(--red); border-color: rgba(204,0,0,0.5); }
    @keyframes bounceDown {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(8px); }
    }
}

/* --- Features Strip --- */
.features-strip {
    background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: repeat(4, 1fr); max-width: 100%;
}
.feature-item {
    padding: 36px 24px; border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; text-align: center;
    transition: background 0.3s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(204,0,0,0.04); }
.feature-icon { width: 48px; height: 48px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.feature-img { width: 40px; height: 40px; object-fit: contain; }
.feature-lbl { font-family: var(--font-sub); font-weight: 800; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.feature-sub { font-size: 13px; color: var(--muted); }

/* --- Stats Bar --- */
.stats-bar {
    background: var(--black); padding: 48px 0; border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1380px; margin: 0 auto;
}
.stat-box { text-align: center; padding: 16px; border-right: 1px solid var(--border); }
.stat-box:last-child { border-right: none; }
.stat-val { font-family: var(--font-disp); font-weight: 700; font-size: 68px; color: var(--red); line-height: 0.9; }
.stat-box-lbl { font-family: var(--font-sub); font-weight: 700; font-size: 12px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-top: 4px; }

/* --- Why Section --- */
.why-section { background: var(--dark); border-bottom: 1px solid var(--border); }
.why-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; max-width: 1380px; margin: 0 auto; padding: 72px 24px; align-items: start; }
.why-left h2 { font-size: clamp(40px, 6vw, 68px); line-height: 0.92; margin-bottom: 20px; }
.why-sub { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 32px; max-width: 380px; }
.why-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.why-item:last-child { border-bottom: none; }
.why-num { font-family: var(--font-disp); font-weight: 700; font-size: 52px; color: var(--red); opacity: 0.4; line-height: 0.8; flex-shrink: 0; width: 48px; }
.why-title { font-family: var(--font-sub); font-weight: 800; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.why-desc { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* --- Global Section Padding --- */
.gallery-section, .contact-section { padding: 72px 0; max-width: 1380px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-header h2 { font-family: var(--font-disp); font-weight: 700; text-transform: uppercase; font-size: clamp(44px, 7vw, 84px); margin-bottom: 12px; line-height: 0.9; letter-spacing: 1px; }
.section-sub { max-width: 600px; margin: 0 auto; color: var(--muted); font-size: 16px; }

/* --- Urgency Banner --- */
.urgency-banner {
    background: linear-gradient(135deg, rgba(204,0,0,0.2), rgba(204,0,0,0.05));
    border: 1px solid rgba(204,0,0,0.4);
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-sub);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 auto 40px;
    max-width: 840px;
    box-shadow: 0 8px 30px rgba(204,0,0,0.15);
}
.urgency-banner .flame { margin-right: 6px; }
.urgency-banner strong { color: var(--red); font-weight: 900; }

/* --- Membership Packages Section --- */
.packages-section {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.packages-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

.packages-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Arrow buttons hidden on Desktop */
.carousel-nav-btn {
    display: none;
}

/* 5 Column Grid on Desktop - All 5 Cards Completely Visible Side-by-Side! */
.cards-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 16px 0;
    width: 100%;
    overflow: visible;
}

.plan-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(175deg, rgba(26,26,26,0.95) 0%, rgba(18,18,18,0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 16px;
    position: relative;
    transition: all 0.4s var(--ease);
    min-width: 0;
    box-sizing: border-box;
}

.plan-card:hover {
    border-color: var(--border-r);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(204,0,0,0.18);
}

.plan-card.featured {
    border: 1.5px solid rgba(204,0,0,0.85);
    background: linear-gradient(175deg, rgba(204,0,0,0.14) 0%, rgba(26,26,26,0.95) 50%, rgba(18,18,18,0.98) 100%);
    box-shadow: 0 12px 40px rgba(204,0,0,0.22);
}

.plan-card.featured:hover {
    border-color: var(--red);
    box-shadow: 0 24px 60px rgba(204,0,0,0.38);
}

.featured-tag {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--red); color: var(--white); font-family: var(--font-sub); font-weight: 800;
    font-size: 10px; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 100px; white-space: nowrap; text-transform: uppercase;
    box-shadow: 0 4px 15px var(--red-glow);
}

.buddy-tag {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--white); color: var(--black); font-family: var(--font-sub); font-weight: 800;
    font-size: 10px; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 100px; white-space: nowrap; text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.plan-head-wrap { margin-bottom: 12px; }
.plan-price-wrap { margin-bottom: 4px; }

.plan-sub-badge { font-family: var(--font-sub); font-weight: 800; font-size: 11px; letter-spacing: 1.5px; color: var(--red); margin-bottom: 6px; text-transform: uppercase; }
.plan-type { font-family: var(--font-disp); font-weight: 700; font-size: 24px; letter-spacing: 0.5px; line-height: 0.95; margin-bottom: 4px; text-transform: uppercase; color: var(--white); }
.plan-desc { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.plan-price { font-family: var(--font-disp); font-weight: 700; font-size: 48px; color: var(--white); line-height: 0.9; }
.plan-price sup { font-family: var(--font-body); font-size: 13px; font-weight: 500; font-style: normal; color: var(--muted); vertical-align: top; margin-top: 6px; display: inline-block; }
.plan-per { font-size: 12px; color: var(--muted); margin-top: 4px; }
.plan-monthly-eq { font-size: 12px; font-weight: 700; color: var(--red); margin-top: 4px; }
.savings-badge {
    display: inline-block; background: rgba(204,0,0,0.15); border: 1px solid rgba(204,0,0,0.35);
    color: var(--red); font-family: var(--font-sub); font-weight: 800; font-size: 10px; letter-spacing: 1px;
    padding: 3px 8px; border-radius: 100px; margin-top: 8px; text-transform: uppercase;
}
.plan-divider { height: 1px; background: var(--border); margin: 16px 0; }
.plan-features { margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 12px; color: var(--muted); display: flex; gap: 6px; line-height: 1.35; align-items: flex-start; }
.plan-features .check { color: var(--red); font-weight: bold; flex-shrink: 0; }

.card-btn-group { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }

/* Per Plan WhatsApp Button */
.btn-wa-card {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    background: rgba(37, 211, 102, 0.08); border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366; border-radius: 6px; padding: 10px 10px;
    font-family: var(--font-sub); font-weight: 800; font-size: 10px;
    letter-spacing: 1px; text-decoration: none; transition: all 0.3s var(--ease); text-transform: uppercase;
}
.btn-wa-card:hover {
    background: #25D366; color: #000; border-color: #25D366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.packages-cta-block { text-align: center; margin-top: 60px; padding-top: 50px; border-top: 1px solid var(--border); }
.cta-block-title { font-family: var(--font-disp); font-weight: 700; font-size: 48px; line-height: 0.9; margin-bottom: 12px; text-transform: uppercase; }
.cta-block-sub { color: var(--muted); margin-bottom: 30px; }
.cta-block-btns { display: flex; justify-content: center; gap: 16px; }

/* --- Gallery Section --- */
.gallery-section { background: var(--dark2); max-width: 100%; }
.gallery-section .section-header { margin-bottom: 60px; }
.gallery-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 20px;
    max-width: 1380px; margin: 0 auto; padding: 0 24px;
}
.gal-item { position: relative; border-radius: 10px; overflow: hidden; }
.gal-large { grid-row: 1 / 3; }
.gal-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.gal-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%); opacity: 0; transition: opacity 0.4s;
}
.gal-lbl {
    position: absolute; bottom: 24px; left: 24px; font-family: var(--font-sub); font-weight: 800;
    font-size: 16px; letter-spacing: 2px; color: var(--red); opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease); text-transform: uppercase;
}
.gal-item:hover .gal-bg { transform: scale(1.06); }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-item:hover .gal-lbl { opacity: 1; transform: translateY(0); }

/* --- Testimonials Section --- */
.testimonials-section { background: var(--dark2); padding: 72px 0; }
.testimonials-section .section-header { max-width: 1380px; margin: 0 auto 44px; padding: 0 24px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1380px; margin: 0 auto; padding: 0 24px; }
.testi-card { background: var(--dark3); padding: 40px 32px; border-radius: 16px; border: 1px solid var(--border); transition: all 0.4s var(--ease); }
.testi-card:hover { transform: translateY(-6px); border-color: rgba(204,0,0,0.3); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.testi-card.featured { border-color: rgba(204,0,0,0.4); background: linear-gradient(160deg, rgba(204,0,0,0.05), var(--dark3) 60%); }
.testi-stars { color: var(--red); font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 16px; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-author { font-family: var(--font-sub); font-weight: 800; font-size: 14px; letter-spacing: 2px; color: var(--white); text-transform: uppercase; }

/* --- BMI Section --- */
.bmi-section { padding: 72px 0; background: var(--black); width: 100%; overflow: hidden; }
.bmi-container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1380px; margin: 0 auto; padding: 0 24px; background: var(--dark3); border-radius: 20px; border: 1px solid var(--border); overflow: hidden; box-sizing: border-box; }
.bmi-left { padding: 60px; background: linear-gradient(135deg, rgba(204,0,0,0.05), transparent); box-sizing: border-box; }
.bmi-left h2 { font-family: var(--font-disp); font-weight: 700; font-size: clamp(38px, 5vw, 64px); margin-bottom: 16px; line-height: 0.9; text-transform: uppercase; }
.bmi-sub { color: var(--muted); margin-bottom: 32px; font-size: 15px; }
.bmi-chart { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.bmi-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--muted); gap: 12px; }
.bmi-row:last-child { border-bottom: none; padding-bottom: 0; }
.bmi-label { font-weight: 600; color: var(--white); flex-shrink: 0; }
.bmi-right { padding: 60px; display: flex; flex-direction: column; justify-content: center; box-sizing: border-box; }
.bmi-form { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; width: 100%; }
.bmi-result-box { background: var(--dark2); border: 1px solid var(--border-r); border-radius: 12px; padding: 24px 18px; text-align: center; width: 100%; box-sizing: border-box; overflow: hidden; }
.bmi-score { font-family: var(--font-disp); font-weight: 700; font-size: 42px; line-height: 0.9; margin-bottom: 8px; word-break: break-word; }
.bmi-status { font-family: var(--font-sub); font-weight: 800; font-size: 15px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }

/* --- CTA Band --- */
.cta-band {
    position: relative; background: var(--dark3); border-top: 1px solid rgba(204,0,0,0.12); border-bottom: 1px solid rgba(204,0,0,0.12);
    padding: 56px 24px; overflow: hidden; display: flex; align-items: center; justify-content: center; width: 100%;
}
.ghost-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--font-disp); font-weight: 700; font-size: 180px; color: rgba(204,0,0,0.04);
    white-space: nowrap; pointer-events: none; z-index: 1; text-transform: uppercase;
}
.cta-band-content {
    max-width: 1380px; width: 100%; display: flex; justify-content: space-between; align-items: center; z-index: 2; position: relative;
}
.cta-band-title { font-family: var(--font-disp); font-weight: 700; font-size: clamp(36px, 5vw, 58px); line-height: 0.9; margin: 0; text-transform: uppercase; }

/* --- Contact Section --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.contact-sub { color: var(--muted); margin-bottom: 40px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-full { width: 100%; }
input, select, textarea {
    width: 100%; background: var(--dark3); border: 1px solid var(--border); border-radius: 6px;
    padding: 14px 18px; color: var(--white); font-size: 15px; font-family: var(--font-body); transition: border-color 0.3s;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: rgba(204,0,0,0.50); }
input::placeholder, textarea::placeholder { color: var(--dim); }
select option { background: var(--dark3); color: var(--white); }

.info-item { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: none; }
.info-icon {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px; background: rgba(204,0,0,0.10);
    border: 1px solid rgba(204,0,0,0.20); display: flex; justify-content: center; align-items: center; font-size: 20px;
}
.info-lbl { font-family: var(--font-sub); font-weight: 800; font-size: 11px; letter-spacing: 2px; color: var(--red); margin-bottom: 6px; text-transform: uppercase; }
.info-val { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 4px; display: block; }
.info-link { transition: color 0.3s var(--ease); text-decoration: underline; text-decoration-color: rgba(204,0,0,0.4); }
.info-link:hover { color: var(--red); text-decoration-color: var(--red); }
.foot-link-item { transition: color 0.3s var(--ease); text-decoration: none; }
.foot-link-item:hover { color: var(--red); }
.info-sub { font-size: 14px; color: var(--muted); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; font-size: 15px; color: var(--muted); margin-top: 8px; }

/* Embedded Google Map */
.map-container {
    width: 100%;
    margin-top: 48px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    line-height: 0;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(70%) invert(85%) contrast(115%);
    transition: filter 0.6s var(--ease);
}
.map-container:hover iframe {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

/* --- Footer --- */
.main-footer { background: #030303; padding-top: 80px; border-top: 1px solid rgba(204,0,0,0.15); width: 100%; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1380px; margin: 0 auto; padding: 0 24px 60px; }
.foot-desc { color: var(--muted); font-size: 14px; margin: 24px 0; line-height: 1.8; max-width: 380px; }
.social-row { display: flex; gap: 12px; }
.soc-btn {
    width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border);
    display: flex; justify-content: center; align-items: center; transition: all 0.3s;
    color: var(--muted);
}
.soc-btn svg { width: 18px; height: 18px; fill: currentColor; }
.soc-btn:hover { border-color: var(--red); background: rgba(204,0,0,0.10); color: var(--white); }

.foot-hdr { font-family: var(--font-sub); font-weight: 800; font-size: 13px; letter-spacing: 2px; color: var(--white); margin-bottom: 24px; text-transform: uppercase; }
.foot-link { display: block; color: var(--muted); font-size: 14px; margin-bottom: 12px; transition: all 0.3s; }
a.foot-link:hover { color: var(--red); padding-left: 4px; }
.foot-contact-item { font-size: 14px; color: var(--muted); margin-bottom: 16px; display: flex; gap: 12px; line-height: 1.6; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; max-width: 1380px; margin: 0 auto; font-size: 13px; color: var(--muted); }
.foot-legal a { margin: 0 10px; transition: color 0.3s; }
.foot-legal a:hover { color: var(--red); }
.seynex-credit-link {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(204, 0, 0, 0.08);
    border: 1px solid rgba(204, 0, 0, 0.25);
    display: inline-block;
}
.seynex-credit-link:hover {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 15px var(--red-glow);
}

/* --- Floating WhatsApp --- */
.float-wa {
    position: fixed; bottom: 28px; right: 28px; width: 52px; height: 52px;
    background: #25D366; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35); z-index: 998; transition: all 0.3s var(--ease);
}
.float-wa:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Laptop / Desktop medium (≤ 1280px) */
@media (max-width: 1280px) {
    .cards-container { gap: 12px; }
    .plan-card { padding: 24px 12px; }
    .plan-type { font-size: 21px; }
    .plan-price { font-size: 42px; }
}

/* Tablet landscape (≤ 1100px): Switch to Carousel with < and > buttons */
@media (max-width: 1100px) {
    .nav-center, .nav-action:first-child { display: none; }
    .hamburger { display: flex; }
    .hero-stats { display: none; }

    .packages-carousel-wrapper {
        padding: 0 54px; /* Dedicated side gutters for left & right arrows */
    }
    
    .carousel-nav-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(12px);
        border: 1px solid var(--border-r);
        color: var(--white);
        font-family: var(--font-disp);
        font-weight: 700;
        font-size: 28px;
        line-height: 1;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s var(--ease);
        z-index: 10;
        box-shadow: 0 6px 20px rgba(0,0,0,0.8);
        outline: none;
        user-select: none;
    }
    .carousel-nav-btn:hover {
        background: var(--red);
        color: var(--white);
        border-color: var(--red);
        box-shadow: 0 0 20px var(--red-glow);
    }
    .carousel-nav-btn.prev-btn { left: 0; }
    .carousel-nav-btn.next-btn { right: 0; }

    .cards-container {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 16px 0;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .plan-card {
        flex: 0 0 280px;
        min-width: 260px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        padding: 28px 20px;
    }
}

/* Tablet portrait (≤ 900px) */
@media (max-width: 900px) {
    .header-actions .btn { display: none; }
    .features-strip { grid-template-columns: 1fr 1fr; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-box { border-bottom: 1px solid var(--border); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr; gap: 20px; }
    .bmi-container { grid-template-columns: 1fr; }
    .bmi-left, .bmi-right { padding: 40px 32px; }
    .why-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile (≤ 680px) */
@media (max-width: 680px) {

    /* -- Prevent Page Horizontal Overflow -- */
    .btn { white-space: normal; text-align: center; max-width: 100%; }

    /* -- Header -- */
    .main-header { height: 64px; }
    .header-container { padding: 0 16px; }
    .logo-img { height: 40px; }
    .logo-text .line-1 { font-size: 22px; }
    .hamburger { width: 26px; gap: 6px; }
    .hamburger span { width: 26px; height: 2.5px; }

    /* -- Mobile Menu -- */
    .mobile-menu { padding: 32px 24px; justify-content: space-between; padding-top: 100px; padding-bottom: 40px; }
    .mobile-nav-links { gap: 8px; align-items: flex-start; margin-bottom: 40px; }
    .mob-link {
        font-size: clamp(32px, 10vw, 48px);
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        display: flex; align-items: center; justify-content: space-between;
    }
    .mob-link::after { content: '→'; font-size: 20px; color: var(--red); }
    .mobile-nav-buttons { flex-direction: column; gap: 12px; max-width: 100%; }
    .mobile-nav-buttons .btn { padding: 16px; font-size: 14px; }

    /* -- Hero Mobile -- */
    .hero { padding: 90px 20px 80px; min-height: 100svh; align-items: center; }
    .hero-bg { background-position: 70% center; }
    .hero-content { max-width: 100%; margin-top: 0; }
    .animated-pill {
        font-size: 11px;
        padding: 6px 14px;
        letter-spacing: 1px;
        white-space: nowrap;
        max-width: calc(100vw - 40px);
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-flex;
    }
    .hero-giant-text { font-size: clamp(54px, 16vw, 76px) !important; line-height: 0.85; margin-bottom: 20px; }
    .hero-sub { font-size: 14px; line-height: 1.65; margin-bottom: 28px; color: rgba(255,255,255,0.75); }
    .hero-btns { flex-direction: column; width: 100%; gap: 12px; }
    .hero-btns .btn { width: 100%; padding: 17px; font-size: 14px; }
    .hero-btns .btn-outline { display: flex; border-color: rgba(255,255,255,0.25); }
    .scroll-indicator { display: none; }

    /* -- Features Strip -- */
    .features-strip { grid-template-columns: 1fr 1fr; }
    .feature-item { padding: 24px 16px; }
    .feature-lbl { font-size: 12px; }
    .feature-sub { font-size: 11px; }

    /* -- Stats Bar -- */
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-box { padding: 32px 16px; }
    .stat-val { font-size: clamp(42px, 10vw, 56px); }
    .stat-box-lbl { font-size: 10px; }

    /* -- Why Section -- */
    .why-inner { padding: 48px 20px; gap: 36px; }
    .why-left h2 { font-size: clamp(36px, 10vw, 52px); }
    .why-sub { font-size: 14px; }
    .why-num { font-size: 40px; width: 40px; }
    .why-item { gap: 16px; padding: 20px 0; }
    .why-title { font-size: 13px; }

    /* -- Packages Section Mobile -- */
    .packages-section { padding: 48px 0; }
    .packages-inner { padding: 0 12px; }
    .packages-carousel-wrapper { padding: 0 44px; }
    .carousel-nav-btn { width: 38px; height: 38px; font-size: 24px; }
    .carousel-nav-btn.prev-btn { left: 0; }
    .carousel-nav-btn.next-btn { right: 0; }
    .plan-card { flex: 0 0 calc(85vw - 20px); padding: 24px 16px; }
    .mob-hide { display: none !important; }
    .plan-price { font-size: 48px; }
    .plan-type { font-size: 22px; }
    .packages-cta-block { margin-top: 36px; padding-top: 32px; padding-bottom: 28px; padding-left: 20px; padding-right: 20px; }
    .cta-block-title { font-size: clamp(32px, 9vw, 42px); }
    .cta-block-btns { flex-direction: column; gap: 12px; }
    .cta-block-btns .btn { width: 100%; padding: 16px; }

    /* -- Gallery -- */
    .gallery-section { padding: 48px 0; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px; padding: 0 20px; }
    .gal-large { grid-row: auto; }
    .gal-item { height: 200px; border-radius: 10px; }

    /* -- Testimonials -- */
    .testimonials-section { padding: 48px 0; }
    .testimonials-section .section-header { padding: 0 20px; margin-bottom: 32px; }
    .testi-grid { padding: 0 20px; gap: 12px; }
    .testi-card { padding: 28px 20px; }
    .testi-text { font-size: 14px; }

    /* -- BMI Section Mobile Fix -- */
    .bmi-section { padding: 40px 16px; width: 100%; overflow: hidden; }
    .bmi-container { border-radius: 16px; width: 100%; max-width: 100%; margin: 0; padding: 0; }
    .bmi-left, .bmi-right { padding: 24px 16px; width: 100%; box-sizing: border-box; }
    .bmi-left h2 { font-size: clamp(32px, 10vw, 44px); }
    .bmi-sub { font-size: 13px; margin-bottom: 20px; }
    .bmi-chart { gap: 8px; width: 100%; }
    .bmi-row { font-size: 13px; padding-bottom: 8px; gap: 8px; width: 100%; }
    .bmi-result-box { padding: 18px 12px; width: 100%; box-sizing: border-box; }
    .bmi-score { font-size: 34px; }
    #bmiRegBtn {
        font-size: 12px !important;
        padding: 14px 10px !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* -- CTA Band -- */
    .cta-band { padding: 48px 20px; }
    .cta-band-content { flex-direction: column; gap: 24px; text-align: center; }
    .cta-band-title { font-size: clamp(32px, 9vw, 46px); }
    .ghost-text { font-size: clamp(48px, 14vw, 80px); }

    /* -- Contact -- */
    .contact-section { padding: 48px 0; }
    .contact-grid { padding: 0 20px; }
    .contact-sub { font-size: 14px; }
    .info-item { padding: 20px 0; }
    .info-icon { width: 42px; height: 42px; font-size: 18px; }
    .info-val { font-size: 16px; }
    .hours-grid { grid-template-columns: 1fr 1fr; font-size: 13px; }
    .map-container iframe { height: 280px; }

    /* -- Section Headers (global) -- */
    .section-header { padding: 0 20px; }
    .section-header h2 { font-size: clamp(36px, 11vw, 54px); }
    .section-sub { font-size: 14px; }
    .eyebrow { font-size: 10px; }

    /* -- Forms -- */
    .form-row { grid-template-columns: 1fr; gap: 14px; }
    input, select, textarea { padding: 15px 16px; font-size: 16px; }
    textarea { min-height: 100px; }

    /* -- Footer -- */
    .main-footer { padding-top: 48px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 20px 40px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 20px; font-size: 12px; }
    .foot-copy { text-align: center; }
    .foot-legal { text-align: center; }
    .foot-desc { font-size: 13px; margin: 16px 0; max-width: 100%; }

    /* -- Floating WhatsApp Positioned Above Sticky Bar -- */
    .float-wa { bottom: 84px; right: 16px; width: 46px; height: 46px; }

    /* -- Contact form spacing -- */
    .contact-section { padding: 48px 0 80px; }
    .contact-grid h2 { font-size: clamp(36px, 10vw, 52px); }

    /* -- Urgency banner -- */
    .urgency-banner { font-size: 13px; padding: 14px 16px; }
}

/* Ultra small (≤ 380px) */
@media (max-width: 380px) {
    .hero-giant-text { font-size: clamp(44px, 14vw, 60px) !important; }
    .animated-pill { font-size: 10px; padding: 5px 12px; }
    .feature-item { padding: 20px 14px; }
    .feature-lbl { font-size: 11px; }
    .bmi-left, .bmi-right { padding: 20px 12px; }
    .bmi-row { font-size: 12px; }
    .packages-carousel-wrapper { padding: 0 34px; }
    .carousel-nav-btn { width: 32px; height: 32px; font-size: 20px; }
    .plan-card { flex: 0 0 calc(90vw - 20px); }
}

/* =====================================================
   STICKY BOTTOM CTA BAR - Mobile Only
   ===================================================== */
.sticky-mobile-bar { display: none; }
@media (max-width: 680px) {
    .sticky-mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 997;
        background: rgba(8, 8, 8, 0.96);
        backdrop-filter: blur(16px);
        border-top: 1px solid rgba(204, 0, 0, 0.20);
        padding: 8px 16px 8px;
        gap: 10px;
        align-items: center;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }
    .sticky-mobile-bar .sbar-call {
        flex: 1;
        display: flex; align-items: center; justify-content: center; gap: 8px;
        background: var(--dark3);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 6px;
        padding: 8px 12px;
        font-family: var(--font-sub); font-weight: 800; font-size: 11px;
        letter-spacing: 1px; color: var(--white); text-decoration: none;
        transition: all 0.25s;
    }
    .sticky-mobile-bar .sbar-call:active { background: var(--dark4); }
    .sticky-mobile-bar .sbar-join {
        flex: 2;
        display: flex; align-items: center; justify-content: center;
        background: var(--red);
        border-radius: 6px;
        padding: 8px 12px;
        font-family: var(--font-sub); font-weight: 800; font-size: 11px;
        letter-spacing: 1.5px; color: var(--white); text-decoration: none;
        transition: all 0.25s;
    }
    .sticky-mobile-bar .sbar-join:active { background: var(--red-dark); transform: scale(0.98); }
    body { padding-bottom: 72px; }
}
