/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary:    #E8630A;
  --primary-lt: #FFF4E6;
  --yellow:     #FFD93D;
  --yellow-lt:  #FFF8DC;
  --green:      #4CAF82;
  --green-lt:   #E8F8F1;
  --peach:      #FF8B64;
  --dark:       #2D2D2D;
  --muted:      #6B7280;
  --white:      #FFFFFF;
  --bg:         #FFFDF8;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--yellow);
}

.nav-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon { font-size: 26px; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 25px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--yellow);
  color: var(--dark);
}

.nav-cta {
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s;
}

.nav-cta:hover { transform: scale(1.05); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF8DC 100%);
  padding: 90px 2rem 70px;
  text-align: center;
}

.hero-content { max-width: 680px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: var(--yellow-lt);
  color: #7A5000;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
  border: 1.5px solid var(--yellow);
}

.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--dark);
}

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(232,99,10,0.35);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,99,10,0.4);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  border: 2.5px solid var(--primary);
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.section-title span { color: var(--primary); }

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 44px;
}

/* ── FEATURES ── */
.features {
  padding: 70px 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 4px solid var(--yellow);
  transition: transform 0.2s;
}

.feature-card:hover { transform: translateY(-4px); }
.feature-card:nth-child(2) { border-top-color: var(--primary); }
.feature-card:nth-child(3) { border-top-color: var(--green); }
.feature-card:nth-child(4) { border-top-color: var(--peach); }

.feature-icon { font-size: 38px; display: block; margin-bottom: 14px; }

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── ANNOUNCEMENT ── */
.announcement {
  background: linear-gradient(135deg, var(--primary), #c45208);
  padding: 56px 2rem;
  text-align: center;
  color: white;
}

.announcement-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.announce-icon { font-size: 48px; flex-shrink: 0; }

.announcement-inner h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.announcement-inner p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.92;
}

.announcement .btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: none;
}

/* ── TIMELINE ── */
.expect {
  padding: 70px 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.timeline { margin-top: 8px; }

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.time-badge {
  background: var(--yellow);
  color: #7A5000;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 4px;
  flex-shrink: 0;
}

.time-content h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.time-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: white;
  padding: 44px 2rem 24px;
  text-align: center;
}

.footer-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 24px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 8px;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: white;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 8px;
  }
  .nav-links.open a { display: block; padding: 10px 16px; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .announcement-inner { flex-direction: column; text-align: center; }
  .timeline-item { flex-direction: column; gap: 8px; }
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 80px 2rem 60px;
  text-align: center;
}

.green-hero {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF8DC 100%);
}

.page-hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin: 14px 0 16px;
}

.page-hero h1 span { color: var(--primary); }

.page-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── ABOUT SECTION ── */
.about-section {
  padding: 70px 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image-box {
  background: linear-gradient(135deg, #FFF4E6, #FFF8DC);
  border-radius: 24px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  gap: 12px;
}

.about-image-box p {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}

.about-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ── VALUE PILLS ── */
.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  padding: 7px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
}

.green-pill  { background: #E8F8F1; color: #1A6644; }
.yellow-pill { background: #FFF8DC; color: #7A5000; }
.peach-pill  { background: #FFF0E5; color: #7A3A10; }
.purple-pill { background: #EDE9FE; color: #5B21B6; }

/* ── VISION & MISSION ── */
.vm-section {
  background: var(--primary-lt);
  padding: 70px 2rem;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.vm-card {
  background: white;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.vm-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 14px;
}

.vm-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary);
}

.vm-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── FOUNDER ── */
.founder-section {
  padding: 70px 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.founder-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin-top: 16px;
  border-left: 5px solid var(--primary);
}

.founder-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  flex-shrink: 0;
  border: 3px solid var(--primary);
}

.founder-info h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.founder-role {
  display: inline-block;
  background: var(--primary-lt);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.founder-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ── WHAT MAKES US DIFFERENT ── */
.different-section {
  padding: 70px 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.diff-item {
  background: white;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.diff-item:hover { transform: translateY(-4px); }

.diff-num {
  font-family: 'Baloo 2', cursive;
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.diff-item h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.diff-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--primary), #c45208);
  padding: 60px 2rem;
  text-align: center;
  color: white;
}

.cta-strip h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-strip p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-strip .btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: none;
}

/* ── ABOUT PAGE MOBILE ── */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
}

/* ── PROGRAMS HERO ── */
.programs-hero {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF8DC 100%);
}

.programs-hero h1 span { color: var(--primary); }

/* ── PROGRAM OVERVIEW STRIP ── */
.prog-overview-strip {
  background: white;
  padding: 20px 2rem;
  border-bottom: 1px solid #F3F4F6;
}

.prog-overview-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.prog-pill {
  background: #F3F4F6;
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
}

.active-pill {
  background: var(--primary-lt);
  color: var(--primary);
}

.daycare-pill {
  background: #FFF8DC;
  color: #7A5000;
}

.prog-arrow {
  color: #D1D5DB;
  font-size: 18px;
  font-weight: 700;
}

/* ── PROGRAM ROWS ── */
.programs-section {
  padding: 70px 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.prog-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
  padding: 20px 0;
}

.reverse-row { direction: rtl; }
.reverse-row > * { direction: ltr; }

.prog-visual {
  border-radius: 24px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 70px;
}

.prog-visual h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 800;
  color: rgba(0,0,0,0.6);
}

.pg-yellow { background: linear-gradient(135deg, #FFF8DC, #FFF4E6); }
.pg-green  { background: linear-gradient(135deg, #E8F8F1, #D1FAE5); }
.pg-blue   { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.pg-purple { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); }
.pg-peach  { background: linear-gradient(135deg, #FFF4E6, #FFE4CC); }

.prog-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.yellow-tag { background: #FFF8DC; color: #7A5000; }
.green-tag  { background: #D1FAE5; color: #065F46; }
.blue-tag   { background: #DBEAFE; color: #1E40AF; }
.purple-tag { background: #EDE9FE; color: #4C1D95; }
.peach-tag  { background: #FFE4CC; color: #7C2D12; }

.prog-details h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--dark);
}

.prog-details > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 22px;
}

.prog-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.prog-info-item {
  background: #F9FAFB;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 22px;
}

.prog-info-item div strong {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 2px;
}

.prog-info-item div p {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
}

.prog-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.prog-activities span {
  background: white;
  border: 1.5px solid #E5E7EB;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.daycare-note {
  background: #FFF4E6;
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #7C2D12;
  margin-bottom: 20px;
  line-height: 1.6;
}

.prog-divider {
  height: 1px;
  background: #F3F4F6;
  margin: 20px 0;
}

/* ── COMPARISON TABLE ── */
.comparison-section {
  background: var(--primary-lt);
  padding: 70px 2rem;
}

.table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.comp-table thead tr {
  background: var(--primary);
  color: white;
}

.comp-table th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.comp-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--dark);
  border-bottom: 1px solid #F3F4F6;
}

.comp-table tbody tr:last-child td { border-bottom: none; }
.alt-row { background: #FFF9F5; }
.table-emoji { margin-right: 6px; }

/* ── FEES ── */
.fees-section {
  padding: 50px 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.fees-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-left: 5px solid var(--yellow);
}

.fees-icon { font-size: 48px; flex-shrink: 0; }

.fees-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.fees-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── PROGRAMS MOBILE ── */
@media (max-width: 768px) {
  .prog-row { grid-template-columns: 1fr; gap: 24px; }
  .reverse-row { direction: ltr; }
  .prog-visual { height: 200px; font-size: 52px; }
  .prog-info-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-overview-inner { gap: 6px; }
  .prog-arrow { display: none; }
  .fees-card { flex-direction: column; }
}

/* ── GALLERY HERO ── */
.gallery-hero {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF8DC 100%);
}

.gallery-hero h1 span { color: var(--primary); }

/* ── GALLERY NOTICE ── */
.gallery-notice {
  padding: 40px 2rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.notice-card {
  background: #FFF8DC;
  border-radius: 20px;
  padding: 28px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 5px solid var(--yellow);
}

.notice-icon { font-size: 40px; flex-shrink: 0; }

.notice-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}

.notice-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── GALLERY SECTION ── */
.gallery-section {
  padding: 70px 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  border-radius: 20px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.gi-yellow { background: linear-gradient(135deg, #FFF8DC, #FFE082); }
.gi-green  { background: linear-gradient(135deg, #E8F8F1, #A5D6A7); }
.gi-blue   { background: linear-gradient(135deg, #DBEAFE, #90CAF9); }
.gi-pink   { background: linear-gradient(135deg, #F8BBD0, #F48FB1); }
.gi-purple { background: linear-gradient(135deg, #EDE9FE, #CE93D8); }
.gi-orange { background: linear-gradient(135deg, #FFF4E6, #FFCC80); }

.gi-label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(0,0,0,0.55);
  background: rgba(255,255,255,0.6);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── UPLOAD NOTE ── */
.upload-note {
  padding: 70px 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.upload-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}

.upload-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.upload-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.upload-step h4 { font-size: 15px; font-weight: 800; margin-bottom: 5px; }
.upload-step p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

.upload-step code {
  background: #F3F4F6;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 12px;
  color: var(--primary);
  font-family: monospace;
}

/* ── SOCIAL ── */
.social-section {
  padding: 0 2rem 70px;
  max-width: 700px;
  margin: 0 auto;
}

.social-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.social-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.social-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-btn:hover { transform: scale(1.05); }
.insta-btn { background: #FCE4EC; color: #880E4F; }
.fb-btn    { background: #E3F2FD; color: #0D47A1; }
.wa-btn    { background: #E8F5E9; color: #1B5E20; }

/* ── GALLERY MOBILE ── */
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .notice-card  { flex-direction: column; }
  .social-links { flex-direction: column; align-items: center; }
}

/* ── CONTACT HERO ── */
.contact-hero {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF8DC 100%);
}

.contact-hero h1 span { color: var(--primary); }

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 70px 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

.contact-info-title {
  font-family: 'Baloo 2', cursive;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.orange-box { background: #FFF4E6; }
.green-box  { background: #E8F8F1; }
.blue-box   { background: #EFF6FF; }
.purple-box { background: #EDE9FE; }

.contact-item h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── HOURS BOX ── */
.hours-box {
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  margin-bottom: 22px;
}

.hours-box h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
}

.last-row     { border-bottom: none; }
.hours-day    { color: var(--muted); font-weight: 600; }
.hours-time   { font-weight: 800; color: var(--primary); }
.closed       { color: #EF4444 !important; }

/* ── SOCIAL ROW ── */
.social-row {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-icon:hover { transform: scale(1.1); }
.insta-icon { background: #FCE4EC; }
.fb-icon    { background: #E3F2FD; }
.yt-icon    { background: #FFEBEE; }
.wa-icon    { background: #E8F5E9; }

/* ── CONTACT FORM ── */
.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.08);
}

.contact-form-card h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: #FAFAFA;
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
}

.form-group input.error,
.form-group select.error { border-color: #EF4444; }

.form-group textarea { resize: vertical; min-height: 110px; }

.field-error {
  display: none;
  font-size: 11px;
  color: #EF4444;
  font-weight: 700;
  margin-top: 4px;
}

.field-error.show { display: block; }

/* ── SUBMIT BUTTON ── */
.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 4px;
}

.submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none;
  background: #FFF4E6;
  border: 2px solid var(--primary);
  border-radius: 14px;
  padding: 18px;
  margin-top: 16px;
  gap: 14px;
  align-items: flex-start;
}

.success-msg.show { display: flex; }
.success-icon { font-size: 32px; flex-shrink: 0; }

.success-msg h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.success-msg p {
  font-size: 13px;
  color: #7C2D12;
  line-height: 1.7;
}

/* ── VISIT SECTION ── */
.visit-section {
  background: var(--primary-lt);
  padding: 70px 2rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.visit-card {
  background: white;
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.visit-card:hover { transform: translateY(-4px); }

.visit-card span {
  font-size: 38px;
  display: block;
  margin-bottom: 12px;
}

.visit-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.visit-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ── */
.faq-section {
  padding: 70px 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list { margin-top: 8px; }

.faq-item {
  background: white;
  border-radius: 14px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  transition: background 0.2s;
}

.faq-item:hover .faq-question  { background: #FFF9F5; }
.faq-item.open .faq-question   { background: var(--primary-lt); color: var(--primary); }

.faq-arrow {
  font-size: 12px;
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
  display: none;
  padding: 14px 22px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  border-top: 1px solid #F3F4F6;
}

.faq-item.open .faq-answer { display: block; }

/* ── CONTACT MOBILE ── */
@media (max-width: 768px) {
  .contact-grid     { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
}

