/* ============================================================
   NISCHINTCARE — styles.css
   Mobile-first. All breakpoints use min-width.
   ============================================================ */

/* ── 1. GOOGLE FONTS ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=Hind:wght@400;500;600&display=swap');

/* ── 2. CSS VARIABLES ────────────────────────────────────── */
:root {
  --teal:        #00A98F;
  --teal-dark:   #007a68;
  --teal-light:  #e6f7f4;
  --teal-xlight: #f0fdf9;
  --dark:        #1a1a2e;
  --cream:       #faf9f6;
  --white:       #ffffff;
  --text:        #1c1c1c;
  --muted:       #5a5a6a;
  --border:      #e2ede9;
  --gold:        #c9a96e;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', Arial, sans-serif;
  --font-hindi:   'Hind', 'Noto Sans Devanagari', sans-serif;

  --radius:    10px;
  --radius-lg: 20px;
  --shadow:    0 2px 16px rgba(0,169,143,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);

  --nav-h: 112px;
}

/* ── 3. 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);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

body.lang-hi { font-family: var(--font-hindi); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── 4. TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
}

.lang-hi h1,
.lang-hi h2,
.lang-hi h3,
.lang-hi h4 { font-family: var(--font-hindi); }

h1 { font-size: clamp(1.8rem, 5vw, 3rem);   font-weight: 700; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem);  font-weight: 600; }
p  { font-size: 1.05rem; color: var(--muted); }

/* ── 5. LAYOUT HELPERS ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

/* Elegant teal underline accent on every section title */
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  margin: 14px auto 0;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}

.bg-mint  { background: var(--cream); }
.bg-dark  { background: var(--dark); color: var(--white); }
.bg-teal  { background: var(--teal); color: var(--white); }

/* ── 6. BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  min-height: 50px;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--mint);
  text-decoration: none;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  text-decoration: none;
}

/* ── 7. NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Wrapper crops white padding + yellow artifact from the JPEG */
.navbar-logo-wrap {
  width: 226px;
  height: 96px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Image rendered larger than wrapper; negative margins push white edges out of view */
.navbar-logo {
  display: block;
  height: 114px;  /* 96px / 0.84 teal fraction */
  width: auto;
  max-width: none;
  margin-top: -9px;   /* crop top white padding */
  margin-left: -11px; /* crop left white padding */
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
}

/* Mobile: menu hidden by default */
.navbar-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 20px 24px;
  border-bottom: 2px solid var(--teal);
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.navbar-menu.open { display: flex; }

.navbar-menu a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.navbar-menu a:hover { color: var(--teal); }
.navbar-menu a.active {
  color: var(--teal);
  font-weight: 600;
}
.navbar-menu a:last-of-type { border-bottom: none; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  align-self: flex-start;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.lang-toggle:hover { background: var(--teal-dark); }

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid var(--teal);
  color: var(--teal);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Desktop nav */
@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }

  .navbar-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    align-items: center;
    gap: 28px;
  }

  .navbar-menu a {
    border-bottom: none;
    padding: 0;
    font-size: 0.95rem;
  }

  .lang-toggle { margin-top: 0; }
}

/* ── 8. HERO (Split Layout B) ────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.hero-left {
  background: var(--white);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
}

.hero-left h1 { color: var(--text); }
.hero-left h1 span { color: var(--teal); }
.hero-left p { font-size: 1.1rem; max-width: 480px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-right {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

/* Decorative circles for depth */
.hero-right::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -80px;
  right: -80px;
  pointer-events: none;
}
.hero-right::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -60px;
  left: -40px;
  pointer-events: none;
}

.hero-service-card {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--white);
  transition: background 0.2s;
}
.hero-service-card:hover { background: rgba(255,255,255,0.22); }

.hero-service-icon { font-size: 1.8rem; flex-shrink: 0; }

.hero-service-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-service-card span {
  font-size: 0.88rem;
  opacity: 0.85;
  color: var(--white);
}

@media (min-width: 900px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--nav-h)); }
  .hero-left { padding: 60px 48px 60px 40px; }
  .hero-right { padding: 60px 40px 60px 48px; }
}

/* ── 9. STATS BAR ────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 28px 0;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 600px) {
  .stats-bar .container { grid-template-columns: repeat(4, 1fr); }
}

/* ── 10. SERVICE CARDS ───────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 540px)  { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px)  { .cards-grid.cols-5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .cards-grid.cols-5 { grid-template-columns: repeat(5, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle teal top-border accent on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover::before { transform: scaleX(1); }

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

.card-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.card h3   { margin-bottom: 8px; font-size: 1.15rem; }
.card p    { font-size: 0.95rem; }

.card .card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
}
.card .card-link:hover { text-decoration: underline; }

.card-teal {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.card-teal h3,
.card-teal p { color: var(--white); }
.card-teal .card-link { color: rgba(255,255,255,0.9); }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.section-eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 160px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px 24px;
}
@media (max-width: 600px) {
  .steps-row { flex-direction: column; align-items: center; gap: 32px; }
  .step-card { max-width: 100%; width: 100%; padding: 0 0 8px; }
  .steps-cta { flex-direction: column; text-align: center; }
}

.step-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,169,143,0.15);
  position: relative;
  flex-shrink: 0;
}
.step-emoji { line-height: 1; }
.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}
.step-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-connector {
  font-size: 1.6rem;
  color: var(--teal);
  opacity: 0.4;
  padding: 0 4px;
  margin-top: 24px;
  flex-shrink: 0;
  align-self: flex-start;
}
@media (max-width: 700px) { .step-connector { display: none; } }

.steps-cta {
  margin-top: 40px;
  background: var(--teal-xlight);
  border: 1px solid var(--teal-light);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.steps-cta-text p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.steps-cta-text span {
  font-size: 0.88rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

/* Clickable card variants */
.card-clickable {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  color: inherit;
}
.card-clickable:hover { text-decoration: none; }

.hero-service-link {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
.hero-card-arrow {
  margin-left: auto;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.hero-service-link:hover .hero-card-arrow { transform: translateX(4px); }

/* ── 11. TRUST / WHY US ──────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) { .trust-grid { grid-template-columns: 1fr 1fr 1fr; } }

.trust-item { text-align: center; }

.trust-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}
.trust-item h3 { margin-bottom: 8px; }

/* ── 12. HOW IT WORKS ────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step { text-align: center; padding: 24px; }

.step-number {
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; }

/* ── 13. TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; } }

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow 0.25s ease;
}
.testimonial:hover { box-shadow: var(--shadow-md); }

/* Decorative opening quote mark */
.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--teal-light);
  line-height: 0.6;
  position: absolute;
  top: 20px;
  left: 24px;
  pointer-events: none;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
  padding-top: 28px; /* space below the big quote mark */
  position: relative;
}

.testimonial-author {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── 14. CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 60%, #005a4d 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow for depth */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  {
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── 15. FOOTER ──────────────────────────────────────────── */
.footer {
  background: #111120;
  color: var(--white);
  padding: 64px 0 28px;
  border-top: 3px solid var(--teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

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

.footer-brand img {
  display: block;
  height: 88px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-style: italic;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer ul li { margin-bottom: 10px; }

.footer ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer ul li a:hover { color: var(--teal); text-decoration: none; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

/* Social links */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}
.social-link:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; display: block; }

/* ── 16. PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 72px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 150%, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero h1 { color: var(--white); margin-bottom: 14px; position: relative; }
.page-hero p  {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  position: relative;
}

/* ── 17. SERVICES PAGE ───────────────────────────────────── */
.service-category {
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.service-category:last-child { border-bottom: none; }

.service-category-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.service-category-icon {
  font-size: 2rem;
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-category-header h2 { margin-bottom: 4px; }
.service-category-header p  { font-size: 0.95rem; }

.sub-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 600px) { .sub-services-grid { grid-template-columns: 1fr 1fr; } }

.sub-service {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}
.sub-service:hover { box-shadow: var(--shadow-md); }
.sub-service h3 { font-size: 1.05rem; margin-bottom: 8px; }
.sub-service p  { font-size: 0.93rem; }

/* ── 18. ABOUT PAGE ──────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  background-clip: padding-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-icon    { font-size: 2rem; margin-bottom: 10px; }
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p  { font-size: 0.88rem; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card { text-align: center; }

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 12px;
  border: 3px solid var(--teal);
}

.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card p  { font-size: 0.85rem; }

/* ── 19. CONTACT PAGE ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  min-height: 50px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,169,143,0.10);
  background: var(--teal-xlight);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ci-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.75rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 3px;
}

.ci-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

a.ci-value:hover { text-decoration: underline; }

.map-placeholder {
  background: var(--mint);
  border-radius: var(--radius-lg);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
  margin-top: 24px;
}

/* ── 20. STICKY MOBILE CTA ───────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--white);
}

.sticky-cta .sticky-call { background: var(--teal); }
.sticky-cta .sticky-wa   { background: #25D366; }

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

/* padding so content isn't behind sticky bar on mobile */
@media (max-width: 767px) { body { padding-bottom: 58px; } }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-q[aria-expanded="true"] { color: var(--teal); }
.faq-chevron {
  font-size: 0.75rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 4px 20px;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.7;
}
.faq-a[hidden] { display: none; }
