/* ============================================================
   WHOOPII LAND — Design System & Main Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Colors */
  --navy:        #1B2B45;
  --blue:        #0068BD;
  --light-blue:  #82C1F4;
  --light-grey:  #E4E4E6;

  /* Secondary Colors */
  --pink:        #EB4E68;
  --light-pink:  #F88BB4;
  --purple:      #8139B7;
  --light-purple:#CA8FEB;
  --red-orange:  #F05A28;
  --orange:      #FA9400;
  --yellow-orange:#FFB700;
  --yellow:      #FFD737;

  /* Logo Colors */
  --logo-teal:   #003333;
  --logo-blue:   #0066CC;
  --logo-purple: #9933CC;
  --logo-pink:   #FF3366;
  --logo-orange: #FF9900;
  --logo-yellow: #FFCC00;

  /* Neutrals */
  --white:  #FFFFFF;
  --black:  #111111;

  /* Typography */
  --font-heading: 'Fredoka', 'Poppins', sans-serif;
  --font-body:    'Poppins', 'Inter', sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;

  /* Border radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full:9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.14);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.22);

  /* Transitions */
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:  0.15s;
  --t-med:   0.30s;
  --t-slow:  0.50s;

  /* Container */
  --container: 1280px;
  --container-sm: 960px;

  /* Header height */
  --header-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(2rem,   4vw, 3rem);    font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem);    font-weight: 600; }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem);  font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem;     font-weight: 600; }
p  { font-size: 1rem; color: #444; line-height: 1.75; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--sm { max-width: var(--container-sm); }

/* ---------- Section Spacing ---------- */
section { padding-block: var(--space-xl); }
.section-header { text-align: center; margin-bottom: var(--space-lg); }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: #555; max-width: 620px; margin-inline: auto; font-size: 1.05rem; }

/* ---------- Pill Badge ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill--blue   { background: var(--light-blue); color: var(--blue); }
.pill--pink   { background: #fde8ed;           color: var(--pink); }
.pill--purple { background: #ede0f8;           color: var(--purple); }
.pill--orange { background: #fff0d6;           color: var(--orange); }
.pill--yellow { background: #fff9db;           color: #b37d00; }
.pill--green  { background: #d6f8e8;           color: #1a7a4a; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease-smooth), background var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: var(--shadow-md); }
.btn:active { transform: scale(0.97); }

.btn--primary   { background: var(--blue);    color: var(--white); box-shadow: 0 4px 16px rgba(0,104,189,0.35); }
.btn--primary:hover { background: #0058a0; }
.btn--secondary { background: var(--pink);    color: var(--white); box-shadow: 0 4px 16px rgba(235,78,104,0.35); }
.btn--secondary:hover { background: #d03a55; }
.btn--orange    { background: var(--orange);  color: var(--white); box-shadow: 0 4px 16px rgba(250,148,0,0.35); }
.btn--orange:hover { background: #e07e00; }
.btn--purple    { background: var(--purple);  color: var(--white); box-shadow: 0 4px 16px rgba(129,57,183,0.35); }
.btn--purple:hover { background: #6a2e9a; }
.btn--yellow    { background: var(--yellow);  color: var(--navy);  box-shadow: 0 4px 16px rgba(255,215,55,0.45); }
.btn--yellow:hover { background: #f0c800; }
.btn--outline   { background: transparent; color: var(--white); border: 2.5px solid var(--white); }
.btn--outline:hover { background: var(--white); color: var(--navy); }
.btn--outline-navy { background: transparent; color: var(--navy); border: 2.5px solid var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--lg   { padding: 1.05rem 2.5rem; font-size: 1.1rem; }
.btn--sm   { padding: 0.6rem 1.4rem;  font-size: 0.875rem; }

/* ---------- HEADER / NAVIGATION ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
  transition: background var(--t-med);
}
.site-header.scrolled { background: rgba(27,43,69,0.97); backdrop-filter: blur(12px); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
}
.nav__logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.nav__logo span { color: var(--yellow); }
.nav__logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__links a:hover,
.nav__links a.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 0.25rem;
}
.nav__lang button {
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__lang button.active,
.nav__lang button:hover {
  background: var(--yellow);
  color: var(--navy);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}
.nav__hamburger:hover { background: rgba(255,255,255,0.1); }
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease-smooth), opacity var(--t-med);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--navy);
  z-index: 999;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease-smooth);
}
.nav__mobile.open {
  display: flex;
  transform: translateX(0);
}
.nav__mobile a {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  transition: background var(--t-fast);
}
.nav__mobile a:hover { background: rgba(255,255,255,0.1); }
.nav__mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1B2B45 0%, #0068BD 50%, #8139B7 100%);
}

/* Video background */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Dark overlay so text stays readable over any video */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,43,69,0.78) 0%, rgba(0,104,189,0.60) 50%, rgba(129,57,183,0.70) 100%);
  z-index: 1;
}
/* Video hidden by default until src is loaded via JS */
.hero__video-bg video {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero__video-bg[data-active] video {
  opacity: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
/* Decorative blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  filter: blur(0px);
  z-index: 1;
  pointer-events: none;
}
.hero__blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(235,78,104,0.5) 0%, rgba(235,78,104,0) 70%);
  top: -120px; right: -80px;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,215,55,0.4) 0%, rgba(255,215,55,0) 70%);
  bottom: 40px; left: -60px;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(130,193,244,0.35) 0%, rgba(130,193,244,0) 70%);
  top: 40%; right: 30%;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  color: var(--yellow);
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__title span { color: var(--yellow); }
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Hero promo circles (like reference) */
.hero__promos {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-circle {
  position: relative;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transition: transform var(--t-med) var(--ease);
  cursor: pointer;
}
.promo-circle:hover { transform: scale(1.05) rotate(-1deg); }
.promo-circle--lg { width: 380px; height: 380px; }
.promo-circle--md { width: 280px; height: 280px; }
.promo-circle--sm { width: 220px; height: 220px; }

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.card:hover .card__image img { transform: scale(1.08); }
.card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,43,69,0.7) 0%, transparent 50%);
  pointer-events: none;
}

.card__body { padding: 1.5rem; }
.card__tag {
  margin-bottom: 0.75rem;
}
.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.card__text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #888;
}
.card__meta span { display: flex; align-items: center; gap: 0.3rem; }

/* Activity card variant */
.activity-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med);
  position: relative;
}
.activity-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }
.activity-card__icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.activity-card__age {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* ---------- GRID HELPERS ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ---------- SECTION BACKGROUNDS ---------- */
.bg-navy    { background: var(--navy);      color: var(--white); }
.bg-blue    { background: var(--blue);      color: var(--white); }
.bg-pink    { background: var(--pink);      color: var(--white); }
.bg-purple  { background: var(--purple);    color: var(--white); }
.bg-orange  { background: var(--orange);    color: var(--white); }
.bg-yellow  { background: var(--yellow);    color: var(--navy);  }
.bg-light   { background: #f7f8fa; }
.bg-gradient-fun {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 50%, var(--pink) 100%);
  color: var(--white);
}
.bg-gradient-warm {
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 50%, var(--purple) 100%);
  color: var(--white);
}
.bg-gradient-sunny {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  color: var(--navy);
}

.bg-navy h1, .bg-navy h2, .bg-navy h3,
.bg-blue h1, .bg-blue h2, .bg-blue h3,
.bg-pink h1, .bg-pink h2, .bg-pink h3,
.bg-purple h1, .bg-purple h2, .bg-purple h3,
.bg-orange h1, .bg-orange h2, .bg-orange h3,
.bg-gradient-fun h1, .bg-gradient-fun h2, .bg-gradient-fun h3,
.bg-gradient-warm h1, .bg-gradient-warm h2, .bg-gradient-warm h3 {
  color: var(--white);
}
.bg-navy p, .bg-blue p, .bg-pink p, .bg-purple p, .bg-orange p,
.bg-gradient-fun p, .bg-gradient-warm p {
  color: rgba(255,255,255,0.85);
}

/* ---------- DECORATIVE SHAPES ---------- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { display: block; }

.section-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.3;
}

.dotted-bg {
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--light-blue);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.5;
}
.testimonial-card__text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  line-height: 1.75;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.testimonial-card__role { font-size: 0.8rem; color: #888; }
.testimonial-card__stars { color: var(--yellow-orange); font-size: 0.9rem; margin-bottom: 0.5rem; }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.form-group label .required { color: var(--pink); margin-left: 3px; }
.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  background: var(--white);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,104,189,0.12);
}
.form-control::placeholder { color: #aaa; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231B2B45' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.form-hint { font-size: 0.8rem; color: #888; margin-top: 0.35rem; }
.form-error { font-size: 0.8rem; color: var(--pink); margin-top: 0.35rem; display: none; }
.form-control.error { border-color: var(--pink); }
.form-control.error + .form-error { display: block; }

/* ---------- PACKAGE CARDS ---------- */
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  position: relative;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med), border-color var(--t-med);
  text-align: center;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-card--featured {
  border-color: var(--pink);
  background: linear-gradient(180deg, #fff5f7 0%, var(--white) 100%);
}
.package-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%; transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.package-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.package-card__name {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}
.package-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.package-card__price-note { font-size: 0.85rem; color: #888; margin-bottom: 1.5rem; }
.package-card__features {
  text-align: left;
  margin-bottom: 2rem;
}
.package-card__features li {
  padding: 0.45rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.package-card__features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- EVENT CARDS ---------- */
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card__date-block {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.75rem;
  text-align: center;
}
.event-card__day {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  display: block;
}
.event-card__month {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.event-card__content {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border-left: none;
}
.event-card__title { font-size: 1.05rem; margin-bottom: 0.35rem; }
.event-card__meta { font-size: 0.8rem; color: #888; display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.75rem; }
.event-card__meta span { display: flex; align-items: center; gap: 0.3rem; }
.event-card__desc { font-size: 0.875rem; color: #666; line-height: 1.6; }

/* ---------- LOCATION CARD ---------- */
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med);
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.location-card__map {
  height: 220px;
  background: var(--light-grey);
  position: relative;
  overflow: hidden;
}
.location-card__map iframe { width: 100%; height: 100%; border: none; }
.location-card__body { padding: 1.5rem; }
.location-card__hours { margin-top: 1rem; }
.location-card__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #f5f5f5;
  color: #555;
}
.location-card__hours-row:last-child { border-bottom: none; }
.location-card__hours-row strong { color: var(--navy); }
.location-card__contact { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.location-card__contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--t-fast);
}
.location-card__contact a:hover { color: var(--navy); }

/* ---------- JOB CARD ---------- */
.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--blue);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med);
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.job-card__info { flex: 1; }
.job-card__title { font-size: 1.1rem; margin-bottom: 0.4rem; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.job-card__desc { font-size: 0.875rem; color: #666; line-height: 1.6; }
.job-card__action { flex-shrink: 0; padding-top: 0.25rem; }

/* ---------- GALLERY / LIGHTBOX ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,43,69,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--t-fast);
}
.lightbox__close:hover { background: rgba(255,255,255,0.3); }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--t-fast);
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.3); }

/* ---------- CAROUSEL ---------- */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel__track {
  display: flex;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.carousel__slide { flex: 0 0 100%; }
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: background var(--t-fast), transform var(--t-fast);
  cursor: pointer;
}
.carousel__dot.active { background: var(--blue); transform: scale(1.3); }
.carousel__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  transition: box-shadow var(--t-fast), background var(--t-fast);
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 2;
}
.carousel__btn--prev { left: 1rem; }
.carousel__btn--next { right: 1rem; }
.carousel__btn:hover { background: var(--blue); color: var(--white); box-shadow: var(--shadow-md); }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding-top: var(--space-xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  transition: background var(--t-fast), color var(--t-fast);
}
.footer__social a:hover { background: var(--blue); color: var(--white); }

.footer__col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--yellow); }

.footer__newsletter h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.footer__newsletter p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.footer__newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--t-fast);
}
.footer__newsletter-form input:focus { border-color: var(--light-blue); }
.footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer__newsletter-form button {
  background: var(--yellow);
  color: var(--navy);
  border: none;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--t-fast);
  white-space: nowrap;
}
.footer__newsletter-form button:hover { background: var(--orange); color: var(--white); }

.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a { color: rgba(255,255,255,0.6); transition: color var(--t-fast); }
.footer__bottom a:hover { color: var(--yellow); }
.footer__bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-white  { color: var(--white) !important; }
.text-navy   { color: var(--navy) !important; }
.text-blue   { color: var(--blue) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-pink   { color: var(--pink) !important; }
.text-orange { color: var(--orange) !important; }
.text-purple { color: var(--purple) !important; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.mt-0  { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ---------- ANIMATIONS ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes heroArrowBounce {
  0%, 100% { transform: translateY(0px);   opacity: 1;    }
  30%       { transform: translateY(-18px); opacity: 1;    }
  55%       { transform: translateY(-4px);  opacity: 1;    }
  70%       { transform: translateY(-10px); opacity: 0.85; }
  85%       { transform: translateY(-2px);  opacity: 1;    }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(0,104,189,0.4); }
  70%  { box-shadow: 0 0 0 20px rgba(0,104,189,0); }
  100% { box-shadow: 0 0 0 0   rgba(0,104,189,0); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes confetti-drop {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.animate-float  { animation: float 3.5s ease-in-out infinite; }
.animate-float-delay { animation: float 3.5s ease-in-out 1s infinite; }
.animate-pulse  { animation: pulse-ring 2s cubic-bezier(0.66, 0, 0, 1) infinite; }

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s var(--ease-smooth), transform 0.55s var(--ease-smooth);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin-inline: auto; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--t-fast); }
.page-hero__breadcrumb a:hover { color: var(--yellow); }
.page-hero__breadcrumb span { color: var(--yellow); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  font-family: var(--font-body);
  gap: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  transition: max-height var(--t-med) var(--ease-smooth), padding var(--t-med);
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.25rem; }

/* ---------- FILTER TABS ---------- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}
.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: #555;
  background: #f0f0f3;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: var(--font-body);
}
.filter-tab:hover { background: var(--light-blue); color: var(--blue); }
.filter-tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-strip__item {}
.stats-strip__value {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.stats-strip__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ---------- NOTICE BANNER ---------- */
.notice-banner {
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.notice-banner a { text-decoration: underline; color: var(--navy); }
.notice-banner__close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .nav__links, .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: 80vh; }
  .hero__promos { display: none; }

  /* Hero layout: stack to single column */
  .hero__inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    min-height: auto !important;
    padding-block: 2.5rem !important;
  }

  .hero__title { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .hero__subtitle { font-size: 1rem !important; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* Scroll arrow invite — smaller on mobile */
  .hero-arrow-invite { gap: 10px !important; bottom: 10px !important; }
  .hero-arrow-invite img { width: 36px !important; height: 46px !important; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }

  /* Page heroes */
  .page-hero { padding: 4rem 0 3rem !important; }
  .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem) !important; }

  /* Event cards */
  .event-card { flex-direction: column; }
  .event-card__date-block { width: 100%; flex-direction: row; justify-content: flex-start; gap: 0.5rem; padding: 0.75rem 1.25rem; }
  .event-card__day { font-size: 1.5rem; }

  /* Job cards */
  .job-card { flex-direction: column; }
  .job-card__action { width: 100%; }
  .job-card__action .btn { width: 100%; justify-content: center; }

  /* Package cards */
  .package-card { padding: 2rem 1.25rem; }

  /* Gallery grid */
  .gallery-grid { grid-template-columns: 1fr 1fr !important; }

  /* Section spacing */
  section { padding-block: var(--space-lg); }

  /* Inline grids used in index.html deals & locations sections */
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(2"] { grid-template-columns: 1fr !important; }

  /* Tab buttons in school-groups */
  .tab-btns { flex-direction: column; align-items: center; }
  .tab-btn  { width: 100%; max-width: 280px; text-align: center; }

  /* School-groups 2-col group packages grid */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Mascots: hide on mobile to avoid overlap */
  [style*="position:absolute"][style*="height:88%"],
  [style*="position:absolute"][style*="height:90%"] { display: none !important; }

  /* Stats strip values */
  .stats-strip__value { font-size: 2rem; }

  /* Container padding */
  .container { padding-inline: 1rem; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 1rem; grid-template-columns: repeat(2,1fr); }
  .hero__stat-value { font-size: 1.75rem; }
  .hero__stat-label { font-size: 0.7rem; }

  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
  .stats-strip__value { font-size: 1.75rem; }

  .package-card { padding: 1.5rem 1rem; }
  .package-card__price { font-size: 2.5rem; }

  .btn--lg { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
  .btn--sm { padding: 0.45rem 0.9rem; font-size: 0.78rem; }

  /* Section headers */
  .section-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-header p  { font-size: 0.9rem; }

  /* Gallery: single column on very small screens */
  .gallery-grid { grid-template-columns: 1fr !important; }

  /* Cards padding */
  .card__body { padding: 1rem; }

  /* FAQ */
  .faq-question { font-size: 0.9rem; padding: 1rem; }

  /* Floating arrows on hero — hide on very small */
  .hero-arrow-invite { display: none; }

  /* Pill tags */
  .pill { font-size: 0.72rem; padding: 0.3rem 0.75rem; }

  /* Footer newsletter input row */
  .footer__newsletter-form { flex-direction: column; }
  .footer__newsletter-form input  { border-radius: var(--radius-md); width: 100%; }
  .footer__newsletter-form button { border-radius: var(--radius-md); width: 100%; margin-top: 0.5rem; }

  /* Testimonial cards */
  .testimonial-card { padding: 1.5rem 1rem; }

  /* Back to top btn */
  .back-to-top { width: 40px; height: 40px; font-size: 1rem; right: 1rem; bottom: 1rem; }
}

/* ============================================================
   WAVE SEPARATORS
   ============================================================ */
.wave-sep {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}
.wave-sep svg { display: block; width: 100%; }

/* ============================================================
   MASCOT CHARACTERS
   Decorative character elements placed at section edges.
   Real mascot images can be injected via admin/page-content.
   ============================================================ */
.mascot {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.mascot--right       { right: 0; top: 50%; transform: translateY(-50%) translateX(20%); }
.mascot--right-low   { right: 0; bottom: 5%; transform: translateX(20%); }
.mascot--left        { left: 0;  top: 50%; transform: translateY(-50%) translateX(-20%); }
.mascot--stats-left  { left: 2%; top: 50%; transform: translateY(-50%); }
.mascot--stats-right { right: 2%; top: 50%; transform: translateY(-50%); }

.mascot-char { display: flex; flex-direction: column; align-items: center; animation: float 3.5s ease-in-out infinite; }
.mascot-char__body   { font-size: 5rem; line-height: 1; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2)); }
.mascot-char__balloon { font-size: 2.5rem; animation: float 2.5s ease-in-out 0.4s infinite; }
.mascot-char__stars  { font-size: 1.5rem; letter-spacing: 0.25rem; opacity: 0.8; }

/* Character color variants */
.mascot-char--blue   .mascot-char__body { filter: drop-shadow(0 0 18px rgba(0,104,189,0.5)); }
.mascot-char--pink   .mascot-char__body { filter: drop-shadow(0 0 18px rgba(235,78,104,0.5)); }
.mascot-char--purple .mascot-char__body { filter: drop-shadow(0 0 18px rgba(129,57,183,0.5)); }
.mascot-char--yellow .mascot-char__body { filter: drop-shadow(0 0 18px rgba(255,215,55,0.5)); }
.mascot-char--orange .mascot-char__body { filter: drop-shadow(0 0 18px rgba(250,148,0,0.5)); }
.mascot-char--white  .mascot-char__body { filter: drop-shadow(0 0 18px rgba(255,255,255,0.4)); }

/* Mascot image mode (assigned via admin) */
.mascot img { width: 160px; height: auto; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2)); animation: float 3.5s ease-in-out infinite; }

@media (max-width: 1100px) { .mascot { display: none; } }

/* ============================================================
   RTL — Arabic Layout
   ============================================================ */
[dir="rtl"] {
  font-family: var(--font-body), 'Cairo', 'Tajawal', sans-serif;
}
[dir="rtl"] .nav__links           { flex-direction: row-reverse; }
[dir="rtl"] .nav__actions         { flex-direction: row-reverse; }
[dir="rtl"] .hero__content        { text-align: right; }
[dir="rtl"] .hero__actions        { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .hero__stats          { direction: rtl; }
[dir="rtl"] .section-header       { direction: rtl; }
[dir="rtl"] .filter-tabs          { direction: rtl; }
[dir="rtl"] .package-card__features { text-align: right; }
[dir="rtl"] .package-card__features li::before { margin-left: 0.5rem; margin-right: 0; }
[dir="rtl"] .footer__grid         { direction: rtl; }
[dir="rtl"] .footer__links        { align-items: flex-end; direction: rtl; }
[dir="rtl"] .footer__bottom       { flex-direction: row-reverse; }
[dir="rtl"] .footer__bottom-links { flex-direction: row-reverse; }
[dir="rtl"] .footer__brand p      { text-align: right; }
[dir="rtl"] .event-card           { direction: rtl; }
[dir="rtl"] .testimonial-card     { direction: rtl; text-align: right; }
[dir="rtl"] .testimonial-card__author { flex-direction: row-reverse; }
[dir="rtl"] .job-card             { border-left: none; border-right: 5px solid var(--blue); direction: rtl; }
[dir="rtl"] .faq-question         { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .nav__mobile          { direction: rtl; text-align: right; }
[dir="rtl"] .notice-banner        { direction: rtl; }
[dir="rtl"] .card__meta           { direction: rtl; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: 'Cairo', var(--font-heading), sans-serif; }

/* RTL mobile overrides */
@media (max-width: 768px) {
  [dir="rtl"] .hero__content   { text-align: center; }
  [dir="rtl"] .hero__actions   { justify-content: center; }
  [dir="rtl"] .nav__mobile     { text-align: right; }
  [dir="rtl"] .footer__links   { align-items: flex-start; }
  [dir="rtl"] .section-header  { text-align: center; }
  [dir="rtl"] .tab-btns        { direction: rtl; }
}
@media (max-width: 480px) {
  [dir="rtl"] .hero__actions { flex-direction: column; align-items: stretch; }
  [dir="rtl"] .hero__actions .btn { text-align: center; }
  [dir="rtl"] .package-card__features li { flex-direction: row-reverse; }
}
