* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

:root {
  --black: #030303;
  --dark: #090909;
  --card: #111;
  --gold: #d9aa42;
  --gold2: #ffd86a;
  --orange: #ff6a16;
  --red: #ff3131;
  --green: #12833a;
  --white: #fff;
  --muted: #c7c7c7;
  --line: rgba(255,255,255,.13);
}

body {
  font-family: Inter, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,216,106,.16), transparent 25%),
    radial-gradient(circle at 92% 30%, rgba(255,106,22,.15), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(18,131,58,.14), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 105px 0;
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 9999;
  transition: .6s;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 155px;
  height: 155px;
  border: 1px solid rgba(255,216,106,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}

.loader-ring:before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border-top: 3px solid var(--gold2);
  animation: spin 1s linear infinite;
}

.loader-ring img {
  width: 110px;
}

.preloader p {
  color: var(--gold2);
  font-weight: 900;
  margin-top: -170px;
  letter-spacing: 2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: .35s;
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
}

.brand small {
  font-weight: 800;
  letter-spacing: 3px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 800;
  color: #eee;
  transition: .3s;
}

.nav a:hover {
  color: var(--gold2);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: 900;
  transition: .35s;
}

.nav-cta,
.btn-gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #080808;
  box-shadow: 0 12px 35px rgba(217,170,66,.35);
}

.nav-cta {
  padding: 13px 22px;
}

.btn {
  padding: 16px 28px;
  border: 0;
  cursor: pointer;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(217,170,66,.5);
}

.btn-glass {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: white;
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: white;
  color: #000;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 9px;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 0;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 160px 0 85px;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.78) 48%, rgba(217,170,66,.14) 100%);
}

.hero:after {
  content: "FIT INDIA";
  position: absolute;
  bottom: 10px;
  left: 2%;
  font-family: Anton, sans-serif;
  font-size: 14vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 65px;
  align-items: center;
}

.mini-label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  color: var(--gold2);
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 900;
}

.mini-label i {
  width: 42px;
  height: 3px;
  border-radius: 20px;
  background: var(--gold2);
}

.hero h1,
.section-head h2,
.about-content h2,
.trainer-text h2,
.offer-text h2,
.contact-info h2,
.quote-section h2 {
  font-family: Anton, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.03;
}

.hero h1 {
  font-size: clamp(58px, 8.5vw, 118px);
  margin: 24px 0;
}

.hero h1 span {
  color: var(--gold2);
  filter: drop-shadow(0 0 20px rgba(255,216,106,.26));
}

.hero-text {
  font-size: 17px;
  line-height: 1.9;
  color: #ddd;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  max-width: 660px;
}

.hero-stats div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 24px;
  padding: 21px;
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 35px;
  color: var(--gold2);
  font-weight: 900;
}

.hero-stats small {
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
}

.hero-img-card {
  position: relative;
  width: min(480px, 100%);
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(255,216,106,.38);
  box-shadow: 0 35px 90px rgba(0,0,0,.7);
  transform: rotate(2deg);
}

.hero-img-card img {
  height: 650px;
  object-fit: cover;
}

.hero-img-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent 55%);
}

.shine {
  position: absolute;
  inset: -60% auto auto -60%;
  width: 80%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: rotate(25deg);
  animation: shine 4s infinite;
  z-index: 2;
}

@keyframes shine {
  0% { left: -90%; }
  45%, 100% { left: 120%; }
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(255,216,106,.28);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit-one {
  width: 540px;
  height: 540px;
}

.orbit-two {
  width: 650px;
  height: 650px;
  animation-duration: 28s;
  animation-direction: reverse;
}

.hero-logo-float {
  position: absolute;
  top: 40px;
  left: 35px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: #050505;
  border: 1px solid rgba(255,216,106,.4);
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(255,216,106,.2);
  animation: float 3s ease-in-out infinite alternate;
}

.hero-logo-float img {
  width: 110px;
}

.floating-chip {
  position: absolute;
  background: rgba(0,0,0,.82);
  border: 1px solid rgba(255,216,106,.35);
  color: var(--gold2);
  font-weight: 900;
  padding: 13px 19px;
  border-radius: 100px;
  backdrop-filter: blur(15px);
  box-shadow: 0 18px 45px rgba(0,0,0,.4);
  animation: float 2.8s ease-in-out infinite alternate;
}

.chip-1 {
  top: 165px;
  right: 4px;
}

.chip-2 {
  left: 0;
  bottom: 180px;
  animation-delay: .5s;
}

.chip-3 {
  right: 18px;
  bottom: 95px;
  animation-delay: .9s;
}

@keyframes float {
  to { transform: translateY(-18px); }
}

/* STRIP */
.scroll-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #070707, #171001, #070707);
}

.strip-track {
  display: flex;
  gap: 26px;
  width: max-content;
  align-items: center;
  padding: 20px 0;
  animation: marquee 20s linear infinite;
}

.strip-track span {
  font-family: Anton, sans-serif;
  font-size: 38px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold2);
}

.strip-track b {
  font-size: 30px;
  color: var(--orange);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* INTRO GALLERY */
.intro-gallery {
  padding: 36px 0 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.intro-card {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px rgba(0,0,0,.4);
}

.intro-card img {
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.intro-card:hover img {
  transform: scale(1.08);
}

.intro-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
}

.intro-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  font-weight: 900;
  color: var(--gold2);
  font-size: 22px;
}

/* COMMON GRID */
.about-grid,
.trainer-grid,
.offer-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ABOUT */
.about-media {
  position: relative;
}

.about-main {
  height: 610px;
  object-fit: cover;
  border-radius: 36px;
  border: 1px solid rgba(255,216,106,.3);
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
}

.about-small {
  position: absolute;
  right: -25px;
  top: -35px;
  width: 170px;
  background: #000;
  border-radius: 50%;
  padding: 12px;
  border: 1px solid rgba(255,216,106,.4);
  box-shadow: 0 0 60px rgba(255,216,106,.2);
}

.about-badge {
  position: absolute;
  left: -25px;
  bottom: 35px;
  background: rgba(0,0,0,.82);
  border: 1px solid rgba(255,216,106,.35);
  border-radius: 26px;
  padding: 22px;
  backdrop-filter: blur(15px);
}

.about-badge strong {
  font-size: 54px;
  color: var(--gold2);
  line-height: 1;
}

.about-badge span {
  display: block;
  color: #eee;
  font-weight: 800;
  max-width: 180px;
}

.about-content h2,
.trainer-text h2,
.offer-text h2,
.contact-info h2,
.section-head h2 {
  font-size: clamp(38px, 4vw, 64px);
  margin: 18px 0 20px;
}

.about-content p,
.trainer-text p,
.offer-text p,
.contact-info p,
.section-head p {
  color: #d4d4d4;
  line-height: 1.85;
  font-size: 16px;
  margin-bottom: 16px;
}

.mission-box {
  margin-top: 25px;
  padding: 26px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255,216,106,.15), rgba(255,255,255,.04));
  border: 1px solid rgba(255,216,106,.25);
}

.mission-box h3 {
  color: var(--gold2);
  font-size: 24px;
  margin-bottom: 8px;
}

.mission-box p {
  font-family: Anton, sans-serif;
  color: white;
  font-size: 32px;
  line-height: 1.15;
  margin: 0;
}

/* PROGRAMS */
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}

.section-head .mini-label {
  justify-content: center;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.program-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 30px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  transition: .35s;
}

.program-card:before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,216,106,.13);
  right: -60px;
  top: -60px;
  transition: .35s;
}

.program-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255,216,106,.38);
}

.program-card:hover:before {
  transform: scale(1.5);
}

.program-card span {
  font-family: Anton, sans-serif;
  font-size: 62px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,216,106,.55);
}

.program-card h3 {
  font-size: 26px;
  color: var(--gold2);
  margin: 15px 0 12px;
}

.program-card p {
  color: #d0d0d0;
  line-height: 1.75;
}

/* TRAINER */
.trainer {
  background: linear-gradient(90deg, rgba(255,216,106,.06), transparent), #070707;
}

.trainer-text h4 {
  color: var(--gold2);
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.trainer-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.trainer-points div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 16px;
  font-weight: 800;
}

.trainer-points b {
  color: var(--gold2);
  margin-right: 8px;
}

.trainer-photo {
  position: relative;
  min-height: 610px;
}

.trainer-photo > img {
  height: 610px;
  object-fit: cover;
  border-radius: 36px;
  border: 1px solid rgba(255,216,106,.28);
}

.trainer-overlay {
  position: absolute;
  right: -22px;
  bottom: -40px;
  width: 255px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,216,106,.35);
  box-shadow: 0 25px 70px rgba(0,0,0,.6);
}

.trainer-overlay img {
  height: 320px;
  object-fit: cover;
}

/* GALLERY */
.gallery {
  background:
    radial-gradient(circle at top left, rgba(255,216,106,.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255,106,22,.10), transparent 34%),
    #030303;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  min-height: 290px;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid rgba(255,216,106,.22);
  background:
    linear-gradient(145deg, rgba(255,216,106,.10), rgba(255,255,255,.035)),
    rgba(255,255,255,.03);
  overflow: hidden;
  cursor: pointer;
  transition: .35s ease;
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
}

.gallery-item.tall,
.gallery-item.wide {
  grid-row: auto;
  grid-column: auto;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,216,106,.55), transparent 38%, rgba(255,106,22,.35));
  opacity: 0;
  transition: .35s ease;
  z-index: 0;
}

.gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 265px;
  object-fit: contain;
  background:
    radial-gradient(circle at center, rgba(255,216,106,.08), transparent 55%),
    #080808;
  border-radius: 22px;
  padding: 6px;
  transition: .45s ease;
}

.gallery-item::after {
  content: "View Image";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  background: rgba(0,0,0,.78);
  border: 1px solid rgba(255,216,106,.35);
  color: var(--gold2);
  text-align: center;
  padding: 12px 16px;
  border-radius: 100px;
  font-weight: 900;
  transform: translateY(18px);
  opacity: 0;
  transition: .35s ease;
  backdrop-filter: blur(12px);
}

.gallery-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255,216,106,.45);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(.96);
}

.gallery-item:hover::after {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item:after {
  content: "View";
  position: absolute;
  /* inset: 0; */
  background: rgba(0,0,0,.45);
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-weight: 900;
  font-size: 22px;
  opacity: 0;
  transition: .35s;
}

.gallery-item:hover:after {
  opacity: 1;
}

/* OFFER */
.offer {
  background: #050505;
}

.offer-poster {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,216,106,.35);
  box-shadow: 0 30px 90px rgba(0,0,0,.62);
}

.offer-text .btn {
  margin-top: 10px;
}

.price-burst {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--orange));
  padding: 22px 35px;
  border-radius: 28px;
  transform: rotate(-3deg);
  box-shadow: 0 18px 55px rgba(255,49,49,.28);
  margin: 20px 0;
}

.price-burst small,
.price-burst span {
  display: block;
  font-weight: 800;
}

.price-burst strong {
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 10px 0 25px;
}

.offer-list p {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  margin: 0;
  font-weight: 800;
  color: #fff;
}

.offer-list p:before {
  content: "▶";
  color: var(--red);
  margin-right: 10px;
}

/* QUOTE */
.quote-section {
  text-align: center;
  padding: 105px 0;
  background:
    radial-gradient(circle at center, rgba(255,216,106,.19), transparent 48%),
    linear-gradient(180deg, #070707, #000);
}

.quote-section img {
  width: 160px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 35px rgba(255,216,106,.35));
}

.quote-section h2 {
  font-size: clamp(38px,5vw,76px);
  color: var(--gold2);
  max-width: 980px;
  margin: auto;
}

.quote-section p {
  color: #e5e5e5;
  margin-top: 22px;
  font-size: 18px;
}

/* CONTACT */
.contact {
  background: #070707;
}

.info-card {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.info-card b {
  color: var(--gold2);
}

.info-card span {
  color: #e6e6e6;
}

.enquiry-form {
  border: 1px solid rgba(255,216,106,.25);
  background: linear-gradient(145deg, rgba(255,216,106,.08), rgba(255,255,255,.035));
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 25px 80px rgba(0,0,0,.48);
}

.enquiry-form h3 {
  font-size: 30px;
  color: var(--gold2);
  margin-bottom: 24px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 17px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.42);
  color: #fff;
  outline: 0;
  font-family: inherit;
}

.enquiry-form textarea {
  min-height: 130px;
  resize: none;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold2);
}

.enquiry-form button {
  width: 100%;
}

.enquiry-form small {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--muted);
}

/* FOOTER */
.footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer img {
  width: 90px;
  margin-bottom: 16px;
}

.footer h3,
.footer h4 {
  color: var(--gold2);
  margin-bottom: 14px;
}

.footer p,
.footer a {
  display: block;
  color: #cfcfcf;
  margin-bottom: 9px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid var(--line);
  color: #aaa;
}



/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 25px;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 22px;
}

.lightbox button {
  position: absolute;
  top: 20px;
  right: 25px;
  background: var(--gold2);
  color: #000;
  border: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: .85s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:1050px) {
  .hero-grid,
  .about-grid,
  .trainer-grid,
  .offer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .program-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    min-height: 310px;
  }

  .gallery-item img {
    height: 285px;
  }

  .intro-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:768px) {
  .header {
    padding: 12px 0;
  }

  .brand img {
    width: 55px;
    height: 55px;
  }

  .brand span {
    font-size: 18px;
  }

  .nav {
    position: fixed;
    top: 82px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(0,0,0,.94);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
  }

  .nav.show {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-stats,
  .intro-grid,
  .program-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 30px;
  }

  .hero-img-card {
    transform: none;
  }

  .hero-img-card img {
    height: 510px;
  }

  .orbit,
  .floating-chip {
    display: none;
  }

  .hero-logo-float {
    position: absolute;
    width: 100px;
    height: 100px;
    top: -30px;
    left: 10px;
  }

  .hero-logo-float img {
    width: 80px;
  }

  .about-main,
  .trainer-photo > img {
    height: 480px;
  }

  .about-small {
    right: 10px;
    width: 125px;
  }

  .about-badge {
    left: 14px;
  }

  .trainer-overlay {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .trainer-overlay img {
    height: 330px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: auto;
  }

  .gallery-item img {
    height: auto;
    max-height: 420px;
  }

  .section {
    padding: 78px 0;
  }

  .price-burst strong {
    font-size: 58px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media(max-width:480px) {
  .container {
    width: 91%;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-img-card img {
    height: 440px;
  }

  .intro-card {
    height: 230px;
  }

  .about-content h2,
  .trainer-text h2,
  .offer-text h2,
  .contact-info h2,
  .section-head h2 {
    font-size: 38px;
  }

  .strip-track span {
    font-size: 28px;
  }

  .enquiry-form {
    padding: 24px;
  }

}


/* PLANS SECTION */
.plans {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,216,106,.13), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(255,106,22,.11), transparent 32%),
    #050505;
  overflow: hidden;
}

.plans::before {
  content: "MEMBERSHIP";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Anton, sans-serif;
  font-size: 12vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.045);
  white-space: nowrap;
  pointer-events: none;
}

.plans-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.plan-card {
  position: relative;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    #0b0b0b;
  border: 1px solid rgba(255,255,255,.13);
  overflow: hidden;
  transition: .4s ease;
  box-shadow: 0 25px 70px rgba(0,0,0,.42);
}

.plan-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -85px;
  top: -85px;
  border-radius: 50%;
  background: rgba(255,216,106,.13);
  transition: .4s ease;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold2), var(--orange), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s ease;
}

.plan-card:hover {
  transform: translateY(-14px);
  border-color: rgba(255,216,106,.45);
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
}

.plan-card:hover::before {
  transform: scale(1.5);
}

.plan-card:hover::after {
  transform: scaleX(1);
}

.plan-card.popular {
  border-color: rgba(255,216,106,.55);
  background:
    linear-gradient(145deg, rgba(255,216,106,.16), rgba(255,255,255,.035)),
    #0b0b0b;
  transform: translateY(-12px);
}

.plan-card.popular:hover {
  transform: translateY(-22px);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: -42px;
  width: 170px;
  text-align: center;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 900;
  transform: rotate(38deg);
  box-shadow: 0 12px 35px rgba(255,49,49,.3);
  z-index: 3;
}

.plan-top {
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
}

.plan-duration {
  display: inline-flex;
  color: #060606;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  padding: 10px 16px;
  border-radius: 100px;
  font-weight: 900;
  margin-bottom: 14px;
}

.plan-top small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .5px;
}

.plan-price {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-bottom: 18px;
}

.plan-price h3 {
  font-family: Anton, sans-serif;
  font-size: 64px;
  color: var(--gold2);
  line-height: 1;
  letter-spacing: 1px;
}

.plan-price span {
  color: #e6e6e6;
  font-weight: 800;
  margin-bottom: 9px;
}

.plan-desc {
  position: relative;
  z-index: 2;
  color: #d4d4d4;
  line-height: 1.7;
  margin-bottom: 22px;
  min-height: 82px;
}

.plan-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.plan-card li {
  color: #eeeeee;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-card li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,216,106,.16);
  color: var(--gold2);
  font-weight: 900;
  border: 1px solid rgba(255,216,106,.28);
}

.plan-btn {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  color: #080808;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  box-shadow: 0 14px 36px rgba(217,170,66,.28);
  transition: .35s ease;
}

.plan-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(217,170,66,.45);
}

.popular .plan-btn {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  box-shadow: 0 14px 36px rgba(255,49,49,.28);
}

/* RESPONSIVE PLANS */
@media(max-width: 1100px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-desc {
    min-height: auto;
  }
}

@media(max-width: 650px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }

  .plan-card.popular:hover {
    transform: translateY(-14px);
  }

  .plan-price h3 {
    font-size: 56px;
  }

  .plans::before {
    font-size: 18vw;
    top: 55px;
  }
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #128c3c);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transition: .35s ease;
  border: 2px solid rgba(255,255,255,.18);
}

.whatsapp svg {
  width: 34px;
  height: 34px;
  fill: white;
}

.whatsapp:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 24px 55px rgba(37,211,102,.35);
}

.whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(37,211,102,.55);
  animation: whatsappPulse 1.6s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(.85);
    opacity: .9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media(max-width:480px) {
  .whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .whatsapp svg {
    width: 31px;
    height: 31px;
  }
}