/* =============================================
   Fareeha Kids Daycare – CSS
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:    #FF6B6B;
  --yellow:  #FFD93D;
  --green:   #6BCB77;
  --blue:    #4D96FF;
  --purple:  #C77DFF;
  --teal:    #56CFE1;
  --orange:  #FFB347;
  --dark:    #1a1a2e;
  --darker:  #16213e;
  --white:   #ffffff;
  --light:   #f8f9ff;
  --text:    #333355;
  --muted:   #6b7280;
  --radius:  16px;
  --shadow:  0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,107,107,.4);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(255,107,107,.55); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.15); }

.btn-full { width: 100%; justify-content: center; }

/* ---- Section Helpers ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 900; line-height: 1.25; margin-bottom: 16px; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,.75); }

.section-label {
  display: inline-block;
  background: linear-gradient(135deg,#FFE5EC,#FFF5CC);
  color: var(--pink);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label.light { background: rgba(255,255,255,.15); color: #fff; }

.text-gradient {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.8rem; }
.logo-text { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: var(--dark); }
.logo-text .accent { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--light); color: var(--pink); }
.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  padding: 10px 22px;
  box-shadow: 0 4px 16px rgba(255,107,107,.3);
}
.nav-links a.nav-cta:hover { box-shadow: 0 6px 24px rgba(255,107,107,.5); background: linear-gradient(135deg, var(--orange), var(--pink)); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  display: flex;
  align-items: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

/* Bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubbles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: .12;
  animation: floatBubble linear infinite;
}
.bubbles span:nth-child(1)  { width:80px; height:80px; left:10%; bottom:-100px; background:var(--pink);   animation-duration:10s; animation-delay:0s; }
.bubbles span:nth-child(2)  { width:50px; height:50px; left:30%; bottom:-100px; background:var(--yellow); animation-duration:14s; animation-delay:2s; }
.bubbles span:nth-child(3)  { width:120px;height:120px;left:50%; bottom:-100px; background:var(--blue);   animation-duration:8s;  animation-delay:4s; }
.bubbles span:nth-child(4)  { width:60px; height:60px; left:70%; bottom:-100px; background:var(--green);  animation-duration:12s; animation-delay:1s; }
.bubbles span:nth-child(5)  { width:90px; height:90px; left:80%; bottom:-100px; background:var(--purple); animation-duration:9s;  animation-delay:3s; }
.bubbles span:nth-child(6)  { width:40px; height:40px; left:20%; bottom:-100px; background:var(--teal);   animation-duration:16s; animation-delay:5s; }
.bubbles span:nth-child(7)  { width:70px; height:70px; left:55%; bottom:-100px; background:var(--orange); animation-duration:11s; animation-delay:7s; }
.bubbles span:nth-child(8)  { width:55px; height:55px; left:90%; bottom:-100px; background:var(--pink);   animation-duration:13s; animation-delay:2s; }

@keyframes floatBubble { 0%{transform:translateY(0) rotate(0)} 100%{transform:translateY(-110vh) rotate(360deg)} }

.hero-content {
  flex: 1;
  max-width: 600px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.badge-pill {
  display: inline-block;
  background: linear-gradient(135deg,var(--yellow),var(--orange));
  color: var(--dark);
  font-weight: 800;
  font-size: .9rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.2rem,5vw,3.8rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.highlight  { color: var(--yellow); }
.highlight2 { color: var(--teal); }

.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 32px; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--yellow); }
.stat span { font-size: 1.5rem; color: var(--yellow); }
.stat p { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 2px; }

/* Hero Illustration */
.hero-illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}
.circle-bg {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,107,107,.25), rgba(77,150,255,.2));
  position: absolute;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

.big-emoji {
  font-size: 160px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }

.floating-icons { position: absolute; inset: 0; pointer-events: none; }
.fi {
  position: absolute;
  font-size: 2rem;
  animation: floatIcon ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.2));
}
.fi1 { top:10%; left:5%;  animation-duration:4s; animation-delay:0s; }
.fi2 { top:20%; right:8%; animation-duration:5s; animation-delay:.5s; }
.fi3 { top:60%; left:2%;  animation-duration:3.5s; animation-delay:1s; }
.fi4 { bottom:15%; right:5%; animation-duration:4.5s; animation-delay:.2s; }
.fi5 { bottom:30%; left:10%; animation-duration:6s; animation-delay:1.5s; }
.fi6 { top:45%; right:2%;animation-duration:3.8s; animation-delay:.8s; }
@keyframes floatIcon { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-14px) rotate(10deg)} }

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-strip {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  letter-spacing: .5px;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* =============================================
   ABOUT
   ============================================= */
.about { padding: 100px 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform .3s, box-shadow .3s;
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.about-card i { font-size: 1.8rem; margin-bottom: 12px; }
.about-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.about-card p { font-size: .85rem; color: var(--muted); line-height: 1.5; }

.card-yellow { background: linear-gradient(135deg,#FFF9E6,#FFF3CC); }
.card-yellow i { color: var(--yellow); }
.card-pink   { background: linear-gradient(135deg,#FFF0F0,#FFE0E0); }
.card-pink i { color: var(--pink); }
.card-blue   { background: linear-gradient(135deg,#EFF5FF,#D6E8FF); }
.card-blue i { color: var(--blue); }
.card-green  { background: linear-gradient(135deg,#EDFFF1,#D0F5D8); }
.card-green i { color: var(--green); }

.about-text h2 { font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 900; margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }

.about-list { list-style: none; margin: 20px 0 32px; }
.about-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-weight: 600; }
.about-list li i { color: var(--green); font-size: 1.1rem; }

/* =============================================
   TIMING BANNER
   ============================================= */
.timing-banner {
  background: linear-gradient(135deg, var(--dark), var(--darker));
  padding: 28px 24px;
}
.timing-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.timing-item { display: flex; align-items: center; gap: 14px; color: #fff; }
.timing-item i { font-size: 1.6rem; color: var(--yellow); }
.timing-item small { display: block; font-size: .75rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; }
.timing-item strong { font-size: 1.1rem; font-weight: 800; }
.timing-divider { color: rgba(255,255,255,.25); font-size: 1.5rem; }

/* =============================================
   PROGRAMS
   ============================================= */
.programs { padding: 100px 0; background: var(--light); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 24px;
}

.program-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 2px solid transparent;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.program-card[data-color="pink"]   { border-color: #FFD6D6; }
.program-card[data-color="yellow"] { border-color: #FFE8A3; }
.program-card[data-color="blue"]   { border-color: #B8D4FF; }
.program-card[data-color="green"]  { border-color: #B6EFC0; }
.program-card[data-color="purple"] { border-color: #DDBCFF; }

.program-icon { font-size: 3rem; margin-bottom: 12px; }

.program-age {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.program-card[data-color="pink"]   .program-age { background:#FFE8E8; color:var(--pink); }
.program-card[data-color="yellow"] .program-age { background:#FFF3CC; color:#c97d00; }
.program-card[data-color="blue"]   .program-age { background:#E0ECFF; color:var(--blue); }
.program-card[data-color="green"]  .program-age { background:#E0F7E5; color:#2c8a3d; }
.program-card[data-color="purple"] .program-age { background:#F3E5FF; color:var(--purple); }

.program-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.program-card p { color: var(--muted); font-size: .9rem; margin-bottom: 16px; line-height: 1.55; }
.program-card ul { list-style: none; }
.program-card ul li { font-size: .88rem; color: var(--muted); padding: 4px 0; padding-left: 18px; position: relative; }
.program-card ul li::before { content:"✓"; position:absolute; left:0; color: var(--green); font-weight: 800; }

.program-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .2;
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
}

/* =============================================
   ACTIVITIES
   ============================================= */
.activities { padding: 100px 0; background: var(--white); }

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.act-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.act-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.act-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}

.act-card h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.act-card p  { font-size: .88rem; color: var(--muted); line-height: 1.5; }

/* =============================================
   SCHEDULE / TIMELINE
   ============================================= */
.schedule { padding: 100px 0; background: var(--light); }

.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--pink), var(--blue), var(--green));
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.tl-time {
  text-align: right;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: var(--pink);
}

.tl-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--pink);
  justify-self: center;
  position: relative;
  z-index: 1;
  transition: transform .3s;
}
.tl-item:hover .tl-dot { transform: scale(1.5); }
.tl-dot-end { background: var(--dark); border-color: var(--dark); }

.tl-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.tl-item:hover .tl-content { transform: translateX(4px); }
.tl-content h4 { font-weight: 800; font-size: .95rem; margin-bottom: 4px; }
.tl-content p  { font-size: .82rem; color: var(--muted); }

/* =============================================
   WHY US
   ============================================= */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #0f3460, #533483);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background .3s, transform .3s;
}
.why-card:hover { background: rgba(255,255,255,.14); transform: translateY(-6px); }
.why-card i { font-size: 2.2rem; color: var(--yellow); margin-bottom: 16px; display: block; }
.why-card h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.why-card p  { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.55; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { padding: 100px 0; background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.g-large { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: 2 / span 2; grid-row: 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 800; font-size: 1rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 100px 0; background: var(--light); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.testi-card:hover { transform: translateY(-6px); }
.testi-stars { font-size: 1.1rem; margin-bottom: 16px; }
.testi-card > p { font-size: .95rem; color: var(--muted); margin-bottom: 24px; line-height: 1.7; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
}
.testi-author strong { display: block; font-weight: 800; font-size: .95rem; }
.testi-author small { color: var(--muted); font-size: .8rem; }

/* =============================================
   CONTACT
   ============================================= */
.contact { padding: 100px 0; background: var(--white); }

.contact-info-centered {
  max-width: 560px;
  margin: 0 auto;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.info-item i {
  font-size: 1.2rem;
  color: var(--pink);
  margin-top: 4px;
  flex-shrink: 0;
  width: 28px;
}
.info-item strong { display: block; font-weight: 800; margin-bottom: 2px; }
.info-item p { color: var(--muted); font-size: .9rem; }

.social-links { display: flex; gap: 12px; margin-top: 28px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
}
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.social-btn.facebook { background: #1877F2; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.instagram { background: linear-gradient(135deg,#fd5949,#d6249f,#285AEB); }

/* Form styles removed */

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: #fff;
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo-text { font-family: 'Fredoka One', cursive; font-size: 1.3rem; }
.footer-brand p { margin-top: 12px; font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; }

.footer-links h4, .footer-contact h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--yellow); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; margin-bottom: 10px; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }

.footer-contact p { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact p i { color: var(--yellow); margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,107,107,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a1a2e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform .4s cubic-bezier(.175,.885,.32,1.275);
  z-index: 9999;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: var(--green); font-size: 1.2rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-illustration { min-height: 250px; }
  .circle-bg { width: 260px; height: 260px; }
  .big-emoji { font-size: 110px; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.g-large { grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; }

  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 80px 28px 1fr; }
  .tl-time { font-size: .88rem; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; border-radius: 12px; }
  .nav-toggle { display: block; }

  .hero-content h1 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .timing-inner { flex-direction: column; gap: 16px; text-align: center; }
  .timing-divider { display: none; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
  }

  .hero-illustration { display: none; }
  .about-card-stack { grid-template-columns: 1fr; }
}
