/* ===========================
   FAMILY DENTAL CLINIC
   Premium Design System
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --forest:     #0a2e1a;
  --forest-mid: #0e3d22;
  --forest-lt:  #144d2c;
  --gold:       #c9a84c;
  --gold-lt:    #e2c47a;
  --gold-dk:    #a8882e;
  --white:      #ffffff;
  --off-white:  #faf9f7;
  --warm-gray:  #f2ede8;
  --text-dark:  #1a1a1a;
  --text-mid:   #4a4a4a;
  --text-light: #7a7a7a;
  --border:     rgba(201,168,76,0.18);
  --shadow-sm:  0 2px 12px rgba(10,46,26,0.08);
  --shadow-md:  0 8px 32px rgba(10,46,26,0.12);
  --shadow-lg:  0 20px 60px rgba(10,46,26,0.18);
  --radius:     4px;
  --radius-lg:  10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-h:      80px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; color: var(--forest); }
.section-title span { color: var(--gold); font-style: italic; }
.section-subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; }

/* ─── LAYOUT ─── */
.container { width: min(1240px, 92%); margin: 0 auto; }
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--forest); }
.text-center { text-align: center; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.btn:active::after { opacity: 1; transform: scale(2.5); transition: 0s; }

.btn-primary {
  background: var(--gold);
  color: var(--forest);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--forest);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--forest-lt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--forest);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,46,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.navbar.light-nav {
  background: var(--forest);
}
.nav-inner {
  width: min(1240px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo-text span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  left: 0.85rem; right: 0.85rem;
}
.nav-links a.active { color: var(--gold); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { width: 14px; height: 14px; }
.nav-wa {
  background: #25D366;
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.nav-wa:hover { background: #1ebe5b; transform: translateY(-1px); }
.nav-wa svg { width: 16px; height: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--forest);
  z-index: 999;
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mobile-nav .nav-wa { margin-top: 1.25rem; justify-content: center; width: 100%; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,46,26,0.92) 0%,
    rgba(10,46,26,0.75) 50%,
    rgba(10,46,26,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 700px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

/* Page Hero */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,46,26,0.9) 0%, rgba(10,46,26,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 500px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--forest);
  padding: 28px 0;
  position: relative;
  z-index: 10;
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 2.5rem;
  border-right: 1px solid rgba(201,168,76,0.2);
}
.trust-item:last-child { border-right: none; }
.trust-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-item-text {
  display: flex;
  flex-direction: column;
}
.trust-item-text strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.trust-item-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
}
.why-card {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.why-card:hover img { transform: scale(1.06); }
.why-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,46,26,0.92) 0%, rgba(10,46,26,0.3) 60%, transparent 100%);
}
.why-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
}
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.why-card-content h3 { color: var(--white); margin-bottom: 0.6rem; font-size: 1.5rem; }
.why-card-content p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.1);
}
.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body {
  padding: 1.5rem;
}
.service-card-body h3 {
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.service-card-body p { font-size: 0.88rem; line-height: 1.65; }
.service-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

/* 3-column override for homepage featured services */
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.services-grid-3 .service-card-img { height: 260px; }


.service-card-full {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card-full:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card-full .service-card-img { height: 260px; }
.service-card-full .service-card-body { padding: 1.75rem; }
.service-card-full .service-card-body h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }

/* ─── REVIEWS ─── */
.reviews-section { background: var(--forest); }
.rating-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.rating-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating-meta { text-align: left; }
.rating-meta .stars { font-size: 1rem; margin-bottom: 0.2rem; }
.rating-meta p { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.review-meta { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.review-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.7; font-style: italic; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: 0.5rem;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,46,26,0.95) 0%, rgba(10,46,26,0.8) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── DOCTOR CARDS ─── */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.doctor-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.doctor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.doctor-card-photo {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.doctor-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.doctor-card:hover .doctor-card-photo img { transform: scale(1.04); }
.doctor-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,46,26,0.5) 0%, transparent 50%);
}
.doctor-card-body {
  padding: 1.75rem;
  border-top: 3px solid var(--gold);
}
.doctor-card-body h3 { color: var(--forest); margin-bottom: 0.25rem; font-size: 1.5rem; }
.doctor-qual {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.doctor-card-body p { font-size: 0.88rem; margin-bottom: 1.25rem; line-height: 1.65; }

/* Credentials strip */
.credentials-strip {
  background: var(--forest);
  padding: 40px 0;
}
.credentials-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 2.5rem;
  border-right: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
}
.credential-item:last-child { border-right: none; }
.credential-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.credential-icon svg { width: 18px; height: 18px; }

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--forest);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.about-img-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-img-badge span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.checklist {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--forest);
}
.check-icon svg { width: 12px; height: 12px; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
}
.value-card {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.value-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.value-card:hover img { transform: scale(1.06); }
.value-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,46,26,0.9) 0%, rgba(10,46,26,0.2) 100%);
}
.value-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.value-card-content h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.35rem; }
.value-card-content p { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

/* ─── CONTACT PAGE ─── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.contact-card-icon svg { width: 24px; height: 24px; }
.contact-card h4 { font-family: 'Cormorant Garamond', serif; color: var(--forest); font-size: 1.2rem; margin-bottom: 0.5rem; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--text-mid); }
.contact-card a:hover { color: var(--gold); }

/* WA Booking Panel */
.wa-panel {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.wa-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.wa-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.wa-step-num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.wa-step-text strong { color: var(--white); display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.wa-step-text span { color: rgba(255,255,255,0.55); font-size: 0.84rem; }

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.hours-table tr {
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.hours-table td {
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.hours-table td:first-child { font-weight: 600; color: var(--forest); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.closed td { color: var(--text-light); }
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hours-badge.open { color: #25D366; }
.hours-badge.closed { color: var(--text-light); }
.hours-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* FAQ */
.faq-list { margin-top: 2.5rem; }
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold-dk); }
.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a-inner {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; }

/* ─── HOW IT WORKS ─── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 35px; left: 12.5%; right: 12.5%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
  z-index: 0;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step-num {
  width: 70px;
  height: 70px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--forest);
  transition: var(--transition);
}
.how-step:hover .how-step-num {
  background: var(--forest);
  color: var(--gold);
}
.how-step h4 { color: var(--forest); margin-bottom: 0.5rem; font-size: 1.1rem; }
.how-step p { font-size: 0.86rem; }

/* ─── MAP ─── */
.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.15);
}
.map-container iframe { width: 100%; height: 420px; display: block; border: none; }

/* ─── FOOTER ─── */
.footer {
  background: #050f09;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}
.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-logo-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1.5rem; max-width: 320px; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul a::before { content: '›'; color: var(--gold); opacity: 0.6; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact-item a { color: rgba(255,255,255,0.45); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom span { color: var(--gold); }

/* ─── FLOATING WA BUTTON ─── */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
}
.floating-wa a {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.floating-wa a:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.floating-wa svg { width: 30px; height: 30px; color: var(--white); }
.floating-wa::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: pulsering 2.2s ease-out infinite;
}
.floating-wa::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.15);
  animation: pulsering 2.2s ease-out 0.7s infinite;
}
@keyframes pulsering {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ─── SECTION DIVIDERS ─── */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  margin: 1.25rem auto 2rem;
}
.divider-left { margin-left: 0; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { height: 380px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .wa-panel { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { height: 320px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .doctors-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
}
@media (max-width: 640px) {
  :root { --nav-h: 70px; }
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .trust-strip-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .how-grid { grid-template-columns: 1fr; }
  .credentials-inner { flex-direction: column; }
  .credential-item { border-right: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Placeholder image fallback */
.img-placeholder {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
