/* ============================================
   TWILIGHT EDUCATION — Design System & Styles
   ============================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --primary: #2E2A5E;
  --secondary: #B8A8E3;
  --accent: #F6C1A6;
  --bg-cream: #FFF8F2;
  --bg-lavender: #EDE7F6;
  --text-dark: #2E2A5E;
  --text-muted: #6B6193;
  --text-light: #FFF8F2;
  --peach-light: #FDE8D8;
  --indigo-glow: rgba(184, 168, 227, 0.3);
  --shadow-soft: 0 4px 24px rgba(46, 42, 94, 0.08);
  --shadow-glow: 0 0 30px rgba(184, 168, 227, 0.4);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-heading: 'Playfair Display', 'Poppins', serif;
  --font-body: 'Inter', 'Open Sans', sans-serif;
  --font-accent: 'Poppins', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #4A42A0);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(46, 42, 94, 0.3);
}

.btn-primary::before {
  background: linear-gradient(135deg, #4A42A0, #6B5CD4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(46, 42, 94, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--secondary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #F4A77A);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(246, 193, 166, 0.4);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(246, 193, 166, 0.5);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 248, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(46, 42, 94, 0.06);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
}

/* ---------- 1. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(165deg, #FDE8D8 0%, #EDE7F6 40%, #C9B8F0 70%, #2E2A5E 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) { top: 15%; left: 80%; animation-delay: 0s; }
.star:nth-child(2) { top: 25%; left: 65%; animation-delay: 0.7s; width: 3px; height: 3px; }
.star:nth-child(3) { top: 10%; left: 45%; animation-delay: 1.4s; width: 5px; height: 5px; }
.star:nth-child(4) { top: 35%; left: 85%; animation-delay: 2.1s; }
.star:nth-child(5) { top: 20%; left: 30%; animation-delay: 0.5s; width: 3px; height: 3px; }
.star:nth-child(6) { top: 40%; left: 70%; animation-delay: 1.8s; width: 6px; height: 6px; }
.star:nth-child(7) { top: 8%; left: 55%; animation-delay: 1.1s; }
.star:nth-child(8) { top: 30%; left: 92%; animation-delay: 2.5s; width: 3px; height: 3px; }
.star:nth-child(9) { top: 50%; left: 88%; animation-delay: 0.3s; width: 4px; height: 4px; }
.star:nth-child(10) { top: 45%; left: 50%; animation-delay: 1.7s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 80px;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-text h1 span {
  background: linear-gradient(135deg, #6B5CD4, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-wrapper {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.mascot-wrapper img {
  width: 380px;
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(46, 42, 94, 0.15));
  border-radius: var(--radius-lg);
}

.mascot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 168, 227, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* ---------- 2. TRUST STRIP ---------- */
.trust-strip {
  background: var(--primary);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(184, 168, 227, 0.1) 0%, transparent 50%, rgba(246, 193, 166, 0.1) 100%);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.trust-icon {
  font-size: 1.5rem;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

/* ---------- 3. FEATURED PRODUCT ---------- */
.featured {
  background: var(--bg-cream);
  position: relative;
}

.featured::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(246, 193, 166, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-image {
  position: relative;
}

.featured-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(46, 42, 94, 0.12);
  transition: transform var(--transition);
}

.featured-image:hover img {
  transform: scale(1.02) rotate(-1deg);
}

.featured-image .floating-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--accent);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(246, 193, 166, 0.4);
  animation: float 3s ease-in-out infinite;
}

.featured-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.featured-content .subtitle {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 20px;
}

.featured-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.85;
}

.featured-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.highlight-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- 4. WHAT MAKES SPECIAL ---------- */
.special {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-lavender) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.special-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.special-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.special-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.special-card:hover::before {
  opacity: 1;
}

.special-card .card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.special-card h3 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.special-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- 5. MASCOT STORY ---------- */
.mascot-story {
  background: linear-gradient(135deg, var(--bg-lavender) 0%, #D4C7F5 50%, var(--peach-light) 100%);
  position: relative;
  overflow: hidden;
}

.mascot-story::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(184, 168, 227, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.mascot-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.mascot-story-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.mascot-story-image img {
  width: 340px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(46, 42, 94, 0.15));
  animation: float 5s ease-in-out infinite;
}

.wand-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 223, 100, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  animation: wand-pulse 2s ease-in-out infinite;
}

@keyframes wand-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}

.mascot-story-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.mascot-story-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 12px;
}

.mascot-story-text .story-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
  margin-top: 24px;
}

/* ---------- 6. ACTIVITIES PREVIEW ---------- */
.activities {
  background: var(--bg-cream);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.activity-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
}

.activity-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(46, 42, 94, 0.12);
}

.activity-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.activity-card:hover .activity-card-img img {
  transform: scale(1.08);
}

.activity-card-body {
  padding: 20px;
}

.activity-card-body h3 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.activity-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.activities .center-cta {
  text-align: center;
}

/* ---------- 7. PARENTS & SCHOOLS ---------- */
.audience {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-lavender) 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.audience-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.audience-card.parents::before {
  background: linear-gradient(90deg, var(--accent), #F4A77A);
}

.audience-card.schools::before {
  background: linear-gradient(90deg, var(--secondary), #6B5CD4);
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.audience-card .card-emoji {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}

.audience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.audience-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.audience-card ul li::before {
  content: '✦';
  color: var(--secondary);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---------- 8. PHILOSOPHY ---------- */
.philosophy {
  background: var(--bg-cream);
  position: relative;
}

.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.philosophy-inner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.philosophy-inner .accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 3px;
  margin: 32px auto 0;
}

/* ---------- 9. TESTIMONIALS ---------- */
.testimonials {
  background: linear-gradient(180deg, var(--bg-lavender) 0%, var(--bg-cream) 100%);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.author-info strong {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--primary);
  display: block;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- 10. FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, #2E2A5E 0%, #1A1740 40%, #2E2A5E 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 168, 227, 0.15) 0%, transparent 60%);
}

.final-cta-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.final-cta .hero-buttons {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ---------- 11. FOOTER ---------- */
.footer {
  background: #1A1740;
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--secondary);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: white;
}

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 248, 242, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

.mobile-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary);
  background: none;
  border: none;
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text { max-width: 100%; }

  .hero-text h1 { font-size: 2.6rem; }

  .hero-buttons { justify-content: center; }

  .hero-image { order: -1; }

  .mascot-wrapper img { width: 280px; }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .special-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .mascot-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .mascot-story-image { order: -1; }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-header h2,
  .featured-content h2,
  .mascot-story-text h2,
  .philosophy-inner h2 {
    font-size: 2rem;
  }

  .final-cta h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .section-padding { padding: 60px 0; }

  .hero-text h1 { font-size: 2rem; }

  .special-cards {
    grid-template-columns: 1fr;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    gap: 20px;
    flex-direction: column;
  }

  .trust-divider { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .final-cta h2 {
    font-size: 1.8rem;
  }

  .audience-card {
    padding: 32px 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
