/* ═══════════════════════════════════════════════════════════════════
   VITTORIA CRICKET ACADEMY — by Bejoice Cricket Club
   Championship cricket meets premium youth sports academy.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  --navy: #061B3A;
  --navy-2: #0A2447;
  --navy-3: #0D2B52;
  --royal: #0B3D91;
  --royal-2: #1453B8;
  --red: #E5232E;
  --red-2: #C91422;
  --gold: #F5B51B;
  --gold-2: #D99A0C;
  --cream: #FFF9EF;
  --light: #F5F7FA;
  --ink: #07182F;
  --muted: #4E5F7A;
  --line: #E3E9F2;
  --white: #ffffff;

  --font-head: 'Bebas Neue', 'Oswald', 'Arial Black', sans-serif;
  --font-body: 'Manrope', 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 4px 14px rgba(6, 27, 58, .08);
  --shadow: 0 18px 44px rgba(6, 27, 58, .12);
  --shadow-lg: 0 26px 64px rgba(6, 27, 58, .18);

  --radius: 16px;
  --radius-sm: 12px;
  --container: 1300px;
  --ease: cubic-bezier(.22, .72, .32, 1);
}

/* ── Reset / base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: .01em;
  color: var(--navy);
  text-transform: uppercase;
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
  position: relative;
  z-index: 3;
}

section, .section { position: relative; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  min-height: 48px;
  padding: 12px 28px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .32s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn .arr { transition: transform .32s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(229, 35, 46, .35);
}
.btn-red:hover {
  background: var(--royal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 61, 145, .4);
  border-color: var(--gold);
}
.btn-red:hover .arr { transform: translateX(5px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(245, 181, 27, .4);
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(245, 181, 27, .75);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(245, 181, 27, .10);
  box-shadow: 0 0 18px rgba(245, 181, 27, .35);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 61, 145, .5);
}
.btn-ghost-dark:hover { border-color: var(--royal); background: rgba(11, 61, 145, .06); }

.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(6, 27, 58, .2);
}
.btn-white:hover { background: var(--gold); }

/* ── Polish: hover lift, focus states ──────────────────────────── */
.btn-red:hover, .btn-gold:hover, .btn-ghost:hover, .btn-white:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}
::selection { background: var(--red); color: #fff; }

/* ── Section headings ──────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
}
.eyebrow.gold { color: var(--gold-2); }
/* darker gold on light backgrounds for legibility */
.sec-white .eyebrow.gold, .sec-cream .eyebrow.gold, .sec-light .eyebrow.gold { color: #A87808; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 2px;
}

.sec-title {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  margin-bottom: 18px;
  letter-spacing: .005em;
}
.sec-title .hl { color: var(--red); }
.sec-title .hl-gold { color: var(--gold-2); }
.sec-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 640px;
}
.sec-head.center .sec-sub { margin-inline: auto; }
.sec-head.center { text-align: center; }

.sec-inner { padding: 96px 0; }

/* ── Navbar ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
  background: rgba(6, 27, 58, .97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 181, 27, .18);
}
.site-header.scrolled {
  background: #061B3A;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
  border-bottom-color: rgba(245, 181, 27, .28);
}
/* gold accent line across the top of the navbar */
.site-header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  background-size: 200% 100%;
  animation: header-shine 8s linear infinite;
}
@keyframes header-shine {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.nav-inner {
  width: min(var(--container), 94%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  transition: padding .35s var(--ease);
}
.site-header.scrolled .nav-inner { padding: 10px 0; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  width: 52px; height: 52px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--navy);
  box-shadow: 0 0 0 4px rgba(245, 181, 27, .12), 0 0 22px rgba(245, 181, 27, .28);
  transition: width .35s var(--ease), height .35s var(--ease);
}
.site-header.scrolled .brand-logo { width: 44px; height: 44px; }
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: .06em;
  color: #fff;
  white-space: nowrap;
}
.site-header.scrolled .brand-name { font-size: 1.2rem; }
.brand-name em { color: var(--gold); font-style: normal; }
.brand-tag {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 249, 239, .85);
  white-space: nowrap;
}
.brand-tag b { color: var(--red); font-weight: 800; }

.brand-bcc-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform .3s var(--ease);
}

.brand-bcc-logo:hover {
  transform: scale(1.08);
}

.brand-bcc-logo img {
  height: 44px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.bcc-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .14em;
  line-height: 1;
}

@media (max-width: 640px) {
  .brand-bcc-logo img { height: 38px; }
  .bcc-name { font-size: 1rem; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  position: relative;
  padding: 8px 12px;
  font-weight: 600;
  font-size: .92rem;
  color: #fff;
  letter-spacing: .02em;
  transition: color .25s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active {
  background: rgba(245, 181, 27, .1);
  border-radius: 8px;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Dropdown (Programs) */
.nav-item { position: relative; display: inline-flex; }
.nav-item .nav-drop-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 12px;
  font-family: inherit;
  font-weight: 600;
  font-size: .92rem;
  color: #fff;
  letter-spacing: .02em;
  transition: color .25s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}
.nav-item .nav-drop-trigger::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-item.is-current .nav-drop-trigger,
.nav-item:hover .nav-drop-trigger,
.nav-item.open .nav-drop-trigger { color: var(--gold); }
.nav-item.is-current .nav-drop-trigger::after,
.nav-item:hover .nav-drop-trigger::after,
.nav-item.open .nav-drop-trigger::after { transform: scaleX(1); }
.nav-item .nav-drop-trigger i { font-size: .7rem; transition: transform .3s var(--ease); }
.nav-item.open .nav-drop-trigger i, .nav-item:hover .nav-drop-trigger i { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: linear-gradient(160deg, #0B2140, var(--navy-2) 60%, #071831);
  border: 1px solid rgba(245, 181, 27, .22);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 300;
}
.nav-item.open .nav-drop-menu, .nav-item:hover .nav-drop-menu, .nav-item:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop-menu a {
  display: block;
  position: relative;
  padding: 11px 14px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--cream);
  border-radius: 8px;
  transition: background .2s, color .2s, padding-left .25s;
}
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover, .nav-drop-menu a.active {
  background: rgba(245, 181, 27, .12);
  color: var(--gold);
  padding-left: 18px;
}
.nav-drop-menu a.active { background: rgba(245, 181, 27, .14); }

.nav-cta-group { display: flex; align-items: center; gap: 12px; }
.nav-cta { min-height: 44px; padding: 10px 20px; }
.mobile-only { display: none !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,181,27,.4);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--royal) 130%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 90px 8% 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2.2rem;
  letter-spacing: .05em;
  color: var(--cream);
  padding: 8px 0;
  border-bottom: 1px solid rgba(245,181,27,.14);
  transition: color .2s, padding-left .25s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); padding-left: 8px; }
.mobile-menu .mm-cta { margin-top: 22px; text-align: center; }
.mobile-menu .mm-cta .btn { width: 100%; }
.mobile-menu .mm-group { display: flex; flex-direction: column; }
.mobile-menu .mm-group > a { margin-bottom: 2px; }
.mobile-menu .mm-sub {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 2px solid rgba(245, 181, 27, .25);
  margin: 2px 0 8px 6px;
}
.mobile-menu .mm-sub a {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 7px 0 7px 6px;
  border-bottom: 1px solid rgba(245,181,27,.1);
  color: rgba(255, 249, 239, .85);
}
.mobile-menu .mm-sub a:hover, .mobile-menu .mm-sub a.active { color: var(--gold); padding-left: 12px; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 1; }

/* ── Full-screen background video ── */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  pointer-events: none;
  opacity: .6;
  filter: blur(2px) brightness(.85) saturate(1.05);
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 22s var(--ease) forwards;
  opacity: .55;
  filter: blur(2px) brightness(.85) saturate(1.05);
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,27,58,.96) 0%, rgba(6,27,58,.78) 45%, rgba(11,61,145,.35) 100%),
    linear-gradient(180deg, rgba(6,27,58,.4), rgba(6,27,58,.6));
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 2; pointer-events: none; }
.hero-glow.red { width: 420px; height: 420px; background: rgba(229,35,46,.5); top: -60px; right: 8%; }
.hero-glow.gold { width: 380px; height: 380px; background: rgba(245,181,27,.34); bottom: -80px; left: 30%; }

.hero-content { position: relative; z-index: 4; padding: 150px 0 120px; width: min(var(--container), 92%); margin-inline: auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(245,181,27,.55);
  border-radius: 30px;
  background: rgba(245,181,27,.08);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(4px);
}
.hero-badge::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(229,35,46,.25); }
.hero h1 { color: #fff; font-size: clamp(3.2rem, 10vw, 8rem); line-height: .92; letter-spacing: .005em; text-shadow: 0 12px 34px rgba(0,0,0,.35); }
.hero h1 .line { display: block; }
.hero h1 .gold { color: var(--gold); text-shadow: 0 0 34px rgba(245,181,27,.35); }
.hero h1 .red { color: #ff5b63; }
.hero-sub-brand { margin: 18px 0 8px; font-family: var(--font-head); font-size: clamp(.95rem, 2vw, 1.4rem); letter-spacing: .1em; color: var(--cream); }
.hero-sub p { color: rgba(255,249,239,.9); font-size: 1.12rem; max-width: 560px; margin-bottom: 6px; }
.hero-byline { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: clamp(1.6rem, 4vw, 3rem); font-family: var(--font-head); color: #58A9FF; margin-top: 16px; }
.hero-byline::before { content: ''; width: 26px; height: 2px; background: #58A9FF; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.hero-scroll { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,249,239,.75); font-size: .72rem; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; }
.hero-scroll .wheel { width: 24px; height: 40px; border: 2px solid rgba(245,181,27,.7); border-radius: 14px; position: relative; }
.hero-scroll .wheel::after { content: ''; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px; background: var(--gold); border-radius: 3px; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ── Stats strip ───────────────────────────────────────────────── */
.stats { background: linear-gradient(90deg, var(--navy) 0%, var(--royal) 100%); border-top: 1px solid rgba(245,181,27,.28); border-bottom: 1px solid rgba(245,181,27,.22); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 24px; text-align: center; border-right: 1px solid rgba(245,181,27,.16); position: relative; }
.stat:last-child { border-right: none; }
.stat-value { font-family: var(--font-head); font-size: 2.8rem; color: var(--gold); letter-spacing: .03em; line-height: 1; text-shadow: 0 0 22px rgba(245,181,27,.3); }
.stat-label { margin-top: 8px; font-size: .78rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,249,239,.85); }

/* ── About ─────────────────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; height: 620px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-media::before { content: ''; position: absolute; inset: 22px -22px -22px 22px; border: 2px solid rgba(245,181,27,.5); border-radius: var(--radius); z-index: -1; }
.about-media .frame-tag { position: absolute; top: 18px; left: 18px; background: var(--navy); color: var(--gold); font-weight: 800; font-size: .74rem; letter-spacing: .22em; padding: 8px 14px; border-radius: 6px; border-left: 4px solid var(--gold); text-transform: uppercase; }

.about-content h2 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin-bottom: 18px; }
.about-content p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-content p strong { color: var(--navy); }

.feature-points { margin: 26px 0 10px; display: grid; gap: 14px; }
.feature-point { display: flex; gap: 16px; align-items: flex-start; border-top: 1px solid var(--line); padding-top: 14px; }
.feature-point .fp-num { font-family: var(--font-head); font-size: 2.1rem; color: var(--gold-2); line-height: 1; min-width: 46px; flex: none; text-shadow: 0 0 18px rgba(245,181,27,.25); }
.feature-point .fp-text strong { display: block; font-size: 1rem; letter-spacing: .04em; color: var(--navy); text-transform: uppercase; }
.feature-point .fp-text span { font-size: .92rem; color: var(--muted); }
.feature-point .fp-line { flex: none; width: 3px; align-self: stretch; background: linear-gradient(180deg, var(--red), var(--gold)); border-radius: 2px; }

/* ── Programs section ──────────────────────────────────────────── */
.programs { background: var(--light); overflow: hidden; }
.programs-head { text-align: center; }
.program-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 34px; margin-top: 44px; }
.program-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border: 2px solid rgba(245,181,27,.22);
  box-shadow: var(--shadow);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), 0 0 34px rgba(245,181,27,.22); border-color: rgba(245,181,27,.75); }
.pc-media { position: relative; height: 280px; overflow: hidden; }
.pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.program-card:hover .pc-media img { transform: scale(1.04); }
.pc-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,27,58,0) 40%, rgba(6,27,58,.85) 100%); }
.pc-badge { position: absolute; top: 18px; left: 18px; z-index: 3; background: var(--red); color: #fff; font-weight: 800; font-size: .76rem; letter-spacing: .2em; padding: 7px 14px; border-radius: 6px; text-transform: uppercase; box-shadow: 0 6px 16px rgba(229,35,46,.4); }
.pc-badge.gold { background: var(--gold); color: var(--navy); box-shadow: 0 6px 16px rgba(245,181,27,.4); }
.pc-mono {
  position: absolute;
  right: -18px; bottom: -38px;
  font-family: var(--font-head);
  font-size: 13rem;
  line-height: 1;
  color: rgba(245,181,27,.1);
  z-index: 2;
  pointer-events: none;
  letter-spacing: -.02em;
}
.pc-body { padding: 30px 30px 34px; position: relative; z-index: 3; }
.pc-title { font-family: var(--font-head); font-size: 2.4rem; letter-spacing: .06em; color: #fff; margin-bottom: 6px; }
.pc-subtitle { font-weight: 700; color: var(--gold); font-size: 1.02rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em; }
.pc-desc { color: rgba(255,249,239,.85); margin-bottom: 18px; font-size: .98rem; }
.pc-list { margin-bottom: 24px; display: grid; gap: 9px; }
.pc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: rgba(255,249,239,.92); }
.pc-list li::before { content: ''; flex: none; width: 8px; height: 8px; margin-top: 8px; background: var(--gold); transform: rotate(45deg); box-shadow: 0 0 8px rgba(245,181,27,.6); }
.pc-cta-row { display: flex; align-items: center; }
.pc-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.12rem; letter-spacing: .1em; color: var(--gold); border-bottom: 2px solid var(--red); padding-bottom: 4px; transition: gap .3s var(--ease); text-transform: uppercase; }
.program-card:hover .pc-link { gap: 18px; color: #fff; }

/* ── Program cards open detail popups ────────────────────────── */
/* Reset button defaults so cards render exactly like before */
.program-card {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(245,181,27,.22);
  background: var(--navy);
  font: inherit;
  font-family: inherit;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.program-card .pc-body { flex: 1; }
.program-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-color: var(--gold); }
/* Keep the hover lift above the scroll-reveal transform */
.program-cards > button.program-card:hover { transform: translateY(-6px); }

/* ── Program detail modal ────────────────────────────────────── */
.program-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.program-modal[hidden] { display: none; }
.program-modal-backdrop { position: absolute; inset: 0; background: rgba(2, 8, 20, .78); backdrop-filter: blur(4px); }
.program-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid rgba(245,181,27,.35);
  border-radius: var(--radius);
  box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 1px rgba(245,181,27,.12);
  opacity: 0;
  transform: translateY(24px) scale(.98);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.program-modal.open .program-modal-dialog { opacity: 1; transform: none; }
.pm-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 6;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(6,27,58,.62);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.pm-close:hover, .pm-close:focus-visible { background: var(--red); border-color: var(--red); transform: rotate(90deg); outline: none; }
.pm-media { position: relative; height: 300px; overflow: hidden; background: #051528; }
.pm-media img, .pm-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-media video[hidden] { display: none !important; }
.program-modal .pm-body { padding: 28px 32px 8px; }
.program-modal .pc-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.6rem); letter-spacing: .06em; color: #fff; margin-bottom: 6px; }
.program-modal .pc-subtitle { margin-top: 4px; }
.pm-actions { padding: 8px 32px 30px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.pm-link { display: inline-flex; align-items: center; gap: 10px; }
.pm-wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; border-color: #25D366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .35); }
.pm-wa:hover { background: #1eb85a; border-color: #1eb85a; color: #fff; box-shadow: 0 14px 30px rgba(30, 184, 90, .45); }
@media (max-width: 640px) {
  .pm-media { height: 210px; }
  .program-modal .pm-body { padding: 22px 20px 6px; }
  .pm-actions { padding: 8px 20px 24px; }
}
.pm-actions .btn { white-space: normal; text-align: center; }

/* ── Why Vittoria ──────────────────────────────────────────────── */
.why { background: var(--navy); color: var(--cream); overflow: hidden; }
.why::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 10%, rgba(11,61,145,.5), transparent 55%), conic-gradient(from 0deg at 92% 8%, transparent 0, rgba(245,181,27,.05) 20%, transparent 40%); pointer-events: none; }
.why .sec-title { color: #fff; }
.why .sec-sub { color: rgba(255,249,239,.78); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.why-card {
  position: relative;
  background: linear-gradient(165deg, rgba(11,61,145,.5), rgba(6,27,58,.7));
  border: 1px solid rgba(245,181,27,.18);
  border-radius: var(--radius);
  padding: 30px 28px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(245,181,27,.55); box-shadow: 0 20px 44px rgba(0,0,0,.35); }
.why-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.why-card:hover::after { transform: scaleX(1); }
.why-ico {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(245,181,27,.1);
  border: 1px solid rgba(245,181,27,.4);
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.why-card h3 { color: #fff; font-size: 1.5rem; letter-spacing: .05em; margin-bottom: 10px; }
.why-card p { color: rgba(255,249,239,.8); font-size: .97rem; }

/* ── Development Journey ───────────────────────────────────────── */
.journey { background: var(--cream); overflow: hidden; }
.journey-track { position: relative; margin-top: 70px; }
.journey-line { position: absolute; top: 40px; left: 0; right: 0; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--red), var(--gold), var(--gold), var(--red)); transform: translateY(-50%); opacity: .8; }
.journey-line::before, .journey-line::after { content: ''; position: absolute; height: 4px; width: 14px; background: repeating-linear-gradient(90deg, #fff 0 6px, transparent 6px 10px); top: 0; border-radius: 2px; }
.journey-line::before { left: 12px; }
.journey-line::after { right: 12px; }
.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.journey-step { position: relative; text-align: center; }
.jstep-dot {
  width: 82px; height: 82px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: conic-gradient(from 210deg, var(--gold), var(--red), var(--royal), var(--gold));
  padding: 4px;
  box-shadow: 0 0 30px rgba(245,181,27,.35);
}
.jstep-dot .jnum {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--navy);
}
.journey-step h3 { color: var(--navy); font-size: 1.6rem; letter-spacing: .08em; margin-bottom: 8px; }
.journey-step p { color: var(--muted); font-size: .95rem; max-width: 220px; margin-inline: auto; }

/* ── Home Grounds ──────────────────────────────────────────────── */
.grounds { background: var(--light); overflow: hidden; }
.grounds::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 46px, rgba(6,27,58,.03) 46px 47px), repeating-linear-gradient(90deg, transparent 0 46px, rgba(6,27,58,.03) 46px 47px); pointer-events: none; }
.grounds-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; margin-top: 44px; }
.ground-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.ground-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(245,181,27,.6); }
.gc-media { position: relative; height: 240px; overflow: hidden; }
.gc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.ground-card:hover .gc-media img { transform: scale(1.03); }
.gc-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,27,58,0), rgba(6,27,58,.65)); }
.gc-badge { position: absolute; top: 18px; left: 18px; z-index: 3; background: var(--navy); color: var(--gold); border: 1px solid rgba(245,181,27,.6); font-weight: 800; font-size: .74rem; letter-spacing: .2em; padding: 7px 13px; border-radius: 6px; text-transform: uppercase; }
.gc-pin { position: absolute; bottom: 16px; left: 20px; z-index: 3; color: #fff; display: flex; align-items: center; gap: 8px; font-weight: 700; }
.gc-pin i { color: var(--gold); font-size: 1.2rem; }
.gc-body { padding: 28px 30px 30px; position: relative; }
.gc-title { font-family: var(--font-head); font-size: 2.2rem; letter-spacing: .05em; color: var(--navy); margin-bottom: 8px; }
.gc-title em { color: var(--royal); font-style: normal; }
.gc-desc { color: var(--muted); font-size: .98rem; margin-bottom: 20px; }
.gc-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.gc-tag { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 700; color: var(--navy); background: var(--light); border: 1px solid var(--line); padding: 6px 12px; border-radius: 30px; }
.gc-tag i { color: var(--gold-2); }
.ground-card .btn { margin-top: 4px; }
.ground-placeholder { font-style: italic; opacity: .85; margin-top: -8px; margin-bottom: 14px; font-size: .88rem; color: var(--muted); }

/* ── Locations grid ────────────────────────────────────────────── */
.locations { background: var(--light); overflow: hidden; }
.locations-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: center; }
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.loc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.loc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(245,181,27,.7); border-top-color: var(--gold); }
.loc-ico { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: rgba(245,181,27,.12); color: var(--gold-2); font-size: 1.4rem; margin-bottom: 16px; }
.loc-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.12rem; text-transform: none; color: var(--navy); letter-spacing: .01em; margin-bottom: 4px; }
.loc-card .loc-city { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.loc-card .loc-city::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.loc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; color: var(--royal); }
.loc-link i { color: var(--gold-2); transition: transform .3s var(--ease); }
.loc-link:hover i { transform: translateX(5px); }
.loc-link:hover { color: var(--red); }
.uae-map {
  position: relative;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 30px 24px;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.uae-map::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 34px, rgba(255,255,255,.05) 34px 36px), radial-gradient(circle at 40% 30%, rgba(245,181,27,.2), transparent 60%); pointer-events: none; }
.uae-map h4 { font-family: var(--font-head); font-size: 1.6rem; color: #fff; letter-spacing: .1em; margin-bottom: 4px; }
.uae-map > p { font-size: .85rem; color: rgba(255,249,239,.7); margin-bottom: 26px; }
.map-hero { position: relative; height: 240px; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; }
.map-hero iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 14px; }
.map-tab {
  font-family: var(--font-head); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,.07); color: var(--cream);
  border: 1px solid rgba(245,181,27,.3); transition: all .2s ease;
}
.map-tab:hover { border-color: rgba(245,181,27,.7); color: #fff; }
.map-tab.is-active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.map-tab-bcc { border-color: rgba(46,204,113,.5); }
.map-tab-bcc:hover { border-color: #2ecc71; }
.map-tab-bcc.is-active { background: #2ecc71; border-color: #2ecc71; color: #fff; }
.map-city-list { display: grid; gap: 10px; }
.map-city { display: flex; align-items: center; gap: 10px; justify-content: center; font-weight: 700; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream); text-decoration: none; transition: color .2s ease; }
.map-city:hover { color: var(--gold); }
.map-city.dubai:hover { color: var(--red); }
.map-city i { color: var(--gold); }
.map-city.dubai i { color: var(--red); }

/* ── Team Dashboard ─────────────────────────────────────────────── */
.team-dashboard { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 55%, var(--royal) 130%); color: var(--cream); overflow: hidden; }
.team-dashboard::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 48px, rgba(245,181,27,.04) 48px 49px), repeating-linear-gradient(90deg, transparent 0 48px, rgba(245,181,27,.04) 48px 49px), radial-gradient(circle at 90% 0%, rgba(229,35,46,.14), transparent 45%), radial-gradient(circle at 0% 100%, rgba(245,181,27,.08), transparent 45%); pointer-events: none; }
.team-dashboard .sec-title { color: #fff; }
.team-dashboard .sec-sub { color: rgba(255,249,239,.7); }

.td-teams { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 44px; }
.team-card { background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)), var(--navy); border: 1px solid rgba(245,181,27,.22); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.team-card:hover { transform: translateY(-6px); border-color: rgba(245,181,27,.55); box-shadow: 0 22px 50px rgba(0,0,0,.4); }
.team-card-head { display: flex; align-items: center; gap: 16px; padding: 24px 26px; border-bottom: 1px solid rgba(245,181,27,.14); }
.team-badge { flex: none; width: 56px; height: 56px; display: grid; place-items: center; font-family: var(--font-head); font-size: 1.4rem; letter-spacing: .06em; color: #04150B; background: linear-gradient(135deg, var(--gold), var(--gold-2)); border-radius: 12px; }
.team-name { font-family: var(--font-head); font-size: 1.8rem; letter-spacing: .05em; color: #fff; margin: 0; }
.team-card-body { padding: 22px 26px 26px; }
.team-meta { display: flex; align-items: center; gap: 9px; color: rgba(255,249,239,.85); font-size: .95rem; margin-bottom: 12px; }
.team-meta i { color: var(--gold); width: 18px; text-align: center; }
.team-meta .label { color: rgba(255,249,239,.55); font-weight: 600; }
.team-card .btn { margin-top: 6px; }
.team-dashboard .team-card .btn-ghost-dark { color: var(--gold); border-color: rgba(245,181,27,.55); }
.team-dashboard .team-card .btn-ghost-dark:hover { background: rgba(245,181,27,.12); border-color: var(--gold); color: #fff; }

/* ── Coaching ──────────────────────────────────────────────────── */
.coaching { background: var(--navy); color: var(--cream); overflow: hidden; }
.coaching::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 80%, rgba(229,35,46,.18), transparent 50%), radial-gradient(circle at 90% 10%, rgba(245,181,27,.12), transparent 45%); pointer-events: none; }
.coaching-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.coaching-media { position: relative; }
.coaching-media img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.coaching-media::before { content: ''; position: absolute; inset: -18px -20px -20px auto; width: 45%; border: 2px solid rgba(245,181,27,.45); border-radius: var(--radius); z-index: -1; }
.coaching .sec-title { color: #fff; }
.coaching .sec-sub { color: rgba(255,249,239,.8); }
.coach-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin: 26px 0 30px; }
.coach-bullets li { display: flex; gap: 10px; align-items: center; font-weight: 600; color: var(--navy); font-size: .97rem; }
.coaching .coach-bullets li, .sec-navy .coach-bullets li { color: var(--cream); }
.coach-bullets li::before { content: '✓'; flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(245,181,27,.18); border: 1px solid rgba(245,181,27,.5); color: var(--gold); display: grid; place-items: center; font-size: .8rem; }

/* ── Gallery ───────────────────────────────────────────────────── */
.gallery { background: var(--light); overflow: hidden; }
.gallery-masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; margin-top: 44px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(6,27,58,.78)); opacity: 0; transition: opacity .35s; }
.gal-item:hover::after { opacity: 1; }
.gal-cap { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding: 18px; text-align: center; color: var(--gold); font-family: var(--font-head); font-size: 1.25rem; letter-spacing: .1em; opacity: 0; transform: translateY(10px); transition: all .35s var(--ease); text-transform: uppercase; }
.gal-item:hover .gal-cap { opacity: 1; transform: translateY(0); }
.gal-cap small { font-family: var(--font-body); font-size: .68rem; letter-spacing: .24em; color: rgba(255,255,255,.8); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.gallery-cta { text-align: center; margin-top: 40px; }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials { background: var(--cream); overflow: hidden; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testi-card .quote { position: absolute; top: 22px; right: 26px; font-family: Georgia, serif; font-size: 4rem; line-height: 1; color: rgba(245,181,27,.25); }
.testi-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; font-size: .95rem; }
.testi-text { color: var(--muted); font-size: .98rem; margin-bottom: 22px; }
.testi-placeholder { background: var(--light); border: 1px dashed rgba(11,61,145,.3); color: var(--muted); font-style: italic; padding: 14px 16px; border-radius: 10px; font-size: .92rem; margin-bottom: 22px; }
.testi-who { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 18px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: conic-gradient(from 210deg, var(--gold), var(--royal), var(--red), var(--gold)); padding: 3px; }
.testi-avatar span { width: 100%; height: 100%; border-radius: 50%; background: var(--light); display: grid; place-items: center; font-family: var(--font-head); color: var(--royal); font-size: 1.3rem; }
.testi-who strong { display: block; color: var(--navy); font-size: 1rem; }
.testi-who small { color: var(--muted); font-size: .82rem; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq { background: var(--white); overflow: hidden; }
.faq-wrap { max-width: 820px; margin: 44px auto 0; }
.faq-item { border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--white); overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow-sm); border-left-color: var(--gold); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 20px 22px; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.faq-q .fq-ico { flex: none; width: 28px; height: 28px; border-radius: 50%; background: rgba(245,181,27,.15); border: 1px solid rgba(245,181,27,.5); color: var(--gold-2); display: grid; place-items: center; font-size: .8rem; transition: transform .35s var(--ease); }
.faq-item.open .fq-ico { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-in { padding: 0 22px 22px; color: var(--muted); font-size: .98rem; }

/* ── Final CTA ─────────────────────────────────────────────────── */
.final-cta { position: relative; background: var(--navy); color: var(--cream); text-align: center; overflow: hidden; padding: 120px 0; }
.final-cta-bg { position: absolute; inset: 0; z-index: 1; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.final-cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(6,27,58,.94), rgba(11,61,145,.7)); }
.final-cta .container { position: relative; z-index: 4; }
.final-cta .lamp { position: absolute; width: 120px; height: 120px; border-radius: 50%; filter: blur(40px); z-index: 3; pointer-events: none; }
.final-cta .lamp.l1 { background: rgba(245,181,27,.4); top: -40px; left: 12%; }
.final-cta .lamp.l2 { background: rgba(229,35,46,.45); top: -30px; right: 15%; }
.final-cta h2 { color: #fff; font-size: clamp(2.8rem, 6.2vw, 5.4rem); margin-bottom: 16px; }
.final-cta p { color: rgba(255,249,239,.85); font-size: 1.15rem; max-width: 620px; margin: 0 auto 36px; }
.final-cta .cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ── Contact ───────────────────────────────────────────────────── */
.contact { background: var(--light); overflow: hidden; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: start; margin-top: 44px; }
.contact-info .contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.ci-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ci-row:last-child { border-bottom: none; }
.ci-ico { width: 48px; height: 48px; flex: none; border-radius: 12px; background: rgba(245,181,27,.12); color: var(--gold-2); display: grid; place-items: center; font-size: 1.25rem; }
.ci-row a { color: var(--ink); font-weight: 600; font-size: .98rem; }
.ci-row a:hover { color: var(--red); }
.ci-row small { display: block; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; color: #fff; font-size: 1.2rem; transition: transform .3s var(--ease), box-shadow .3s; }
.social-btn:hover { transform: translateY(-3px); }
.social-btn.insta { background: linear-gradient(45deg, #f7a408, #d44b0f, #8a3ab9); }
.social-btn.whatsapp { background: #25D366; }
.social-btn.copy { background: var(--royal); }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; border-top: 5px solid var(--red); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 700; font-size: .84rem; letter-spacing: .03em; color: var(--navy); }
.form-group label span { color: var(--red); }
.form-group input, .form-group select, .form-group textarea {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--ink);
  background: var(--light);
  transition: border-color .25s, box-shadow .25s;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,181,27,.18);
  background: #fff;
}
.form-group input.invalid, .form-group select.invalid { border-color: var(--red); }
.form-error { grid-column: 1/-1; color: var(--red); font-size: .9rem; font-weight: 600; display: none; }
.form-success { display: none; background: rgba(245,181,27,.1); border: 1px solid rgba(245,181,27,.5); color: var(--navy); border-radius: 10px; padding: 16px 18px; font-weight: 700; margin-top: 18px; }
.form-success .fa-check-circle { color: var(--gold-2); }
.form-submit { grid-column: 1/-1; width: 100%; margin-top: 6px; }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,249,239,.82); border-top: 3px solid var(--red); }
.footer-top { background: linear-gradient(180deg, var(--navy-2), var(--navy)); padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: .97rem; color: rgba(255,249,239,.72); max-width: 300px; }
.footer-brand .fb-slogan { font-family: var(--font-head); font-size: 1.25rem; letter-spacing: .05em; color: var(--gold); margin-top: 10px; text-transform: uppercase; }
.footer-col h4 { font-size: 1.15rem; letter-spacing: .12em; color: #fff; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--red)); }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,249,239,.78); font-size: .95rem; transition: color .2s, padding-left .25s; }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(245,181,27,.16); padding: 22px 0; font-size: .88rem; color: rgba(255,249,239,.66); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom .by-bcc { font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,249,239,.85); }
.footer-bottom .by-bcc span { color: var(--red); }
.footer-social { display: flex; gap: 10px; align-items: center; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 1rem; line-height: 1; color: #fff;
  background: var(--royal-2);
  border: 1px solid rgba(255, 249, 239, .22);
  transition: background .2s, transform .2s, border-color .2s;
}
.social-btn:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold); }
.social-btn.insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.whatsapp { background: #25d366; }
.social-btn.email { background: var(--royal-2); }

/* ── Footer CTA strip ──────────────────────────────────────────── */
.footer-cta {
  background: linear-gradient(120deg, var(--red-2), var(--red) 55%, var(--gold-2));
  padding: 42px 0;
}
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: .04em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
  padding-bottom: 0;
  margin-bottom: 0;
}
.footer-cta-title::after { content: none; }
.footer-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-cta .btn-ghost { border-color: rgba(255, 255, 255, .8); }
.footer-cta .btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: rgba(255, 255, 255, .9); }

/* ── Footer contact list ───────────────────────────────────────── */
.footer-contact-list { margin-top: 20px; display: grid; gap: 4px; }
.footer-contact-list a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 249, 239, .85); font-size: .92rem;
  padding: 5px 0; transition: color .2s;
}
.footer-contact-list a:hover { color: var(--gold); padding-left: 0; }
.footer-contact-list i { width: 18px; text-align: center; color: var(--gold); font-size: .9rem; }
.footer-contact-list a { word-break: break-word; }

@media (max-width: 640px) {
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-actions { justify-content: center; }
}

/* ── Inner page hero ───────────────────────────────────────────── */
.page-hero { position: relative; min-height: 52vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy); padding: 150px 0 80px; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,27,58,.72), rgba(6,27,58,.9)); }
.page-hero .content { position: relative; z-index: 4; width: min(var(--container), 92%); margin-inline: auto; }
.page-hero h1 { color: #fff; font-size: clamp(3rem, 7vw, 5.6rem); }
.page-hero h1 .gold { color: var(--gold); }
.page-hero .crumbs { display: flex; gap: 8px; align-items: center; font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,249,239,.7); margin-bottom: 12px; }
.page-hero .crumbs a { color: var(--gold); }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero .crumbs span { color: var(--red); }
.page-hero .sub { margin-top: 16px; font-family: var(--font-head); letter-spacing: .14em; color: var(--gold); font-size: 1.35rem; text-transform: uppercase; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 300;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; }

/* ── Scroll reveal animations ──────────────────────────────────── */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal-left.in { opacity: 1; transform: none; }
.js .reveal-right { opacity: 0; transform: translateX(44px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal-right.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal-left, .js .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Shared inner-page content blocks ──────────────────────────── */
.sec-navy { background: var(--navy); color: var(--cream); }
.sec-navy.bg { background: linear-gradient(160deg, var(--navy-2), var(--navy)); }
.sec-navy .sec-title { color: #fff; }
.sec-navy .sec-sub { color: rgba(255,249,239,.8); }
.sec-cream { background: var(--cream); }
.sec-light { background: var(--light); }
.sec-white { background: var(--white); }

.rich { font-size: 1.05rem; color: var(--muted); }
.rich p { margin-bottom: 16px; }
.rich strong { color: var(--navy); }
.rich h3 { font-size: 1.7rem; color: var(--navy); margin: 26px 0 12px; }
.sec-navy .rich { color: rgba(255,249,239,.8); }
.sec-navy .rich strong { color: #fff; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.two-col .media { position: relative; }
.two-col .media img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.two-col .media::before { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid rgba(245,181,27,.5); border-radius: var(--radius); z-index: -1; }

/* pillars / value tiles */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-top-color: var(--red); }
.pillar .num { font-family: var(--font-head); color: var(--gold-2); font-size: 2rem; line-height: 1; }
.pillar h3 { font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 1.05rem; color: var(--navy); margin: 12px 0 8px; }
.pillar p { color: var(--muted); font-size: .95rem; }

/* skill list / checklist */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.check-grid li { display: flex; gap: 12px; align-items: center; color: var(--muted); font-weight: 600; }
.check-grid li::before { content: ''; flex: none; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); box-shadow: 0 0 8px rgba(245,181,27,.5); }
.sec-navy .check-grid li { color: rgba(255,249,239,.9); }

/* coach cards */
.coach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.coach-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.coach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.coach-photo { position: relative; height: 250px; overflow: hidden; display: grid; place-items: center; background: linear-gradient(160deg, var(--navy-2), var(--navy)); color: #fff; }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; }
.coach-photo .cd-init { font-family: var(--font-head); font-size: 4rem; color: rgba(245,181,27,.55); letter-spacing: .08em; }
.coach-body { padding: 22px 20px 26px; }
.coach-body h3 { font-family: var(--font-body); font-weight: 800; text-transform: none; font-size: 1.2rem; color: var(--navy); letter-spacing: .02em; }
.coach-body .role { font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin: 4px 0 12px; }
.coach-body p { color: var(--muted); font-size: .9rem; }

/* ── FAQ mini (inner pages) ────────────────────────────────────── */
.faq-wrap.narrow { max-width: 760px; }
.faq-wrap.mono { max-width: 760px; }

/* ── Program sub-page hero buttons ─────────────────────────────── */
.sub-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ── Back to top ───────────────────────────────────────────────── */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 150;
  width: 50px; height: 50px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(229, 35, 46, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .35s var(--ease);
}

.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--royal); border: 1px solid var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-grid { gap: 40px; }
  .about-media img { height: 520px; }
  .why-grid, .pillars { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .locations-wrap { grid-template-columns: 1fr; }
  .uae-map { max-width: 480px; margin-inline: auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .coach-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav-links, .nav-cta-group .desktop-only { display: none; }
  .mobile-only { display: inline-flex !important; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 12px 0; }
  .sec-inner { padding: 70px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(245,181,27,.16); }
  .stat:nth-child(odd) { border-right: none; }
  .about-grid, .coaching-grid, .two-col { grid-template-columns: 1fr; gap: 36px; }
  .about-media img { height: 420px; }
  .coaching-media img { height: 420px; }
  .program-cards, .grounds-grid, .testi-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; gap: 0; }
  .journey-line { display: none; }
  .journey-step { display: flex; gap: 22px; text-align: left; align-items: flex-start; padding: 0 0 34px 30px; position: relative; margin-left: 22px; }
  .journey-step::before { content: ''; position: absolute; left: -5px; top: 8px; bottom: -6px; width: 3px; background: linear-gradient(180deg, var(--red), var(--gold)); border-radius: 2px; }
  .journey-step .jstep-dot { margin: 0; width: 64px; height: 64px; flex: none; }
  .journey-step .jstep-dot .jnum { font-size: 1.5rem; }
  .journey-step p { margin-inline: 0; }
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .td-teams { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-name { font-size: 1.12rem; }
  .site-header.scrolled .brand-name { font-size: 1.05rem; }
  .brand-tag { letter-spacing: .16em; }
  .hero-content { padding: 130px 0 110px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-actions .btn { width: 100%; }
  .hero-scroll { bottom: 18px; }
  .why-grid, .pillars, .coach-grid { grid-template-columns: 1fr; }
  .loc-grid, .check-grid, .coach-bullets { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-tall, .g-wide { grid-row: auto; grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .two-col .media img { height: 320px; }
  .about-media::before { inset: 12px -8px -8px 12px; }
  /* Mobile: slightly darken video for better text contrast on small screens */
  .hero-video-bg { opacity: .5; }
}


/* ═══ PARTNERSHIP STRIP — Vittoria × BCC (interactive, compact) ═══ */
.partnership {
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(245, 181, 27, .06), transparent 60%),
    radial-gradient(700px 300px at 85% 100%, rgba(229, 35, 46, .07), transparent 60%),
    var(--navy);
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
/* shimmer line at top */.partnership::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}
/* floating orbs */.partnership::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 200px at 20% 50%, rgba(245, 181, 27, .04), transparent 70%),
    radial-gradient(400px 200px at 80% 50%, rgba(229, 35, 46, .05), transparent 70%);
  animation: floatOrbs 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes floatOrbs {
  0% { transform: translateY(-10px); }
  100% { transform: translateY(10px); }
}
.partnership .sec-head {
  margin-bottom: 2px;
  text-align: center;
}
.partnership .sec-head .eyebrow {
  color: var(--gold);
  font-size: .78rem;
  justify-content: center;
  margin-inline: auto;
}
.partnership .sec-head .sec-title {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  text-align: center;
  color: #fff;
}
.partnership .sec-head .sec-sub {
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.partnership-logos {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  margin-top: 4px;
}

.p-logo-card {
  flex: 1 1 280px;
  max-width: 300px;
  background: linear-gradient(180deg, rgba(10, 36, 71, .92), rgba(6, 27, 58, .92));
  border: 1px solid rgba(245, 181, 27, .35);
  border-radius: 18px;
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  position: relative;
  overflow: hidden;
}
/* animated gradient border on hover */
.p-logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: conic-gradient(from 0deg, var(--gold), var(--red), var(--gold), var(--red), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  animation: rotateBorder 3s linear infinite;
}
.p-logo-card:hover::before { opacity: 1; }
@keyframes rotateBorder {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
.p-logo-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(245, 181, 27, .25);
}

.p-logo-frame {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 181, 27, .15);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  transition: transform .3s ease, box-shadow .3s ease;
}
.p-logo-card:hover .p-logo-frame {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(245, 181, 27, .25);
}
.p-logo-frame img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  border-radius: 50%;
}
.p-logo-frame .fas { font-size: 1.5rem; color: var(--gold); }

.p-logo-name {
  font-family: var(--font-head);
  letter-spacing: .05em;
  font-size: 1rem;
  line-height: 1.15;
  color: #fff;
  min-height: 2.3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ── Social Media Widgets Grid ─────────────────────────────────── */
.social-widgets-section {
  background: var(--navy);
  color: var(--cream);
}

.social-widgets-section .sec-title { color: #fff; }
.social-widgets-section .sec-sub { color: rgba(255,249,239,.78); }

.social-widgets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 1100px) {
  .social-widgets-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .social-widgets-grid { grid-template-columns: 1fr; }
}

/* Platform header above each widget */
.sw-platform-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sw-platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.sw-insta-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #515bd4);
  box-shadow: 0 6px 20px rgba(221, 42, 123, .4);
}

.sw-fb-icon {
  background: #1877f2;
  box-shadow: 0 6px 20px rgba(24, 119, 242, .4);
}

.sw-yt-icon {
  background: #ff0000;
  box-shadow: 0 6px 20px rgba(255, 0, 0, .4);
}

.sw-platform-name {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 1.5px;
  color: #fff;
}

/* The actual widget wrapper */
.sw-widget-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  border: 3px solid rgba(255, 255, 255, .12);
  min-height: 600px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

/* ── YouTube Live Feed ─────────────────────────────────────── */
.sw-yt-wrap { border-color: rgba(255, 0, 0, .25); }

.sw-yt-inner {
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: #0f0f0f;
  font-family: var(--font-body);
}

.yt-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.yt-widget-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yt-widget-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.yt-widget-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1px;
}

.yt-widget-info p {
  font-size: 11px;
  color: #aaa;
}

.yt-subscribe-btn {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}

.yt-subscribe-btn:hover { background: #cc0000; }

.yt-embed-wrap { position: relative; padding-bottom: 56.25%; height: 0; }
.yt-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video list feed */
.yt-video-feed { flex: 1; overflow: hidden; }

.yt-feed-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #aaa;
  font-size: 14px;
  gap: 10px;
}

.yt-feed-loading .spin {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 0, 0, .3);
  border-top-color: #ff0000;
  border-radius: 50%;
  animation: ytSpin .8s linear infinite;
}

@keyframes ytSpin { to { transform: rotate(360deg); } }

.yt-video-item {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  align-items: flex-start;
}

.yt-video-item:hover { background: rgba(255, 255, 255, .05); }
.yt-video-item:first-child { padding-top: 14px; }

.yt-thumb-wrap {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
}

.yt-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transition: opacity .2s;
}

.yt-video-item:hover .yt-play-overlay { opacity: 1; }

.yt-video-meta { flex: 1; min-width: 0; }

.yt-video-title {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-video-date { font-size: 11px; color: #aaa; margin-top: 4px; }

.yt-channel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ff0000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 0;
  margin-top: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}

.yt-channel-link:hover { background: #cc0000; }

.yt-feed-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 16px;
  color: #aaa;
  font-size: 13px;
  text-align: center;
}

.yt-feed-error i { font-size: 30px; color: #ff0000; }
.sw-widget-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .6);
}

.sw-insta-wrap { border-color: rgba(221, 42, 123, .25); }
.sw-fb-wrap { border-color: rgba(24, 119, 242, .25); }

.sw-insta-inner {
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insta-stat-num {
  font-size: 15px;
  font-weight: 800;
  color: #000;
}

.p-socials { display: flex; gap: 8px; justify-content: center; }
.p-social {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .88rem;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease, filter .3s ease;
  position: relative;
  overflow: visible;
}
.p-social::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 13px;
  background: inherit;
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: opacity .3s ease;
}
.p-social:hover {
  transform: translateY(-5px) scale(1.18);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  filter: brightness(1.15);
}
.p-social:hover::after { opacity: .5; }
.p-social.insta { background: linear-gradient(45deg, #f7a408, #d44b0f, #8a3ab9); }
.p-social.facebook { background: #1877f2; }
.p-social.youtube { background: #ff0000; }
.p-social.whatsapp { background: #25d366; }
.p-social.email { background: var(--royal-2); }

.p-handshake {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  align-self: center;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--gold);
  background: rgba(245, 181, 27, .08);
  border: 2px dashed var(--gold);
  border-radius: 50%;
  animation: pulseHandshake 2s ease-in-out infinite;
  transition: transform .3s ease, background .3s ease;
}
.p-handshake:hover {
  transform: scale(1.15);
  background: rgba(245, 181, 27, .15);
  animation-play-state: paused;
}
@keyframes pulseHandshake {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 181, 27, .3); }
  50% { box-shadow: 0 0 0 12px rgba(245, 181, 27, 0); }
}

@media (max-width: 760px) {
  .partnership-logos { flex-direction: column; align-items: center; gap: 16px; }
  .p-logo-card { width: 100%; max-width: 340px; flex-direction: row; justify-content: flex-start; text-align: left; gap: 14px; padding: 14px 16px; }
  .p-logo-frame { width: 56px; height: 56px; }
  .p-logo-name { min-height: 0; justify-content: flex-start; }
  .p-socials { justify-content: flex-start; }
  .p-handshake { transform: rotate(90deg); width: 42px; height: 42px; font-size: .95rem; }
}

/* staggered social icon entrance */
.partnership-logos.reveal .p-social {
  opacity: 0;
  transform: translateY(8px);
  animation: socialIn .4s ease forwards;
}
.partnership-logos.reveal .p-social:nth-child(1) { animation-delay: .1s; }
.partnership-logos.reveal .p-social:nth-child(2) { animation-delay: .2s; }
.partnership-logos.reveal .p-social:nth-child(3) { animation-delay: .3s; }
@keyframes socialIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .p-logo-card, .p-social, .p-handshake { transition: none; animation: none; }
}
