/* ============================================================
   SURYODAYA INTERNATIONAL PLAY SCHOOL — MAIN STYLESHEET
   Author: Generated for Suryodaya Play School, Khargone
   Stack: Pure CSS (no frameworks), mobile-first
   ============================================================ */

/* ---- CSS VARIABLES (Design Tokens) ---- */
:root {
  --primary:       #FF6B35;   /* Warm orange */
  --primary-dark:  #E05520;
  --secondary:     #4ECDC4;   /* Teal */
  --accent:        #FFD166;   /* Sunny yellow */
  --purple:        #9B5DE5;
  --green:         #06D6A0;
  --pink:          #FF6B9D;
  --blue:          #118AB2;

  --bg-light:      #FFFBF5;
  --bg-section:    #F0FBF8;
  --bg-dark:       #1A1A2E;

  --text-dark:     #2D2D44;
  --text-mid:      #555577;
  --text-light:    #888899;

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.15);

  --transition:    all 0.3s ease;
  --font-display:  'Baloo 2', cursive;
  --font-body:     'Nunito', sans-serif;
}

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

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ---- UTILITY CLASSES ---- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

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

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,107,53,0.5);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}

.btn.full-width { width: 100%; justify-content: center; }

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease calc(var(--delay, 0s)), transform 0.7s ease calc(var(--delay, 0s));
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible, .fade-in-right.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(255,107,53,0.15);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-sun { font-size: 2rem; animation: spin-slow 10s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-mid);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); background: rgba(255,107,53,0.08); }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: white !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.nav-cta:hover { transform: translateY(-1px); background: var(--primary-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255,209,102,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(78,205,196,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 90%, rgba(255,107,53,0.15) 0%, transparent 50%),
    var(--bg-light);
  padding: 60px 24px;
}

/* Floating bubbles */
.bubble {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.7;
  animation: float 5s ease-in-out infinite;
  pointer-events: none;
}
.b1 { top: 10%; left: 5%;  animation-delay: 0s;   animation-duration: 6s; }
.b2 { top: 20%; right: 8%; animation-delay: 1s;   animation-duration: 5s; }
.b3 { top: 60%; left: 3%;  animation-delay: 2s;   animation-duration: 7s; }
.b4 { top: 80%; right: 5%; animation-delay: 0.5s; animation-duration: 5.5s; }
.b5 { top: 40%; left: 50%; animation-delay: 1.5s; animation-duration: 6.5s; }
.b6 { top: 5%;  left: 40%; animation-delay: 3s;   animation-duration: 8s; }

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 2px solid var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.title-highlight {
  background: linear-gradient(135deg, var(--primary), #FF9A3C, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 16px;
  background: white;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(155,93,229,0.3);
}

.hero-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  width: fit-content;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-mid);
  font-weight: 600;
  margin-top: 2px;
}
.stat-divider { width: 1px; height: 40px; background: rgba(0,0,0,0.08); }

/* Hero Illustration */
.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}
.illus-card {
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  border-radius: var(--radius-xl);
  padding: 40px 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--accent);
  position: relative;
  width: 100%;
  max-width: 380px;
}
.illus-emoji {
  font-size: 3.5rem;
  display: inline-block;
  margin: 0 6px;
  animation: bounce 2s ease-in-out infinite;
}
.illus-emoji.main-kid {
  font-size: 5rem;
  animation-delay: 0.3s;
}
.illus-emoji:nth-child(3) { animation-delay: 0.6s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.illus-ground {
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--secondary));
  border-radius: 999px;
  margin: 16px 0;
}
.illus-elements {
  display: flex;
  justify-content: space-around;
  font-size: 1.8rem;
  margin-top: 4px;
}

/* ---- Team Avatar Photo (real image) ---- */
.team-avatar-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--pink);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,107,157,0.3);
}
.team-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* =============================================
   PRINCIPAL SPOTLIGHT SECTION
   ============================================= */
.principal-section {
  background: linear-gradient(135deg, #FFF8F0, #FFF0F6, #F0F8FF);
  position: relative;
  overflow: hidden;
}
.principal-section::before {
  content: '☀️';
  position: absolute;
  font-size: 300px;
  opacity: 0.03;
  bottom: -60px;
  left: -60px;
  pointer-events: none;
}

.principal-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}

/* Photo frame */
.principal-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.principal-photo-frame {
  position: relative;
  width: 320px;
}

.principal-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
  border: 5px solid white;
  /* The photo already has white bg — this adds a warm frame */
  background: linear-gradient(135deg, #FFE0EC, #FFF8E1);
  filter: drop-shadow(0 12px 32px rgba(255,107,53,0.2));
}

.principal-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #FF9A3C);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 24px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(255,107,53,0.45);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Floating deco emojis around photo */
.principal-deco {
  position: absolute;
  font-size: 1.8rem;
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}
.d1 { top: 10px;  right: -10px; animation-delay: 0s; }
.d2 { top: 50%;   left: -20px;  animation-delay: 1.2s; }
.d3 { bottom: 60px; right: -15px; animation-delay: 2s; }

/* Message column */
.principal-message .section-tag { margin-bottom: 12px; display: inline-block; }
.principal-message h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.2;
}
.principal-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 24px;
}

.principal-quote {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--accent);
  position: relative;
}
.principal-quote .fa-quote-left {
  color: var(--accent);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}
.principal-quote p {
  color: var(--text-mid);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
}

.principal-bio {
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.principal-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ph-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ph-icon {
  font-size: 1.5rem;
  width: 40px;
  flex-shrink: 0;
  text-align: center;
}
.ph-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 700;
}
.ph-item span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Responsive for principal section */
@media (max-width: 1024px) {
  .principal-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .principal-photo-wrap { justify-content: center; }
  .principal-photo-frame { width: 260px; }
}

@media (max-width: 480px) {
  .principal-photo-frame { width: 220px; }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '🌈';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  top: -40px;
  right: -40px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.team-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(255,107,53,0.12);
  transition: var(--transition);
  flex: 1;
  min-width: 160px;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.team-avatar.female { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.team-info { display: flex; flex-direction: column; }
.team-info strong { font-size: 0.95rem; color: var(--text-dark); }
.team-info span { font-size: 0.8rem; color: var(--text-light); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.value-card:nth-child(2) { border-left-color: var(--secondary); }
.value-card:nth-child(3) { border-left-color: var(--pink); }
.value-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.value-card p { color: var(--text-mid); font-size: 0.95rem; }

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.feature-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; }

/* =============================================
   AGE GROUPS BANNER
   ============================================= */
.agegroups {
  background: linear-gradient(135deg, var(--primary), #FF9A3C, var(--accent));
  color: white;
}
.agegroups-inner { text-align: center; }
.agegroups-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 40px;
  color: white;
}
.age-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.age-card {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 150px;
  transition: var(--transition);
}
.age-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.3); }
.age-emoji { font-size: 2.5rem; }
.age-card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}
.age-card span { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery { background: var(--bg-section); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; }
.g-large { grid-column: span 2; }

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-placeholder:hover { transform: scale(1.02); filter: brightness(1.05); }
.gallery-placeholder span { font-size: 3rem; }
.gallery-placeholder p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.gallery-note {
  text-align: center;
  color: var(--text-mid);
  margin-top: 24px;
  font-size: 0.95rem;
}
.gallery-note a { color: var(--primary); font-weight: 700; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: linear-gradient(135deg, #F8F0FF, #FFF0F6);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.testi-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(155,93,229,0.12);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { font-size: 1.1rem; margin-bottom: 12px; }
.testi-card > p {
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 0.98rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar { font-size: 2rem; }
.testi-author strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact { background: var(--bg-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #FAFAFA;
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}
textarea { resize: vertical; }

.form-success {
  margin-top: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: var(--radius-sm);
  color: #2E7D32;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}

/* Contact Info */
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.info-card:last-of-type { border-bottom: none; }
.info-icon {
  font-size: 1.6rem;
  width: 44px;
  flex-shrink: 0;
  text-align: center;
}
.info-card strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 4px;
}
.info-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; }
.info-card a { color: var(--blue); font-weight: 600; }
.info-card a:hover { color: var(--primary); }

.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }

.map-placeholder {
  background: linear-gradient(135deg, #E8F5E9, #F0FBF8);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 2px dashed rgba(6,214,160,0.4);
}
.map-placeholder span { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.map-placeholder p { color: var(--text-mid); font-weight: 600; margin-bottom: 8px; }
.map-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}
.map-link:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo > span { font-size: 2rem; }
.footer-logo strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: white;
}
.footer-logo span:last-child { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-dark);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 998;
  width: 42px;
  height: 42px;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* =============================================
   RESPONSIVE — TABLET & MOBILE
   ============================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-illustration { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-top: 2px solid rgba(255,107,53,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-toggle { display: flex; }

  .hero { padding: 40px 20px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-large { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-container { padding: 60px 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-large { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-stats { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
  .age-cards { gap: 12px; }
  .age-card { min-width: 120px; padding: 18px 20px; }
}
