@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Visually hidden but available to screen readers / search engines */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.6);
  animation: waPulse 2.4s ease-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); animation-play-state: paused; box-shadow: 0 10px 28px rgba(0,0,0,0.35); }
.wa-float img { width: 32px; height: 32px; display: block; }
@keyframes waPulse {
  0%   { box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 768px) {
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float img { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

:root {
  --navy:        #001428;
  --blue:        #003d8f;
  --blue-mid:    #0054c0;
  --blue-bright: #1a6fdc;
  --cyan:        #009fd8;
  --cyan-light:  #dff0fa;
  --cyan-pale:   #f0f8ff;
  --gold:        #c8951a;
  --gold-light:  #f5d88a;
  --white:       #ffffff;
  --cream:       #f7f4ef;
  --off-white:   #f3f6fb;
  --gray-light:  #e4ecf5;
  --gray:        #5b6a80;
  --text:        #0c1e38;
  --display:     'Cormorant Garamond', Georgia, serif;
  --ui:          'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ui);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER / NAV ──────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0,61,143,0.08);
  box-shadow: 0 1px 0 rgba(0,61,143,0.06), 0 4px 24px rgba(0,20,40,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(0,61,143,0.1), 0 8px 32px rgba(0,20,40,0.1);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.header-logo {
  display: flex; align-items: center; gap: 0.875rem; text-decoration: none;
  transition: opacity 0.2s;
}
.header-logo:hover { opacity: 0.85; }
.header-logo img { height: 48px; width: auto; }
.header-logo-text .name {
  font-family: var(--ui);
  font-size: 0.95rem; font-weight: 800; letter-spacing: 0.04em;
  color: var(--blue); text-transform: uppercase; line-height: 1.15;
}
.header-logo-text .sub {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em;
  color: var(--cyan); text-transform: uppercase;
}
nav ul {
  list-style: none; display: flex; gap: 0; align-items: center;
}
nav ul li a {
  display: block; position: relative;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  color: var(--gray); padding: 0.5rem 0.8rem;
  transition: color 0.2s;
}
nav ul li a::after {
  content: ''; position: absolute; bottom: -1px; left: 0.8rem; right: 0.8rem;
  height: 2px; background: var(--cyan); border-radius: 2px;
  transform: scaleX(0); transform-origin: center; transition: transform 0.25s ease;
}
nav ul li a:hover { color: var(--blue); }
nav ul li a:hover::after, nav ul li a.active::after { transform: scaleX(1); }
nav ul li a.active { color: var(--blue); font-weight: 700; }

.nav-cta {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  background: var(--blue); color: var(--white);
  padding: 0.55rem 1.35rem; border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,61,143,0.25);
  white-space: nowrap; margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,61,143,0.35);
}

/* Dropdown nav */
nav ul li { position: relative; }
nav ul li:hover > ul, nav ul li:focus-within > ul { display: flex; }
nav ul li > ul {
  display: none; flex-direction: column; gap: 0;
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,20,40,0.14), 0 1px 0 rgba(0,61,143,0.06);
  border-radius: 10px; border-top: 3px solid var(--cyan);
  z-index: 200; padding: 0.5rem 0;
  margin-top: 8px;
  animation: dropIn 0.18s ease both;
}
/* Invisible bridge keeps :hover continuous across the 8px visual gap */
.has-dropdown > a::before {
  content: ''; position: absolute; left: 0; right: 0; top: 100%;
  height: 10px;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
nav ul li > ul li a {
  display: block; padding: 0.65rem 1.25rem; font-size: 0.73rem;
  border-radius: 0; white-space: nowrap; color: var(--gray);
  letter-spacing: 0.05em;
}
nav ul li > ul li a::after { display: none; }
nav ul li > ul li a:hover { background: var(--cyan-pale); color: var(--blue); }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.55rem; opacity: 0.7; }

/* Mobile nav toggle */
.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; transition: all 0.3s; }

/* ── PAGE HERO ──────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--blue) 55%, var(--blue-mid) 100%);
  padding: 3.5rem 2rem 3rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -60%; right: -5%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,159,216,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), rgba(255,255,255,0.4), var(--cyan), transparent);
}
.page-hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.page-hero-eyebrow {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.6rem; opacity: 0.9;
}
.page-hero-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--cyan); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--white); line-height: 1.05; letter-spacing: -0.01em;
}
.page-hero-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.page-hero-badge {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  padding: 0.35rem 0.85rem; color: rgba(255,255,255,0.82);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em;
  border-radius: 100px; backdrop-filter: blur(6px);
}
.page-hero-badge strong { color: var(--white); font-weight: 700; }

/* ── HOME HERO ──────────────────────────────────────────────────── */
.home-hero {
  min-height: calc(100vh - 70px);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
}

/* Mesh gradient background */
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0,61,143,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 70%, rgba(0,84,192,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 20%, rgba(0,159,216,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.home-hero-pattern {
  position: absolute; inset: 0; opacity: 0.025;
  background-image:
    linear-gradient(rgba(0,159,216,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,159,216,1) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Diagonal accent */
.home-hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 50vw; height: 140%;
  background: linear-gradient(145deg, rgba(0,84,192,0.2) 0%, transparent 60%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.home-hero-content {
  position: relative; z-index: 2; padding: 2rem;
  animation: heroReveal 1s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.home-hero-esf {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cyan); border: 1px solid rgba(0,159,216,0.3);
  padding: 0.4rem 1.1rem; border-radius: 100px; margin-bottom: 2rem;
  background: rgba(0,159,216,0.06);
}
.home-hero-esf::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }

.home-hero h1 {
  font-family: var(--display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700; color: var(--white);
  line-height: 0.92; letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.home-hero h1 em { color: var(--cyan); font-style: italic; }

.home-hero-year {
  font-family: var(--ui);
  font-size: clamp(0.9rem, 2vw, 1.1rem); font-weight: 300;
  letter-spacing: 0.55em; color: rgba(255,255,255,0.28);
  text-transform: uppercase; margin-bottom: 1.25rem;
}

.home-hero-tagline {
  font-family: var(--display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.55); margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.home-hero-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.hm-item { text-align: center; }
.hm-label {
  font-size: 0.57rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cyan); opacity: 0.75; display: block; margin-bottom: 0.3rem;
}
.hm-value {
  font-family: var(--ui); font-size: 0.95rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.03em;
}
.hm-div { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* Countdown */
.countdown {
  display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; align-items: flex-end;
}
.cd-unit { text-align: center; }
.cd-num {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700; color: var(--white); line-height: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,159,216,0.2);
  border-radius: 8px;
  min-width: 88px; padding: 0.6rem 0.5rem;
  display: block;
  text-shadow: 0 0 40px rgba(0,159,216,0.3);
}
.cd-label {
  font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); margin-top: 0.5rem; opacity: 0.7; display: block;
}
.cd-sep {
  font-family: var(--display); font-size: 3rem; font-weight: 300;
  color: rgba(0,159,216,0.3); padding-bottom: 1.8rem; line-height: 1;
}
.home-hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn { display: inline-block; text-decoration: none; transition: all 0.22s; position: relative; overflow: hidden; }

.btn-primary {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--cyan); color: var(--navy);
  padding: 0.9rem 2.4rem; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,159,216,0.35);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,159,216,0.45); }
.btn-primary:hover::before { transform: scaleX(1); }

.btn-outline {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.25); color: var(--white);
  padding: 0.9rem 2.4rem; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

/* ── HOME STRIPS ─────────────────────────────────────────────────── */
.home-quicklinks {
  background: var(--cream); padding: 3rem 2rem;
}
.quicklinks-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.ql-card {
  background: var(--white); padding: 1.75rem 1.5rem;
  text-decoration: none; border-radius: 14px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 2px 0 rgba(0,61,143,0.03), 0 4px 20px rgba(0,20,40,0.05);
  transition: all 0.25s;
  display: flex; flex-direction: column; gap: 0.7rem;
  position: relative; overflow: hidden;
}
.ql-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-bright));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.ql-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,20,40,0.1), 0 1px 0 rgba(0,61,143,0.06);
  border-color: var(--cyan-light);
}
.ql-card:hover::before { transform: scaleX(1); }
.ql-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,61,143,0.25);
}
.ql-icon svg { width: 20px; height: 20px; }
.ql-title { font-family: var(--ui); font-size: 0.95rem; font-weight: 700; color: var(--blue); }
.ql-desc { font-size: 0.78rem; font-weight: 400; color: var(--gray); line-height: 1.55; }
.ql-arrow { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; margin-top: auto; }

.home-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 0;
}
.home-strip-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
}
.strip-item {
  background: transparent; padding: 1.6rem 1.5rem; text-align: center;
  transition: background 0.2s;
}
.strip-item:hover { background: rgba(255,255,255,0.04); }
.strip-item-label {
  font-size: 0.57rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-bottom: 0.35rem;
}
.strip-item-value {
  font-family: var(--ui); font-size: 1rem; font-weight: 700; color: var(--white);
}
.strip-item-value .accent { color: var(--cyan); }

/* ── MAIN CONTENT ─────────────────────────────────────────────────── */
main { min-height: 60vh; }
.content-wrap {
  max-width: 1240px; margin: 0 auto; padding: 4.5rem 2rem;
}
.section-divider {
  border: none; border-top: 1px solid var(--gray-light); margin: 3.5rem 0;
}

.sec-header { margin-bottom: 2.5rem; }
.sec-eyebrow {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.sec-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--cyan); border-radius: 2px; }
.sec-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700;
  color: var(--blue); line-height: 1.1; letter-spacing: -0.01em;
}
.sec-subtitle {
  margin-top: 0.6rem; font-size: 0.88rem; font-weight: 400;
  color: var(--gray); line-height: 1.75; max-width: 560px;
}

/* ── CARDS ────────────────────────────────────────────────────────── */
.cards-grid { display: grid; gap: 1.25rem; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border-radius: 14px;
  border: 1px solid var(--gray-light);
  padding: 1.75rem;
  box-shadow: 0 2px 0 rgba(0,61,143,0.02), 0 4px 16px rgba(0,20,40,0.05);
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(0,159,216,0.07), transparent 70%);
  pointer-events: none;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(0,20,40,0.1);
  transform: translateY(-3px);
  border-color: var(--cyan-light);
}
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(0,61,143,0.25);
}
.card-icon svg { width: 21px; height: 21px; }
.card-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.3rem;
}
.card-title {
  font-family: var(--ui); font-size: 1.15rem; font-weight: 700; color: var(--blue);
}
.card-value { font-size: 0.87rem; color: var(--text); line-height: 1.65; margin-top: 0.3rem; }
.card-sub { font-size: 0.76rem; color: var(--gray); margin-top: 0.3rem; }

/* Fact list */
.fact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.fact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--gray-light);
  transition: background 0.15s;
}
.fact-item:last-child { border-bottom: none; }
.fact-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 9px;
  background: var(--cyan-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.fact-icon svg { width: 17px; height: 17px; }
.fact-label {
  font-size: 0.59rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.2rem;
}
.fact-value { font-size: 0.875rem; color: var(--text); line-height: 1.5; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── CATEGORIES ──────────────────────────────────────────────────── */
.categories-wrap { margin-top: 2.5rem; }
.categories-label {
  font-family: var(--ui); font-size: 1rem; font-weight: 700;
  color: var(--blue); margin-bottom: 0.875rem;
}
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; }
.cat-chip {
  background: var(--blue); color: var(--white);
  font-family: var(--ui); font-size: 0.82rem; font-weight: 600;
  padding: 0.7rem 0.6rem; text-align: center; border-radius: 8px;
  border-left: 3px solid var(--cyan);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.cat-chip:hover { background: var(--blue-mid); transform: translateY(-2px); }
.cat-chip.girls { background: var(--blue-mid); border-left-color: #5dc8f5; }
.cat-chip.girls:hover { background: var(--blue-bright); }

/* ── PACKAGES ─────────────────────────────────────────────────────── */
.entry-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  border-radius: 14px; padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,20,40,0.2);
}
.eb-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.4rem;
}
.eb-title { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.eb-desc { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; line-height: 1.6; }
.eb-price {
  font-family: var(--display); font-size: 3.2rem; font-weight: 700;
  color: var(--white); text-align: right; white-space: nowrap; line-height: 1;
}
.eb-price sup { font-size: 1.2rem; font-weight: 500; color: var(--cyan); }

.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-bottom: 1.1rem; }
.pkg-card {
  background: var(--off-white); border-radius: 14px;
  border: 1.5px solid var(--gray-light); padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; transition: all 0.25s;
  position: relative;
}
.pkg-card:hover {
  border-color: var(--cyan); box-shadow: 0 12px 32px rgba(0,159,216,0.12);
  transform: translateY(-3px);
}
.pkg-card.featured { background: var(--white); border-color: var(--cyan); box-shadow: 0 6px 24px rgba(0,159,216,0.14); }
.pkg-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--blue-bright)); color: var(--white);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.22rem 0.85rem; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,159,216,0.35);
}
.pkg-type {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.3rem;
}
.pkg-name {
  font-family: var(--ui); font-size: 1.05rem; font-weight: 800; color: var(--blue);
  margin-bottom: 0.25rem;
}
.pkg-nights { font-size: 0.78rem; color: var(--gray); margin-bottom: 1.25rem; flex: 1; }
.pkg-price {
  font-family: var(--display); font-size: 2.8rem; font-weight: 700;
  color: var(--blue); line-height: 1;
}
.pkg-price sup { font-size: 1rem; font-weight: 500; color: var(--cyan); }
.pkg-per { font-size: 0.7rem; color: var(--gray); margin-bottom: 1.25rem; }
.pkg-includes {
  padding-top: 1.1rem; border-top: 1px solid var(--gray-light);
  font-size: 0.77rem; color: var(--gray); line-height: 1.9;
}
.pkg-includes span { display: block; }
.pkg-includes span::before { content: '✓ '; color: var(--cyan); font-weight: 700; }

.meal-row {
  background: var(--cyan-pale); border: 1.5px solid var(--cyan-light);
  border-radius: 14px; padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.mr-label { font-size: 0.59rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.25rem; }
.mr-title { font-family: var(--ui); font-size: 1.05rem; font-weight: 700; color: var(--blue); }
.mr-desc { font-size: 0.8rem; color: var(--gray); margin-top: 0.2rem; }
.mr-price { font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--blue); white-space: nowrap; line-height: 1; }
.mr-price sup { font-size: 0.9rem; color: var(--cyan); font-weight: 500; }

.extras-row {
  background: var(--off-white); border-radius: 10px;
  padding: 1.1rem 1.75rem; display: flex; gap: 2.5rem; flex-wrap: wrap;
  border: 1px solid var(--gray-light);
}
.extra-item { font-size: 0.83rem; color: var(--gray); }
.extra-item strong { color: var(--blue); font-weight: 600; }

.pkg-note {
  margin-top: 1.5rem; font-size: 0.76rem; color: var(--gray); font-style: italic; line-height: 1.7;
  padding: 1rem 1.25rem; border-left: 3px solid var(--cyan-light);
  background: var(--cyan-pale); border-radius: 0 8px 8px 0;
}

/* ── MAP ──────────────────────────────────────────────────────────── */
.map-wrap {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,20,40,0.1);
  border: 1px solid var(--gray-light);
}
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ── TRAVEL STEPS ─────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.75rem 0; border-bottom: 1px solid var(--gray-light); position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.1rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,61,143,0.25);
}
.step-title {
  font-family: var(--ui); font-size: 1rem; font-weight: 700;
  color: var(--blue); margin-bottom: 0.4rem;
}
.step-desc { font-size: 0.87rem; color: var(--gray); line-height: 1.7; }
.step-desc strong { color: var(--text); font-weight: 600; }

.info-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 14px; padding: 1.75rem 2rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  margin-top: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,20,40,0.2);
}
.info-box svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.info-box-title { font-family: var(--ui); font-size: 0.82rem; font-weight: 700; color: var(--cyan); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.info-box-text { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ── CONTACT ──────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-cards { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-card {
  background: var(--off-white); border-radius: 10px;
  padding: 1.35rem 1.5rem; border-left: 3px solid var(--cyan);
  border: 1px solid var(--gray-light); border-left-width: 3px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover { box-shadow: 0 4px 16px rgba(0,20,40,0.07); transform: translateX(3px); }
.contact-card-label { font-size: 0.59rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.4rem; }
.contact-card-value { font-family: var(--ui); font-size: 1rem; font-weight: 700; color: var(--blue); }
.contact-card-value a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
.contact-card-value a:hover { color: var(--cyan); }

.deadlines-box {
  background: var(--off-white); border-radius: 14px;
  padding: 2rem; border: 1px solid var(--gray-light);
}
.deadlines-box h3 { font-family: var(--ui); font-size: 1.05rem; font-weight: 800; color: var(--blue); margin-bottom: 1.25rem; }
.deadline-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.deadline-list li {
  display: flex; gap: 0.6rem; font-size: 0.87rem; color: var(--text); line-height: 1.5;
}
.deadline-list li::before { content: '→'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  margin-top: 0;
}
.footer-top {
  max-width: 1240px; margin: 0 auto;
  padding: 3.5rem 2rem; display: flex;
  justify-content: space-between; gap: 3rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 50px; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.79rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 250px; }
.footer-links h4, .footer-contact h4 {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1.1rem; opacity: 0.85;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links ul a { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links ul a:hover { color: var(--white); }
.footer-contact p { font-size: 0.81rem; color: rgba(255,255,255,0.5); line-height: 1.9; }
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.22); }
.footer-badges { display: flex; gap: 0.6rem; }
.footer-bdg {
  font-size: 0.57rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); border: 1px solid rgba(255,255,255,0.08);
  padding: 0.25rem 0.6rem; border-radius: 100px;
}

/* ── SCROLL REVEAL ────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].visible {
  opacity: 1; transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .quicklinks-grid { grid-template-columns: repeat(2, 1fr); }
  .home-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 1.25rem; }
  nav ul {
    display: none; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white); border-bottom: 3px solid var(--cyan);
    padding: 1rem; box-shadow: 0 12px 32px rgba(0,20,40,0.12);
  }
  nav ul.open { display: flex; }
  nav ul li a { padding: 0.75rem 1rem; font-size: 0.82rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .header-logo img { height: 40px; }
  .header-logo-text .name { font-size: 0.8rem; letter-spacing: 0.02em; }
  .header-logo-text .sub { font-size: 0.52rem; letter-spacing: 0.1em; }
  .has-dropdown.mobile-open > ul {
    display: flex !important; position: static;
    box-shadow: none; border-top: none; border-radius: 0;
    padding: 0 0 0 1rem; background: var(--off-white);
    animation: none;
  }
  .has-dropdown > a { display: flex; justify-content: space-between; align-items: center; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .three-col, .cards-grid-3 { grid-template-columns: 1fr; }
  .content-wrap { padding: 2.5rem 1.25rem; }
  .home-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; gap: 2rem; padding: 2.5rem 1.25rem; }
  .footer-bottom { padding: 1rem 1.25rem; flex-direction: column; text-align: center; }
  .pkg-grid { grid-template-columns: 1fr; }
  .home-hero-content { padding: 1.5rem 1rem; max-width: 100%; }
  .home-hero-esf {
    white-space: normal; max-width: 100%; line-height: 1.6;
    font-size: 0.55rem; letter-spacing: 0.16em; padding: 0.4rem 0.9rem;
  }
  .home-hero-meta { gap: 1rem 1.25rem; }
  .hm-item { flex: 0 0 40%; }
  .hm-label { letter-spacing: 0.14em; }
  .hm-div { display: none; }
  .countdown { flex-wrap: wrap; gap: 0.4rem; }
  .cd-num { min-width: 58px; font-size: 1.85rem; padding: 0.45rem 0.35rem; }
  .cd-sep { display: none; }
  .page-hero { padding: 2.5rem 1.25rem 2rem; }
  .page-hero-inner { flex-direction: column; gap: 1rem; }
  .entry-banner { flex-direction: column; }
  .eb-price { text-align: left; }
}

/* ── TOURNAMENT LOGO ─────────────────────────────────────────────── */

/* Home hero — centrepiece */
.hero-tournament-logo {
  margin-bottom: 1.5rem;
}


/* Footer — two logos side by side */
.footer-logos {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.footer-logos img:first-child {
  height: 50px; width: auto;
  filter: none; opacity: 0.9;
}

/* Make sure page-hero has position:relative for absolute badge */
.page-hero { position: relative; }

@media (max-width: 768px) {
  .page-hero-logo { display: none; }
    .footer-logos { gap: 1rem; }
  }

/* ── FOOTER SOCIAL ───────────────────────────────────────────────── */
.footer-social { margin-top: 1rem; }
.footer-social-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.4rem 0.75rem 0.4rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
}
.footer-social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}

/* Footer — Israel Squash Association links */
.footer-fed { margin-top: 1.5rem; }
.footer-fed-label { display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; }
.footer-fed-links { display: flex; gap: 0.6rem; }
.footer-fed-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.footer-fed-links a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); transform: translateY(-1px); }
.footer-fed-links img { width: 16px; height: 16px; opacity: 0.8; }
.footer-fed-links a:hover img { opacity: 1; }

.hero-instagram img { opacity: 0.75; transition: opacity 0.2s; }
.hero-instagram span { font-weight: 400; }
.hero-instagram strong { font-weight: 700; color: var(--white); }
.hero-instagram:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transform: translateY(-1px);
}
.hero-instagram:hover img { opacity: 1; }

/* ── HERO TOURNAMENT LOGO — upgraded ───────────────────────────── */
.hero-tournament-logo {
  margin-bottom: 2rem;
  display: flex; justify-content: center;
}
.hero-logo-ring {
  position: relative;
  width: clamp(160px, 22vw, 240px);
  height: clamp(160px, 22vw, 240px);
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, rgba(0,159,216,0.6), rgba(255,255,255,0.15), rgba(0,84,192,0.4));
  box-shadow:
    0 0 0 1px rgba(0,159,216,0.2),
    0 0 40px rgba(0,159,216,0.2),
    0 8px 32px rgba(0,0,0,0.4);
  animation: heroReveal 1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-logo-ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid rgba(255,255,255,0.08);
  mix-blend-mode: screen;
}

/* ── Accessibility: WCAG 2.0 AA text contrast (≥4.5:1) ───────────── */
/* Darker cyan for small label text on light backgrounds */
.sec-eyebrow, .card-label, .fact-label, .pkg-type, .mr-label,
.contact-card-label, .ql-arrow, .header-logo-text .sub { color: #00708f; }
/* Brighter muted text on the dark footer */
.footer-brand p, .footer-fed-label, .footer-copy, .footer-bdg { color: rgba(255,255,255,0.62); }
