/* ================================================================
   SmileCare Dental – Premium Stylesheet v2.0
   Inspired by: denticare.bold-themes.com/oscar & bravisthemes Dentia
   ================================================================ */

/* ── 1. CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --teal:          #00C8A0;
  --teal-dark:     #009C7C;
  --teal-light:    #3DDFC5;
  --teal-pale:     #E6FBF6;
  --navy:          #0D1B33;
  --navy-2:        #102040;
  --navy-3:        #162848;
  --white:         #FFFFFF;
  --off-white:     #F6FAFE;
  --gray-1:        #EEF3F9;
  --gray-2:        #DCE6F1;
  --gray-3:        #B8CCD9;
  --text-dark:     #0D1B33;
  --text-body:     #3D5068;
  --text-muted:    #7A90A8;
  --gold:          #F5A623;
  --red:           #E53E3E;

  /* Gradients */
  --grad-teal:     linear-gradient(135deg, #00C8A0 0%, #0094B5 100%);
  --grad-navy:     linear-gradient(135deg, #0D1B33 0%, #1A3058 100%);
  --grad-hero:     linear-gradient(135deg, #060F1E 0%, #0D1B33 50%, #162848 100%);
  --grad-btn:      linear-gradient(135deg, #00C8A0 0%, #0094B5 100%);
  --grad-card:     linear-gradient(145deg, rgba(0,200,160,0.06) 0%, rgba(0,148,181,0.04) 100%);

  /* Shadows */
  --shadow-xs:    0 2px 8px rgba(13,27,51,0.06);
  --shadow-sm:    0 4px 16px rgba(13,27,51,0.08);
  --shadow-md:    0 8px 32px rgba(13,27,51,0.12);
  --shadow-lg:    0 16px 48px rgba(13,27,51,0.16);
  --shadow-xl:    0 24px 64px rgba(13,27,51,0.20);
  --shadow-teal:  0 8px 32px rgba(0,200,160,0.30);
  --shadow-teal-lg:0 16px 48px rgba(0,200,160,0.25);

  /* Radii */
  --r-xs:   10px;
  --r-sm:   10px;
  --r-md:   10px;
  --r-lg:  10px;
  --r-xl:   10px;
  --r-full: 9999px;

  /* Spacing */
  --section-py:  80px;
  --header-h:    80px;
  --topbar-h:    44px;
  --container:   1240px;

  /* Fonts */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', sans-serif;
  --font-body:   'Inter', sans-serif;

  /* Transitions */
  --t:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* ── 3. UTILITIES ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img{    width: 170px;}
.section-py  { padding: var(--section-py) 0; }
.bg-white    { background: var(--white); }
.bg-off      { background: var(--off-white); }
.bg-gray     { background: var(--gray-1); }
.bg-navy     { background: var(--navy); }
.bg-dark     { background: var(--navy-2); }
.text-center { text-align: center; }

/* Serif badge pill */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-badge::before,
.section-badge::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--teal);
  border-radius: 2px;
}

/* Serif heading styles */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: var(--teal);
}
.section-title.light    { color: var(--white); }
.section-title.light em { color: var(--teal-light); }
.section-title.no-italic { font-style: normal; }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}
.section-sub.center { margin: 0 auto; }
.section-sub.light  { color: rgba(255,255,255,0.65); }

.section-header { margin-bottom: 40px; }

/* Screen reader only */
.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;
}

/* ── 4. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: var(--r-full);
  transition: var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn i { font-size: 0.95rem; transition: transform 0.2s ease; }
.btn:hover i { transform: translateX(3px); }

.btn-teal {
  background: var(--grad-btn);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal-lg);
  filter: brightness(1.08);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--teal-dark);
}

.btn-sm  { padding: 10px 24px; font-size: 0.82rem; }
.btn-lg  { padding: 10px 44px; font-size: 1rem; }

/* ── 5. SCROLL REVEAL ANIMATIONS ─────────────────────────────── */
@keyframes fadeInUp    { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:none; } }
@keyframes fadeInLeft  { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:none; } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px);  } to { opacity:1; transform:none; } }
@keyframes fadeIn      { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn     { from { opacity:0; transform:scale(0.88); } to { opacity:1; transform:scale(1); } }
@keyframes float       { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
@keyframes floatAlt    { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-10px) rotate(8deg);} }
@keyframes rotateRing  { to { transform:rotate(360deg); } }
@keyframes pulseBorder { 0%,100%{box-shadow:0 0 0 0 rgba(0,200,160,0.4);} 50%{box-shadow:0 0 0 12px rgba(0,200,160,0);} }
@keyframes gradFlow    { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }
@keyframes blobAnim    { 0%,100%{border-radius:60% 40% 30% 70%/60% 30% 70% 40%;} 50%{border-radius:30% 60% 70% 40%/50% 60% 30% 60%;} }
@keyframes dotBounce   { 0%,80%,100%{transform:scale(0);} 40%{transform:scale(1);} }
@keyframes countUp     { from{opacity:0;} to{opacity:1;} }
@keyframes shimmerSlide{ from{transform:translateX(-100%);} to{transform:translateX(100%);} }
@keyframes ripple      { from{transform:scale(0);opacity:0.6;} to{transform:scale(3);opacity:0;} }

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.reveal-left  { transform: translateX(-44px); }
.reveal.reveal-right { transform: translateX(44px); }
.reveal.reveal-scale { transform: scale(0.88); }
.reveal.visible      { opacity: 1; transform: none; }
.reveal-d1.visible   { transition-delay: 0.1s; }
.reveal-d2.visible   { transition-delay: 0.2s; }
.reveal-d3.visible   { transition-delay: 0.3s; }
.reveal-d4.visible   { transition-delay: 0.4s; }
.reveal-d5.visible   { transition-delay: 0.5s; }
.reveal-d6.visible   { transition-delay: 0.6s; }

/* ── 6. PRELOADER ─────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.pl-inner { text-align: center; }
.pl-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  margin-bottom: 28px;
}
.pl-logo span { color: var(--teal); }
.pl-tooth {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: float 2s ease-in-out infinite;
  display: block;
}
.pl-bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  margin: 0 auto;
  overflow: hidden;
}
.pl-fill {
  height: 100%;
  background: var(--grad-teal);
  border-radius: var(--r-full);
  animation: shimmerSlide 1.2s ease-in-out infinite;
  width: 50%;
}

/* Scroll progress */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: var(--grad-teal);
  z-index: 9998;
  width: 0%;
  transition: width 0.08s linear;
}

/* ── 7. TOP BAR ───────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.top-bar-item i { color: var(--teal); font-size: 0.75rem; }
.top-bar-item a { color: rgba(255,255,255,0.7); transition: var(--t-fast); }
.top-bar-item a:hover { color: var(--teal); }
.top-bar-divider {
  width: 1px; height: 16px;
  background: rgba(255,255,255,0.15);
}
.top-bar-socials { display: flex; gap: 10px; }
.top-bar-socials a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  transition: var(--t-fast);
  border: 1px solid rgba(255,255,255,0.1);
}
.top-bar-socials a:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ── 8. HEADER ────────────────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,0.0);
  transition: var(--t);
  will-change: background;
}
#header.scrolled {
  background: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(13,27,51,0.10);
}
.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; text-decoration: none;
}
.logo-mark {
  width: 46px; height: 46px;
  background: var(--grad-teal);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  box-shadow: var(--shadow-teal);
  transition: var(--t);
}
.nav-logo:hover .logo-mark { transform: rotate(-6deg) scale(1.08); }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  transition: var(--t-fast);
}
.logo-name span { color: var(--teal); }
#header:not(.scrolled) .logo-name { color: var(--white); }

/* Desktop Nav */
.nav-menu {
  display: flex; align-items: center; gap: 2px;
}
.nav-menu a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 9px 16px;
  border-radius: var(--r-full);
  transition: var(--t-fast);
  white-space: nowrap;
}
/* #header:not(.scrolled) .nav-menu a { color: rgba(255,255,255,0.88); } */
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--teal);
  background: var(--teal-pale);
}
#header:not(.scrolled) .nav-menu a:hover,
#header:not(.scrolled) .nav-menu a.active {
  background: rgba(0,200,160,0.15);
  color: var(--teal-light);
}

/* Nav CTA */
.nav-cta-group { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-tel {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--t-fast);
}
/* #header:not(.scrolled) .nav-tel { color: var(--white); } */
.nav-tel i { color: var(--teal); }
.nav-tel:hover { color: var(--teal); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  border-radius: var(--r-xs);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--t);
}
#header:not(.scrolled) .hamburger span {     background: #00c0a3; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 28px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 899;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-xl);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--t-fast);
}
.mobile-nav a:hover { background: var(--teal-pale); color: var(--teal); }
.mobile-nav .mobile-cta-link { margin-top: 12px; }
.mobile-nav i { color: var(--teal); width: 18px; }
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* ── 9. HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h));
  background: var(--grad-hero);
  background-size: 200% 200%;
  /* animation: gradFlow 14s ease infinite; */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 80px;
}

/* Decorative circles */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}
.deco-1 {
  width: 600px; height: 600px;
  border: 1px solid rgba(0,200,160,0.12);
  top: -150px; right: -100px;
  animation: rotateRing 40s linear infinite;
}
.deco-2 {
  width: 400px; height: 400px;
  border: 1px dashed rgba(0,200,160,0.08);
  bottom: -80px; left: -60px;
  animation: rotateRing 30s linear infinite reverse;
}
.deco-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,160,0.12) 0%, transparent 70%);
  top: -100px; right: 0;
  filter: none;
}
.deco-glow-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,148,181,0.1) 0%, transparent 70%);
  bottom: 0; left: 10%;
  filter: none;
}
.deco-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(0,200,160,0.12) 1px, transparent 1px),
    radial-gradient(rgba(0,200,160,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero Left Content */
.hero-content { display: flex; flex-direction: column; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeInLeft 0.8s ease both;
}
.eyebrow-line {
  display: block;
  width: 40px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInLeft 0.8s 0.15s ease both;
}
.hero-title .teal-line {
  display: block;
  color: var(--teal);
  position: relative;
}
.hero-title .teal-line::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: var(--teal);
  opacity: 0.4;
  border-radius: 2px;
}
.hero-title .white-block { display: block; }

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeInLeft 0.8s 0.28s ease both;
}

/* Hero contact strip */
.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeInLeft 0.8s 0.38s ease both;
}
.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
    padding: 8px 10px;
}
.hero-ci-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--white);
  flex-shrink: 0;
}
.hero-ci-text span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  margin-bottom: 1px;
}
.hero-ci-text strong {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInLeft 0.8s 0.45s ease both;
}

/* Hero Right Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s 0.3s ease both;
}

.hero-img-wrap {
  position: relative;
  width: 440px;
  height: 520px;
}

/* Main photo blob */
.hero-photo-frame {
    position: relative;
    width: 500px;
    height: 520px;
    margin: 0 auto;
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  border-radius: 55% 45% 48% 52% / 50% 48% 52% 50%;
  background: linear-gradient(145deg, #102040 0%, #0D1B33 40%, #00897A 100%);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,200,160,0.25), 0 0 0 1px rgba(0,200,160,0.15);
  animation: blobAnim 12s ease-in-out infinite;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* CSS Doctor figure */
.doc-figure {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.doc-torso {
  width: 220px; height: 350px;
  background: linear-gradient(180deg, #F4F4F4 0%, #E8E8E8 100%);
  border-radius: 50px 50px 0 0;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.doc-neck {
  width: 40px; height: 30px;
  background: #F5C9A5;
  margin-top: -10px;
  border-radius: 50%;
}
.doc-face {
  width: 100px; height: 100px;
  background: linear-gradient(145deg, #F5C9A5, #F0B88A);
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  margin-top: -50px;
}
.doc-collar {
  width: 160px; height: 180px;
  background: rgba(255,255,255,0.95);
  border-radius: 20px 20px 0 0;
  margin-top: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-collar::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 90px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 2px;
}
.doc-stethoscope-ico { font-size: 2.4rem; color: var(--teal-dark); position: relative; z-index: 1; }

/* Rotating teal ring */
.hero-ring {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 2px dashed rgba(0,200,160,0.3);
  animation: rotateRing 25s linear infinite;
}

/* Floating stat mini cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  z-index: 10;
  white-space: nowrap;
}
.hfc-1 {
  top: 5%;
  left: -50px;
  animation: float 5s 0s ease-in-out infinite;
}
.hfc-2 {
  bottom: 18%;
  left: -60px;
  animation: float 5s 0.7s ease-in-out infinite;
}
.hfc-3 {
  top: 12%;
  right: -30px;
  animation: float 5s 0.4s ease-in-out infinite;
}
.hfc-4 {
  bottom: 8%;
  right: -40px;
  animation: float 5s 1.1s ease-in-out infinite;
}
.hfc-icon {
  width: 32px; height: 32px;
  background: var(--teal);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--white);
  margin-bottom: 6px;
}
.hfc-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hfc-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  display: block;
  font-family: var(--font-sans);
  margin-top: 2px;
}
.hfc-row { display: flex; align-items: center; gap: 10px; }

/* Available badge */
.hero-available {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-teal);
  z-index: 11;
  white-space: nowrap;
}
.hero-available::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--white);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulseBorder 2s ease-in-out infinite;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 5;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--teal);
  border-radius: 2px;
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  animation: float 1.6s ease-in-out infinite;
}
.scroll-arrows span {
  display: block;
  width: 10px; height: 10px;
  border-right: 1.5px solid rgba(255,255,255,0.35);
  border-bottom: 1.5px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
  margin: -4px auto;
}

/* ── 10. QUICK INFO CARDS (below hero) ────────────────────────── */
.info-cards {
  background: var(--navy-2);
  padding: 0;
  margin-top: -1px;
}
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: var(--t);
}
.info-card:last-child { border-right: none; }
.info-card:hover { background: rgba(0,200,160,0.06); }
.info-card-icon {
  width: 52px; height: 52px;
  background: rgba(0,200,160,0.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: var(--t);
}
.info-card:hover .info-card-icon { background: var(--teal); color: var(--white); }
.info-card-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.info-card-text strong {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

/* ── 11. WHY CHOOSE US ────────────────────────────────────────── */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r-lg);
  padding: 38px 30px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover {
  border-color: rgba(0,200,160,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover .why-icon { background: var(--grad-teal); color: var(--white); }

.why-icon {
  width: 68px; height: 68px;
  background: var(--teal-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--teal);
  margin-bottom: 22px;
  transition: var(--t);
}
.why-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0,200,160,0.06);
  line-height: 1;
}
.why-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── 12. SERVICES ─────────────────────────────────────────────── */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: 5px;
  padding: 36px 24px 28px;
  text-align: center;
  border: 1.5px solid var(--gray-1);
  transition: var(--t);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-teal);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-teal-lg);
  border-color: transparent;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover .svc-icon { background: rgba(255,255,255,0.2); }
.service-card:hover .svc-icon i { color: var(--white); }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p   { color: rgba(255,255,255,0.8); }
.service-card:hover .svc-link { color: rgba(255,255,255,0.9); }
.service-card > * { position: relative; z-index: 1; }

.svc-icon {
  width: 80px; height: 80px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  transition: var(--t);
}
.svc-icon i { font-size: 1.8rem; color: var(--teal); transition: var(--t); }
.svc-emoji { font-size: 2.2rem; line-height: 1; }

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: var(--t);
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  transition: var(--t);
}
.svc-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--t-fast);
}
.svc-link:hover { gap: 10px; }

/* ── 13. ABOUT / SPLIT SECTION ────────────────────────────────── */
.about-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-area { position: relative; }
.about-img-main {
  width: 100%;
  height: 520px;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, #0D2A40 0%, #0D1B33 60%, #00897A 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-doctor-fig {
  display: flex; align-items: flex-end; justify-content: center;
  width: 100%; height: 100%;
}
.abt-torso {
  width: 200px; height: 320px;
  background: linear-gradient(180deg, #F0F0F0 0%, #E0E0E0 100%);
  border-radius: 50px 50px 0 0;
  position: absolute;
  bottom: 0;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 10px;
}
.abt-face {
  width: 90px; height: 90px;
  background: linear-gradient(145deg, #F5C9A5, #F0B88A);
  border-radius: 50%;
  border: 4px solid var(--white);
  margin-top: -45px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.abt-coat {
  width: 160px; height: 180px;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  margin-top: 8px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.abt-coat::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 70px;
  background: var(--grad-teal);
  border-radius: 2px;
}
.abt-steth { font-size: 2rem; color: var(--teal-dark); z-index: 1; position: relative; }

/* Floating experience badge */
.about-exp-badge {
  position: absolute;
  bottom: 36px;
  right: -24px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}
.aeb-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.aeb-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* About content */
.about-content .section-badge { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.af-check {
  width: 28px; height: 28px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--t);
}
.about-feat:hover .af-check { background: var(--teal); color: var(--white); }
.af-text h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.af-text p { font-size: 0.87rem; color: var(--text-muted); }

/* ── 14. COUNTER STRIP ────────────────────────────────────────── */
.counter-strip {
  background: var(--grad-teal);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.counter-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.counter-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.counter-item:last-child { border-right: none; }
.counter-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.counter-label {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.counter-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
  opacity: 0.8;
}

/* ── 15. BEFORE & AFTER ───────────────────────────────────────── */
.ba-section { background: var(--navy-2); }
.ba-section .section-badge { background: none; }
.ba-section .section-badge::before,
.ba-section .section-badge::after { background: var(--teal); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.ba-item { }
.ba-container {
  --split: 50%;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  height: 300px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.ba-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.ba-before-panel {
  background: linear-gradient(135deg, #1a2535 0%, #2d3a4a 100%);
  filter: grayscale(0.7) brightness(0.8);
}
.ba-after-panel {
  background: linear-gradient(135deg, #00897A 0%, #00C8A0 100%);
  clip-path: inset(0 0 0 var(--split));
  z-index: 2;
}
.ba-label {
  position: absolute;
  bottom: 14px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: var(--r-full);
}
.ba-before-label { left: 14px; background: rgba(0,0,0,0.5); color: var(--white); }
.ba-after-label  { right: 14px; background: var(--teal); color: var(--white); z-index: 3; }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--split);
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
}
.ba-line { width: 2px; flex: 1; background: rgba(255,255,255,0.9); box-shadow: 0 0 8px rgba(0,200,160,0.5); }
.ba-btn {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--teal);
  box-shadow: var(--shadow-teal);
  position: absolute; top: 50%; transform: translateY(-50%);
}
.ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: col-resize;
  z-index: 20; -webkit-appearance: none;
}
.ba-caption {
  margin-top: 14px; text-align: center;
}
.ba-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 4px;
}
.ba-caption p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ── 16. TEAM / DENTISTS ──────────────────────────────────────── */
.team-section { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.doctor-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-2);
  transition: var(--t);
}
.doctor-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-8px); }

.doctor-img-area {
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.doctor-card:nth-child(1) .doctor-img-area { background: linear-gradient(155deg, #E8F4FF 0%, #B0D4F8 100%); }
.doctor-card:nth-child(2) .doctor-img-area { background: linear-gradient(155deg, #E6FBF6 0%, #A5F0DE 100%); }
.doctor-card:nth-child(3) .doctor-img-area { background: linear-gradient(155deg, #F5F0FF 0%, #D6C4F7 100%); }

.doc-ava {
  width: 150px; height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  position: relative;
}
.doc-ava-head {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, #F5C9A5, #F0B88A);
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  margin-bottom: -10px;
  z-index: 2;
}
.doc-ava-body {
  width: 140px; height: 160px;
  background: var(--white);
  border-radius: 40px 40px 0 0;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.doc-ava-body::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 50px;
  background: var(--teal);
  border-radius: 2px;
}
.doc-ava-body i { font-size: 1.8rem; color: var(--teal-dark); z-index: 1; }

/* Social overlay */
.doctor-social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,51,0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.doctor-card:hover .doctor-social-overlay { opacity: 1; }
.doctor-social-overlay a {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--navy);
  transition: var(--t-fast);
  transform: translateY(12px);
  transition: transform 0.4s ease, background 0.2s, color 0.2s;
}
.doctor-card:hover .doctor-social-overlay a { transform: translateY(0); }
.doctor-social-overlay a:nth-child(2) { transition-delay: 0.06s; }
.doctor-social-overlay a:nth-child(3) { transition-delay: 0.12s; }
.doctor-social-overlay a:hover { background: var(--teal); color: var(--white); }

.doctor-exp-pill {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-teal);
}

.doctor-info {
  padding: 24px 28px 28px;
  background: var(--white);
}
.doctor-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.doctor-spec {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 14px;
}
.doc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.doc-tag {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-sans);
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.doctor-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem;
}
.stars-gold { color: var(--gold); letter-spacing: 1px; }
.rating-val {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-dark);
}
.rating-cnt { color: var(--text-muted); }

/* ── 17. PROCESS ──────────────────────────────────────────────── */
.process-section { background: var(--gray-1); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::after {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--teal-dark));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 38px 22px 30px;
  text-align: center;
  border: 1.5px solid var(--gray-2);
  position: relative;
  z-index: 1;
  transition: var(--t);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  width: 60px; height: 60px;
  background: var(--grad-teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 18px;
  box-shadow: var(--shadow-teal);
  border: 4px solid var(--white);
}
.step-icon-emoji { font-size: 2rem; margin-bottom: 14px; display: block; }
.step-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ── 18. TESTIMONIALS ─────────────────────────────────────────── */
.testi-section { background: var(--navy); overflow: hidden; }
.testi-section .section-badge { background: none; }
.testi-section .section-badge::before,
.testi-section .section-badge::after { background: var(--teal); }

.google-bar {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  padding: 10px 22px;
  margin-bottom: 52px;
}
.g-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.g-name span:nth-child(1){color:#4285F4}
.g-name span:nth-child(2){color:#EA4335}
.g-name span:nth-child(3){color:#FBBC04}
.g-name span:nth-child(4){color:#4285F4}
.g-name span:nth-child(5){color:#34A853}
.g-name span:nth-child(6){color:#EA4335}
.g-score {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
}
.g-star { color: var(--gold); }
.g-count { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 30px;
  transition: var(--t);
}
.testi-card:hover {
  background: rgba(0,200,160,0.07);
  border-color: rgba(0,200,160,0.25);
  transform: translateY(-4px);
}
.testi-stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 22px;
  position: relative;
  padding-left: 20px;
}
.testi-quote::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -4px;
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}
.testi-name {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.testi-role { font-size: 0.75rem; color: rgba(255,255,255,0.45); display: block; }
.testi-src { margin-left: auto; font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* Video placeholder */
.testi-video-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 44px 30px;
  text-align: center;
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(0,200,160,0.08), rgba(0,148,181,0.05));display: none;
}
.vid-play {
  width: 68px; height: 68px;
  background: var(--grad-teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 16px;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 0 0 0 10px rgba(0,200,160,0.15);
  position: relative;
}
.vid-play::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0,200,160,0.3);
  animation: pulseBorder 2s ease-in-out infinite;
}
.vid-play:hover { transform: scale(1.12); box-shadow: 0 0 0 14px rgba(0,200,160,0.12); }
.vid-caption { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.vid-meta { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 4px; }

.testi-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 40px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--t-fast);
}
.testi-dot.active { background: var(--teal); transform: scale(1.5); width: 24px; border-radius: 4px; }

/* ── 19. INSURANCE ────────────────────────────────────────────── */
.insurance-section { background: var(--white); padding: 60px 0; }
.insurance-logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 18px;
  margin-top: 36px;
}
.ins-logo {
  background: var(--gray-1);
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r-sm);
  padding: 18px 30px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--t);
  min-width: 148px;
  justify-content: center;
}
.ins-logo:hover {
  background: var(--white);
  border-color: var(--teal);
  color: var(--teal-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.ins-logo i { font-size: 1.1rem; }

/* ── 20. PRICING ──────────────────────────────────────────────── */
.pricing-section { background: var(--gray-1); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 34px;
  border: 2px solid var(--gray-2);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: var(--grad-navy);
  border-color: rgba(0,200,160,0.3);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-popular {
  position: absolute; top: 18px; right: 18px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: var(--r-full);
}
.price-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.price-card:not(.featured) .price-icon { background: var(--teal-pale); color: var(--teal); }
.price-card.featured .price-icon { background: rgba(0,200,160,0.15); color: var(--teal-light); }
.price-tier {
  font-family: var(--font-sans);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 6px;
}
.price-card:not(.featured) .price-tier { color: var(--teal); }
.price-card.featured .price-tier { color: var(--teal-light); }
.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 700; font-style: italic;
  line-height: 1; margin-bottom: 8px;
}
.price-card:not(.featured) .price-amount { color: var(--text-dark); }
.price-card.featured .price-amount { color: var(--white); }
.price-per {
  font-size: 0.82rem; font-family: var(--font-sans); font-weight: 400;
}
.price-card:not(.featured) .price-per { color: var(--text-muted); }
.price-card.featured .price-per { color: rgba(255,255,255,0.5); }
.price-desc {
  font-size: 0.87rem; margin: 16px 0 24px;
  padding-bottom: 24px;
}
.price-card:not(.featured) .price-desc {
  color: var(--text-muted);
  border-bottom: 1px solid var(--gray-2);
}
.price-card.featured .price-desc {
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-feats { margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
.price-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem;
}
.price-card:not(.featured) .price-feat { color: var(--text-body); }
.price-card.featured .price-feat { color: rgba(255,255,255,0.78); }
.price-feat i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.price-feat.off i { color: var(--gray-3); }
.price-feat.off { opacity: 0.55; }

/* ── 21. FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(0,200,160,0.3); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: none; text-align: left;
  font-family: var(--font-sans);
  font-size: 0.96rem; font-weight: 600;
  color: var(--text-dark);
  transition: var(--t-fast);
}
.faq-q:hover { color: var(--teal); }
.faq-q-icon {
  width: 30px; height: 30px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--teal);
  flex-shrink: 0;
  transition: var(--t);
}
.faq-item.open .faq-q-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 24px 22px; }
.faq-a p {
  font-size: 0.9rem; color: var(--text-body); line-height: 1.8;
  border-top: 1px solid var(--gray-2); padding-top: 16px;
}

/* ── 22. EMERGENCY BANNER ─────────────────────────────────────── */
.emergency-banner {
  background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.emergency-banner::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.emergency-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  position: relative; z-index: 1;justify-content: center;
    text-align: center;
}
.emergency-ic {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
  flex-shrink: 0;
  animation: pulseBorder 2s ease-in-out infinite;
}
.emergency-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; font-style: italic;
  color: var(--white); margin-bottom: 8px;
}
.emergency-content p { font-size: 0.95rem; color: rgba(255,255,255,0.82); }
.emergency-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── 23. BOOKING FORM ─────────────────────────────────────────── */
.booking-section { background: var(--navy-2); }
.booking-section .section-badge { background: none; }
.booking-section .section-badge::before,
.booking-section .section-badge::after { background: var(--teal); }

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.booking-left { position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 24px); }
.booking-left .section-title { margin-bottom: 16px; }
.booking-feats { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.bf {
  display: flex; align-items: flex-start; gap: 16px;
}
.bf-icon {
  width: 44px; height: 44px;
  background: rgba(0,200,160,0.12);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--teal);
  flex-shrink: 0;
}
.bf-text h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem; font-weight: 700;
  color: var(--white); margin-bottom: 2px;
}
.bf-text p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.booking-contact {
  margin-top: 34px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.bc-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
}
.bc-item i { color: var(--teal); width: 16px; }
.bc-item a { color: var(--teal-light); transition: var(--t-fast); }
.bc-item a:hover { color: var(--white); }

/* Form */
.booking-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
}
.form-head-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700; font-style: italic;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-head-sub {
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fl {
  font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-dark);
}
.fl span { color: var(--red); }
.fi {
  width: 100%;
  padding: 10px 16px;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r-sm);
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: var(--t-fast);
}
.fi:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,200,160,0.1); }
.fi.err { border-color: var(--red); }
.fi::placeholder { color: var(--gray-3); }
select.fi { cursor: pointer; }
textarea.fi { resize: vertical; min-height: 105px; }
.fe { font-size: 0.74rem; color: var(--red); display: none; }
.fg.has-err .fe { display: block; }
.fg.has-err .fi { border-color: var(--red); }
.form-submit-area { margin-top: 22px; }
.form-submit-area .btn { width: 100%; justify-content: center; }
.form-privacy {
  text-align: center;
  font-size: 0.76rem; color: var(--text-muted);
  margin-top: 12px;
}
.form-privacy a { color: var(--teal); }

.form-success-state {
  display: none; text-align: center; padding: 32px 0;
}
.form-success-state.show { display: block; }
.form-success-state i { font-size: 3rem; color: #22C55E; margin-bottom: 14px; display: block; }
.form-success-state h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 700; font-style: italic;
  color: var(--text-dark); margin-bottom: 8px;
}
.form-success-state p { color: var(--text-muted); font-size: 0.9rem; }

/* ── 24. MAP SECTION ──────────────────────────────────────────── */
.map-section { padding: 0; }
.map-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 440px;
}
.map-info-panel {
  background: var(--navy);
  padding: 60px 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 26px;
}
.map-panel-title {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 700; font-style: italic;
  color: var(--white); margin-bottom: 4px;
}
.map-panel-sub { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.map-detail {
  display: flex; gap: 14px; align-items: flex-start;
}
.md-icon {
  width: 38px; height: 38px;
  background: rgba(0,200,160,0.15);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 0.9rem;
  flex-shrink: 0; margin-top: 2px;
}
.md-text strong {
  display: block; font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 700;
  color: var(--white); margin-bottom: 2px;
}
.md-text span, .md-text a {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.md-text a { color: var(--teal-light); transition: var(--t-fast); }
.md-text a:hover { color: var(--white); }
.map-frame {
  background: linear-gradient(135deg, #D0DBE8, #B8CCE0);
  display: flex; align-items: center; justify-content: center;
  min-height: 440px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; min-height: 440px; }
.map-placeholder-inner {
  text-align: center; padding: 40px;
}
.map-placeholder-inner i { font-size: 3rem; color: var(--navy); margin-bottom: 16px; display: block; opacity: 0.6; }
.map-placeholder-inner h3 { font-family: var(--font-sans); font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.map-placeholder-inner p { font-size: 0.84rem; color: var(--text-muted); }

/* ── 25. FOOTER ───────────────────────────────────────────────── */
footer {
  background: #060E1A;
  color: rgba(255,255,255,0.6);
}

.footer-main {
  padding: 76px 0 52px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.nav-logo-footer{padding: 10px;}
.footer-brand p {
  font-size: 0.87rem; color: rgba(255,255,255,0.45);
  line-height: 1.8; margin: 16px 0 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  transition: var(--t-fast);
}
.footer-socials a:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: var(--t-fast);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--teal); padding-left: 4px; }
.footer-links a i { font-size: 0.65rem; color: var(--teal); opacity: 0.6; }

.foot-contact-item {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 14px;
}
.foot-contact-item i { color: var(--teal); margin-top: 2px; width: 14px; flex-shrink: 0; font-size: 0.85rem; }
.foot-contact-item span { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.foot-contact-item a { color: rgba(255,255,255,0.5); transition: var(--t-fast); }
.foot-contact-item a:hover { color: var(--teal); }

.newsletter-wrap { margin-top: 8px; }
.newsletter-wrap p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.newsletter-row { display: flex; }
.nl-input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  color: var(--white); font-size: 0.84rem;
  outline: none; transition: var(--t-fast);
}
.nl-input::placeholder { color: rgba(255,255,255,0.25); }
.nl-input:focus { border-color: var(--teal); }
.nl-btn {
  background: var(--teal);
  border: none; color: var(--white);
  padding: 11px 16px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  cursor: pointer; transition: var(--t-fast);
}
.nl-btn:hover { background: var(--teal-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  transition: var(--t-fast);
}
.footer-bottom-links a:hover { color: var(--teal); }
.footer-certs { display: flex; gap: 8px; flex-wrap: wrap; }
.foot-cert {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.nav-logo-footer img{
    width: 240px;
    margin-bottom: -25px;
}

/* ── 26. FLOATING BUTTONS ─────────────────────────────────────── */
.floating-wrap {
  position: fixed;
  bottom: 28px; right: 22px;
  z-index: 800;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.fab {
  display: flex; align-items: center; gap: 10px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--t);
  padding: 12px 20px;
  text-decoration: none;
  border: none; cursor: pointer;
  white-space: nowrap;
}
.fab:hover { transform: translateX(-4px); box-shadow: var(--shadow-xl); }
.fab-wa { background: #25D366; }
.fab-call {
    background: var(--navy);
    left: 10px !important;
    position: fixed;
    border: 1px solid #fff;

}
.fab-book { background: var(--grad-btn); background-size: 200%; animation: gradFlow 5s ease infinite; }

.scroll-top-fab {
  width: 46px; height: 46px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(13,27,51,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: var(--t);
}
.scroll-top-fab.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-fab:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); }

/* SVG Wave Dividers */
.wave-top, .wave-bottom {
  position: absolute; left: 0; right: 0;
  line-height: 0; overflow: hidden;
  pointer-events: none;
}
.wave-top    { top: -1px; }
.wave-bottom { bottom: -1px; }
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }

/* ── 27. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --section-py: 90px; --container: 100%; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-img-wrap { width: 380px; height: 460px; }
  .hero-photo-frame { width: 320px; height: 400px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-tel  { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero-content { align-items: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-contact-strip { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { justify-content: center; }
  .hfc-1, .hfc-2 { left: 0; }
  .hfc-3, .hfc-4 { right: 0; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-area { max-width: 480px; margin: 0 auto; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::after { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-video-card { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .booking-left { position: static; }
  .map-wrap { grid-template-columns: 1fr; }
  .info-cards-grid { grid-template-columns: 1fr; }
  .info-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .info-card:last-child { border-bottom: none; }
  .top-bar-right { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; --topbar-h: 0px; }
  .top-bar { display: none; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-photo-frame { width: 260px; height: 320px; }
  .hero-img-wrap { width: 300px; height: 380px; }
  .hfc-2, .hfc-4 { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-video-card { grid-column: span 1; }

  .emergency-inner { flex-direction: column; text-align: center; }
  .emergency-btns { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-card { padding: 30px 22px; }

  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links, .footer-certs { justify-content: center; }

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

  .floating-wrap { right: 14px; bottom: 20px; }
  .fab { padding: 12px; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  .fab span:not(.fab-icon) { display: none; }
  .fab-icon { font-size: 1.1rem; }
  html,body{overflow-x: hidden;}
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-contact-strip { flex-direction: column; }
  .hfc-1, .hfc-3 { display: none; }
  .counter-grid { grid-template-columns: 1fr; }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .counter-item:last-child { border-bottom: none; }
}

@media print {
  .top-bar, #header, .floating-wrap, #preloader { display: none !important; }
  * { box-shadow: none !important; }
}

/* ── REAL IMAGE STYLES ─────────────────────────────────────────── */
/* Hero doctor photo — fill blob frame via absolute positioning */
.hero-photo-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* About section photo */
.about-img-main {
  position: relative; /* needed for child absolute positioning */
  align-items: stretch;
}
.about-img-main img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Team doctor photos — parent already has position:relative */
.doctor-img-area > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.doctor-card:hover .doctor-img-area > img { transform: scale(1.06); }

/* Keep svc-img-hdr below the teal hover overlay so flip effect works */
.svc-img-hdr { z-index: 0; }

/* Before & After real images */
.ba-before-panel,
.ba-after-panel {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  font-size: 0;
}
.ba-before-panel { filter: grayscale(0.55) brightness(0.82) saturate(0.65); }
.ba-after-panel  { filter: none; }

/* Testimonial real avatars */
img.testi-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
  display: block;
}

/* Service card image header */
.svc-img-hdr {
  height: 220px;
  overflow: hidden;
  border-radius: 5px;
  margin: -1px;
  flex-shrink: 0;
}
.svc-img-hdr img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.service-card:hover .svc-img-hdr img { transform: scale(1.1); }
.svc-body {
  padding: 22px 22px 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;    text-align: left;
}
/* Adjust service-card to remove top padding (image takes that space) */
.service-card { padding: 0; display: flex; flex-direction: column; }
.service-card .svc-icon { margin-bottom: 14px; margin-top: 0; }
.svc-img-hdr { position: relative; }


@media(max-width:700px){
  header#header {
    position: fixed;
    top: 0px;
    width: 100%;        background: #fff;
}
.btn.btn-teal.btn-sm.mb-op{display: none;}
}
.btn.btn-teal.btn-lg br{display:none;}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 10px !important;
    font-weight: normal;
    display: block;
    position: absolute;
  
    right: 10px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0.3em 0.5em 0em !important;
    padding: 0.2em 1em;
    border: 1px solid #00a0d2;
    font-size: 10px;
    text-align: center;
}