/* ═══════════════════════════════════════
   SMILE DENTAL CLINIC — DESIGN SYSTEM
   ═══════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy: #1B4D6E;
  --navy-dark: #0A1628;
  --navy-mid: #153D58;
  --emerald: #2A9D8F;
  --emerald-dark: #1F7A6F;
  --emerald-light: #3DC4B4;
  --gold: #E9C46A;
  --gold-light: #F0D48A;
  --gold-dark: #C9A84C;
  --bg: #FAFBFD;
  --bg-alt: #F0F4F8;
  --white: #FFFFFF;
  --text: #0F1C2E;
  --text-light: #4A5D75;
  --text-muted: #8899AA;
  --border: rgba(27,77,110,.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 12px rgba(10,22,40,.06);
  --shadow: 0 4px 24px rgba(10,22,40,.08);
  --shadow-lg: 0 12px 48px rgba(10,22,40,.12);
  --shadow-xl: 0 24px 64px rgba(10,22,40,.16);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --transition-fast: .2s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 600; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 34px; border-radius: 50px;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); letter-spacing: .3px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark); border-color: var(--gold);
  position: relative; overflow: hidden;
}
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: shimmer 3s infinite;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(233,196,106,.4);
}
.btn-navy {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark); transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27,77,110,.3);
}
.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: #fff; transform: translateY(-3px);
}
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15); border-color: #fff; transform: translateY(-3px);
}
@keyframes shimmer { 0%{left:-100%} 50%{left:120%} 100%{left:120%} }

/* ── SECTION BASE ── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-white { background: var(--white); }
.section-dark {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
}
.section-emerald {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: #fff;
}
.section-label {
  font-family: var(--sans); font-weight: 700; font-size: .78rem;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px;
  background: var(--emerald); display: inline-block;
}
.section-dark .section-label, .section-emerald .section-label {
  color: var(--gold);
}
.section-dark .section-label::before, .section-emerald .section-label::before {
  background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text); margin-bottom: 20px;
}
.section-dark .section-title, .section-emerald .section-title { color: #fff; }
.section-sub {
  font-size: 1.08rem; color: var(--text-light);
  max-width: 600px; margin-bottom: 48px; line-height: 1.8;
}
.section-dark .section-sub, .section-emerald .section-sub {
  color: rgba(255,255,255,.8);
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center .section-label::before { display: none; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.9); transition: opacity .7s ease, transform .7s ease; }
.reveal-scale.active { opacity: 1; transform: scale(1); }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes spin { to{transform:rotate(360deg)} }
@keyframes pulse { 0%,100%{box-shadow:0 4px 16px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 32px rgba(37,211,102,.65)} }
@keyframes imgZoomIn { from{transform:scale(1.15);opacity:0} to{transform:scale(1);opacity:1} }
@keyframes imgShine { 0%{left:-100%} 60%{left:150%} 100%{left:150%} }
@keyframes kenBurns { 0%{transform:scale(1)} 100%{transform:scale(1.08)} }

/* ── IMAGE ANIMATIONS ── */
.img-anim {
  position: relative; overflow: hidden; border-radius: var(--radius);
}
.img-anim img {
  transition: transform .8s cubic-bezier(.4,0,.2,1), filter .6s ease;
  will-change: transform;
}
/* Zoom reveal when scrolled into view */
.img-anim.reveal img { transform: scale(1.15); opacity: 0; }
.img-anim.reveal.active img {
  animation: imgZoomIn .9s cubic-bezier(.4,0,.2,1) forwards;
}
/* Shine overlay on hover */
.img-anim::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  pointer-events: none;
}
.img-anim:hover::after { animation: imgShine 1s ease forwards; }
/* Hover scale + slight tilt */
.img-anim:hover img { transform: scale(1.06); }
/* Ken Burns subtle motion on visible images */
.img-anim.ken-burns.active img {
  animation: kenBurns 20s ease-in-out infinite alternate;
}
/* Image with gradient overlay */
.img-anim.img-overlay::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,.5) 100%);
  pointer-events: none;
}
/* Shadow lift on images */
.img-anim { box-shadow: var(--shadow); transition: box-shadow .4s ease, transform .4s ease; }
.img-anim:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

/* ── CHATBOT WIDGET ── */
.chatbot-toggle {
  position: fixed; bottom: 100px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--emerald));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(27,77,110,.35);
  cursor: pointer; border: none; transition: var(--transition);
}
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(27,77,110,.45); }
.chatbot-toggle svg { width: 26px; height: 26px; fill: #fff; }
.chatbot-toggle .badge {
  position: absolute; top: -2px; right: -2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
  animation: pulse 2s infinite;
}
.chatbot-frame {
  position: fixed; bottom: 170px; right: 28px; z-index: 901;
  width: 400px; height: 550px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  opacity: 0; pointer-events: none;
  transform: translateY(20px) scale(.95);
  transition: opacity .3s ease, transform .3s ease;
}
.chatbot-frame.open {
  opacity: 1; pointer-events: all;
  transform: translateY(0) scale(1);
}
.chatbot-frame iframe { width: 100%; height: 100%; border: none; }
@media (max-width: 640px) {
  .chatbot-frame { width: calc(100vw - 32px); right: 16px; bottom: 140px; height: 450px; }
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.06); padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  color: var(--navy);
}
.nav-logo svg { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--text);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--emerald);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--emerald); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-size: .85rem; font-weight: 500; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
}
.nav-cta { padding: 10px 24px; font-size: .85rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text);
  transition: var(--transition); border-radius: 2px;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center;
  justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 1.5rem; color: var(--text); }
.mobile-menu a:hover { color: var(--emerald); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; font-size: 2rem;
  cursor: pointer; color: var(--text);
}

/* ── PAGE HERO BANNER ── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--emerald-dark) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,.15) 0%, transparent 70%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -20%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,196,106,.08) 0%, transparent 70%);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 16px; position: relative; z-index: 1;
}
.page-hero p {
  font-size: 1.15rem; color: rgba(255,255,255,.8);
  max-width: 600px; position: relative; z-index: 1;
}
.page-hero .breadcrumb {
  font-size: .85rem; color: rgba(255,255,255,.5);
  margin-bottom: 20px; position: relative; z-index: 1;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ── HERO (HOME) ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 100px;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 40%, rgba(42,157,143,.04) 100%);
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,.08) 0%, transparent 70%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--text); margin-bottom: 18px;
  opacity: 0; animation: fadeUp .8s ease forwards;
}
.hero-text h1 span { color: var(--emerald); }
.hero-tag {
  font-family: var(--sans); font-size: .95rem; font-weight: 700;
  color: var(--gold-dark); letter-spacing: 1px; margin-bottom: 14px;
  opacity: 0; animation: fadeUp .8s ease .2s forwards;
}
.hero-text p {
  font-size: 1.1rem; color: var(--text-light); margin-bottom: 32px;
  max-width: 480px; line-height: 1.8;
  opacity: 0; animation: fadeUp .8s ease .4s forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s ease .6s forwards;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 12px 22px;
  font-size: .88rem; font-weight: 500; color: var(--text);
  box-shadow: var(--shadow); margin-top: 28px;
  opacity: 0; animation: fadeUp .8s ease .8s forwards;
}
.hero-badge span { color: var(--gold-dark); }
.hero-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.hero-img {
  width: 100%; max-width: 520px; border-radius: 24px;
  box-shadow: var(--shadow-xl); overflow: hidden;
  animation: fadeUp 1s ease .5s forwards; opacity: 0;
}
.hero-img img {
  width: 100%; height: 400px; object-fit: cover;
}
.hero-float-card {
  position: absolute; background: var(--white);
  border-radius: var(--radius-sm); padding: 16px 20px;
  box-shadow: var(--shadow-lg); animation: float 5s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: -20px; left: -30px; }
.hero-float-card.card-2 { top: -10px; right: -20px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 44px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.trust-item { color: #fff; }
.trust-num {
  font-family: var(--serif); font-size: 2.5rem;
  font-weight: 700; margin-bottom: 4px;
}
.trust-label { font-size: .88rem; opacity: .75; }

/* ── CARD SYSTEM ── */
.card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: rgba(42,157,143,.2);
}
.card-body { padding: 28px 24px; }

/* ── TREATMENT CARDS ── */
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.treat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.treat-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--emerald);
}
.treat-num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 700;
  color: rgba(42,157,143,.07); position: absolute; top: 14px; left: 22px;
}
.treat-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(42,157,143,.12), rgba(42,157,143,.04));
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px; margin-top: 22px;
}
.treat-icon svg { width: 26px; height: 26px; stroke: var(--emerald); fill: none; stroke-width: 1.5; }
.treat-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.treat-card p { font-size: .92rem; color: var(--text-light); margin-bottom: 18px; }
.treat-link { font-size: .88rem; font-weight: 600; color: var(--emerald); }
.treat-link:hover { color: var(--navy); }

/* ── DOCTOR CARDS ── */
.doc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.doc-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--border); transition: var(--transition);
}
.doc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.doc-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--emerald));
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: #fff;
  border: 3px solid var(--white);
  box-shadow: 0 4px 20px rgba(27,77,110,.2);
}
.doc-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.doc-title { font-size: .82rem; color: var(--emerald); font-weight: 600; margin-bottom: 6px; }
.doc-qual { font-size: .78rem; color: var(--text-muted); }

/* ── WHY CHOOSE US ── */
.why-grid { display: flex; flex-direction: column; gap: 64px; }
.why-item { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.why-item:nth-child(even) { direction: rtl; }
.why-item:nth-child(even) > * { direction: ltr; }
.why-img {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, rgba(42,157,143,.08), rgba(27,77,110,.04));
  display: flex; align-items: center; justify-content: center;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img svg { width: 80px; height: 80px; stroke: var(--emerald); fill: none; stroke-width: 1; opacity: .4; }
.why-content h3 { font-size: 1.6rem; margin-bottom: 14px; }
.why-content p { color: var(--text-light); font-size: 1rem; line-height: 1.85; }

/* ── STATS ── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center; color: #fff;
}
.stat-item { padding: 20px; }
.stat-num {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; margin-bottom: 8px;
}
.stat-label { font-size: .95rem; opacity: .8; }

/* ── TESTIMONIALS ── */
.testi-track {
  display: flex; gap: 28px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px; scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  min-width: 360px; max-width: 360px; scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid var(--border);
  flex-shrink: 0; transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-lg); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars svg { width: 18px; height: 18px; fill: var(--gold); }
.testi-card p {
  font-size: .95rem; color: var(--text-light);
  margin-bottom: 18px; line-height: 1.75; font-style: italic;
}
.testi-name { font-weight: 600; font-size: .95rem; }
.testi-via { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }

/* ── APPOINTMENT FORM ── */
.appt-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.appt-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid rgba(27,77,110,.12); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: .95rem;
  transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(42,157,143,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.appt-info {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.appt-info h3 { font-size: 1.3rem; margin-bottom: 24px; color: var(--navy); }
.info-item {
  display: flex; gap: 14px; margin-bottom: 22px;
  font-size: .92rem; color: var(--text-light);
}
.info-item svg {
  width: 22px; height: 22px; stroke: var(--emerald);
  fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px;
}

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 220px; overflow: hidden;
  background: linear-gradient(135deg, rgba(42,157,143,.08), rgba(27,77,110,.04));
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 26px; }
.blog-meta { font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 16px; }
.blog-body h3 { font-size: 1.12rem; margin-bottom: 12px; line-height: 1.45; }
.blog-body p { font-size: .9rem; color: var(--text-light); margin-bottom: 16px; }
.blog-link { font-size: .88rem; font-weight: 600; color: var(--emerald); }
.blog-link:hover { color: var(--navy); }

/* ── TOURISM ICONS ── */
.tourism-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tourism-item {
  background: var(--white); border-radius: var(--radius-sm);
  padding: 22px 20px; display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--border); transition: var(--transition);
}
.tourism-item:hover {
  border-color: var(--emerald); transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.tourism-item svg {
  width: 28px; height: 28px; stroke: var(--emerald);
  fill: none; stroke-width: 1.5; flex-shrink: 0;
}
.tourism-item span { font-size: .92rem; font-weight: 500; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--emerald-dark));
  padding: 80px 0; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(233,196,106,.06);
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px; position: relative; z-index: 1;
}
.cta-banner p {
  font-size: 1.1rem; opacity: .8;
  margin-bottom: 32px; max-width: 500px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 24px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--serif); font-size: 1.1rem;
  font-weight: 600; gap: 16px;
}
.faq-q::after {
  content: '+'; font-size: 1.5rem; color: var(--emerald);
  font-weight: 300; transition: var(--transition); flex-shrink: 0;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
  color: var(--text-light); font-size: .95rem; line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 500px; padding-top: 14px; }

/* ── TIMELINE ── */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 28px; top: 0;
  width: 2px; height: 100%; background: var(--border);
}
.timeline-item {
  display: flex; gap: 24px; margin-bottom: 40px; position: relative;
}
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--emerald));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: 1.1rem; z-index: 1;
}
.timeline-content h3 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline-content p { font-size: .92rem; color: var(--text-light); }

/* ── PRICE TABLE ── */
.price-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.price-table th {
  background: var(--navy); color: #fff; padding: 16px 20px;
  font-size: .9rem; font-weight: 600; text-align: left;
}
.price-table td {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.price-table tr:hover td { background: var(--bg-alt); }
.price-highlight { color: var(--emerald); font-weight: 600; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 48px;
}
.footer h4 { font-size: 1.1rem; color: #fff; margin-bottom: 18px; }
.footer-logo {
  font-family: var(--serif); font-size: 1.35rem; color: #fff;
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.footer p, .footer li, .footer a { font-size: .88rem; line-height: 1.9; }
.footer a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--emerald); border-color: var(--emerald);
  transform: translateY(-3px);
}
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; text-align: center;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-seo {
  font-size: .65rem; color: rgba(255,255,255,.12);
  text-align: center; padding: 8px 24px 20px;
  max-width: 900px; margin: 0 auto;
}

/* ── WHATSAPP ── */
.whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--transition); animation: pulse 2s infinite;
}
.whatsapp:hover { transform: scale(1.1); }
.whatsapp svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-tip {
  position: absolute; right: 70px; top: 50%;
  transform: translateY(-50%);
  background: var(--white); color: var(--text);
  font-size: .82rem; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-xs);
  box-shadow: var(--shadow); white-space: nowrap;
  opacity: 0; transition: var(--transition); pointer-events: none;
}
.whatsapp:hover .whatsapp-tip { opacity: 1; }

/* ── IMAGE GRID ── */
.img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.img-grid-item {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3;
}
.img-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.img-grid-item:hover img { transform: scale(1.06); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-badge { margin: 28px auto 0; }
  .hero-visual { margin-top: 40px; }
  .treat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item, .why-item:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .appt-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .tourism-grid { grid-template-columns: 1fr 1fr; }
  .img-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .treat-grid, .doc-grid, .blog-grid,
  .trust-grid, .stats-grid { grid-template-columns: 1fr; }
  .tourism-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .testi-card { min-width: 300px; max-width: 300px; }
  .page-hero { padding: 140px 0 60px; }
  .img-grid { grid-template-columns: 1fr; }
  .hero-img img { height: 280px; }
}
