/* =============================================
   DR. JINNY'S DENTAL CLINIC — STYLESHEET
   Font: Exo / Exo 2
   Primary: #0ea0a6 (Teal)
   Secondary: #e30b5d (Pink/Magenta)
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --teal: #0ea0a6;
  --teal-dark: #0a7d82;
  --teal-light: #e0f7f8;
  --pink: #e30b5d;
  --pink-dark: #b8094b;
  --pink-light: #fce4ee;
  --white: #ffffff;
  --off-white: #f8fdfd;
  --text-dark: #1a1a2e;
  --text-medium: #444466;
  --text-light: #888899;
  --border: #e0eef0;
  --shadow-sm: 0 2px 12px rgba(14,160,166,0.10);
  --shadow-md: 0 8px 32px rgba(14,160,166,0.15);
  --shadow-lg: 0 16px 64px rgba(14,160,166,0.18);
  --gradient: linear-gradient(135deg, var(--teal) 0%, #0dcfe2 50%, var(--pink) 100%);
  --gradient-soft: linear-gradient(135deg, #e0f7f8 0%, #fce4ee 100%);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 100px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Exo 2', 'Exo', sans-serif;
  --header-height: 72px;
  --ann-height: 50px;
}

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

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-block;
  background: var(--gradient-soft);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(14,160,166,0.2);
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.section-header p { color: var(--text-medium); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-cta { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(227,11,93,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(227,11,93,0.4); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-outline-teal { background: var(--teal-light); color: var(--teal-dark); border: 2px solid var(--teal); font-weight: 700; }
.btn-outline-teal:hover { background: var(--teal); color: white; transform: translateY(-2px); }
.btn-outline-white { background: rgba(255,255,255,0.1); color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--teal); }
.btn-full { width: 100%; justify-content: center; }

/* ===== ANNOUNCEMENT BAR ===== */
/* TO REMOVE LATER: Delete the entire #announcement-bar section from HTML + remove padding-top from .header */
.announcement-bar {
  background: linear-gradient(90deg, var(--teal-dark) 0%, #0b5c60 50%, var(--pink-dark) 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1001;
  padding: 0 16px;
}
.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.announcement-icon { font-size: 1.1rem; flex-shrink: 0; }
.announcement-text {
  flex: 1;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.4;
}
.ann-divider { opacity: 0.4; font-size: 1.2rem; }
.announcement-actions { display: flex; gap: 8px; flex-shrink: 0; }
.ann-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}
.ann-btn-map { background: rgba(255,255,255,0.2); color: white; border: 1px solid rgba(255,255,255,0.4); }
.ann-btn-map:hover { background: var(--white); color: var(--teal-dark); }
.ann-btn-call { background: var(--white); color: var(--pink-dark); }
.ann-btn-call:hover { background: var(--pink); color: white; }
.ann-close {
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 0.75rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ann-close:hover { background: rgba(255,255,255,0.3); }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-light); }
.nav-cta {
  background: var(--gradient) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 4px 16px rgba(227,11,93,0.25);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(227,11,93,0.35) !important; background: var(--gradient) !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  border: 1px solid var(--border);
  z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; animation: dropIn 0.2s ease; }
.dropdown-menu li a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--text-medium); font-weight: 500; }
.dropdown-menu li a:hover { color: var(--teal); background: var(--teal-light); }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
}
.nav-toggle span { width: 22px; height: 2px; background: var(--teal); border-radius: 2px; transition: var(--transition); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: var(--off-white);
  padding: 80px 0 60px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--teal);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: var(--pink);
  bottom: -80px; left: -80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-soft);
  border: 1px solid rgba(14,160,166,0.25);
  color: var(--teal-dark);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-badge i { color: var(--pink); }
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.hero-subtitle { font-size: 1.1rem; color: var(--text-medium); margin-bottom: 24px; max-width: 480px; }
.hero-features { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-features span { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--teal-dark); }
.hero-features i { color: var(--teal); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-stars { display: flex; align-items: center; gap: 4px; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.trust-stars i { color: #f5a623; font-size: 0.9rem; }
.trust-badges { display: flex; gap: 12px; }
.trust-badges span { font-size: 0.8rem; font-weight: 700; color: var(--text-medium); display: flex; align-items: center; gap: 4px; }
.trust-badges i { color: var(--teal); }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 340px;
  height: 400px;
  position: relative;
  border: 2px solid var(--border);
}
.hero-card-inner { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-light), var(--pink-light));
}
.placeholder-doctor { text-align: center; color: var(--teal-dark); }
.placeholder-doctor i { font-size: 5rem; margin-bottom: 12px; opacity: 0.5; }
.placeholder-doctor p { font-weight: 700; font-size: 1.1rem; }
.placeholder-doctor small { font-size: 0.8rem; color: var(--text-light); }
.hero-card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
}
.hero-card-badge i { color: var(--teal); }

/* Floating stats */
.floating-stat {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
  border: 2px solid var(--border);
  animation: float 3s ease-in-out infinite;
}
.floating-stat i { font-size: 1.4rem; color: var(--pink); margin-bottom: 4px; }
.floating-stat strong { font-size: 1.4rem; font-weight: 900; color: var(--teal); line-height: 1; }
.floating-stat span { font-size: 0.72rem; color: var(--text-light); font-weight: 600; }
.stat-1 { top: 20px; left: -30px; animation-delay: 0s; }
.stat-2 { bottom: 40px; right: -20px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-medium);
}
.trust-item i { color: var(--teal); font-size: 1rem; }
.trust-divider { width: 1px; height: 30px; background: var(--border); }

/* ===== ABOUT SNIPPET ===== */
.about-snippet { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  background: var(--gradient-soft);
  border-radius: 24px;
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  border: 2px dashed var(--teal);
}
.about-img-placeholder i { font-size: 5rem; opacity: 0.3; margin-bottom: 12px; }
.about-img-placeholder p { font-size: 0.88rem; font-weight: 600; color: var(--text-light); }
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient);
  color: white;
  border-radius: 20px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-experience-badge strong { font-size: 2.2rem; font-weight: 900; display: block; line-height: 1; }
.about-experience-badge span { font-size: 0.75rem; font-weight: 600; opacity: 0.9; }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 4px; }
.about-title { color: var(--teal); font-weight: 600; margin-bottom: 16px; font-size: 0.95rem; }
.about-content p { color: var(--text-medium); margin-bottom: 14px; }
.about-credentials { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.cred-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }
.cred-item i { color: var(--teal); width: 18px; flex-shrink: 0; }
.about-social { display: flex; gap: 12px; margin: 20px 0; }
.about-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.about-social a:hover { background: var(--teal); color: white; }

/* ===== TREATMENTS SECTION ===== */
.treatments { background: var(--off-white); }
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}
.treatment-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.treatment-card:hover::before { transform: scaleX(1); }
.tc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(var(--tc-color), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  background: color-mix(in srgb, var(--tc-color) 12%, white);
  color: var(--tc-color);
}
.treatment-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.treatment-card p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.55; margin-bottom: 14px; }
.tc-link { font-size: 0.85rem; font-weight: 700; color: var(--teal); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.treatment-card:hover .tc-link { gap: 10px; }

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--gradient);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-box {
  background: rgba(255,255,255,0.08);
  padding: 40px 24px;
  text-align: center;
  color: white;
  transition: var(--transition);
}
.stat-box:hover { background: rgba(255,255,255,0.15); }
.stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; display: inline; }
.stat-box > span { font-size: 1.8rem; font-weight: 900; }
.stat-box p { font-size: 0.9rem; font-weight: 600; opacity: 0.9; margin-top: 6px; }

/* ===== GALLERY ===== */
.gallery { background: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-card { background: var(--off-white); border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.gallery-before-after { display: flex; align-items: center; gap: 0; height: 200px; }
.gba-side { flex: 1; height: 100%; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gba-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  font-size: 2rem;
  color: var(--teal);
  opacity: 0.5;
}
.gba-placeholder.after { background: var(--gradient-soft); color: var(--pink); opacity: 1; }
.gba-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
}
.before-label { background: rgba(0,0,0,0.15); color: white; }
.after-label { background: var(--teal); color: white; }
.gba-divider {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
  z-index: 1;
}
.gallery-caption { padding: 12px 16px; font-size: 0.85rem; font-weight: 600; color: var(--text-medium); text-align: center; }

/* ===== REVIEWS ===== */
.reviews { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; color: #f5a623; font-size: 0.9rem; }
.review-card p { color: var(--text-medium); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { font-size: 0.92rem; color: var(--text-dark); display: block; }
.reviewer small { font-size: 0.78rem; color: var(--text-light); }

/* ===== APPOINTMENT SECTION ===== */
.appointment { background: white; }
.appointment-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.appointment-info h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.appointment-info > p { color: var(--text-medium); margin-bottom: 28px; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.contact-card i { color: var(--teal); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.contact-card strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.contact-card span { font-size: 0.85rem; color: var(--text-medium); }

/* Appointment Form */
.appointment-form-wrap {
  background: var(--off-white);
  border-radius: 24px;
  padding: 36px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  transition: var(--transition);
  background: white;
  color: var(--text-dark);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,160,166,0.12);
}
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 10px; }
.form-success { text-align: center; padding: 40px 24px; }
.form-success i { font-size: 3rem; color: var(--teal); margin-bottom: 12px; }
.form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.form-success p { color: var(--text-medium); }

/* ===== LOCATION ===== */
.location { background: var(--off-white); }
.location-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.location-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; padding: 16px; background: white; border-radius: var(--radius); border: 1.5px solid var(--border); }
.location-detail i { color: var(--teal); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.location-detail strong { display: block; font-weight: 700; margin-bottom: 4px; font-size: 0.9rem; }
.location-detail p { font-size: 0.88rem; color: var(--text-medium); }
.location-detail a { color: var(--teal); font-weight: 600; }
.nearby-amenities { margin-top: 16px; }
.nearby-amenities h4 { font-weight: 700; margin-bottom: 12px; font-size: 0.95rem; color: var(--text-dark); }
.nearby-amenities ul { display: flex; flex-direction: column; gap: 8px; }
.nearby-amenities li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-medium); }
.nearby-amenities i { color: var(--teal); width: 16px; }
.map-embed iframe { border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ===== FAQ ===== */
.faq { background: white; }
.faq-grid { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  background: white;
  transition: var(--transition);
  gap: 12px;
}
.faq-question:hover { color: var(--teal); background: var(--teal-light); }
.faq-question i { flex-shrink: 0; color: var(--teal); transition: var(--transition); }
.faq-question.active { color: var(--teal); background: var(--teal-light); }
.faq-question.active i { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 18px; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.65; }

/* ===== BLOG ===== */
.blog { background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: block;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-img-placeholder {
  height: 160px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--teal);
  opacity: 0.6;
}
.blog-content { padding: 20px; }
.blog-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--pink); background: var(--pink-light); padding: 3px 10px; border-radius: var(--radius-full); }
.blog-content h3 { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin: 10px 0 8px; line-height: 1.35; }
.blog-content p { font-size: 0.85rem; color: var(--text-medium); margin-bottom: 12px; }
.blog-read { font-size: 0.83rem; font-weight: 700; color: var(--teal); display: flex; align-items: center; gap: 6px; }

/* ===== GMB SECTION ===== */
.gmb-section { background: var(--gradient); padding: 80px 0; }
.gmb-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  backdrop-filter: blur(10px);
}
.gmb-content { flex: 1; color: white; }
.gmb-content .section-label { background: rgba(255,255,255,0.2); color: white; border-color: rgba(255,255,255,0.3); }
.gmb-content h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: white; margin-bottom: 12px; }
.gmb-content p { opacity: 0.9; margin-bottom: 24px; font-size: 1rem; }
.gmb-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.gmb-rating-display { text-align: center; color: white; flex-shrink: 0; }
.gmb-stars { color: #ffd700; font-size: 1.4rem; margin-bottom: 8px; display: flex; gap: 4px; justify-content: center; }
.gmb-score { font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.gmb-count { font-size: 0.85rem; opacity: 0.85; margin-bottom: 12px; }

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.4fr; gap: 40px; }
.footer-brand img { margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); color: white; }
.footer-links h4, .footer-treatments h4, .footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.footer-links ul, .footer-treatments ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a, .footer-treatments a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover, .footer-treatments a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact p { font-size: 0.84rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact p i { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--teal); }
.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 6px;
  transition: var(--transition);
}
.footer-map-link:hover { background: var(--teal-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom .container { display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between; width: 100%; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ===== STICKY BUTTONS ===== */
.sticky-call, .sticky-whatsapp {
  position: fixed;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
  color: white;
}
.sticky-call {
  bottom: 140px;
  right: 20px;
  background: var(--teal);
}
.sticky-call:hover { background: var(--teal-dark); transform: scale(1.1); }
.sticky-whatsapp {
  bottom: 76px;
  right: 20px;
  background: #25D366;
  animation: pulse-whatsapp 2.5s infinite;
}
.sticky-whatsapp:hover { background: #1da851; transform: scale(1.1); }
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gmb-box { flex-direction: column; text-align: center; }
  .gmb-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .ann-hide-sm { display: none; }
  .announcement-inner { flex-wrap: wrap; gap: 8px; padding: 8px 0; }
  .announcement-text { font-size: 0.8rem; }
  .ann-btn { padding: 5px 10px; font-size: 0.75rem; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    padding: 80px 24px 24px;
    z-index: 999;
    overflow-y: auto;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 12px 16px; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; display: block; }

  .hero { padding: 40px 0; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }

  .treatments-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .appointment-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 8px; }
  .trust-divider { display: none; }
  .section { padding: 56px 0; }
  .gmb-box { padding: 36px 24px; }
  .appointment-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .section-cta { flex-direction: column; align-items: center; }
}
