/* ============================================
   SIBANE ECD CENTER — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --red:     #c8860a;   /* gold from badge */
  --red-dark:#a06808;   /* deeper gold */
  --orange:  #e8a020;   /* bright gold */
  --yellow:  #f5c842;   /* badge yellow border */
  --green:   #6a3d9a;   /* purple from torch */
  --blue:    #7b5ea7;   /* purple accent */
  --dark:    #2c1a00;   /* deep brown */
  --light:   #fffbf0;   /* warm cream */
  --white:   #ffffff;
  --gray:    #f5f0e8;
  --text:    #3a2800;
  --shadow:  0 8px 32px rgba(0,0,0,0.10);
  --radius:  20px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ===== NAV ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 0 40px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.14); }

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.nav-brand-text .name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem; color: var(--red); line-height: 1.1;
}
.nav-brand-text .tagline {
  font-size: 0.6rem; color: var(--green); font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--dark); font-weight: 700;
  font-size: 0.9rem; padding: 8px 14px; border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--red); color: white; }
.nav-enrol {
  background: var(--red) !important; color: white !important;
  box-shadow: 0 4px 14px rgba(230,57,70,0.35);
}
.nav-enrol:hover { background: var(--red-dark) !important; transform: scale(1.04); }

.nav-whatsapp {
  display: flex; align-items: center; gap: 7px;
  background: #25d366 !important; color: white !important;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.nav-whatsapp:hover { background: #1ebe5d !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: white; padding: 20px 24px 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  flex-direction: column; gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none; color: var(--dark); font-weight: 700;
  padding: 12px 16px; border-radius: 12px; font-size: 1rem;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--light); }
.mobile-nav .mob-wa {
  background: #25d366; color: white !important;
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-top: 8px; border-radius: 14px;
}
.mobile-nav .mob-enrol {
  background: var(--red); color: white !important;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding: 90px 0 60px;
  background: linear-gradient(135deg, #fffbf0 0%, #fff3cc 55%, #fde9a0 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,162,97,0.25), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -80px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,0.15), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,0.1); border: 1.5px solid rgba(230,57,70,0.25);
  color: var(--red); padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 18px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1; color: var(--dark); margin-bottom: 18px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title span { color: var(--red); }
.hero-desc {
  font-size: 1.05rem; line-height: 1.75; color: #666;
  max-width: 460px; margin-bottom: 32px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; animation: fadeUp 0.6s 0.3s ease both; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px;
  border-radius: 50px; font-weight: 800; font-size: 0.95rem;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none; font-family: 'Nunito', sans-serif; }
.btn-red { background: var(--red); color: white; box-shadow: 0 4px 18px rgba(230,57,70,0.35); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,57,70,0.45); }
.btn-wa { background: #25d366; color: white; box-shadow: 0 4px 18px rgba(37,211,102,0.35); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.btn-outline { background: white; color: var(--dark); border: 2px solid #e0e0e0; }
.btn-outline:hover { border-color: var(--red); transform: translateY(-2px); }
.btn-white { background: white; color: var(--red); box-shadow: 0 4px 18px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-yellow { background: var(--yellow); color: var(--dark); box-shadow: 0 4px 18px rgba(255,209,102,0.45); }
.btn-yellow:hover { transform: translateY(-2px); }

.hero-stats { display: flex; gap: 32px; animation: fadeUp 0.6s 0.4s ease both; }
.stat-num { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--red); line-height: 1; }
.stat-label { font-size: 0.75rem; color: #888; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }

/* Hero photo grid */
.hero-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 200px; gap: 12px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-photo { border-radius: 20px; overflow: hidden; position: relative; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hero-photo:hover img { transform: scale(1.06); }
.hero-photo-main { grid-row: 1 / 3; border-radius: 24px; }
.hero-photo-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 8px 14px;
  font-size: 0.78rem; font-weight: 800; color: var(--dark);
  display: flex; align-items: center; gap: 6px;
}

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none; font-size: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.65); }
.wa-float-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: white; padding: 6px 14px;
  border-radius: 8px; font-size: 0.82rem; font-weight: 700;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.2s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.8); }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; background: var(--yellow); color: var(--dark);
  padding: 4px 18px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark); line-height: 1.15;
}
.section-title span { color: var(--red); }
.section-desc { font-size: 1rem; color: #666; max-width: 540px; margin: 12px auto 0; line-height: 1.7; }

/* ===== FEATURES ===== */
.features-section { background: white; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature-card {
  background: var(--light); border-radius: var(--radius);
  padding: 30px 26px; border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: var(--shadow); }
.f-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.f-title { font-family: 'Fredoka One', cursive; font-size: 1.2rem; color: var(--dark); margin-bottom: 8px; }
.f-desc { font-size: 0.9rem; color: #666; line-height: 1.65; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--light); }
.gallery-tabs {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 10px 22px; border-radius: 50px;
  border: 2px solid #ddd; background: white;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.88rem; color: #666;
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover { background: var(--red); color: white; border-color: var(--red); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery-item {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 1; cursor: pointer; position: relative;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 14px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: white; font-weight: 700; font-size: 0.85rem; }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== FEES ===== */
.fees-section { background: white; }
.info-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.info-tab-pane { display: none; }
.info-tab-pane.active { display: block; }

.fees-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card-red { background: linear-gradient(135deg, #e63946, #c1121f); color: white; border-radius: 24px; padding: 36px; }
.card-green { background: linear-gradient(135deg, #2d6a4f, #40916c); color: white; border-radius: 24px; padding: 36px; }
.card-purple { background: linear-gradient(135deg, #6a0572, #9b59b6); color: white; border-radius: 24px; padding: 36px; }
.card-blue { background: linear-gradient(135deg, #1d3557, #457b9d); color: white; border-radius: 24px; padding: 36px; }
.card-light { background: var(--light); border-radius: 24px; padding: 36px; border: 2px solid #ffecd2; }

.card-title { font-family: 'Fredoka One', cursive; font-size: 1.5rem; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }

.fee-table { width: 100%; border-collapse: collapse; }
.fee-table tr { border-bottom: 1px solid rgba(255,255,255,0.18); }
.fee-table tr:last-child { border-bottom: none; }
.fee-table td { padding: 11px 0; font-size: 0.95rem; }
.fee-table td:last-child { text-align: right; font-weight: 800; font-size: 1.05rem; }

.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checklist li {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.12); border-radius: 10px; padding: 10px 14px;
  font-size: 0.9rem;
}
.checklist li::before { content: '✅'; font-size: 0.85rem; flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.contact-card {
  border-radius: 24px; padding: 40px; text-align: center;
}
.contact-card .icon { font-size: 3rem; margin-bottom: 14px; }
.contact-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.4rem; margin-bottom: 20px; }

.wa-card { background: linear-gradient(135deg, #128c7e, #25d366); color: white; }
.info-card { background: white; border: 2px solid #ffecd2; }
.info-card h3 { color: var(--dark); }

.wa-btn-big {
  display: block; width: 100%; padding: 16px;
  background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px; color: white; text-decoration: none;
  font-size: 1.3rem; font-weight: 800; margin-bottom: 12px;
  transition: background 0.2s, transform 0.2s;
}
.wa-btn-big:hover { background: rgba(255,255,255,0.3); transform: scale(1.02); }
.wa-btn-big:last-child { margin-bottom: 0; }

.info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; text-align: left; }
.info-row .emoji { font-size: 1.4rem; flex-shrink: 0; }
.info-row .label { font-weight: 800; font-size: 0.9rem; color: var(--dark); }
.info-row .value { font-size: 0.88rem; color: #666; line-height: 1.6; }

/* Wide contact CTA */
.contact-cta-wide {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white; border-radius: 24px; padding: 40px;
  text-align: center; margin-top: 24px;
  max-width: 900px; margin: 24px auto 0;
}
.contact-cta-wide h3 { font-family: 'Fredoka One', cursive; font-size: 1.8rem; margin-bottom: 10px; }
.contact-cta-wide p { opacity: 0.9; margin-bottom: 24px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PILLARS ===== */
.pillars-section { background: var(--dark); }
.pillars-section .section-title { color: white; }
.pillars-section .section-desc { color: rgba(255,255,255,0.6); }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pillar-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px 22px; text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.pillar-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.pillar-emoji { font-size: 2.6rem; margin-bottom: 12px; display: block; }
.pillar-title { font-family: 'Fredoka One', cursive; font-size: 1.15rem; color: var(--yellow); margin-bottom: 8px; }
.pillar-desc { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial-card {
  background: var(--light); border-radius: 20px; padding: 26px;
  border-left: 4px solid var(--red); transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.t-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 12px; }
.t-text { font-size: 0.92rem; color: #555; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.t-name { font-weight: 800; font-size: 0.9rem; color: var(--dark); }
.t-role { font-size: 0.76rem; color: #999; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white; text-align: center; padding: 72px 40px;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: '📱'; position: absolute; font-size: 220px; opacity: 0.05; top: -40px; right: 40px; }
.cta-banner::after { content: '🎓'; position: absolute; font-size: 200px; opacity: 0.05; bottom: -50px; left: 40px; }
.cta-banner h2 { font-family: 'Fredoka One', cursive; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; font-size: 1.05rem; margin-bottom: 32px; }

/* ===== FOOTER ===== */
footer {
  background: #0d1b2a; color: rgba(255,255,255,0.65); padding: 60px 40px 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
.footer-brand-name { font-family: 'Fredoka One', cursive; font-size: 1.6rem; color: white; margin-bottom: 10px; }
.footer-about { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; transition: background 0.2s;
}
.social-btn:hover { background: var(--red); }
.social-wa:hover { background: #25d366; }

.footer-heading { font-weight: 800; color: white; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-row { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; align-items: flex-start; }
.footer-contact-row span:first-child { flex-shrink: 0; }
.footer-wa-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: white; border-radius: 10px;
  padding: 9px 16px; font-size: 0.88rem; font-weight: 800;
  text-decoration: none; margin-top: 10px; transition: background 0.2s;
}
.footer-wa-link:hover { background: #1ebe5d; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; font-size: 0.82rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.94);
  z-index: 9999; display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lb-close { position: absolute; top: 18px; right: 26px; font-size: 2.4rem; color: white; cursor: pointer; line-height: 1; opacity: 0.8; transition: opacity 0.2s; }
.lb-close:hover { opacity: 1; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.14); color: white; border: none;
  font-size: 1.8rem; width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-btn:hover { background: rgba(255,255,255,0.28); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-caption {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.6); color: white; padding: 8px 20px; border-radius: 20px;
  font-size: 0.88rem; font-weight: 700; white-space: nowrap;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .hero-photos { display: none; }
  .section { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .fees-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .wa-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
