/* ============================================================
   παιχνιδιζω! Summer Camp - Stylesheet
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --orange:   hsl(28, 100%, 55%);
  --orange-d: hsl(28, 100%, 42%);
  --yellow:   hsl(48, 100%, 55%);
  --purple:   hsl(272, 80%, 55%);
  --purple-d: hsl(272, 80%, 42%);
  --teal:     hsl(175, 75%, 42%);
  --teal-d:   hsl(175, 75%, 30%);
  --pink:     hsl(330, 90%, 60%);
  --sky:      hsl(200, 90%, 55%);
  --green:    hsl(140, 65%, 48%);
  --red:      hsl(0, 80%, 58%);

  --text-dark:  #1a1a2e;
  --text-mid:   #444466;
  --text-light: #7777aa;
  --bg-light:   #f0f4ff;
  --bg-white:   #ffffff;
  --border:     rgba(100, 100, 200, 0.12);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(60,40,120,0.08);
  --shadow-md:  0 8px 32px rgba(60,40,120,0.14);
  --shadow-lg:  0 20px 60px rgba(60,40,120,0.18);
  --shadow-xl:  0 30px 80px rgba(60,40,120,0.22);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
}

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

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

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 { font-family: 'Baloo 2', 'Fredoka One', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 99px; }

/* ---- Layout Utilities ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 96px 0; }

/* ---- Animated Background Blobs ---- */
.bg-blobs { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 20s ease-in-out infinite alternate;
}
.blob-1 { width: 700px; height: 700px; background: var(--orange); top: -200px; left: -200px; animation-duration: 18s; }
.blob-2 { width: 600px; height: 600px; background: var(--purple); top: 40%; right: -150px; animation-duration: 22s; animation-delay: -5s; }
.blob-3 { width: 500px; height: 500px; background: var(--teal); bottom: -150px; left: 20%; animation-duration: 25s; animation-delay: -10s; }
.blob-4 { width: 400px; height: 400px; background: var(--pink); top: 60%; left: -100px; animation-duration: 20s; animation-delay: -8s; }

@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.1); }
}

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(255,120,0,0.3);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.section-subtitle { font-size: 1.1rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  height: var(--nav-h);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 2rem; animation: spin 8s linear infinite; display: inline-block; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-sub { font-size: 0.65rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.05em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  color: #fff;
  transform: translateY(-1px);
}
.nav-cta {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(150, 50, 220, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(150, 50, 220, 0.45); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  flex-shrink: 0;
}
.hamburger span {
  width: 22px; height: 2.5px;
  background: var(--purple);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--text-mid);
  transition: var(--transition);
}
.mobile-nav-link:hover { background: var(--bg-light); color: var(--purple); }
.mobile-nav-cta {
  margin-top: 8px;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg,
    hsl(272, 90%, 95%) 0%,
    hsl(48, 100%, 93%) 40%,
    hsl(28, 100%, 93%) 70%,
    hsl(175, 80%, 90%) 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Floating emoji shapes */
.hero-bg-anim { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.floating-shape {
  position: absolute;
  font-size: 2rem;
  animation: floatUp 6s ease-in-out infinite;
  opacity: 0.6;
}
.s1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 1.5rem; }
.s2 { top: 20%; left: 15%; animation-delay: 1s; font-size: 2.5rem; }
.s3 { top: 60%; left: 3%; animation-delay: 2s; }
.s4 { top: 15%; right: 5%; animation-delay: 0.5s; font-size: 2rem; }
.s5 { top: 50%; right: 8%; animation-delay: 1.5s; font-size: 1.8rem; }
.s6 { bottom: 20%; right: 3%; animation-delay: 3s; font-size: 2.2rem; }
.s7 { bottom: 30%; left: 10%; animation-delay: 2.5s; font-size: 1.6rem; }
.s8 { top: 35%; left: 2%; animation-delay: 4s; font-size: 1.4rem; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-20px) rotate(5deg); }
  66%       { transform: translateY(-10px) rotate(-5deg); }
}

.hero-container {
  flex: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.8);
  border: 2px solid var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--orange-d);
  width: fit-content;
  backdrop-filter: blur(8px);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,120,0,0.3); } 50% { box-shadow: 0 0 0 12px rgba(255,120,0,0); } }

.hero-title {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--text-dark);
}
.title-word {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wiggle 3s ease-in-out infinite;
}
.title-word-2 {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.5s;
}
.title-plus {
  display: inline-block;
  font-size: 3rem;
  color: var(--teal);
  margin: 0 8px;
  font-weight: 900;
}
.title-brand {
  display: inline-block;
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  background: linear-gradient(135deg, var(--orange), var(--purple), var(--teal));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-2deg); }
  75%       { transform: rotate(2deg); }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--purple); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-number {
  font-family: 'Fredoka One', sans-serif;
  font-size: 2rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.75rem; color: var(--text-light); font-weight: 600; text-align: center; }
.stat-divider { font-size: 1.5rem; color: var(--border); font-weight: 300; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff;
  box-shadow: 0 8px 32px rgba(255,120,0,0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(255,120,0,0.5); }
.btn-bounce { animation: bounce 2s ease infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.btn-bounce:hover { animation: none; transform: translateY(-3px); }
.btn-secondary {
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 800;
  background: rgba(255,255,255,0.9);
  color: var(--purple);
  border: 2.5px solid var(--purple);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: var(--purple); color: #fff; transform: translateY(-3px); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0.5deg); }
  50%       { transform: translateY(-16px) rotate(-0.5deg); }
}
.hero-img { width: 100%; height: 380px; object-fit: cover; }
.hero-img-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--purple), var(--orange), var(--teal));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.7;
}

.hero-floating-cards {
  position: absolute;
  pointer-events: none;
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.fc-1 { top: -20px; left: -24px; animation: floatCard 4s ease-in-out infinite; }
.fc-2 { top: 40%; right: -28px; animation: floatCard 5s ease-in-out infinite; animation-delay: 1s; }
.fc-3 { bottom: -20px; left: 20%; animation: floatCard 4.5s ease-in-out infinite; animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Hero Wave */
.hero-wave { margin-top: auto; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-section {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  padding: 40px 24px;
}
.countdown-container { max-width: 900px; margin: 0 auto; text-align: center; }
.countdown-label {
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 90px;
}
.cd-number {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  min-width: 88px;
  text-align: center;
  backdrop-filter: blur(4px);
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.cd-label { font-size: 0.75rem; font-weight: 800; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.1em; }
.countdown-sep { font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.6); line-height: 1; margin-top: -20px; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs-section { background: var(--bg-white); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.program-card {
  position: relative;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.program-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}
.program-card:hover .program-card-glow { opacity: 0.04; }
.program-featured {
  border-color: var(--purple);
  background: linear-gradient(160deg, #faf5ff, #fff);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.program-featured:hover { transform: scale(1.03) translateY(-8px); }
.featured-glow { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.program-card:hover .featured-glow { opacity: 0.06; }
.featured-ribbon {
  position: absolute;
  top: 20px; right: 20px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}
.program-emoji { font-size: 3.5rem; line-height: 1; }
.program-badge {
  display: inline-block;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  width: fit-content;
}
.program-title { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); }
.program-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }
.program-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.program-features li { font-size: 0.9rem; color: var(--text-mid); padding: 4px 0; }
.program-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255,120,0,0.3);
  margin-top: auto;
}
.program-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,120,0,0.45); }
.featured-cta {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 4px 16px rgba(150,50,220,0.35);
}
.featured-cta:hover { box-shadow: 0 8px 24px rgba(150,50,220,0.5); }

/* ============================================================
   ACTIVITIES
   ============================================================ */
.activities-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff5e0 100%);
}
.activities-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.activity-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 360px;
}
.activity-main-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.activity-main:hover .activity-main-img { transform: scale(1.05); }
.activity-main-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(20,0,60,0.85), transparent);
  color: #fff;
}
.activity-main-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.activity-main-desc { font-size: 0.9rem; opacity: 0.9; }

.activities-grid-side {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
}
.activity-thumb {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.activity-thumb:hover, .activity-thumb.active {
  border-color: var(--orange);
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.activity-thumb.active { border-color: var(--purple); }
.act-thumb-icon { font-size: 2rem; flex-shrink: 0; }
.act-thumb-info strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--text-dark); }
.act-thumb-info span { font-size: 0.8rem; color: var(--text-light); }

.activity-icons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.act-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: default;
  min-width: 80px;
}
.act-icon-item:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.act-icon { font-size: 2rem; }
.act-icon-item span { font-size: 0.8rem; font-weight: 700; color: var(--text-mid); text-align: center; }

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule-section { background: var(--bg-white); }
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.sched-tab {
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  border: 2.5px solid var(--border);
  color: var(--text-mid);
  background: var(--bg-white);
  transition: var(--transition);
}
.sched-tab.active, .sched-tab:hover {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(150,50,220,0.3);
}

.schedule-panel { display: none; }
.schedule-panel.active { display: block; }

.schedule-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 112px;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--purple), var(--orange), var(--teal));
  border-radius: 2px;
}
.sched-item {
  display: grid;
  grid-template-columns: 100px 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  position: relative;
}
.sched-time {
  text-align: right;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-light);
  padding-top: 4px;
  white-space: nowrap;
}
.sched-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.sched-content {
  padding-bottom: 8px;
}
.sched-content h4 { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.sched-content p { font-size: 0.88rem; color: var(--text-light); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  background: linear-gradient(135deg, hsl(272,80%,97%), hsl(28,100%,97%));
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}
.pricing-card {
  position: relative;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-popular {
  border-color: var(--purple);
  background: linear-gradient(160deg, #faf5ff, #fff);
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}
.pricing-popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}
.pricing-period { font-size: 1rem; font-weight: 800; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}
.price-currency { font-size: 1.5rem; font-weight: 800; color: var(--text-mid); padding-top: 8px; }
.price-amount {
  font-family: 'Fredoka One', sans-serif;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-save {
  font-size: 0.85rem;
  font-weight: 800;
  background: var(--green);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-top: 8px;
}
.pricing-desc { font-size: 0.9rem; color: var(--text-light); }
.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pricing-features li { font-size: 0.9rem; color: var(--text-mid); padding: 2px 0; }
.pricing-cta {
  display: block;
  padding: 14px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255,120,0,0.3);
}
.pricing-cta:hover { transform: translateY(-2px); }
.popular-cta {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 4px 16px rgba(150,50,220,0.35);
}
.pricing-note {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.8);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.pricing-note span { font-size: 0.9rem; font-weight: 700; color: var(--text-mid); }

/* ============================================================
   PERIODS
   ============================================================ */
.periods-section { background: var(--bg-white); }
.periods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.period-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.period-card:hover { transform: translateX(6px); border-color: var(--orange); box-shadow: var(--shadow-md); }
.period-num {
  font-family: 'Fredoka One', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 52px;
  text-align: center;
}
.period-info { flex: 1; }
.period-info h4 { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.period-info span { font-size: 0.9rem; color: var(--text-light); }
.period-status {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}
.period-status.available { background: hsl(140,65%,92%); color: hsl(140,65%,30%); }
.period-status.filling { background: hsl(28,100%,92%); color: hsl(28,100%,35%); animation: pulse 2s ease infinite; }
.period-status.full { background: hsl(0,80%,92%); color: hsl(0,80%,38%); }

/* ============================================================
   TEAM
   ============================================================ */
.team-section { background: linear-gradient(135deg, var(--bg-light), #fff); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.team-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.team-avatar {
  font-size: 3.5rem;
  flex-shrink: 0;
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(272,80%,95%), hsl(175,80%,93%));
  border-radius: var(--radius-lg);
}
.team-info { flex: 1; min-width: 0; }
.team-name { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; font-weight: 800; color: var(--teal); display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.team-bio { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }
.team-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.team-tag {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-light);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.team-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 320px;
}
.team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-visual:hover .team-img { transform: scale(1.03); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--text-dark); }
.gallery-section .section-tag { background: linear-gradient(135deg, var(--teal), var(--sky)); }
.gallery-section .section-title {
  background: linear-gradient(135deg, #fff, var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gallery-section .section-subtitle { color: rgba(255,255,255,0.65); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.gallery-large { grid-row: 1 / 2; grid-column: 1 / 2; }
.gallery-tall { grid-row: 1 / 3; grid-column: 3 / 4; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,0,60,0.7), transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: linear-gradient(135deg, hsl(48,100%,97%), hsl(28,100%,97%)); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.test-stars { font-size: 1.5rem; letter-spacing: 2px; }
.test-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-style: italic;
  position: relative;
}
.test-text::before {
  content: '"';
  font-size: 5rem;
  font-family: 'Fredoka One', sans-serif;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: -20px; left: -12px;
  line-height: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.test-avatar { font-size: 2.5rem; }
.test-author strong { display: block; font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.test-author span { font-size: 0.85rem; color: var(--text-light); }

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.test-nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--bg-white);
  border: 2px solid var(--border);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.test-nav-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.test-dots { display: flex; gap: 8px; align-items: center; }
.test-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.test-dot.active { background: var(--purple); border-color: var(--purple); width: 28px; border-radius: 8px; }

/* ============================================================
   REGISTER
   ============================================================ */
.register-section {
  background: linear-gradient(135deg, hsl(272,80%,97%) 0%, hsl(175,80%,96%) 100%);
}
.register-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.register-info h3 { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 24px; }
.register-reasons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.register-reasons li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.register-reasons li span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.register-reasons strong { color: var(--text-dark); }
.register-contact-quick { display: flex; flex-direction: column; gap: 12px; }
.quick-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 2px solid var(--border);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.quick-contact-btn:hover { border-color: var(--orange); color: var(--orange-d); transform: translateX(6px); box-shadow: var(--shadow-md); }

/* Form styles */
.register-form {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.9rem; font-weight: 800; color: var(--text-dark); }
.required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(150,50,220,0.1);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
.form-error { font-size: 0.8rem; color: var(--red); min-height: 18px; font-weight: 600; }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input[type="checkbox"] { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--border); cursor: pointer; flex-shrink: 0; margin-top: 2px; accent-color: var(--purple); }
.form-check label { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }
.form-check label a { color: var(--purple); text-decoration: underline; }
.form-submit {
  padding: 18px;
  border-radius: var(--radius-full);
  font-size: 1.15rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(150,50,220,0.35);
  position: relative;
  overflow: hidden;
}
.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(150,50,220,0.45); }
.form-submit:hover::after { opacity: 1; }
.form-success {
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: hsl(140,65%,92%);
  border: 2px solid hsl(140,65%,60%);
  color: hsl(140,65%,25%);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card {
  padding: 28px 24px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--teal); box-shadow: var(--shadow-md); }
.contact-icon { font-size: 2.5rem; }
.contact-card h3 { font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.contact-card a { color: var(--purple); font-weight: 700; font-size: 1rem; transition: color var(--transition); }
.contact-card a:hover { color: var(--orange); }
.contact-card p { font-size: 0.85rem; color: var(--text-light); }
.social-links { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.social-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  transition: var(--transition);
  text-align: center;
}
.social-btn:hover { background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; }

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 320px;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, hsl(272,60%,90%), hsl(175,60%,88%));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-mid);
}
.map-pin-anim { font-size: 4rem; animation: mapPinBounce 1.5s ease-in-out infinite; }
@keyframes mapPinBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.map-link {
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,150,200,0.3);
}
.map-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,150,200,0.45); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  position: relative;
}
.footer-waves svg { width: 100%; height: 48px; display: block; }
.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { font-size: 3rem; }
.footer-title {
  display: block;
  font-family: 'Fredoka One', sans-serif;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 800; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
}
.lightbox-backdrop[hidden] { display: none; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  transition: var(--transition);
  z-index: 2001;
}
.lightbox-close:hover { background: var(--red); }
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: var(--shadow-xl);
  z-index: 2001;
}
.lightbox-caption { color: rgba(255,255,255,0.8); font-size: 1rem; font-weight: 600; z-index: 2001; }

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-stats { margin: 0 auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-featured { transform: none; }
  .program-featured:hover { transform: translateY(-8px); }
  .activities-showcase { grid-template-columns: 1fr; }
  .activities-grid-side { grid-template-rows: none; grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-popular { transform: none; }
  .pricing-popular:hover { transform: translateY(-8px); }
  .periods-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .gallery-large { grid-column: 1 / 3; }
  .gallery-tall { grid-row: auto; grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr 1fr; }
  .register-content { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .section-padding { padding: 60px 0; }
  .hero-img { height: 240px; }
  .hero-stats { flex-direction: column; gap: 12px; padding: 20px; }
  .stat-divider { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .schedule-timeline::before { left: 80px; }
  .sched-item { grid-template-columns: 72px 40px 1fr; gap: 10px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-large { grid-column: auto; }
  .gallery-item { height: 220px; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 20px; }
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.1rem; }
  .countdown-timer { gap: 8px; }
  .countdown-sep { font-size: 2rem; }
  .cd-number { font-size: 2rem; min-width: 64px; padding: 10px 12px; }
}
