/* ═══════════════════════════════════════════════════════
   BRACES N FACES – PREMIUM REDESIGN
   Primary: #9DA17C | Accent: #C8CD96 | Dark: #2C2420
   ═══════════════════════════════════════════════════════ */

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

/* ── Design Tokens ── */
:root {
  --primary:        #9CAF88;
  --primary-light:  #B5C8A3;
  --primary-dark:   #7A8C66;
  --primary-hover:  #899C75;
  --accent:         #C9A96E;
  --cream:          #FBF9F3;
  --cream-dark:     #EFECE1;
  --white:          #FFFFFF;
  --charcoal:       #1A1C14;
  --dark:           #2A2F28;
  --text:           #3A3530;
  --muted:          #7A7868;
  --border:         rgba(157, 161, 124, 0.25);
  --border-strong:  rgba(157, 161, 124, 0.5);
  --glass:          rgba(255, 255, 255, 0.08);
  --glass-border:   rgba(255, 255, 255, 0.18);
  --shadow-sm:      0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl:      0 32px 80px rgba(0,0,0,0.20);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-pill:    100px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.15;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section-padding { padding: 90px 0; }
@media (min-width: 768px) { .section-padding { padding: 110px 0; } }

/* ── Announcement Bar ── */
.announcement-bar {
  background: linear-gradient(90deg, #7E9168 0%, #899C75 50%, #7E9168 100%);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 100;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  font-weight: 500;
  overflow: hidden;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: announceSweep 4s ease-in-out infinite;
}
@keyframes announceSweep { to { left: 150%; } }
.announcement-bar a { color: #fff; font-weight: 700; }
.ann-sep { opacity: 0.4; margin: 0 0.5rem; }
@media (max-width: 768px) { .announcement-bar { display: none; } }

/* ── Navbar ── */
.navbar {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(44,36,32,0.65);
  margin-top: 2px;
  font-weight: 500;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--charcoal); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.1); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(156, 175, 136, 0.3);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.btn-pill { border-radius: var(--radius-pill); }
.btn-book {
  padding: 14px 36px;
  font-size: 15px;
}

.nav-cta {
  display: none;
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill) !important;
  padding: 10px 22px !important;
  font-size: 13px !important;
  box-shadow: 0 4px 16px rgba(156, 175, 136, 0.3) !important;
}
.nav-cta:hover {
  background: var(--accent) !important;
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4) !important;
  transform: translateY(-2px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(0,0,0,0.06); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 100%);
  height: 100vh;
  background: var(--cream);
  z-index: 1001;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  box-shadow: -10px 0 60px rgba(0,0,0,0.2);
  border-left: 1px solid var(--border);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
  font-weight: 600;
}
.mobile-menu a:hover { color: var(--primary-dark); padding-left: 8px; }
.mobile-menu .btn-primary { margin-top: 24px; text-align: center; border-radius: var(--radius-pill); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  cursor: pointer;
  color: var(--dark);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  transition: all var(--transition);
}
.mobile-close:hover { background: var(--primary); color: white; border-color: var(--primary); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* ══════════════════════════════════════
   HERO SECTION — SPLIT LAYOUT
══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #FBF9F3; /* Ivory */
}

@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    height: 100vh;
    min-height: 700px;
  }
}

/* LEFT: Text Column */
.hero-text-col {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem 2rem 1.25rem;
  z-index: 10;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-text-col {
    width: 55%;
    padding: 4rem 5vw;
    justify-content: flex-start;
    margin-top: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    z-index: 2;
  }
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
  /* Slide in animation */
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

@media (max-width: 1023px) {
  .hero-content {
    margin-top: -65px;
    z-index: 20;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    align-items: flex-start;
    text-align: left;
    gap: 1.15rem;
  }
}

@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

/* Clinic name block */
.hero-clinic-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 1024px) {
  .hero-clinic-name { align-items: flex-start; }
}

.clinic-name-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(156,175,136,0.08);
  border: 1px solid #9CAF88;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6B7560;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.clinic-name-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A96E;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.clinic-name-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 11vw, 3rem);
  font-weight: 900;
  color: #2A2F28;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
@media (min-width: 1024px) {
  .clinic-name-main {
    font-size: clamp(3rem, 7vw, 5.5rem);
  }
}

.clinic-name-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.7rem, 1.4vw, 0.95rem);
  font-weight: 500;
  color: #9CAF88;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Decorative divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
}
@media (min-width: 1024px) {
  .hero-divider { margin-left: 0; }
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(156,175,136,0.5));
}
.hero-divider::after {
  background: linear-gradient(to left, transparent, rgba(156,175,136,0.5));
}
.hero-divider-icon {
  color: #C9A96E;
  font-size: 18px;
  animation: rotateSpin 8s linear infinite;
}
@keyframes rotateSpin { to { transform: rotate(360deg); } }

/* Tagline Capsule */
.hero-capsule {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(156, 175, 136, 0.15);
  color: var(--primary-dark);
  border-radius: var(--radius-pill);
  font-size: clamp(0.7rem, 4vw, 0.95rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .hero-capsule {
    font-size: 0.62rem;
    padding: 0.3rem 0.4rem;
    white-space: nowrap;
    letter-spacing: 0;
  }
}

/* Tagline */
.hero-heading {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #8B6508;
  margin: 0;
  text-align: inherit;
  letter-spacing: 0.02em;
}

/* Address Small */
.hero-address-small {
  font-size: 0.85rem;
  color: #5C7047; /* Ivory/Olive Green */
  font-weight: 500;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
.hero-address-small i {
  color: var(--accent);
  margin-right: 0.3rem;
}
.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(36px);
  animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal-line:nth-child(1) { animation-delay: 0.5s; }
.reveal-line:nth-child(2) { animation-delay: 0.7s; }
.highlight-line {
  color: #C9A96E;
  font-style: normal;
  font-weight: 700;
}
@keyframes revealLine { to { opacity: 1; transform: translateY(0); } }

.hero-subtext {
  font-size: 0.95rem;
  color: #5A5F52;
  line-height: 1.8;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1s;
  font-weight: 400;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.2s;
  margin-top: 0.5rem;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-actions {
    align-items: flex-start;
  }
}

.hero-phone-below {
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2A2F28;
}
.hero-phone-below a {
  color: inherit;
  text-decoration: none;
}


.cta-primary {
  background: var(--primary);
  color: #ffffff;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  box-shadow: 0 6px 28px rgba(157,161,124,0.3);
  position: relative;
  overflow: hidden;
}
.cta-primary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(201,169,110,0.5);
}

.cta-gold {
  background: var(--accent);
  color: var(--white);
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  box-shadow: 0 6px 28px rgba(201,169,110,0.3);
  position: relative;
  display: inline-block;
}
.cta-gold:hover {
  background: #B8860B;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.4);
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.45s;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .hero-stats { justify-content: flex-start; }
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
@media (min-width: 1024px) {
  .hero-stat { align-items: flex-start; }
}
.stat-val {
  font-size: 2.0rem;
  font-weight: 700;
  color: #2A2F28;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  font-family: 'Inter', sans-serif;
}
.stat-desc {
  font-size: 0.75rem;
  color: #8A8F80;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  white-space: nowrap;
}
.stat-sep {
  width: 1px;
  height: 24px;
  background: rgba(42,47,40,0.12);
  flex-shrink: 0;
}


.stats-section-grid {
  justify-content: center;
  margin-top: 0;
  animation: none;
  opacity: 1;
}
@media (max-width: 767px) {
  .hero-stats, .stats-section-grid {
    flex-wrap: nowrap;
    gap: 0.2rem;
    justify-content: space-evenly;
  }
  .hero-stat {
    padding: 0 0.2rem;
  }
  .stat-val {
    font-size: 1.3rem;
  }
  .stat-desc {
    font-size: 0.55rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .stat-sep {
    height: 20px;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .stats-section-grid { justify-content: center; }
}
.text-white { color: #ffffff !important; }
.text-white-muted { color: rgba(255,255,255,0.85) !important; }
.light-sep { background: rgba(255,255,255,0.2) !important; }

/* Dark modifiers for stats on light background */
.text-dark { color: #2A2F28 !important; }
.text-dark-muted { color: rgba(42,47,40,0.8) !important; font-weight: 700; }
.dark-sep { background: rgba(42,47,40,0.3) !important; }
.stat-plus { color: #2A2F28; font-weight: 900; opacity: 0.8; }

/* RIGHT: Image Column */
.hero-image-col {
  width: 100%;
  position: relative;
  overflow: hidden;
  order: -1;
  height: 50vh;
  min-height: 400px;
}
@media (min-width: 1024px) {
  .hero-image-col {
    width: 45%;
    height: 100%;
    order: 0;
    aspect-ratio: auto;
  }
}

.hero-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  /* Fade and slight scale in */
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(1.05);
  animation: revealImage 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (min-width: 1024px) {
  .hero-split-img {
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 10%, rgba(0,0,0,1) 20%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 10%, rgba(0,0,0,1) 20%);
    /* Desktop: slide in from right */
    transform: scale(1.05) translateX(40px);
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

@keyframes revealImage {
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInRight {
  to { opacity: 1; transform: scale(1) translateX(0); }
}

/* Soft decorative edge on desktop */
@media (min-width: 1024px) {
  
}

/* Scroll hint */
.hero-scroll-hint {
  display: none;
}

/* Animations */
@keyframes fadeUp {
  from { position: relative;
  z-index: 1;
  opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll Reveal *//* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Trust Pillars ── */
.trust-pillars {
  background: var(--dark);
  padding: 22px 0;
  overflow: hidden;
}
.pillars-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.pillars-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.pillars-grid {
  display: flex;
  align-items: center;
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pillar-item:last-child { border-right: none; }
.pillar-icon { font-size: 18px; }

/* ── Section Helpers ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 20px;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-dark);
  margin-bottom: 14px;
  font-weight: 700;
  display: block;
}

/* ── Promise / Two-Col ── */
.promise-section { background: var(--cream); }
.two-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.two-col .col-left, .two-col .col-right { flex: 1; }
@media (min-width: 900px) {
  .two-col {
    flex-direction: row;
    gap: 72px;
    align-items: center;
  }
  .two-col .col-left { flex: 0 0 52%; }
  .two-col .col-right { flex: 0 0 48%; }
}
.promise-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}
.promise-section p { margin-bottom: 24px; color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.feature-list li:first-child { border-top: 1px solid var(--border); }
.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.text-link {
  font-size: 15px;
  color: var(--primary-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: gap var(--transition), color var(--transition);
}
.text-link:hover { gap: 10px; color: var(--dark); }
.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary-dark);
  transition: width var(--transition);
}
.text-link:hover::after { width: 100%; }

/* Image Grid */
.image-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.image-grid-2x2 img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.image-grid-2x2 img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.image-grid-2x2 img:first-child {
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-sm) var(--radius-sm);
}

/* ══════════════════════════════════════
   SERVICES SECTION — HOME PAGE
══════════════════════════════════════ */
.services-preview {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.services-preview::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,161,124,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.service-highlight-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
  background: rgba(157,161,124,0.12);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-pill);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}
.service-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

/* ── Stats Section ── */
.stats-section {
  background: #9BAE8E;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(157,161,124,0.08) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat-item {
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child { border-right: none; }
}
.stat-item h3 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  font-family: 'Playfair Display', serif;
}
.stat-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.stat-item .counter { color: var(--primary-light); }

/* ── Gallery Teaser ── */
.gallery-teaser-section { background: var(--cream); }
.gallery-teaser {
  columns: 2;
  column-gap: 14px;
}
.gallery-teaser-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-teaser-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.gallery-teaser-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
@media (min-width: 768px) { .gallery-teaser { columns: 3; } }

/* ── Testimonials ── */
.testimonials { background: var(--cream-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--primary);
  line-height: 0.8;
  margin-bottom: 12px;
  opacity: 0.7;
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.6;
}
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--dark); }
.stars { color: #f4c842; font-size: 14px; margin-top: 4px; letter-spacing: 2px; }
.rating-bar {
  text-align: center;
  margin-top: 44px;
  font-size: 14px;
  color: var(--muted);
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--primary);
  color: var(--cream);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 120%; height: 200%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,255,255,0.12) 0%, transparent 70%);
  animation: ctaGlow 4s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-white {
  position: relative;
  z-index: 1;
  font-size: 15px;
  padding: 14px 40px;
  border-radius: var(--radius-pill);
}

/* ── Footer ── */
.footer {
  border-top: 2px solid #C9A96E;
  background: var(--charcoal);
  padding: 72px 0 32px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.6fr; } }
.footer .logo-main {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.92);
  font-size: 24px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 8px;
  font-size: 16px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-light);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-col p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
}
.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   PAGE HERO (Inner pages)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(157,161,124,0.15) 0%, transparent 70%);
}
.page-hero .eyebrow { color: var(--primary-light); }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 18px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.hero-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  margin: 28px auto 0;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   SERVICES PAGE — FULL GRID
══════════════════════════════════════ */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .services-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-full-grid { grid-template-columns: repeat(3, 1fr); } }

.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-full-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-full-card .service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
  background: var(--cream-dark);
}
.service-full-card .service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-full-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

/* Services Category Layout */
.service-category {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .service-category {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .service-category:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.service-image-col {
  width: 100%;
}
@media (min-width: 1024px) {
  .service-image-col {
    width: 42%;
    flex-shrink: 0;
  }
}

.service-square-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: #E8EDE0; /* default fallback */
}
.service-category-image img, .service-square-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}

.service-text-col {
  width: 100%;
}
@media (min-width: 1024px) {
  .service-text-col {
    width: 58%;
  }
}

/* Services Text Grid */
.services-text-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .services-text-grid { grid-template-columns: repeat(2, 1fr); } }

.service-text-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
}
.service-text-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.service-text-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary-dark);
}
.service-full-card .service-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 60%;
  background: linear-gradient(to top, rgba(44,36,32,0.5), transparent);
  pointer-events: none;
}

.service-full-card .card-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-full-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-full-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
  flex: 1;
}
.service-full-card .btn-outline {
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 13px;
  border-radius: var(--radius-pill);
  border-width: 1.5px;
}

/* Why Choose section */
.why-choose {
  background: var(--dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.why-choose::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(157,161,124,0.08) 0%, transparent 70%);
}
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.why-item {
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.why-item:hover {
  background: rgba(157,161,124,0.12);
  border-color: rgba(157,161,124,0.3);
  transform: translateY(-4px);
}
.why-item .icon { font-size: 36px; margin-bottom: 14px; display: block; color: #ffffff; }
.why-item h4 {
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.85);
}

/* ══════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border-strong);
  background: var(--white);
  color: var(--muted);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(157,161,124,0.35);
  transform: translateY(-1px);
}
.gallery-grid { columns: 2; column-gap: 14px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); opacity: 0.88; }
.gallery-item.hidden { display: none; }
@media (min-width: 768px) { .gallery-grid { columns: 3; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 28, 20, 0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  transform: scale(0.92);
  transition: transform 0.35s ease;
  box-shadow: var(--shadow-xl);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.lightbox-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.story-section { background: var(--cream); }
.story-section .two-col { align-items: center; }
.story-section img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.story-section h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.story-section p { margin-bottom: 16px; color: var(--muted); font-size: 15.5px; line-height: 1.75; }

.doctors-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 768px) { .doctors-grid { grid-template-columns: repeat(2, 1fr); } }
.doctor-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.doctor-card img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin: 0 auto 22px;
  background: var(--white);
}
.doctor-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.doctor-card .qualification {
  font-size: 12px;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 700;
}
.doctor-card .speciality {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.doctor-card .doctor-phone { font-size: 14px; color: var(--text); font-weight: 500; }

/* Values */
.values-section { background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.value-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-item:hover h4 { color: white; }
.value-item:hover .icon { filter: brightness(5); }
.value-item .icon { font-size: 36px; margin-bottom: 14px; display: block; transition: filter var(--transition); }
.value-item h4 { font-size: 15px; font-family: 'Playfair Display', serif; color: var(--dark); transition: color var(--transition); }

/* Rating strip */
.rating-strip {
  background: var(--primary);
  padding: 22px 0;
  text-align: center;
}
.rating-strip p { font-size: 15px; color: var(--white); font-weight: 500; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(157,161,124,0.15);
  background: var(--white);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(157,161,124,0.1);
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 16px;
}
.map-container { padding: 0 0 72px; }
.map-container iframe {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  filter: saturate(0.5) contrast(1.05);
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero *,
  .hero-clinic-name, .hero-divider, .hero-subtext,
  .hero-actions, .hero-stats, .hero-scroll-hint, .reveal-line {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Mobile Responsive Fine-tuning ── */
@media (max-width: 600px) {
  .clinic-name-main {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }
  .hero-actions { flex-direction: column; width: 100%; max-width: 280px; }
  .cta-primary, .cta-secondary { width: 100%; text-align: center; padding: 0.9rem 1rem; }
  .hero-scroll-hint { display: none; }
  .hero-floats .hero-float { display: none; }

  .values-grid { grid-template-columns: 1fr 1fr; }
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
@media (min-width: 1024px) {
  .nav-logo-img {
    height: 64px;
  }
}

.service-category-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #E8EDE0;
  border-radius: inherit;
}
/* Custom Img Icons */
.custom-img-icon {
  height: 1.2em;
  max-width: 1.6em;
  object-fit: contain;
  vertical-align: middle;
}
.why-item .custom-img-icon,
.value-item .custom-img-icon {
  display: block;
  margin: 0 auto;
}
.value-item .custom-img-icon {
  filter: invert(1);
  transition: all var(--transition);
}
.value-item:hover .custom-img-icon {
  filter: none;
}
