/* ==========================================================================
   NextGen Cricket — Shared Stylesheet
   ========================================================================== */

:root {
  --navy: #1e3a63;
  --navy-2: #2a5090;
  --navy-dark: #14263f;
  --red: #dc3545;
  --red-dark: #b91c1c;
  --red-light: #ef5350;
  --gold: #f2b134;
  --gold-dark: #d99a1e;
  --success: #1e8a4c;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --gray-100: #eef1f6;
  --gray-300: #cdd4e0;
  --gray-600: #5b6472;
  --gray-800: #1f2733;
  --border: #e2e6ec;

  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(6, 20, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(6, 20, 40, 0.12);
  --shadow-lg: 0 20px 48px rgba(6, 20, 40, 0.18);
  --radius: 12px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[data-include] { display: contents; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--navy);
}
p { margin: 0 0 16px; color: var(--gray-600); }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(185, 28, 28, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(0) scale(0.97); }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.btn:hover::before { transform: translateX(120%); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(185,28,28,0.4); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); border-color: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.btn-block { width: 100%; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announcement-bar {
  position: relative;
  height: 40px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(242,177,52,0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announcement-bar.dismissed { display: none; }
.announcement-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  padding-left: 48px;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.announcement-bar:hover .announcement-track { animation-play-state: paused; }
.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
}
.announcement-item .ann-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(242,177,52,0.15);
  flex-shrink: 0;
}
.announcement-item svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.announcement-dot { color: var(--gold); opacity: 0.6; font-size: 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.announcement-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, transparent, #0a0a0a 30%);
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding-left: 14px;
  transition: color 0.15s ease;
}
.announcement-close svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.announcement-close:hover { color: var(--white); }
@media (prefers-reduced-motion: reduce) {
  .announcement-track { animation: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.logo:hover { transform: translateY(-1px); }
.logo-img { display: block; height: 46px; width: auto; }
.main-nav ul { display: flex; gap: 36px; }
.main-nav a {
  position: relative;
  color: var(--gray-800);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 2px;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 4px;
  height: 2px;
  background: var(--red);
  transition: right 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.main-nav a:hover, .main-nav a.active { color: var(--red); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-close, .nav-overlay, .nav-cta-mobile { display: none; }
#main-nav .nav-social-mobile { display: none; }

@media (max-width: 900px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  /* backdrop-filter on .site-header would otherwise become the containing
     block for the fixed-position drawer/overlay below, collapsing them to
     the header's own height instead of the full viewport */
  .site-header { backdrop-filter: none; }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(6, 20, 40, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 190;
  }
  .nav-overlay.open { opacity: 1; pointer-events: auto; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 320px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 20px 0 24px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -12px 0 32px rgba(6,20,40,0.2);
    z-index: 200;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 20px 12px auto;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    color: var(--navy);
    cursor: pointer;
  }
  .nav-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
  .nav-close:hover { background: var(--red); color: var(--white); }

  .main-nav ul { flex-direction: column; gap: 0; padding: 0 24px; }
  .main-nav a { display: block; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
  .main-nav a::after { display: none; }

  .nav-cta-mobile { display: flex; margin: auto 24px 0; box-sizing: border-box; }

  #main-nav .nav-social-mobile {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 18px 24px 4px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }
}

body.nav-open-lock { overflow: hidden; }

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(242,177,52,0.16), transparent 45%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, var(--red-dark) 130%);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 190px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 60px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-content .eyebrow { background: rgba(242,177,52,0.16); color: var(--gold); }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 20px;
}
.hero-content .lede {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(6px);
}
.hero-card h3 {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero-card ul { display: flex; flex-direction: column; gap: 14px; }
.hero-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-card li:last-child { border-bottom: none; padding-bottom: 0; }
.hero-card li strong { color: var(--gold); font-family: var(--font-heading); letter-spacing: 0.03em; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 160px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 55%, var(--red-dark) 170%);
  background-size: cover;
  background-position: center;
  color: var(--white);
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 760px) {
  .page-hero { min-height: 320px; padding: 72px 0; }
}
.page-hero--about {
  background-image: linear-gradient(120deg, rgba(6,20,40,0.92), rgba(10,31,61,0.82) 55%, rgba(139,20,20,0.65) 160%), url('../assets/images/about-coach.jpg');
}
.page-hero--program {
  background-image: linear-gradient(120deg, rgba(6,20,40,0.92), rgba(10,31,61,0.82) 55%, rgba(139,20,20,0.65) 160%), url('../assets/images/venue-ground.jpg');
}
.page-hero--package {
  background-image: linear-gradient(120deg, rgba(6,20,40,0.92), rgba(10,31,61,0.82) 55%, rgba(139,20,20,0.65) 160%), url('../assets/images/package-kit.jpg');
}
.page-hero--register {
  background-image: linear-gradient(120deg, rgba(6,20,40,0.92), rgba(10,31,61,0.82) 55%, rgba(139,20,20,0.65) 160%), url('../assets/images/register-cta.jpg');
}
.page-hero .eyebrow { background: rgba(242,177,52,0.16); color: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto; font-size: 17px; }

/* ==========================================================================
   Stats strip — straddles the hero / next-section boundary
   ========================================================================== */
.stats-strip { padding: 0; margin-top: -95px; position: relative; z-index: 3; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border-top: 4px solid var(--red);
}
.stat-item {
  text-align: center;
  padding: 36px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat-item:nth-child(odd) .stat-icon { background: rgba(185,28,28,0.08); color: var(--red); }
.stat-item:nth-child(even) .stat-icon { background: rgba(242,177,52,0.14); color: var(--gold-dark); }
.stat-item .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--navy);
}
.stat-item .label { font-size: 13px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; display: block; }
@media (max-width: 760px) {
  .stats-strip { margin-top: -70px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 26px 14px; border-bottom: 1px solid var(--border); }
}

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(185,28,28,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 15px; }
.card ul.checklist { margin-top: 16px; }

.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--gray-600);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.callout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.callout .icon { font-size: 28px; }
.callout h3 { margin-bottom: 8px; }
.callout p:last-child { margin-bottom: 0; }

.alt-bg { background: var(--off-white); }

/* ---------- Group / venue cards (program page) ---------- */
.group-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.group-card .group-head {
  background: linear-gradient(120deg, var(--red-dark), var(--red) 130%);
  color: var(--white);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.group-card .group-head .tag {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}
.group-card .group-head .dates { font-size: 15px; }
.group-card .group-body { padding: 26px 28px; }
.group-card .group-body h4 { font-size: 18px; margin-bottom: 6px; }
.group-photo { width: 100%; height: 200px; object-fit: cover; display: block; }

/* ---------- Photo banner (about / package) ---------- */
.photo-banner {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-banner img { width: 100%; height: 420px; object-fit: cover; }
@media (max-width: 640px) { .photo-banner img { height: 260px; } }

/* ---------- Pillars (program page) — photo cards with a number badge ---------- */
.pillar-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--red);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--red-light), var(--red) 60%, var(--navy) 160%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; font-size: clamp(24px, 3vw, 32px); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.cta-banner .cta-actions { flex-shrink: 0; }

/* Red banners need a contrasting button — red-on-red is invisible */
.cta-banner .btn-primary,
.cta-banner--split .btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.cta-banner .btn-primary:hover,
.cta-banner--split .btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.cta-banner .btn-primary.btn-pulse,
.cta-banner--split .btn-primary.btn-pulse { animation: ctaPulseGold 2.6s ease-in-out infinite; }
.cta-banner .btn-primary.btn-pulse:hover,
.cta-banner--split .btn-primary.btn-pulse:hover { animation: none; }
@keyframes ctaPulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,177,52,0.55); }
  50% { box-shadow: 0 0 0 14px rgba(242,177,52,0); }
}

/* ---------- Split CTA banner (with photo) ---------- */
.cta-banner--split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-light), var(--red) 55%, var(--navy) 150%);
}
.cta-banner--split .cta-media { position: relative; min-height: 280px; }
.cta-banner--split .cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner--split .cta-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(90,10,10,0.85) 100%);
}
.cta-banner--split .cta-content { padding: 48px 48px 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.cta-banner--split .icon { color: var(--gold); margin-bottom: 14px; }
.cta-banner--split .icon svg { width: 34px; height: 34px; }
.cta-banner--split h2 { display: flex; align-items: center; gap: 10px; }
.cta-checklist { margin-top: 20px; }
.cta-checklist li { color: rgba(255,255,255,0.9); }
.cta-checklist .icon-check { color: var(--gold); }
.cta-stats { display: flex; gap: 28px; margin: 20px 0 26px; flex-wrap: wrap; }
.cta-stats div { display: flex; flex-direction: column; }
.cta-stats strong { font-family: var(--font-heading); font-size: 28px; color: var(--gold); line-height: 1; }
.cta-stats span { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 4px; }
@media (max-width: 760px) {
  .cta-banner--split { grid-template-columns: 1fr; }
  .cta-banner--split .cta-media { min-height: 200px; }
  .cta-banner--split .cta-content { padding: 32px 28px; }
}

/* ==========================================================================
   Register form
   ========================================================================== */
.register-layout {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .register-layout { grid-template-columns: 1fr; } }

.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--off-white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-note { font-size: 12px; color: var(--gray-600); margin-top: 16px; }

.form-status {
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed var(--success);
  border-radius: var(--radius);
  background: rgba(30,138,76,0.06);
}
.form-status .icon { font-size: 40px; margin-bottom: 12px; }
.form-status h3 { margin-bottom: 8px; }

.sidebar-card {
  background: linear-gradient(135deg, var(--red-dark), var(--red) 140%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h3 { color: var(--white); font-size: 17px; margin-bottom: 14px; }
.sidebar-card p, .sidebar-card li { color: rgba(255,255,255,0.78); font-size: 14px; }
.sidebar-card .checklist li::before { background: var(--gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--off-white); color: var(--gray-600); padding-top: 72px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--gray-600); font-size: 14px; max-width: 320px; margin: 16px 0 20px; }
.logo-light { color: var(--navy); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--navy);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.social-links a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.social-links--light { margin-top: 16px; }
.social-links--light a { border-color: rgba(255,255,255,0.35); color: var(--white); }
.social-links--light a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.footer-col h4 {
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--gray-600); font-size: 14px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--red); }
.footer-col li { font-size: 14px; color: var(--gray-600); }
.footer-cta { margin-top: 18px; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 24px;
  font-size: 13px;
  color: var(--gray-300);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer { padding-top: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-brand .logo-img { height: 34px; }
  .footer-brand p { font-size: 13px; margin: 12px 0 14px; }
  .social-links a { width: 32px; height: 32px; }
  .footer-col h4 { margin-bottom: 12px; font-size: 13px; }
  .footer-col ul { gap: 9px; }
  .footer-col li, .footer-col a { font-size: 13px; }
  .footer-cta { margin-top: 12px; padding: 11px 22px; }
  .footer-bottom-inner { padding: 14px 24px; font-size: 11px; gap: 4px; }
}

/* ==========================================================================
   Hero background media (image / video)
   ========================================================================== */
.hero, .page-hero { position: relative; }
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 15% 20%, rgba(242,177,52,0.2), transparent 45%),
    linear-gradient(125deg, rgba(6,20,40,0.95) 0%, rgba(10,31,61,0.85) 50%, rgba(139,20,20,0.75) 160%);
}
.hero > .container, .page-hero > .container { position: relative; z-index: 2; }
.hero::after { z-index: 1; }

/* ---------- Image cards (photos inside content cards) ---------- */
.card-media {
  margin: -32px -32px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.06); }

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .split-media { grid-template-columns: 1fr; } }

/* ==========================================================================
   Animation / scroll-reveal system
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0) scale(1); }
.reveal-zoom { transform: scale(0.94); }
.reveal-zoom.in-view { transform: scale(1); }
.reveal-left { transform: translateX(-32px); }
.reveal-left.in-view { transform: translateX(0); }
.reveal-right { transform: translateX(32px); }
.reveal-right.in-view { transform: translateX(0); }

.grid > .reveal:nth-child(1) { transition-delay: 0s; }
.grid > .reveal:nth-child(2) { transition-delay: 0.1s; }
.grid > .reveal:nth-child(3) { transition-delay: 0.2s; }
.grid > .reveal:nth-child(4) { transition-delay: 0.3s; }

.load-in {
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.load-in.delay-1 { animation-delay: 0.12s; }
.load-in.delay-2 { animation-delay: 0.24s; }

.btn-pulse { animation: ctaPulse 2.6s ease-in-out infinite; }
.btn-pulse:hover { animation: none; }

.site-header { transition: background 0.25s ease, box-shadow 0.25s ease; }
.site-header.scrolled { background: rgba(255,255,255,0.99); box-shadow: 0 6px 20px rgba(6,20,40,0.1); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(185,28,28,0.45); }
  50% { box-shadow: 0 0 0 14px rgba(185,28,28,0); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-zoom, .reveal-left, .reveal-right, .load-in, .btn-pulse {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   SVG icons
   ========================================================================== */
.icon svg, .step-icon svg, .value-icon svg, .schedule-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: block; }
.card .icon { color: var(--red); }
.callout .icon { color: var(--red); background: none; width: auto; height: auto; }
.callout .icon svg { width: 32px; height: 32px; }
.checklist li .icon-check { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; color: var(--gold-dark); }
.checklist li .icon-check svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.checklist li { padding-left: 26px; }
.checklist li::before { content: none; }
.social-links a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.contact-icon { display: inline-flex; vertical-align: -3px; width: 15px; height: 15px; margin-right: 6px; color: var(--red); }
.contact-icon svg { width: 15px; height: 15px; stroke-width: 2; }

/* ==========================================================================
   How it works / steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; text-align: center; padding: 36px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.step-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.step .step-num {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--font-heading); font-size: 13px; letter-spacing: 0.05em;
  color: var(--gray-300);
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; margin-bottom: 0; }
.steps-connector { display: none; }
@media (min-width: 761px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute; top: 32px; right: -28px; width: 28px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 10px);
  }
}

/* ==========================================================================
   Values grid
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-item { text-align: center; padding: 12px; }
.value-icon {
  width: 54px; height: 54px; margin: 0 auto 14px;
  border-radius: 12px; background: rgba(242,177,52,0.12); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
}
.value-item h4 { font-family: var(--font-heading); font-size: 15px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: 14px; margin-bottom: 0; }

/* ==========================================================================
   Daily schedule timeline
   ========================================================================== */
.schedule-list { max-width: 720px; margin: 0 auto; position: relative; }
.schedule-list::before {
  content: "";
  position: absolute;
  top: 26px; bottom: 26px; left: 143px;
  width: 2px;
  background: repeating-linear-gradient(var(--border) 0 6px, transparent 6px 11px);
}
.schedule-item {
  display: flex; gap: 24px; align-items: center;
  padding: 18px 0;
  position: relative;
  transition: transform 0.2s ease;
}
.schedule-item:hover { transform: translateX(4px); }
.schedule-time {
  flex-shrink: 0; width: 96px;
  font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.04em;
  color: var(--red);
  text-align: right;
}
.schedule-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); color: var(--gold-dark);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-sm);
}
.schedule-body {
  flex: 1;
  background: var(--off-white);
  border-radius: 10px;
  padding: 14px 18px;
}
.schedule-body h4 { font-size: 16px; margin-bottom: 4px; }
.schedule-body p { font-size: 14px; margin-bottom: 0; }
.schedule-note { text-align: center; font-size: 13px; color: var(--gray-600); margin-top: 28px; font-style: italic; }
@media (max-width: 640px) {
  .schedule-list::before { left: 55px; }
  .schedule-time { width: 40px; font-size: 11px; text-align: left; }
  .schedule-icon { width: 38px; height: 38px; }
  .schedule-icon svg { width: 18px; height: 18px; }
  .schedule-body { padding: 10px 14px; }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left;
  padding: 22px 4px; font-family: var(--font-heading); font-size: 16px; letter-spacing: 0.02em;
  color: var(--navy); text-transform: none;
}
.faq-question .chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--red); transition: transform 0.25s ease; }
.faq-question .chevron svg { width: 20px; height: 20px; stroke-width: 2.2; }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 4px 22px; font-size: 15px; margin-bottom: 0; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 16px; }
.gallery-grid .g-wide { grid-column: span 2; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; } .gallery-grid .g-wide { grid-column: span 2; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; } .gallery-grid .g-wide { grid-column: span 1; } }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 100%; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .g-caption {
  position: absolute; inset: auto 0 0 0; padding: 14px 16px;
  background: linear-gradient(0deg, rgba(6,20,40,0.85), transparent);
  color: var(--white); font-size: 13px; font-family: var(--font-heading); letter-spacing: 0.03em;
  opacity: 0; transform: translateY(8px); transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-item:hover .g-caption { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Card thumbnails (about / package content cards)
   ========================================================================== */
.card.card-with-media { padding: 0; overflow: hidden; }
.card.card-with-media .card-media { margin: 0; border-radius: 0; aspect-ratio: 16 / 11; }
.card.card-with-media .card-body { padding: 28px 28px 32px; }
.card.card-with-media .icon {
  width: 44px; height: 44px; margin-top: -46px; position: relative; z-index: 1;
  background: var(--white); box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
