/* ============================================================
   Stars Cricket Academy — Main Stylesheet
   Colour Palette: Black #0D0D0D | Gold #C9A84C | White #FFFFFF
   Fonts: Bebas Neue (headings) | Montserrat (body)
   ============================================================ */

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

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --black:      #0D0D0D;
  --black-soft: #161616;
  --black-card: #1A1A1A;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark:  #9E7A2A;
  --white:      #FFFFFF;
  --grey:       #888888;
  --grey-light: #CCCCCC;
  --section-pad: 100px 0;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 600px;
  font-weight: 400;
}

/* ─── Utility ───────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* ─── Divider ───────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 30px;
}
.gold-divider.center { margin: 20px auto 30px; }

/* ─── NAVIGATION ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}
#navbar.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 3px;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ─── HERO ──────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.55) 50%,
    rgba(13,13,13,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-title .highlight {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ─── STATS STRIP ───────────────────────────────────────── */
#stats-strip {
  background: var(--gold);
  padding: 28px 0;
}

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

.stat-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(13,13,13,0.2);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--black);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.7);
  margin-top: 4px;
}

/* ─── ABOUT ─────────────────────────────────────────────── */
#about {
  padding: var(--section-pad);
  background: var(--black-soft);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  border: 5px solid var(--black-soft);
}

.about-badge-img {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  z-index: 2;
}

.about-badge-img span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--black);
  line-height: 1;
}

.about-badge-img span:last-child {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.about-text p {
  color: var(--grey-light);
  margin-bottom: 20px;
  font-size: 0.97rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.feature-text span {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ─── CORE BELIEFS (3 D's) ──────────────────────────────── */
#beliefs {
  padding: var(--section-pad);
  background: var(--black);
  overflow: hidden;
}

.beliefs-intro {
  text-align: center;
  margin-bottom: 70px;
}

.beliefs-intro .section-subtitle {
  margin: 0 auto;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.belief-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 600px;
  cursor: pointer;
}

.belief-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.belief-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.belief-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: var(--transition);
}

.belief-card:hover .belief-overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.2) 60%);
}

.belief-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}

.belief-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.belief-title {
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.belief-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.belief-card:hover .belief-desc {
  max-height: 120px;
}

/* ─── PROGRAMS ──────────────────────────────────────────── */
#programs {
  padding: var(--section-pad);
  background: var(--black-soft);
}

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.program-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.program-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card-img img {
  transform: scale(1.08);
}

.program-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.program-card-body {
  padding: 28px;
}

.program-card-body h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 10px;
}

.program-card-body p {
  font-size: 0.87rem;
  color: var(--grey);
  margin-bottom: 20px;
  line-height: 1.6;
}

.program-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.program-price .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
}

.program-price .period {
  font-size: 0.78rem;
  color: var(--grey);
}

.program-features {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}

.program-features li {
  font-size: 0.82rem;
  color: var(--grey-light);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── FACILITY / VIDEO SECTION ──────────────────────────── */
#facility {
  padding: var(--section-pad);
  background: var(--black);
}

.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.facility-video-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  /* Portrait ratio on desktop — fills column naturally */
  aspect-ratio: 9/16;
  max-height: 560px;
  width: 100%;
  background: var(--black-card);
}

.facility-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

.facility-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,13,13,0.35);
  cursor: pointer;
  transition: var(--transition);
}

.facility-play-btn:hover { background: rgba(13,13,13,0.2); }

.play-circle {
  width: 72px; height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.play-circle:hover { transform: scale(1.1); }

.play-circle svg {
  width: 28px; height: 28px;
  fill: var(--black);
  margin-left: 4px;
}

.facility-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.spec-item {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  border-radius: 0 4px 4px 0;
}

.spec-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.spec-item span {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ─── GALLERY ───────────────────────────────────────────── */
#gallery {
  padding: var(--section-pad);
  background: var(--black-soft);
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(201,168,76,0.15);
}

.gallery-overlay svg {
  width: 36px; height: 36px;
  fill: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#lightbox.active { display: flex; }

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

#lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: var(--transition);
}
#lightbox-close:hover { color: var(--gold); }

#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--white);
  font-size: 1.5rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
#lightbox-prev { left: 24px; }
#lightbox-next { right: 24px; }
#lightbox-prev:hover, #lightbox-next:hover { background: var(--gold); color: var(--black); }

/* ─── INSTAGRAM ─────────────────────────────────────────── */
#instagram {
  padding: var(--section-pad);
  background: var(--black);
}

.instagram-header {
  text-align: center;
  margin-bottom: 50px;
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 10px;
}

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

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.9);
}

.insta-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.insta-item:hover .insta-overlay {
  background: rgba(13,13,13,0.5);
}

.insta-overlay svg {
  width: 28px; height: 28px;
  fill: var(--white);
  opacity: 0;
  transition: var(--transition);
}
.insta-item:hover .insta-overlay svg { opacity: 1; }

.instagram-cta {
  text-align: center;
  margin-top: 40px;
}

/* ─── CONTACT ───────────────────────────────────────────── */
#contact {
  padding: var(--section-pad);
  background: var(--black-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--grey-light);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 0.92rem;
  color: var(--grey-light);
  display: block;
  transition: var(--transition);
}

.contact-item-text a:hover { color: var(--gold); }

.contact-hours {
  margin-top: 36px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 24px;
}

.contact-hours h4 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--grey-light);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--white); font-weight: 600; }

/* Contact Form */
.contact-form {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 28px;
  color: var(--white);
}

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

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

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

/* ─── PARTNERS ──────────────────────────────────────────── */
#partners {
  padding: 60px 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.partners-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 36px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.partner-logo {
  opacity: 0.45;
  filter: grayscale(1) brightness(1.5);
  transition: var(--transition);
  height: 40px;
  width: auto;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

/* ─── FOOTER ────────────────────────────────────────────── */
#footer {
  background: #080808;
  padding: 70px 0 0;
  border-top: 1px solid rgba(201,168,76,0.2);
}

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

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: var(--grey);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--grey-light);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--grey);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 10px;
  outline: none;
  transition: var(--transition);
}

.footer-newsletter input:focus { border-color: var(--gold); }

.footer-newsletter button {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom a { color: var(--gold); }

/* ─── WHATSAPP FLOAT ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 28px; height: 28px;
  fill: white;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 60px; }
  .about-images  { max-width: 600px; margin: 0 auto; }
  .facility-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    padding: 30px 5%;
    gap: 24px;
    border-top: 1px solid rgba(201,168,76,0.2);
  }

  .nav-links.open a { font-size: 1rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .beliefs-grid { grid-template-columns: 1fr; }
  .belief-card  { max-height: 400px; aspect-ratio: 16/9; }

  /* Facility video — portrait on mobile: full width, crop top */
  .facility-video-wrap {
    aspect-ratio: 9/16;
    max-height: none;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .facility-video-wrap video {
    object-position: bottom;
  }

  .programs-grid { grid-template-columns: 1fr; }
  .programs-header { flex-direction: column; align-items: flex-start; gap: 20px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 1; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .about-badge-img { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   LANE HIRE SECTION
════════════════════════════════════════════════════════ */
#hire {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
}

#hire::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hire-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.hire-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto 60px;
}

/* ─── Hire Card ─────────────────────────────────────── */
.hire-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 44px 36px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.hire-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.12);
}

.hire-card-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1e1a0e 0%, var(--black-card) 60%);
  box-shadow: 0 8px 40px rgba(201,168,76,0.10);
}

.hire-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.hire-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.hire-card-icon svg {
  width: 100%;
  height: 100%;
}

.hire-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 16px;
}

.hire-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
}

.hire-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hire-period {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 500;
}

.hire-desc {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hire-features {
  list-style: none;
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.hire-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey-light);
}

.hire-features li i {
  flex-shrink: 0;
  font-size: 0.75rem;
}

.hire-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ─── Hire Info Banner ──────────────────────────────── */
.hire-info-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.hire-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 40px;
  flex: 1;
  min-width: 200px;
}

.hire-info-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hire-info-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.hire-info-item span {
  font-size: 0.8rem;
  color: var(--grey);
}

.hire-info-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}

/* ─── Hire responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .hire-grid { grid-template-columns: 1fr; max-width: 440px; }
  .hire-info-banner { flex-direction: column; padding: 28px 24px; }
  .hire-info-divider { width: 80%; height: 1px; }
  .hire-info-item { padding: 16px 0; justify-content: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   1-ON-1 PROGRAM MODAL
════════════════════════════════════════════════════════ */

/* Overlay */
.program-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
}

.program-modal-overlay.open {
  display: flex;
  animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal Box */
.program-modal {
  background: #141414;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUpModal 0.35s cubic-bezier(0.4,0,0.2,1);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}

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

/* Close Button */
.program-modal-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
  z-index: 10;
}

.program-modal-close:hover {
  background: var(--gold);
  color: var(--black);
}

/* Modal Header */
.program-modal-header {
  padding: 40px 44px 28px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  clear: both;
}

.program-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--white);
}

/* Modal Body */
.program-modal-body {
  padding: 32px 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Sections */
.program-modal-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.program-modal-section p {
  font-size: 0.92rem;
  color: var(--grey-light);
  line-height: 1.8;
}

.program-modal-section strong {
  color: var(--white);
}

/* Feature List */
.modal-feature-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.6;
}

.modal-feature-list li i {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.8rem;
}

/* Pricing Cards */
.program-modal-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modal-price-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.modal-price-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.modal-price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.modal-price-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.modal-price-desc {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.6;
}

/* CTA */
.program-modal-cta {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(201,168,76,0.12);
}

/* Learn More button outline style */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* Responsive Modal */
@media (max-width: 640px) {
  .program-modal-header { padding: 30px 24px 22px; }
  .program-modal-body   { padding: 24px 24px 36px; }
  .program-modal-title  { font-size: 1.9rem; }
  .program-modal-pricing { grid-template-columns: 1fr; }
}

/* About section full-width (no image column) */
.about-text-full {
  grid-column: 1 / -1;
  max-width: 860px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   GALLERY SLIDER
════════════════════════════════════════════════════════ */
.gallery-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 48px auto 0;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 580px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.gallery-arrow:hover {
  background: var(--gold);
  color: #000;
}

.gallery-prev { left: 18px; }
.gallery-next { right: 18px; }

.gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-dot.active {
  background: var(--gold);
}

/* Counter badge */
.gallery-counter {
  position: absolute;
  top: 14px;
  right: 18px;
  background: rgba(0,0,0,0.6);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 10;
  border: 1px solid rgba(201,168,76,0.3);
}

/* Caption overlay */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 40px 24px 48px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .gallery-slider { height: 320px; }
  .gallery-arrow { width: 40px; height: 40px; font-size: 1.8rem; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
}


/* ── Dual Portrait Video Layout ──────────────────────── */
.facility-dual-video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
}

.facility-dual-video .facility-video-wrap {
  border-radius: 0;
  aspect-ratio: 9/16;
  max-height: 480px;
}

.facility-dual-video .facility-video-wrap video {
  object-position: bottom;
}

.facility-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 100%);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px 12px 12px;
}
