:root {
  --navy-dark: #0f2a4a;
  --navy: #14355e;
  --navy-light: #1c3f6e;
  --teal: #1a9d96;
  --teal-dark: #147d78;
  --whatsapp: #25d366;
  --bg: #f7f9fb;
  --bg-alt: #ffffff;
  --text: #1a1a2e;
  --text-muted: #56607a;
  --border: #e3e8ef;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(15, 42, 74, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { color: var(--navy-dark); margin: 0 0 12px; }
h2 { font-size: 2rem; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 14px; }

.center { text-align: center; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 0.9rem; }

.cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-dark);
  text-decoration: none;
}
.logo span { color: var(--teal); font-weight: 400; }

.main-nav {
  display: none;
  gap: 24px;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--teal); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-dark);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
}

.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  gap: 14px;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: #fff;
  padding-top: 32px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 32px;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
}
.hero h1 { color: #fff; font-size: clamp(1.7rem, 7vw, 3rem); line-height: 1.15; margin-bottom: 8px; }
.hero .tagline { color: var(--teal); font-weight: 600; font-size: 0.95rem; }
.hero .bio { color: #c8d5e8; max-width: 560px; font-size: 0.95rem; }

.hero-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.value-props { background: var(--teal); }
.value-props-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px 20px;
  text-align: center;
}
.value-prop p { margin: 6px 0 0; color: #fff; font-weight: 600; font-size: 0.9rem; }
.value-prop .icon { display: flex; justify-content: center; color: #fff; }

@media (min-width: 700px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas: "text image" "cta image";
    align-items: start;
    padding-bottom: 50px;
  }
  .hero-text { grid-area: text; }
  .hero-image { grid-area: image; align-self: center; }
  .cta-group { grid-area: cta; }
  .hero { padding-top: 60px; }
  .value-props-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-photo { height: 420px; }
}

/* About */
.about { padding: 70px 0; background: var(--bg-alt); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.about-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-facts { list-style: none; padding: 0; margin: 18px 0 0; }
.about-facts li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.about-facts strong { color: var(--navy-dark); }

.achievement-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px;
}
.achievement-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 500px) {
  .achievement-gallery { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 700px) {
  .about-inner { grid-template-columns: 0.8fr 1.2fr; }
  .achievement-photo { height: 220px; }
}

/* Care in Action gallery */
.care-gallery { padding: 70px 0; background: var(--bg-alt); }
.care-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}
.care-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 700px) {
  .care-gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* Services */
.services { padding: 70px 0; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.condition-list { list-style: none; padding: 0; margin: 0; }
.condition-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.condition-list li:last-child { border-bottom: none; }
.condition-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.condition-list li.hidden-item { display: none; }
.condition-list.expanded li.hidden-item { display: block; }

.view-all-btn {
  margin-top: 16px;
  background: none;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
}
.view-all-btn:hover { background: var(--navy); color: #fff; }

@media (min-width: 800px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* How it works */
.how-it-works { padding: 70px 0; background: var(--bg-alt); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}
.step-card {
  text-align: center;
  padding: 24px;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

@media (min-width: 800px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Testimonials */
.testimonials {
  padding: 70px 0;
  background-color: #e7efe9;
  background-image:
    radial-gradient(rgba(15, 42, 74, 0.06) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.section-pill {
  display: inline-block;
  background: #fff;
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-dark);
  box-shadow: var(--shadow);
}
.section-pill.center { display: table; margin: 0 auto 18px; }

.testimonials-heading { font-size: 1.9rem; }
.testimonials-heading .accent { color: var(--teal); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}
.testimonial-card {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testimonial-card[hidden] { display: none; }
.testimonial-card .stars {
  color: #f5a623;
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.testimonial-card .quote-text {
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-card.expanded .quote-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.read-more-btn {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 6px 0 0;
  color: var(--teal-dark);
  font-weight: 600;
  cursor: pointer;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
.avatar-a, .avatar-d { background: #b5432c; }
.avatar-r, .avatar-p { background: var(--teal-dark); }
.avatar-m, .avatar-k { background: #c97b3d; }
.author-name { font-weight: 700; color: var(--navy-dark); margin: 0; }
.author-time { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 42, 74, 0.25);
  cursor: pointer;
  padding: 0;
}
.dot.active { background: var(--navy-dark); }

@media (min-width: 800px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-heading { font-size: 2.2rem; }
}

/* FAQ */
.faq { padding: 70px 0; background: var(--bg-alt); }
.faq-list { max-width: 760px; margin: 30px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--teal);
  transition: transform 0.2s ease;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--text-muted);
}
.faq-answer p { padding-bottom: 16px; }

/* Contact / Map */
.contact-section { padding: 70px 0; background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.contact-col h2 { margin-bottom: 18px; }

.address-card {
  background: var(--navy);
  color: #dbe6f5;
  border-radius: var(--radius);
  padding: 28px;
}
.address-card h3 { color: #fff; margin-bottom: 6px; }
.address-card h4 { color: #fff; margin: 0 0 6px; font-size: 0.95rem; }
.address-card p { color: #cfe0f5; margin: 0 0 14px; }
.address-card a { color: var(--teal); text-decoration: none; font-weight: 600; }
.address-card a:hover { text-decoration: underline; }
.address-card hr { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 16px 0; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 300px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.book-appointment-wrap {
    text-align: center;
    margin-top: 60px;   /* increase from 40px */
}
.btn-book { padding: 14px 40px; font-size: 1.05rem; }

@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .map-embed { height: 500px; }
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #cfe0f5;
  padding: 40px 0 0;
}
.footer-tagline { color: var(--teal); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 16px 0;
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9db3d1;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.fab-whatsapp { background: var(--whatsapp); }

@media (min-width: 900px) {
  .floating-cta { display: none; }
}
