/* ============================================================
   KERALA DENTAL TEMPLATE
   Fonts: DM Serif Display (headings) + DM Sans (body)
   Colors: #F8F7F4 bg | #1A6B6B teal | #1C1C1A text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --bg:           #F8F8FA;
  --bg-alt:       #EEF2F7;
  --accent:       #1565C0;
  --accent-dark:  #0D47A1;
  --accent-light: #E3F2FD;
  --text:         #1A1A2E;
  --text-muted:   #4F5B6B;
  --white:        #FFFFFF;
  --border:       #DCE4EF;
  --shadow-sm:    0 2px 12px rgba(21,101,192,0.07);
  --shadow-md:    0 6px 28px rgba(21,101,192,0.11);
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --radius:       12px;
  --max-w:        1180px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Layout utilities --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: clamp(4rem, 8vw, 6.5rem) 1.5rem; }
.section-alt { background: var(--bg-alt); padding: clamp(4rem, 8vw, 6.5rem) 1.5rem; }
.section-dark { background: var(--accent); color: var(--white); padding: clamp(4rem, 8vw, 6.5rem) 1.5rem; }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.3rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p  { color: var(--text-muted); }

.section-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.section-headline { max-width: 52ch; }
.section-headline h2 { margin-bottom: 0.75rem; }
.section-headline p { font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover { background: var(--accent-light); }
.btn-white {
  background: var(--white);
  color: var(--accent);
  font-weight: 600;
}
.btn-white:hover { background: var(--accent-light); }
.btn svg { width: 20px; height: 20px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo-client-img { height: 46px; width: auto; display: block; object-fit: contain; }
.logo-client-footer { height: 40px; filter: brightness(0) invert(1); }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.logo-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text); }
.logo-name span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--accent); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-right { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-weight: 600; color: var(--accent); font-size: 0.9rem;
}
.header-phone svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2.5; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(3rem, 6vw, 5rem) 1.5rem; }
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.1rem;
  max-width: 46ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-emergency {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #FEF9EC;
  color: #854D0E;
  border: 1px solid #FDE68A;
  padding: 0.6rem 1rem;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-emergency strong { font-weight: 700; }
.hero-emergency a { color: #854D0E; font-weight: 700; text-decoration: underline; }

/* Hero image side */
.hero-visual { position: relative; }
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(380px, 48vw, 540px);
  border-radius: 18px 4px 18px 4px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide.clinic-slide { object-position: center 55%; }
.slider-dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.slider-dot.active { background: #fff; }
.hero-badge {
  position: absolute;
  bottom: 1.75rem;
  left: -1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 160px;
}
.hero-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.hero-badge-label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.45; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats { background: var(--accent); padding: 2.75rem 1.5rem; position: relative; overflow: hidden; }
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1600&q=50') center/cover no-repeat;
  opacity: 0.08;
  mix-blend-mode: luminosity;
}
.stats-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  margin-top: 0.3rem;
  display: block;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
/* Service card image strip */
.service-card-img-wrap {
  margin: -1.75rem -1.75rem 1.5rem;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.service-card p  { font-size: 0.9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; flex-direction: column;
}
.testimonial-stars { color: #F59E0B; font-size: 0.95rem; letter-spacing: 0.12em; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testimonial-name  { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.testimonial-place { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-inner {
  max-width: 700px;
  margin: 3rem auto 0;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem; font-weight: 500; color: var(--text);
  gap: 1rem;
}
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  transition: transform 0.3s ease;
}
.faq-icon svg { stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-body p { padding-bottom: 1.25rem; font-size: 0.97rem; }
.faq-item.open .faq-body { max-height: 200px; }

/* ============================================================
   MAP
   ============================================================ */
.footer-map { width: 100%; line-height: 0; margin-bottom: 2rem; }
.footer-map iframe { width: 100%; height: 280px; border: none; filter: grayscale(20%); display: block; opacity: 0.85; }

.hero-map-strip { width: 100%; line-height: 0; }
.hero-map-strip iframe { width: 100%; height: 220px; border: none; display: block; filter: grayscale(10%); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start;
}
.contact-info h2 { margin-bottom: 0.85rem; }
.contact-info > p { margin-bottom: 2.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.c-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.c-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); font-weight: 600; margin-bottom: 0.2rem; }
.c-value { font-size: 1rem; color: var(--text); font-weight: 500; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { margin-bottom: 1.75rem; font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.45rem; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.97rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { height: 110px; resize: vertical; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--accent);
  padding: clamp(3rem, 5vw, 4.5rem) 1.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 52ch; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #111110; color: rgba(255,255,255,0.82); padding: 4rem 1.5rem 2rem; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-name span { color: rgba(255,255,255,0.90); }
.footer-brand .logo-mark { background: var(--accent); }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.75rem; color: rgba(255,255,255,0.82); }
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--accent); }
.footer-social a svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.75); fill: none; stroke-width: 1.75; }
.footer-col h4,
.footer-col-head {
  color: var(--white);
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
/* Screen-reader-only utility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; color: rgba(255,255,255,0.82); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w); margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(27,122,70,0.5), 0 0 0 0 rgba(27,122,70,0.2); }
  60%       { box-shadow: 0 4px 20px rgba(27,122,70,0.5), 0 0 0 10px rgba(27,122,70,0); }
}
/* Float actions wrapper — single fixed container for WA + back-to-top */
.float-actions {
  position: fixed;
  bottom: max(1.5rem, calc(1.25rem + env(safe-area-inset-bottom, 0px)));
  right: 1.25rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-float {
  position: static;
}
.wa-float a {
  display: flex; align-items: center; gap: 0.6rem;
  background: #1B7A46; color: var(--white);
  padding: 0.8rem 1.3rem;
  border-radius: 100px;
  font-weight: 600; font-size: 0.92rem;
  animation: wa-pulse 2.8s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float a:hover { transform: translateY(-2px); }
.wa-float svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }
.wa-label { display: inline; }

/* ============================================================
   ABOUT PAGE SPECIFICS
   ============================================================ */
.about-intro {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-text h2 { margin-bottom: 1rem; }
.about-text p  { margin-bottom: 1.25rem; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.credential-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--accent-light); color: var(--accent);
  padding: 0.45rem 0.9rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600;
}
.credential-badge svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2.5; }

.team-grid {
  margin-top: 3rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; text-align: center;
}
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card-body { padding: 1.5rem; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card p  { font-size: 0.88rem; }

/* ============================================================
   SERVICES PAGE SPECIFICS
   ============================================================ */
.services-full { max-width: var(--max-w); margin: 0 auto; }
.service-full-item {
  display: grid; grid-template-columns: 64px 1fr 220px; gap: 1.5rem;
  padding: 2rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 1rem; align-items: center;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.service-full-item:hover { box-shadow: var(--shadow-md); }
.service-full-item h3 { margin-bottom: 0.4rem; }
.service-full-item p  { font-size: 0.95rem; }
.service-full-img {
  width: 100%; height: 140px;
  object-fit: cover; border-radius: 10px;
  transition: transform 0.4s ease;
}
.service-full-item:hover .service-full-img { transform: scale(1.04); }

/* ============================================================
   CONTACT PAGE SPECIFICS
   ============================================================ */
.contact-page-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start;
}
.hours-table { margin-top: 1.5rem; border-collapse: collapse; width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.65rem 0; font-size: 0.9rem; }
.hours-table td:last-child { color: var(--accent); font-weight: 500; text-align: right; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner     { gap: 2.5rem; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .about-intro    { gap: 2.5rem; }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .service-full-item { grid-template-columns: 64px 1fr; }
  .service-full-img  { display: none; }
}

@media (max-width: 768px) {
  /* Sections */
  .section, .section-alt, .section-dark { padding: 2.5rem 1.25rem; }
  .page-hero { padding: 2rem 1.25rem; }
  /* Hero */
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-visual        { order: -1; }
  .hero-img           { height: 260px; border-radius: 12px 4px 12px 4px; }
  .hero-badge         { left: 0.5rem; bottom: 0.75rem; }
  /* Stats */
  .stats-inner        { grid-template-columns: 1fr; gap: 0; }
  .stat               { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 1.25rem 0; }
  .stat:last-child    { border-bottom: none; }
  /* Grids */
  .testimonials-grid  { grid-template-columns: 1fr; }
  .contact-inner      { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-page-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro        { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand       { grid-column: auto; }
  .footer-bottom      { flex-direction: column; gap: 0.5rem; text-align: center; }
  /* Nav */
  .nav {
    display: none; position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--white); padding: 1.5rem;
    gap: 1.25rem; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav.open       { display: flex; }
  .nav-toggle     { display: flex; }
  .header-phone   { display: none; }
  .header-right .btn { display: none; }
  /* WhatsApp float — icon only on mobile */
  .wa-label       { display: none; }
  .wa-float a     { padding: 0.875rem; border-radius: 50%; }
  /* Form */
  .form-row       { grid-template-columns: 1fr; }
  /* About values grid */
  .values-grid    { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .services-grid    { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: 1fr; }
  .hero-ctas        { flex-direction: column; }
  .hero-ctas .btn   { width: 100%; justify-content: center; }
}

/* ============================================================
   V2 UPGRADES
   ============================================================ */

/* iOS Safari input zoom fix — font-size below 16px triggers auto-zoom */
input, textarea, select { font-size: 16px !important; }

/* Grain texture on hero */
.hero { position: relative; overflow: hidden; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }

/* Wave dividers */
.wave-bottom { position: relative; }
.wave-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48'%3E%3Cpath d='M0 0 C300 48 900 0 1200 48 L1200 48 L0 48Z' fill='%23F1EFE9'/%3E%3C/svg%3E") center bottom/cover no-repeat;
  pointer-events: none;
}
.wave-top { position: relative; }
.wave-top::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48'%3E%3Cpath d='M0 48 C300 0 900 48 1200 0 L1200 0 L0 0Z' fill='%23FAF8F4'/%3E%3C/svg%3E") center top/cover no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* ── Structured motion (LAVA-style) ──────────────────────────────────────── */
/* Base — every animated element starts hidden */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  will-change: opacity, transform;
}

/* Easing curve: expo-out — fast start, precise stop */
.fade-up    { transform: translateY(40px);   transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.fade-left  { transform: translateX(-36px);  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.fade-right { transform: translateX(36px);   transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.scale-in   { transform: scale(0.94);        transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }

/* Visible state — all converge to natural position */
.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible   { opacity: 1; transform: none; }

/* Stagger delay via CSS custom property — set --i on child elements */
.stagger-children > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1) calc(var(--i,0) * 90ms),
              transform 0.6s cubic-bezier(0.16,1,0.3,1) calc(var(--i,0) * 90ms);
}
.stagger-children.visible > * { opacity: 1; transform: none; }

/* ── Price badge — service pages ─────────────────────────────────────────── */
.price-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.92);
}
.price-badge strong { color: #fff; font-size: 1rem; font-weight: 700; }
.price-note { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.price-note::before { content: '·'; margin-right: 0.3rem; }

/* ── Price inline — services.html list ───────────────────────────────────── */
.price-inline {
  display: inline-block;
  margin: 0.6rem 0 0.75rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.price-inline strong { color: var(--accent); font-weight: 700; }

/* ── Google Reviews widget ───────────────────────────────────────────────── */
.google-reviews {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  background: var(--bg-alt);
}
.gr-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  max-width: var(--max-w); margin: 0 auto 2rem;
}
.gr-brand { display: flex; align-items: center; gap: 0.75rem; }
.gr-logo { width: 80px; height: auto; }
.gr-aggregate { display: flex; align-items: center; gap: 0.5rem; }
.gr-score { font-size: 2rem; font-weight: 700; font-family: var(--font-heading); color: var(--text); line-height: 1; }
.gr-stars-row { display: flex; gap: 2px; }
.gr-stars-row svg { width: 18px; height: 18px; fill: #FBBC04; }
.gr-count { font-size: 0.88rem; color: var(--text-muted); margin-top: 2px; }
.gr-cta-link {
  font-size: 0.88rem; font-weight: 600; color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.5rem 1.1rem; border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.gr-cta-link:hover { background: var(--accent); color: #fff; }

.gr-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.gr-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.gr-card-top { display: flex; align-items: center; gap: 0.75rem; }
.gr-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.gr-reviewer { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.gr-date { font-size: 0.78rem; color: var(--text-muted); }
.gr-card-stars { display: flex; gap: 2px; }
.gr-card-stars svg { width: 14px; height: 14px; fill: #FBBC04; }
.gr-card-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.gr-card-source { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: #9AA0A6; margin-top: auto; }
.gr-card-source svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 900px) { .gr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
  .gr-grid { grid-template-columns: 1fr; }
  .gr-header { flex-direction: column; align-items: flex-start; }
}

/* Back to top button */
.back-to-top {
  position: static;
  order: -1;
  width: 42px; height: 42px;
  background: var(--accent);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 190;
  box-shadow: 0 4px 16px rgba(21,101,192,0.25);
}
.back-to-top.visible { opacity: 1; transform: none; }
.back-to-top svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Technology trust strip */
.tech-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.tech-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.75rem 2.5rem;
}
.tech-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.84rem; font-weight: 500; color: var(--text-muted);
  white-space: nowrap;
}
.tech-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent); fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

/* Treatment process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 23px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-light), var(--accent), var(--accent-light));
}
.process-step { text-align: center; padding: 0 0.5rem; position: relative; }
.process-step-num {
  width: 48px; height: 48px;
  background: var(--accent); color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading); font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-alt);
}
.process-step h3 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.process-step p  { font-size: 0.78rem; line-height: 1.55; }

/* Certificate wall */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.cert-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
}
.cert-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cert-item img { width: 100%; height: 100%; object-fit: cover; }
.cert-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  background: var(--accent-light); color: var(--accent);
  font-size: 0.72rem; font-weight: 500; text-align: center; padding: 0.75rem;
  line-height: 1.4;
}
.cert-placeholder svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up, .fade-left, .fade-right, .scale-in { opacity: 1; transform: none; }
  .stagger-children > * { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .header, .wa-float, .back-to-top, .nav-toggle, .footer-social { display: none !important; }
  .hero { padding: 1rem 0; }
  body { color: #000; background: #fff; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Responsive additions */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-steps::before { display: none; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-strip-inner { gap: 0.6rem 1.5rem; }
  .service-full-item {
    grid-template-columns: 1fr !important;
  }
  .service-full-item .service-icon {
    width: 48px !important; height: 48px !important;
  }
  .service-full-img { display: block !important; height: 180px; border-radius: 10px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.service-detail-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.service-detail-img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3; object-fit: cover;
}
.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p { margin-bottom: 1.1rem; }
.service-detail-list { margin: 1rem 0 1.5rem; }
.service-detail-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.45rem 0; font-size: 0.97rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.service-detail-list li:last-child { border-bottom: none; }
.service-detail-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--accent-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A4A6B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}

/* Treatment CTA strip */
.treatment-cta {
  background: var(--accent);
  padding: 3rem 1.5rem;
  text-align: center;
}
.treatment-cta h3 { color: var(--white); font-size: clamp(1.3rem, 3vw, 1.75rem); margin-bottom: 0.65rem; }
.treatment-cta p { color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; max-width: 44ch; margin-left: auto; margin-right: auto; }
.treatment-cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* Related services */
.related-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.related-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: box-shadow 0.2s, transform 0.2s; text-decoration: none;
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-icon {
  width: 44px; height: 44px; background: var(--accent-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.related-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.75; }
.related-card h4 { font-size: 0.97rem; color: var(--text); margin-bottom: 0.2rem; }
.related-card p { font-size: 0.84rem; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { width: 100%; height: 190px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-size: 0.72rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: var(--font-heading); font-size: 1.1rem;
  color: var(--text); line-height: 1.45; margin-bottom: 0.75rem; flex: 1;
}
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-card-read { font-size: 0.85rem; font-weight: 600; color: var(--accent); }

/* Blog post content */
.blog-post-wrap { max-width: var(--max-w); margin: 0 auto; }
.blog-post-meta { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; }
.blog-post-meta span { font-size: 0.85rem; color: var(--text-muted); }
.blog-post-inner { max-width: 720px; margin: 0 auto; }
.blog-post-inner h2 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin: 2.25rem 0 0.75rem; color: var(--text); }
.blog-post-inner h3 { font-size: clamp(1.1rem, 2vw, 1.25rem); margin: 1.75rem 0 0.5rem; color: var(--text); }
.blog-post-inner p { margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.85; color: var(--text-muted); }
.blog-post-inner ul, .blog-post-inner ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-post-inner li { font-size: 1rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 0.5rem; }
.blog-post-inner ul li { list-style: disc; }
.blog-post-inner ol li { list-style: decimal; }
.blog-post-inner a { color: var(--accent); text-decoration: underline; }
.blog-post-inner strong { color: var(--text); font-weight: 600; }
.blog-cta-box {
  background: var(--accent-light); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 2rem; margin: 2.5rem 0; text-align: center;
}
.blog-cta-box h3 { color: var(--accent); margin-bottom: 0.5rem; }
.blog-cta-box p { margin-bottom: 1.25rem; }

/* ============================================================
   GALLERY PAGES
   ============================================================ */
.gallery-filter { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-filter-btn {
  padding: 0.5rem 1.25rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted); background: var(--white);
  cursor: pointer; transition: all 0.2s;
}
.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--accent); color: var(--white); border-color: var(--accent);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 1rem;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; position: relative;
  background: var(--accent-light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(21,101,192,0.0);
  display: flex; align-items: flex-end; padding: 0.75rem;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(21,101,192,0.35); }
.gallery-item-label {
  color: white; font-size: 0.82rem; font-weight: 600;
  opacity: 0; transform: translateY(4px); transition: all 0.3s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: none; }
.gallery-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  color: var(--accent); font-size: 0.8rem; font-weight: 600; text-align: center; padding: 1rem;
}
.gallery-placeholder svg { width: 32px; height: 32px; stroke: var(--accent); fill: none; stroke-width: 1.5; opacity: 0.6; }

/* Before / After gallery */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.ba-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-side { position: relative; aspect-ratio: 3/4; background: var(--accent-light); }
.ba-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-label {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: rgba(21,101,192,0.85); color: white;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  padding: 0.25rem 0.6rem; border-radius: 4px;
}
.ba-after .ba-label { background: rgba(46,150,84,0.9); }
.ba-caption { padding: 1rem 1.25rem; background: var(--white); }
.ba-caption h4 { font-size: 0.95rem; color: var(--text); margin-bottom: 0.2rem; }
.ba-caption p { font-size: 0.82rem; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 999;
  align-items: center; justify-content: center;
}
.lightbox.open, .lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 44px; height: 44px; color: white; font-size: 1.4rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 48px; height: 48px; color: white; font-size: 1.5rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

/* Responsive: new pages */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ba-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .related-services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .treatment-cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG POST PAGES
   ============================================================ */
.blog-post-hero {
  padding: 7rem 0 3rem;
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
}
.blog-post-hero h1 {
  color: white; font-size: clamp(1.6rem, 4vw, 2.6rem);
  max-width: 760px; margin-bottom: 0.75rem;
}
.blog-post-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; margin-bottom: 1rem; opacity: 0.8;
}
.blog-post-breadcrumb a { color: rgba(255,255,255,0.8); }
.blog-post-breadcrumb a:hover { color: white; }
.blog-post-breadcrumb span { opacity: 0.6; }
.blog-post-meta { font-size: 0.88rem; opacity: 0.75; margin-top: 0.5rem; }
.blog-post-body { padding: 3rem 0 5rem; }
.blog-post-inner {
  max-width: 760px; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.85; color: var(--text);
}
.blog-post-inner h2 {
  font-family: var(--font-heading); font-size: 1.45rem;
  color: var(--text); margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.blog-post-inner h3 {
  font-family: var(--font-heading); font-size: 1.2rem;
  color: var(--text); margin: 2rem 0 0.75rem;
}
.blog-post-inner p { margin-bottom: 1.25rem; color: var(--text-muted); }
.blog-post-inner strong { color: var(--text); }
.blog-post-inner ul { list-style: disc; }
.blog-post-inner ul li { color: var(--text-muted); }
.blog-cta-box {
  background: var(--accent-light); border-radius: var(--radius);
  padding: 2rem 2.5rem; margin: 3rem 0;
  border-left: 4px solid var(--accent);
}
.blog-cta-box h3 {
  font-family: var(--font-heading); font-size: 1.2rem;
  color: var(--accent); margin-bottom: 0.5rem;
}
.blog-cta-box p { color: var(--text-muted); margin-bottom: 1.25rem; }
.blog-post-related h3 {
  font-size: 1.1rem; color: var(--text); margin-bottom: 0;
}

/* Lightbox inner */
.lightbox-inner { max-width: 90vw; text-align: center; }
.lightbox-inner img {
  max-width: 90vw; max-height: 80vh; object-fit: contain;
  border-radius: 8px; display: block; margin: 0 auto;
}
.lightbox-caption {
  color: rgba(255,255,255,0.75); font-size: 0.88rem;
  margin-top: 0.75rem; text-align: center;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 48px; height: 48px; color: white; font-size: 2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 640px) {
  .blog-post-inner { font-size: 0.97rem; }
  .blog-cta-box { padding: 1.5rem; }
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 1.4rem; }
}
