/* ============================================================
   LITTLE BLESSINGS — EARLY LEARNING & CHILD CARE CENTRE
   Main Stylesheet
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  /* Brand colours */
  --color-coral:        #FF6B6B;
  --color-coral-dark:   #e85555;
  --color-coral-light:  #FFE8E8;
  --color-yellow:       #FFF3B0;
  --color-yellow-mid:   #FFD166;
  --color-blue:         #D4F1FF;
  --color-blue-mid:     #4BBFFF;
  --color-blue-dark:    #2A9FDF;
  --color-mint:         #C8F5E0;
  --color-mint-mid:     #06D6A0;
  --color-mint-dark:    #04B888;

  /* Neutrals */
  --color-bg:           #FDFAF4;
  --color-white:        #FFFFFF;
  --color-text:         #1E1E2E;
  --color-text-light:   #6B7280;
  --color-border:       #E9ECF1;

  /* Dark footer */
  --color-footer-bg:    #1E1E2E;
  --color-footer-text:  #C8D3E0;

  /* Typography */
  --font-heading:       'Nunito', sans-serif;
  --font-body:          'Open Sans', sans-serif;

  /* Sizing */
  --nav-height:         72px;
  --max-width:          1140px;
  --radius-sm:          8px;
  --radius-md:          16px;
  --radius-lg:          24px;
  --radius-pill:        999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md:  0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg:  0 8px 48px rgba(0, 0, 0, 0.13);

  /* Transitions */
  --t: 0.3s ease;
}


/* ── 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);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul { list-style: none; }

section[id] {
  scroll-margin-top: var(--nav-height);
}

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { color: var(--color-text-light); }

/* ── Section Header ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 600px;
  margin-inline: auto;
  font-size: 1.05rem;
}

/* ── Section Label Pill ─────────────────────────────────── */
.section-label {
  display: inline-block;
  background: var(--color-coral-light);
  color: var(--color-coral-dark);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35em 1em;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-coral);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-coral-dark);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--color-text);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  border-color: white;
}

.btn-full {
  width: 100%;
  display: block;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--t), box-shadow var(--t);
}

#navbar.scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.8rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-coral);
}

.logo-subtitle {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color var(--t);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.7rem);
  height: 2px;
  background: var(--color-coral);
  border-radius: 2px;
  transition: transform var(--t);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-coral);
}

/* Nav CTA button */
.nav-cta {
  background: var(--color-coral) !important;
  color: white !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-pill) !important;
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
}

.nav-cta:hover {
  background: var(--color-coral-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-sm) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--t);
}

.hamburger:hover {
  background: var(--color-coral-light);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #AEE6FF 0%, #FFF3B0 55%, #C8F5E0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 4rem 1.25rem 4rem calc((100vw - var(--max-width)) / 2 + 1.25rem);
  padding-left: max(1.25rem, calc((100vw - var(--max-width)) / 2 + 1.25rem));
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
  color: var(--color-coral-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4em 1.1em;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,107,107,0.3);
  margin-bottom: 1.25rem;
}

#hero h1 {
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

#hero h1 span {
  color: var(--color-coral);
  display: inline;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(30,30,46,0.75);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.hero-sub strong {
  color: var(--color-text);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero illustration */
.hero-illustration {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  max-width: 560px;
  z-index: 1;
  padding-bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.08));
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-blob-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,209,102,0.35) 0%, transparent 70%);
  top: -80px;
  right: 20%;
}

.hero-blob-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6,214,160,0.25) 0%, transparent 70%);
  bottom: -60px;
  left: 10%;
}


/* ============================================================
   ABOUT US
   ============================================================ */
#about {
  padding: 5rem 0;
  background: var(--color-white);
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: transform var(--t), box-shadow var(--t);
  text-align: center;
}

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

.highlight-cards .card:nth-child(1) { border-top-color: var(--color-blue-mid); }
.highlight-cards .card:nth-child(2) { border-top-color: var(--color-yellow-mid); }
.highlight-cards .card:nth-child(3) { border-top-color: var(--color-coral); }

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.card h3 {
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.card p {
  font-size: 0.95rem;
}


/* ============================================================
   OUR SERVICES
   ============================================================ */
#services {
  padding: 5rem 0;
  background: var(--color-yellow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}

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

.services-grid .service-card:nth-child(1) { border-top-color: var(--color-yellow-mid); }
.services-grid .service-card:nth-child(2) { border-top-color: var(--color-mint-mid); }
.services-grid .service-card:nth-child(3) { border-top-color: var(--color-blue-mid); }
.services-grid .service-card:nth-child(4) { border-top-color: var(--color-coral); }

.service-icon {
  font-size: 2.8rem;
  padding: 1.5rem 1.75rem 0.5rem;
  line-height: 1;
  text-align: center;
}

.service-body {
  padding: 0 1.75rem 1.75rem;
  flex: 1;
}

.age-badge {
  display: block;
  width: fit-content;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.25em 0.85em;
  border-radius: var(--radius-pill);
  margin: 0 auto 0.6rem;
  color: var(--color-text);
  background: var(--color-yellow);
}

.services-grid .service-card:nth-child(1) .age-badge { background: #FFF3B0; color: #996600; }
.services-grid .service-card:nth-child(2) .age-badge { background: var(--color-mint); color: #046647; }
.services-grid .service-card:nth-child(3) .age-badge { background: var(--color-blue); color: #005f8f; }
.services-grid .service-card:nth-child(4) .age-badge { background: var(--color-coral-light); color: #b83232; }

.service-body h3 {
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 1.15rem;
}

.service-body p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Supporting services */
.extra-services {
  margin-top: 3rem;
  text-align: center;
}

.extra-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.extra-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  text-align: left;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

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

.extra-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.extra-card h4 {
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}

.extra-card p {
  font-size: 0.86rem;
  line-height: 1.55;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us {
  padding: 5rem 0;
  background: var(--color-white);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.why-intro .section-label { margin-bottom: 0.85rem; }
.why-intro h2 { margin-bottom: 1rem; }
.why-intro p { margin-bottom: 1.75rem; }

.why-btn { margin-top: 0.25rem; }

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem;
  border-left: 4px solid var(--color-blue-mid);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.why-item:hover {
  border-left-color: var(--color-coral);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.why-item:nth-child(odd)  { border-left-color: var(--color-blue-mid); }
.why-item:nth-child(even) { border-left-color: var(--color-mint-mid); }
.why-item:nth-child(odd):hover  { border-left-color: var(--color-coral); }
.why-item:nth-child(even):hover { border-left-color: var(--color-coral); }

.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.15rem;
}

.why-item h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.why-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}


/* ============================================================
   CONTACT US
   ============================================================ */
#contact {
  padding: 5rem 0;
  background: var(--color-blue);
}

#contact .section-label {
  background: rgba(75,191,255,0.2);
  color: var(--color-blue-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  background: white;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  line-height: 1;
}

.info-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue-dark);
  margin-bottom: 0.25rem;
}

.info-item p {
  font-size: 0.97rem;
  color: var(--color-text);
  line-height: 1.5;
}

.info-item a {
  color: var(--color-blue-dark);
  font-weight: 600;
  transition: color var(--t);
}

.info-item a:hover {
  color: var(--color-coral);
}

.hours-note {
  font-size: 0.82rem;
  color: var(--color-text-light) !important;
  margin-top: 0.2rem;
}

/* Embedded map */
.contact-map {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.1rem;
}

label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.required {
  color: var(--color-coral);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: #A9B4C0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-blue-mid);
  box-shadow: 0 0 0 3px rgba(75, 191, 255, 0.18);
}

input.error,
textarea.error {
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

/* Custom select arrow */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-text-light);
  pointer-events: none;
}

.error-msg {
  display: none;
  font-size: 0.8rem;
  color: var(--color-coral);
  margin-top: 0.3rem;
  font-weight: 600;
}

.error-msg.show {
  display: block;
}

.contact-form .btn-primary {
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* Form success */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--color-mint);
  border: 1.5px solid var(--color-mint-mid);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.form-success strong {
  display: block;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--color-mint-dark);
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--color-footer-bg);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo-mark {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-yellow-mid);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-logo p {
  font-size: 0.8rem;
  color: var(--color-footer-text);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}

.footer-links a {
  color: var(--color-footer-text);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--t);
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--color-yellow-mid);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--color-footer-text);
  opacity: 0.5;
  line-height: 1.6;
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Stagger delays — About cards */
.highlight-cards .card:nth-child(1) { transition-delay: 0s; }
.highlight-cards .card:nth-child(2) { transition-delay: 0.12s; }
.highlight-cards .card:nth-child(3) { transition-delay: 0.24s; }

/* Stagger delays — Service cards */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }

/* Stagger delays — Why items */
.why-list .why-item:nth-child(1)  { transition-delay: 0s; }
.why-list .why-item:nth-child(2)  { transition-delay: 0.06s; }
.why-list .why-item:nth-child(3)  { transition-delay: 0.12s; }
.why-list .why-item:nth-child(4)  { transition-delay: 0.18s; }
.why-list .why-item:nth-child(5)  { transition-delay: 0.24s; }
.why-list .why-item:nth-child(6)  { transition-delay: 0.30s; }
.why-list .why-item:nth-child(7)  { transition-delay: 0.36s; }
.why-list .why-item:nth-child(8)  { transition-delay: 0.42s; }
.why-list .why-item:nth-child(9)  { transition-delay: 0.48s; }
.why-list .why-item:nth-child(10) { transition-delay: 0.54s; }
.why-list .why-item:nth-child(11) { transition-delay: 0.60s; }


/* ============================================================
   RESPONSIVE — 640px+
   ============================================================ */
@media (min-width: 640px) {
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }

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


/* ============================================================
   RESPONSIVE — 768px+ (nav breakpoint)
   ============================================================ */
@media (min-width: 768px) {
  /* Hide hamburger, show inline nav */
  .hamburger { display: none !important; }
  .nav-links {
    display: flex !important;
    position: static !important;
    max-height: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }
}

/* Mobile nav — hamburger visible, links collapsed */
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: block;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding 0.38s ease;
    box-shadow: var(--shadow-md);
  }

  .nav-links.nav-open {
    max-height: 420px;
    padding-block: 0.75rem;
  }

  .nav-links li {
    display: block;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin: 0.5rem 1rem 0.25rem !important;
    border-radius: var(--radius-pill) !important;
    text-align: center !important;
    display: block !important;
    padding: 0.75rem 1rem !important;
  }
}


/* ============================================================
   RESPONSIVE — 1024px+ (full desktop)
   ============================================================ */
@media (min-width: 1024px) {
  #about { padding: 6rem 0; }
  #services { padding: 6rem 0; }
  #why-us { padding: 6rem 0; }
  #contact { padding: 6rem 0; }

  .why-layout {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Hide hero illustration on small screens */
@media (max-width: 900px) {
  .hero-illustration {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    padding: 5rem 1.25rem 4rem;
    text-align: center;
  }

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