/* ════════════════════════════════════════
   PLANET 1 FITNESS STUDIO — STYLES
   Your Fitness. Your Planet. | Chennai
════════════════════════════════════════ */

/*
   TYPE SCALE
   hero / .sub desc     : 1rem   | lh 1.85 / 1.8
   nav links            : 0.82rem
   card h4 (medium)     : 0.9rem  | fw 700
   card body / desc     : 0.82rem | lh 1.7 | rgba(255,255,255,0.7)
   quote text           : 0.875rem| lh 1.8
   form inputs          : 0.875rem
   footer links / text  : 0.82rem
   meta / secondary     : 0.72rem
   form labels          : 0.72rem | uppercase | ls 1px
   tiny badge / chip    : 0.68rem
*/

:root {
  --black:   #080808;
  --black2:  #111111;
  --black3:  #1a1a1a;
  --black4:  #242424;
  --red:     #D72638;
  --red2:    #FF2D3A;
  --red-dim: rgba(215,38,56,0.15);
  --red-glow:rgba(215,38,56,0.35);
  --white:   #ffffff;
  --white80: rgba(255,255,255,0.8);
  --white50: rgba(255,255,255,0.5);
  --white20: rgba(255,255,255,0.2);
  --white08: rgba(255,255,255,0.08);
  --white04: rgba(255,255,255,0.04);
  --grey:    #888888;
  --grey2:   #555555;
  --card-bg:    rgba(255,255,255,0.04);
  --card-border:rgba(255,255,255,0.08);
  --r4:  4px;  --r8:  8px;  --r12: 12px;
  --r16: 16px; --r24: 24px; --r999:999px;
  --shadow-red: 0 0 40px rgba(215,38,56,0.2);
  --shadow-card:0 8px 32px rgba(0,0,0,0.4);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Inter', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, h4, h5 { font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1.15; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; height: auto; display: block; }
ul    { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── LABELS & HEADINGS ── */
.label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--red); margin-bottom: 16px; }
.label::before { content: ''; width: 20px; height: 2px; background: var(--red); border-radius: 2px; }
.h-xl  { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; }
.h-lg  { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; }
.h-md  { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.15; }
.sub   { font-size: 1rem; color: var(--white50); max-width: 520px; line-height: 1.8; }
.accent { color: var(--red); }
.tc    { text-align: center; }
.tc .sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: var(--r8); font-weight: 700; font-size: 0.875rem; letter-spacing: 0.3px; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; text-transform: uppercase; }
.btn-red     { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 12px 32px var(--red-glow); }
.btn-ghost   { background: transparent; color: var(--white); border: 1.5px solid var(--white20); }
.btn-ghost:hover { border-color: var(--white); background: var(--white08); transform: translateY(-2px); }
.btn-outline-red { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-lg { padding: 18px 40px; font-size: 0.95rem; }

/* ── NAV ── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: var(--transition); }
#nav.scrolled { background: rgba(8,8,8,0.95); backdrop-filter: blur(20px); padding: 14px 0; border-bottom: 1px solid var(--white08); }
.nav-wrap  { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo      { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 38px; height: 38px; border-radius: var(--r8); background: var(--red); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; letter-spacing: -1px; color: white; flex-shrink: 0; }
.logo-text { font-weight: 800; font-size: 1.05rem; color: var(--white); line-height: 1.1; }
.logo-sub  { font-size: 0.58rem; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: 2px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.82rem; font-weight: 600; color: var(--white50); letter-spacing: 0.5px; text-transform: uppercase; transition: var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(8,8,8,0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.5rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.mobile-nav a:hover { color: var(--red); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 1.4rem; cursor: pointer; color: var(--white); }

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.85) 50%, rgba(8,8,8,0.6) 100%); }
.hero-content  { position: relative; z-index: 1; padding: 140px 0 100px; }
.hero-pill     { display: inline-flex; align-items: center; gap: 8px; background: var(--red-dim); border: 1px solid rgba(215,38,56,0.3); border-radius: var(--r999); padding: 7px 16px; font-size: 0.75rem; font-weight: 700; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px; }
.hero-pill i   { font-size: 0.7rem; }
.hero-title    { margin-bottom: 24px; }
.hero-title span { display: block; }
.hero-line2    { color: var(--red); }
.hero-desc     { font-size: 1rem; color: var(--white50); max-width: 500px; margin-bottom: 40px; line-height: 1.85; }
.hero-ctas     { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--white08); border-radius: var(--r12); overflow: hidden; max-width: 680px; }
.hero-stat     { background: var(--black2); padding: 20px 24px; }
.hero-stat .n  { font-size: 1.6rem; font-weight: 900; color: var(--red); font-family: 'Inter', sans-serif; line-height: 1; }
.hero-stat .l  { font-size: 0.7rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }
.hero-right    { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap { position: relative; width: 100%; height: 100%; overflow: hidden; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-img-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 0%, transparent 40%); }

/* ── TICKER ── */
.ticker       { background: var(--red); padding: 14px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 0; animation: tickerScroll 20s linear infinite; width: max-content; }
.ticker-item  { display: flex; align-items: center; gap: 16px; padding: 0 32px; white-space: nowrap; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); }
.ticker-dot   { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ABOUT ── */
#about { background: var(--black); }
.about-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-stack { position: relative; height: 560px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 80%; border-radius: var(--r16); overflow: hidden; box-shadow: var(--shadow-card); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sec  { position: absolute; bottom: 0; right: 0; width: 55%; height: 50%; border-radius: var(--r16); overflow: hidden; border: 3px solid var(--black); box-shadow: var(--shadow-card); }
.about-img-sec img { width: 100%; height: 100%; object-fit: cover; }
.about-badge    { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--red); border-radius: var(--r12); padding: 20px 24px; text-align: center; min-width: 120px; box-shadow: var(--shadow-red); }
.about-badge .num { font-size: 2rem; font-weight: 900; color: white; line-height: 1; }
.about-badge .lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.8); margin-top: 4px; }
.about-text .sub  { margin-bottom: 32px; }
.about-pillars  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.pillar         { background: var(--white04); border: 1px solid var(--card-border); border-radius: var(--r12); padding: 20px; transition: var(--transition); }
.pillar:hover   { border-color: rgba(215,38,56,0.3); background: var(--red-dim); }
.pillar i       { color: var(--red); font-size: 1.2rem; margin-bottom: 10px; }
.pillar h4      { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.pillar p       { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.7); }

/* ── SERVICES ── */
#services { background: var(--black2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 56px; }
.svc-card      { position: relative; border-radius: var(--r16); overflow: hidden; height: 340px; cursor: pointer; }
.svc-card img  { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.svc-card:hover img { transform: scale(1.06); }
.svc-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(4,4,4,1) 0%, rgba(4,4,4,0.82) 40%, rgba(4,4,4,0.35) 70%, transparent 100%); transition: var(--transition); pointer-events: none; }
.svc-card:hover::after { background: linear-gradient(to top, rgba(215,38,56,0.9) 0%, rgba(8,8,8,0.6) 60%, transparent 100%); }
.svc-body      { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; color: var(--white); z-index: 2; }
.svc-icon      { width: 44px; height: 44px; border-radius: var(--r8); background: rgba(215,38,56,0.25); border: 1px solid rgba(215,38,56,0.5); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); margin-bottom: 20px; transition: var(--transition); }
.svc-card:hover .svc-icon { background: var(--white20); border-color: var(--white20); color: var(--white); }
.svc-card h3   { font-size: 1.15rem; font-weight: 800; margin-top: 4px; margin-bottom: 6px; color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,1); }
.svc-card p    { font-size: 0.8rem; color: rgba(255,255,255,0.92); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s; opacity: 0; text-shadow: 0 1px 6px rgba(0,0,0,0.8); }
.svc-card:hover p { max-height: 80px; opacity: 1; }
.svc-tag       { display: inline-block; background: var(--red); color: white; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: var(--r999); margin-bottom: 10px; }

/* ── WHY PLANET 1 ── */
#why { background: var(--black); }
.why-features  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.why-feat      { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border-radius: var(--r12); border: 1px solid var(--card-border); background: var(--white04); transition: var(--transition); height: 100%; }
.why-feat:hover { border-color: rgba(215,38,56,0.3); background: var(--red-dim); transform: translateY(-4px); box-shadow: var(--shadow-red); }
.why-feat-icon { width: 48px; height: 48px; border-radius: var(--r8); background: var(--red-dim); border: 1px solid rgba(215,38,56,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--red); flex-shrink: 0; }
.why-feat h4   { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.why-feat p    { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.why-stats     { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 24px; }
.w-stat        { background: var(--black3); border: 1px solid var(--card-border); border-radius: var(--r16); padding: 32px 20px; text-align: center; transition: var(--transition); }
.w-stat:hover  { border-color: var(--red); box-shadow: var(--shadow-red); }
.w-stat .n     { font-size: 2.4rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 8px; }
.w-stat .l     { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; }

/* ── EXPERIENCE / GALLERY ── */
#experience    { background: var(--black2); padding: 100px 0; }
.exp-grid      { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 280px); gap: 16px; margin-top: 60px; }
.exp-item      { border-radius: var(--r16); overflow: hidden; position: relative; }
.exp-item img  { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.exp-item:hover img { transform: scale(1.04); }
.exp-item.tall { grid-row: span 2; }
.exp-item.wide { grid-column: span 2; }
.exp-caption   { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(8,8,8,0.9), transparent); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ── TRAINERS ── */
#trainers       { background: var(--black); }
.trainers-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 56px; }
.trainer-card   { background: var(--black3); border: 1px solid var(--card-border); border-radius: var(--r16); overflow: hidden; transition: var(--transition); }
.trainer-card:hover { border-color: rgba(215,38,56,0.4); transform: translateY(-6px); box-shadow: var(--shadow-red); }
.trainer-photo  { height: 280px; overflow: hidden; position: relative; }
.trainer-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.trainer-card:hover .trainer-photo img { transform: scale(1.04); }
.trainer-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--black3) 0%, transparent 50%); }
.trainer-body   { padding: 20px; }
.trainer-name   { font-size: 1rem; font-weight: 800; margin-bottom: 2px; color: var(--white); }
.trainer-role   { font-size: 0.72rem; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.trainer-branch { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.trainer-tags   { display: flex; flex-wrap: wrap; gap: 6px; }
.tag            { background: var(--white04); border: 1px solid var(--card-border); border-radius: var(--r999); padding: 3px 10px; font-size: 0.68rem; font-weight: 600; color: var(--white50); }

/* ── TESTIMONIALS ── */
#testimonials  { background: var(--black2); }
.testi-grid    { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 56px; }
.testi-card    { background: var(--black3); border: 1px solid var(--card-border); border-radius: var(--r16); padding: 28px; transition: var(--transition); position: relative; overflow: hidden; }
.testi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: var(--transition); }
.testi-card:hover::before { transform: scaleX(1); }
.testi-card:hover  { border-color: rgba(215,38,56,0.2); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testi-stars   { color: var(--red); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote   { font-size: 0.875rem; color: var(--white); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-quote::before { content: '\201C'; font-size: 2rem; color: var(--red); opacity: 0.5; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testi-author  { display: flex; align-items: center; gap: 12px; }
.testi-avatar  { width: 42px; height: 42px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.9rem; color: white; flex-shrink: 0; }
.testi-name    { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.testi-meta    { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.testi-platform { display: inline-flex; align-items: center; gap: 4px; font-size: 0.65rem; font-weight: 700; color: var(--red); background: var(--red-dim); border-radius: var(--r999); padding: 2px 8px; margin-left: 8px; }

/* ── MEMBERSHIP ── */
#membership    { background: var(--black); }
.plans-grid    { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 56px; }
.plan-card     { background: var(--black3); border: 1px solid var(--card-border); border-radius: var(--r16); padding: 32px 24px; transition: var(--transition); position: relative; overflow: hidden; }
.plan-card.featured { border-color: var(--red); background: linear-gradient(145deg, rgba(215,38,56,0.08), var(--black3)); }
.plan-card:hover     { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.plan-card.featured:hover { box-shadow: var(--shadow-red); }
.popular-chip  { position: absolute; top: 16px; right: 16px; background: var(--red); color: white; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: var(--r999); }
.plan-duration { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.plan-price-wrap { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.plan-price-wrap .cur { font-size: 1rem; font-weight: 700; color: var(--red); }
.plan-price-wrap .amt { font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; }
.plan-per      { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.plan-save     { font-size: 0.72rem; font-weight: 700; color: var(--red); margin-bottom: 20px; }
.plan-divider  { height: 1px; background: var(--card-border); margin-bottom: 20px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feat     { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--white); }
.plan-feat i   { color: var(--red); font-size: 0.75rem; flex-shrink: 0; }
.plan-feat.dim { color: rgba(255,255,255,0.4); }
.plan-feat.dim i { color: rgba(255,255,255,0.25); }

/* ── FITPASS ── */
#fitpass       { background: var(--black2); }
.fitpass-wrap  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.fitpass-visual { position: relative; border-radius: var(--r24); overflow: hidden; height: 460px; }
.fitpass-visual img { width: 100%; height: 100%; object-fit: cover; }
.fitpass-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(215,38,56,0.3), transparent); }
.fitpass-badge-float { position: absolute; top: 24px; left: 24px; background: rgba(8,8,8,0.85); backdrop-filter: blur(12px); border: 1px solid var(--red); border-radius: var(--r12); padding: 14px 20px; display: flex; align-items: center; gap: 12px; }
.fitpass-badge-float i    { font-size: 1.8rem; color: var(--red); }
.fitpass-badge-float .t   { font-size: 0.7rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }
.fitpass-badge-float .v   { font-size: 1rem; font-weight: 800; }
.fitpass-points { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.fp-point      { display: flex; gap: 16px; align-items: flex-start; }
.fp-num        { width: 36px; height: 36px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 900; flex-shrink: 0; }
.fp-content h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.fp-content p  { font-size: 0.8rem; color: var(--grey); line-height: 1.7; }

/* ── BRANCHES ── */
#branches      { background: var(--black); }
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.branch-card   { background: var(--black3); border: 1px solid var(--card-border); border-radius: var(--r16); overflow: hidden; transition: var(--transition); }
.branch-card:hover { border-color: rgba(215,38,56,0.3); transform: translateY(-4px); box-shadow: var(--shadow-red); }
.branch-map    { height: 200px; overflow: hidden; position: relative; }
.branch-map iframe { width: 100%; height: 100%; border: none; }
.branch-body   { padding: 24px; }
.branch-name   { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; color: var(--white); }
.branch-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.branch-stars  { color: var(--red); font-size: 0.8rem; }
.branch-rv     { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.branch-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.branch-det    { display: flex; gap: 10px; align-items: flex-start; font-size: 0.8rem; color: var(--white); }
.branch-det i  { color: var(--red); width: 14px; flex-shrink: 0; margin-top: 2px; }
.branch-actions { display: flex; gap: 8px; }

/* ── INSTAGRAM ── */
#instagram     { background: var(--black2); }
.insta-header  { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.insta-handle  { display: flex; align-items: center; gap: 10px; color: var(--white80); font-weight: 600; font-size: 0.95rem; }
.insta-handle i { font-size: 1.4rem; color: #E1306C; }
.insta-grid    { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta-item    { aspect-ratio: 1; border-radius: var(--r8); overflow: hidden; position: relative; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-ov      { position: absolute; inset: 0; background: rgba(215,38,56,0.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.insta-item:hover .insta-ov { opacity: 1; }
.insta-ov i    { font-size: 1.4rem; color: white; }

/* ── FREE TRIAL / CONTACT ── */
#trial         { background: var(--black); }
.trial-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.trial-info .sub { margin-bottom: 32px; }
.contact-block { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.cb-item       { display: flex; gap: 14px; align-items: flex-start; }
.cb-icon       { width: 44px; height: 44px; border-radius: var(--r8); background: var(--red-dim); border: 1px solid rgba(215,38,56,0.25); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1rem; flex-shrink: 0; }
.cb-item h4    { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.cb-item a,
.cb-item p     { font-size: 0.82rem; color: var(--grey); }
.cb-item a:hover { color: var(--red); }
.tamil-block   { background: linear-gradient(135deg, var(--red-dim), var(--black3)); border: 1px solid rgba(215,38,56,0.2); border-radius: var(--r12); padding: 24px; margin-top: 24px; }
.tamil-block p { font-size: 0.85rem; color: var(--white80); line-height: 1.85; }
.tamil-block em { color: var(--grey); font-style: italic; }
.trial-form    { background: var(--black3); border: 1px solid var(--card-border); border-radius: var(--r16); padding: 40px; }
.trial-form h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 28px; }
.form-group    { margin-bottom: 18px; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.form-control  { width: 100%; padding: 13px 16px; background: var(--white04); border: 1.5px solid var(--card-border); border-radius: var(--r8); color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.875rem; outline: none; transition: var(--transition); -webkit-appearance: none; }
.form-control:focus { border-color: var(--red); background: var(--red-dim); box-shadow: 0 0 0 3px rgba(215,38,56,0.1); }
.form-control::placeholder { color: var(--grey2); }
select.form-control option { background: var(--black3); color: var(--white); }
.form-submit   { width: 100%; justify-content: center; margin-top: 8px; }
.form-success  { display: none; background: rgba(215,38,56,0.1); border: 1.5px solid var(--red); border-radius: var(--r8); padding: 14px 18px; font-size: 0.85rem; font-weight: 600; color: var(--red); text-align: center; margin-top: 14px; }

/* ── FOOTER ── */
#footer        { background: var(--black2); border-top: 1px solid var(--card-border); padding: 64px 0 0; }
.footer-grid   { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--card-border); }
.footer-brand p { font-size: 0.82rem; color: var(--grey); line-height: 1.85; margin: 16px 0 20px; }
.social-row    { display: flex; gap: 10px; }
.soc           { width: 38px; height: 38px; border-radius: var(--r8); background: var(--white04); border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--white50); transition: var(--transition); }
.soc:hover     { background: var(--red); border-color: var(--red); color: white; transform: translateY(-3px); }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--white); margin-bottom: 20px; }
.footer-links  { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: var(--grey); transition: var(--transition); }
.footer-links a:hover { color: var(--red); }
.footer-nl p   { font-size: 0.78rem; color: var(--grey); margin-bottom: 14px; line-height: 1.7; }
.nl-row        { display: flex; border-radius: var(--r8); overflow: hidden; border: 1.5px solid var(--card-border); transition: var(--transition); }
.nl-row:focus-within { border-color: var(--red); }
.nl-input      { flex: 1; padding: 12px 16px; background: transparent; border: none; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.82rem; outline: none; }
.nl-input::placeholder { color: var(--grey2); }
.nl-btn        { padding: 0 16px; background: var(--red); border: none; color: white; cursor: pointer; font-size: 0.85rem; transition: var(--transition); }
.nl-btn:hover  { background: var(--red2); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.75rem; color: var(--grey); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.75rem; color: var(--grey); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--red); }

/* ── FLOATING ELEMENTS ── */
.wa-float      { position: fixed; bottom: 28px; right: 28px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-btn        { width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: white; box-shadow: 0 8px 28px rgba(37,211,102,0.45); animation: waPulse 2.5s infinite; transition: var(--transition); }
.wa-btn:hover  { transform: scale(1.1); background: #20bb5a; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 8px 42px rgba(37,211,102,0.75); }
}
.wa-tip        { background: var(--white); color: var(--black); border-radius: var(--r8); padding: 8px 14px; font-size: 0.75rem; font-weight: 700; box-shadow: var(--shadow-card); white-space: nowrap; }
.back-top      { position: fixed; bottom: 28px; left: 28px; z-index: 900; width: 42px; height: 42px; border-radius: 50%; background: var(--black3); border: 1.5px solid var(--card-border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); opacity: 0; font-size: 0.85rem; color: var(--white50); }
.back-top.show { opacity: 1; }
.back-top:hover { background: var(--red); border-color: var(--red); color: white; }

/* ── CTA BAND ── */
.cta-band      { background: var(--red); padding: 72px 0; text-align: center; }
.cta-band h2   { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.cta-band p    { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1rem; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.5); color: white; }
.cta-band .btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.15); }

/* ── ANIMATIONS ── */
.reveal        { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.on     { opacity: 1; transform: translateY(0); }
.reveal-left   { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.on { opacity: 1; transform: translateX(0); }
.reveal-right  { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.on { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── COUNTER ── */
.counter-num { display: inline-block; }

/* ── FITPASS OFFER CARD ── */
.fitpass-offer-card {
  position: relative; overflow: hidden; border-radius: var(--r16);
  background: linear-gradient(160deg, #0d1a0d 0%, #111 40%, #0a0a0a 100%);
  border: 1.5px solid rgba(37,211,102,0.35);
  box-shadow: 0 0 40px rgba(37,211,102,0.12), 0 8px 32px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; gap: 0; transition: var(--transition);
}
.fitpass-offer-card:hover {
  border-color: rgba(37,211,102,0.6);
  box-shadow: 0 0 60px rgba(37,211,102,0.2), 0 12px 40px rgba(0,0,0,0.6);
  transform: translateY(-6px);
}
.fitpass-offer-card::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37,211,102,0.06), transparent);
  animation: shimmer 3s infinite; pointer-events: none;
}
@keyframes shimmer { 0% { left: -100%; } 100% { left: 160%; } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid, .fitpass-wrap, .trial-grid { grid-template-columns: 1fr; }
  .about-img-stack { height: 400px; }
  .branches-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-right      { display: none; }
  .hero-stats      { grid-template-columns: repeat(2, 1fr); }
  .insta-grid      { grid-template-columns: repeat(4, 1fr); }
  .exp-grid        { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .exp-item.wide, .exp-item.tall { grid-column: auto; grid-row: auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .section   { padding: 72px 0; }
  .services-grid, .trainers-grid, .testi-grid { grid-template-columns: 1fr; }
  .plans-grid  { grid-template-columns: 1fr 1fr; }
  .branches-grid, .insta-grid { grid-template-columns: 1fr; }
  .insta-grid  { grid-template-columns: repeat(3, 1fr); }
  .hero-stats  { grid-template-columns: 1fr 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .why-features  { grid-template-columns: 1fr; }
  .why-stats     { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .trial-form    { padding: 28px 20px; }

  /* Mobile center alignment */
  body           { text-align: center; }
  .label         { justify-content: center; margin-left: auto; margin-right: auto; }
  .sub           { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-desc     { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-content  { display: flex; flex-direction: column; align-items: center; }
  .hero-pill     { text-align: center; }
  .hero-title    { text-align: center; }
  .hero-ctas     { justify-content: center; align-items: center; flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .about-text    { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .about-pillars { width: 100%; }
  .pillar        { text-align: center; }
  .pillar i      { display: block; margin: 0 auto 10px; }
  .why-feat      { flex-direction: column; align-items: center; text-align: center; }
  .why-feat-icon { margin: 0 auto; }
  .w-stat        { text-align: center; }
  .svc-body      { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .svc-icon      { margin: 0 auto; }
  .trainer-body  { text-align: center; }
  .trainer-tags  { justify-content: center; }
  .testi-card    { text-align: center; }
  .testi-author  { justify-content: center; }
  .plan-card     { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .plan-price-wrap { justify-content: center; }
  .plan-features { align-items: flex-start; text-align: left; width: fit-content; align-self: center; margin: 0 auto; padding: 0 16px; }
  .plan-features .plan-feat { justify-content: flex-start; }
  .plan-card .btn { width: 100%; justify-content: center; }
  .fitpass-wrap > div:last-child { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .fp-point      { flex-direction: column; align-items: center; text-align: center; }
  .fp-num        { margin: 0 auto; }
  .fitpass-points { width: 100%; }
  .branch-body   { text-align: center; }
  .branch-rating { justify-content: center; }
  .branch-details { align-items: center; }
  .branch-det    { justify-content: center; }
  .branch-actions { justify-content: center; }
  .exp-caption   { text-align: center; }
  .insta-header  { flex-direction: column; align-items: center; text-align: center; }
  .trial-info    { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .contact-block { width: 100%; }
  .cb-item       { flex-direction: column; align-items: center; text-align: center; }
  .cb-icon       { margin: 0 auto; }
  .tamil-block   { text-align: center; }
  .social-row    { justify-content: center; }
  .footer-brand  { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .footer-col    { text-align: center; }
  .footer-col .footer-links { align-items: center; }
  .footer-col.footer-nl { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .cta-band .btns { flex-direction: column; align-items: center; }
  .cta-band .btn  { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .plans-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid   { grid-template-columns: 1fr; }
}

/* ── DESKTOP CENTER FOR HERO ── */
@media (min-width: 769px) {
  .hero-content  { text-align: center; align-items: center; display: flex; flex-direction: column; }
  .hero-pill     { align-self: center; }
  .hero-title    { text-align: center; }
  .hero-desc     { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-ctas     { justify-content: center; align-items: center; }
  .hero-stats    { margin-left: auto; margin-right: auto; }
}
