:root {
  --green: #3ee61a;
  --green-dark: #2bb510;
  --blue-dark: #0a5aa8;
  --blue-mid: #1f8fd6;
  --blue-light: #6fd0f0;
  --ink: #0d1b2a;
  --white: #ffffff;
  --off-white: #f4fbff;
  --shadow: 0 10px 30px rgba(10, 60, 100, 0.15);
  --radius: 16px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Baloo 2', 'Nunito Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75em 1.6em;
  border-radius: 999px;
  font-weight: 800;
  font-family: 'Baloo 2', sans-serif;
  letter-spacing: 0.02em;
  border: 3px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 3px 4px 0 var(--ink);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 4px 6px 0 var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

.btn-lg { padding: 0.9em 2em; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10,60,100,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand-logo { height: 56px; width: auto; }
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 700;
  font-family: 'Baloo 2', sans-serif;
  color: var(--blue-dark);
}
.main-nav a:hover { color: var(--green-dark); }
.header-cta { margin-left: 12px; white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--blue-dark);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue-mid) 55%, var(--blue-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 0 130px;
}
.hero-waves {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.12) 0, transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,0.10) 0, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(62,230,26,0.15) 0, transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-logo {
  max-width: 260px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.4em;
  text-shadow: 0 3px 0 rgba(0,0,0,0.15);
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 1.8em;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6em;
}
.hero-hours {
  font-weight: 700;
  font-family: 'Baloo 2', sans-serif;
  color: var(--green);
  letter-spacing: 0.02em;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.wave-divider svg { width: 100%; height: 90px; display: block; }
.wave-divider path { fill: var(--white); }

/* Services */
.services { padding: 90px 0 70px; background: var(--white); }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--blue-dark);
  text-align: center;
}
.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5em;
  color: #4a5a68;
  font-size: 1.05rem;
}
.section-note {
  text-align: center;
  margin-top: 2em;
  font-weight: 700;
  color: var(--blue-dark);
  font-family: 'Baloo 2', sans-serif;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
}
.card-icon { font-size: 2.4rem; margin-bottom: 0.4em; }
.card h3 {
  color: var(--blue-dark);
  font-size: 1.25rem;
  margin-bottom: 0.4em;
}
.card p { color: #4a5a68; font-size: 0.98rem; margin-bottom: 0; }

/* Why */
.why { background: var(--off-white); padding: 80px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.why-list { list-style: none; padding: 0; margin: 0 0 1.6em; }
.why-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 0.9em;
  font-size: 1.05rem;
}
.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white);
  background: var(--green);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.why-wave {
  height: 260px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid) 60%, var(--blue-dark));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 55%),
              radial-gradient(circle at 75% 70%, rgba(62,230,26,0.35), transparent 45%);
}

/* Hours & map */
.hours { padding: 80px 0; background: var(--white); }
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}
.hours-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.hours-table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(10,60,100,0.1);
  font-size: 1.02rem;
}
.hours-table td:first-child { font-weight: 700; color: var(--blue-dark); }
.hours-table td:last-child { text-align: right; }
.address { color: #4a5a68; }
.map-embed {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* CTA */
.cta {
  background: linear-gradient(160deg, var(--blue-dark), var(--blue-mid));
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.cta-logo { max-width: 160px; margin: 0 auto 16px; }
.cta h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.cta p { max-width: 500px; margin: 0 auto 1.6em; color: rgba(255,255,255,0.9); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 40px 0;
  font-size: 0.92rem;
}
.footer-logo { max-width: 110px; margin: 0 auto 16px; }
.site-footer a { color: var(--green); font-weight: 700; }
.copyright { margin-top: 1em; color: rgba(255,255,255,0.45); }

/* Responsive */
@media (max-width: 860px) {
  .why-inner, .hours-inner { grid-template-columns: 1fr; }
  .why-wave { order: -1; height: 200px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    box-shadow: 0 12px 20px rgba(10,60,100,0.1);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .brand-logo { height: 44px; }
}
