/* ============================================================
   SHASTI GASTROCARE — MASTER STYLESHEET
   Navigo Tech Solutions | navigotechsolutions.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&family=Playfair+Display:wght@600;700;800&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --teal: #1FA184;
  --teal-dark: #178a70;
  --teal-light: rgba(31, 161, 132, 0.1);
  --red: #E53935;
  --red-dark: #c62828;
  --dark: #1A1A2E;
  --body-text: #4A5568;
  --small-text: #718096;
  --mint: #E8F6F3;
  --white: #FFFFFF;
  --footer-bg: #0D4F3C;
  --border: #E2E8F0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.14);
  --shadow-teal: 0 8px 30px rgba(31, 161, 132, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --transition: all 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --container: 1200px;
  --section-pad: 100px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  min-width: 0;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
}

h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; }
h3 { font-size: clamp(20px, 3vw, 24px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

p { font-size: 16px; color: var(--body-text); line-height: 1.8; }

.text-teal { color: var(--teal); }
.text-red { color: var(--red); }
.text-dark { color: var(--dark); }
.text-white { color: var(--white) !important; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }
.section-sm { padding: 60px 0; }
.section-bg-white { background: var(--white); }
.section-bg-mint { background: var(--mint); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-label { display: block; }

.section-subtitle {
  font-size: 17px;
  color: var(--small-text);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover { background: var(--teal); color: var(--white); }

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.35);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover { background: var(--mint); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--teal); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   PILLS / BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-teal {
  background: var(--teal-light);
  color: var(--teal);
  border: 1px solid rgba(31, 161, 132, 0.3);
}
.badge-red {
  background: var(--red);
  color: var(--white);
}
.badge-dark {
  background: var(--dark);
  color: var(--white);
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  height: 80px;
  transition: height 0.3s ease;
}

.navbar.scrolled { height: 64px; }
.navbar.scrolled .nav-logo img { height: 46px; }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .clinic-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.nav-logo-text .clinic-sub {
  font-size: 11px;
  color: var(--teal);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--teal);
  width: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 24px);
}

.nav-links a.active { font-weight: 700; }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--teal-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-teal);
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

.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 menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--teal);
}

.mobile-menu .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, #0d8a6e 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 12px; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a { color: rgba(255, 255, 255, 0.9); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.5); }

/* ============================================================
   HERO SECTION (homepage)
   ============================================================ */
.hero {
  padding: 140px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(31, 161, 132, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  border: 1px solid rgba(31, 161, 132, 0.3);
  color: var(--teal);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '📍';
  font-size: 12px;
}

.hero h1 {
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 17px;
  color: var(--body-text);
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image-container img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.hero-image-container:hover img { transform: scale(1.03); }

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.floating-card-bottom {
  bottom: 24px;
  left: 20px;
  min-width: 160px;
}

.floating-card-top {
  top: 20px;
  right: 20px;
}

.floating-card-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.floating-card .card-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.floating-card .card-label {
  font-size: 12px;
  color: var(--small-text);
  margin-top: 2px;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--teal);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  color: var(--white);
  padding: 16px;
}

.stat-icon {
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s ease;
  color: white;
}
.stat-item:hover .stat-icon { background: rgba(255, 255, 255, 0.25); }
.stat-icon svg { width: 40px; height: 40px; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-number span {
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.85;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.stat-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

/* ============================================================
   ABOUT PREVIEW / ABOUT PAGE SECTIONS
   ============================================================ */
.about-preview {
  background: var(--white);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.about-image-wrap:hover img { transform: scale(1.02); }

.floating-achievement {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(31, 161, 132, 0.3);
  max-width: 200px;
  text-align: center;
}

.floating-achievement .ach-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: white;
}
.floating-achievement .ach-icon svg { width: 28px; height: 28px; }
.floating-achievement .ach-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.floating-achievement .ach-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.about-content .section-label { margin-bottom: 8px; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 16px; }

.qual-list {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--body-text);
}

.qual-list li .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  margin-top: 2px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose { background: var(--mint); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testi-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }
.testi-text {
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  margin: 0;
  flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.testi-detail { font-size: 12px; color: var(--small-text); margin-top: 2px; }

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.why-card .card-icon {
  width: 76px;
  height: 76px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s ease, transform 0.3s ease;
  color: var(--teal);
}
.why-card:hover .card-icon { background: var(--teal); transform: scale(1.08); color: white; }
.why-card .card-icon svg { width: 40px; height: 40px; transition: color 0.3s ease; }

.why-card h4 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 17px;
}

.why-card p { font-size: 14px; color: var(--small-text); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 161, 132, 0.15);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card .card-icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
}
.service-card .svc-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-card:hover .svc-icon { background: var(--teal); color: white; transform: scale(1.08); }
.service-card .svc-icon svg { width: 38px; height: 38px; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p { font-size: 14px; color: var(--body-text); }

.services-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   DOCTOR PROFILE BANNER (Index Page)
   ============================================================ */
.doc-profile-banner {
  background: linear-gradient(120deg, #1FA184 0%, #0d4a3f 45%, #0d2137 100%);
  overflow: hidden;
}
.doc-profile-inner {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  padding: 60px 0 0;
}
.doc-profile-left {
  flex: 1;
  padding-bottom: 52px;
}
.doc-profile-name {
  color: #fff;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.doc-profile-creds {
  color: rgba(255,255,255,0.78);
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.8;
  margin-bottom: 22px;
  border-left: 3px solid #4ecdc4;
  padding-left: 14px;
}
.doc-profile-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.doc-profile-bullets li {
  color: rgba(255,255,255,0.9);
  font-size: clamp(13px, 1.2vw, 15px);
  padding-left: 20px;
  position: relative;
}
.doc-profile-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #4ecdc4;
}
.doc-profile-photo-wrap {
  flex-shrink: 0;
  width: clamp(220px, 26vw, 380px);
  align-self: flex-end;
}
.doc-profile-photo {
  width: 100%;
  display: block;
  mix-blend-mode: screen;
}
@media (max-width: 768px) {
  .doc-profile-inner { flex-direction: column; align-items: center; gap: 16px; padding: 40px 0 0; }
  .doc-profile-left { padding-bottom: 0; }
  .doc-profile-photo-wrap { width: 200px; }
}

/* ============================================================
   BENEFITS STRIP
   ============================================================ */
/* ── Gallery Preview Section (Home Page) ── */
.gallery-preview-section { background: var(--dark); }
.gallery-preview-grid {
  columns: 3;
  column-gap: 12px;
  margin-bottom: 36px;
}
.gp-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #111;
  break-inside: avoid;
  width: 100%;
  display: inline-block;
  margin-bottom: 12px;
}
.gp-item img {
  width: 100%;
  height: auto !important;
  display: block;
  transition: transform 0.45s ease;
}
.gp-item:hover img { transform: scale(1.04); }
.gp-item.gp-featured {
  border: 2px solid #e8b84b;
  border-radius: 12px;
}
.gp-item.gp-featured .gp-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(13,33,55,0.92) 0%, rgba(13,33,55,0.1) 50%);
}
.gp-featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e8b84b;
  color: #0d1a2d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 4px 9px;
  border-radius: 4px;
  text-transform: uppercase;
}
.gp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,33,55,0.88) 0%, rgba(13,33,55,0) 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gp-item:hover .gp-overlay { opacity: 1; }
.gp-overlay span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.gallery-preview-cta {
  text-align: center;
  margin-top: 8px;
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; display: block; }
.lightbox-caption { color: rgba(255,255,255,0.8); text-align: center; margin-top: 12px; font-size: 14px; }
.lightbox-close {
  position: absolute; top: -40px; right: 0;
  color: #fff; font-size: 32px; cursor: pointer;
  background: none; border: none; line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); color: #fff;
  border: none; font-size: 28px; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.btn-primary-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary-teal:hover { background: #0d9d87; transform: translateY(-2px); }
@media (max-width: 900px) {
  .gallery-preview-grid { columns: 2; }
}
@media (max-width: 600px) {
  .gallery-preview-grid { columns: 1; }
}

.benefits-strip {
  background: var(--teal);
  padding: 56px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}

.benefit-item {
  color: var(--white);
  padding: 16px 8px;
}

.benefit-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: brightness(10);
}

.benefit-icon {
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}
.benefit-icon svg { width: 40px; height: 40px; }

.benefit-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   SYMPTOMS CTA
   ============================================================ */
.symptoms-section {
  background: var(--white);
  border-left: 6px solid var(--red);
}

.symptoms-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.symptoms-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--body-text);
}

.symptoms-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--red);
  border-radius: 50%;
}

.symptoms-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.symptoms-right img {
  width: 100%;
  max-width: 360px;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}

.btn-red.pulse-btn {
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(229, 57, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

/* ============================================================
   APPOINTMENT CTA SECTION
   ============================================================ */
.appt-cta {
  background: linear-gradient(180deg, var(--white) 0%, var(--mint) 100%);
  text-align: center;
}

.appt-cta h2 { margin-bottom: 16px; }
.appt-cta p { margin-bottom: 32px; font-size: 17px; max-width: 500px; margin-left: auto; margin-right: auto; }
.appt-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   QUALIFICATIONS SECTION
   ============================================================ */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.qual-card {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.qual-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.qual-card .qual-acronym {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}

.qual-card .qual-full {
  font-size: 14px;
  color: var(--body-text);
}

/* ============================================================
   EXPERTISE SECTION
   ============================================================ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.expertise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-teal);
  border-color: var(--teal);
}

.expertise-card .exp-icon {
  width: 76px;
  height: 76px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s ease, transform 0.3s ease;
  color: var(--teal);
}
.expertise-card:hover .exp-icon { background: var(--teal); transform: scale(1.08); color: white; }
.expertise-card .exp-icon svg { width: 40px; height: 40px; transition: color 0.3s ease; }
.expertise-card h4 { font-size: 15px; color: var(--dark); }

/* ============================================================
   SERVICES PAGE — TREATMENT SECTIONS
   ============================================================ */
.treatment-section {
  padding: var(--section-pad) 0;
}

.treatment-section:nth-child(even) { background: var(--mint); }
.treatment-section:nth-child(odd) { background: var(--white); }

.treatment-section.teal-tint { background: rgba(31, 161, 132, 0.06); }

.treatment-content { }

.treatment-content h2 { margin-bottom: 16px; }
.treatment-content p { margin-bottom: 20px; font-size: 16px; }

.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.treatment-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--body-text);
}

.treatment-list li .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
}

.treatment-image {
  position: relative;
}

.treatment-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.treatment-image:hover img { transform: scale(1.02); }

.minimally-strip {
  background: var(--teal);
  padding: 60px 0;
}

.minimally-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.minimally-item { color: var(--white); }
.minimally-item .min-icon {
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s ease;
  color: white;
}
.minimally-item:hover .min-icon { background: rgba(255, 255, 255, 0.25); }
.minimally-item .min-icon svg { width: 46px; height: 46px; }
.minimally-item h3 { color: var(--white); margin-bottom: 8px; }
.minimally-item p { color: rgba(255, 255, 255, 0.85); font-size: 15px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-doctor-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.info-card .info-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  color: var(--teal);
}
.info-card:hover .info-icon { background: var(--teal); color: white; }
.info-card .info-icon svg { width: 30px; height: 30px; transition: color 0.3s ease; }

.info-card .info-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.info-card .info-body p {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 10px;
}

.info-card .btn { font-size: 13px; padding: 8px 18px; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 { margin-bottom: 28px; color: var(--dark); }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group label span { color: var(--red); }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 161, 132, 0.15);
}

.form-control::placeholder { color: #A0AEC0; }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { cursor: pointer; }

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--small-text);
  margin-top: 12px;
}

/* Map */
/* ============================================================
   FIND US — HOME PAGE MAP
   ============================================================ */
.find-us-section { background: var(--mint); }

.find-us-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.map-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  min-height: 420px;
}

.map-embed-wrap iframe { display: block; height: 100%; min-height: 420px; }

.find-us-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.find-us-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fud-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  box-shadow: var(--shadow);
}
.fud-icon svg { width: 22px; height: 22px; }

.find-us-detail h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.find-us-detail p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  margin: 0;
}

.map-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.map-actions .btn {
  justify-content: center;
  font-size: 14px;
  padding: 12px 20px;
}

.btn-outline-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid #25D366;
  color: #25D366;
  background: transparent;
  transition: var(--transition);
  justify-content: center;
  white-space: nowrap;
}
.btn-outline-wa:hover { background: #25D366; color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.btn-outline-wa svg { width: 17px; height: 17px; flex-shrink: 0; }

@media (max-width: 768px) {
  .find-us-grid { grid-template-columns: 1fr; }
  .map-embed-wrap { min-height: 300px; }
  .map-embed-wrap iframe { min-height: 300px; }
  .map-actions { flex-direction: row; flex-wrap: wrap; }
  .map-actions .btn, .map-actions .btn-outline-wa { flex: 1; min-width: 140px; }
}

.map-section { padding: 60px 0; background: var(--white); }
.map-section h2 { text-align: center; margin-bottom: 32px; }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* ============================================================
   APPOINTMENT PAGE
   ============================================================ */
.appt-hero {
  padding: 120px 0 80px;
  background: var(--white);
  border-left: 0;
  position: relative;
}

.appt-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: var(--teal);
}

.appt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.appt-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.appt-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(31, 161, 132, 0.35);
}

.step-content h4 { color: var(--dark); font-size: 15px; margin-bottom: 2px; }
.step-content p { font-size: 14px; color: var(--small-text); }

.appt-doctor-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  margin-top: 24px;
}

.appt-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.appt-form-card h3 { margin-bottom: 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.or-divider {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--small-text);
  margin: 20px 0;
  position: relative;
}

.or-divider::before,
.or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}
.or-divider::before { left: 0; }
.or-divider::after { right: 0; }

.direct-contact-btns { display: flex; gap: 12px; }
.direct-contact-btns .btn { flex: 1; justify-content: center; font-size: 13px; }

/* What to expect */
.what-next { background: var(--mint); }

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: var(--teal);
  opacity: 0.3;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-step .ts-num {
  width: 60px;
  height: 68px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(31, 161, 132, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-step:hover .ts-num {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(31, 161, 132, 0.55);
}

.timeline-step h4 { color: var(--dark); margin-bottom: 8px; }
.timeline-step p { font-size: 14px; color: var(--body-text); }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(20px + env(safe-area-inset-right, 0px));
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: bounceIn 0.8s 0.5s both;
  flex-shrink: 0;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  padding: 70px 0 0;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  height: 64px;
  width: auto;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--teal);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--teal); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item .fc-icon {
  min-width: 18px;
  margin-top: 2px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-item .fc-icon svg { width: 14px; height: 14px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.doctor-profile-section {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.doctor-photo-card {
  text-align: center;
}

.doctor-photo-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.doctor-titles-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  margin-top: 20px;
}

.doctor-titles-card .title-item {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 6px;
}

.secondary-photo-section { background: var(--mint); }
.secondary-photo-section img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}

/* ============================================================
   IMAGE ERROR FALLBACK
   ============================================================ */
img.img-fallback,
img[src=""],
img:not([src]) {
  min-height: 200px;
  background: linear-gradient(135deg, var(--teal-light), var(--mint));
  border-radius: var(--radius);
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.gap-4 { gap: 16px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* ============================================================
   RESPONSIVE — TABLET (768px–1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-image-container img { height: 440px; }
  .hero-content { text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .credential-strip { justify-content: center; }
  .floating-card-bottom { bottom: 16px; left: 16px; }
  .floating-card-top { top: 16px; right: 16px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .expertise-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-timeline { gap: 20px; }
  .steps-timeline::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .doctor-photo-card img { height: 460px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .qual-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .steps-timeline { grid-template-columns: 1fr; }
  .minimally-grid { grid-template-columns: 1fr; gap: 24px; }
  .direct-contact-btns { flex-direction: column; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-buttons { flex-direction: column; align-items: center; }
  .appt-cta-buttons { flex-direction: column; align-items: center; }

  .appt-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .appt-hero { padding-top: 100px; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .footer { padding: 48px 0 0; }
  .footer-brand p { font-size: 13px; }
  .footer-links a, .footer-contact-item span { font-size: 13px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .floating-card { position: static; margin-top: 16px; }
  .floating-achievement {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: auto;
    margin-top: 0;
    max-width: 170px;
    padding: 12px 14px;
  }

  .contact-form-card,
  .appt-form-card { padding: 24px; }

  .whatsapp-float {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
    width: 52px;
    height: 52px;
  }

  /* Doctor banner – mobile */
  .dr-banner-inner {
    flex-direction: column !important;
    align-items: center !important;
    padding: 28px 20px 0 !important;
    min-height: unset !important;
    gap: 0;
  }
  .dr-banner-text {
    width: 100%;
    padding: 0 0 20px !important;
    text-align: center;
  }
  .dr-banner-name {
    white-space: normal !important;
    font-size: 22px !important;
  }
  .dr-banner-creds {
    font-size: 11px !important;
    line-height: 1.6;
    letter-spacing: 0 !important;
  }
  .dr-banner-photo {
    width: 60% !important;
    max-width: 200px;
    align-self: center !important;
    margin: 0 auto;
  }
}
