/* ============================================
   BrightSmile Dental Clinic — Premium CSS
   Inspired by ReliaCare Healthcare Aesthetic
   ============================================ */

:root {
  /* ── Color System ── */
  --primary:        #0F3B25;
  --primary-dark:   #092418;
  --accent:         #A4E26D;
  --accent-hover:   #8ED05A;
  --health-accent:  #2D9B63;
  --bg-white:       #FFFFFF;
  --bg-light:       #F4F9F2;
  --bg-cream:       #FAFDF7;
  --bg-gradient:    linear-gradient(160deg, #EAF7D8 0%, #D4F0C3 40%, #F6F9E8 100%);
  --bg-gradient-subtle: linear-gradient(180deg, #F2F9EC 0%, #FFFFFF 100%);
  --bg-gradient-hero: linear-gradient(160deg, #E0F2C8 0%, #C9EBB0 30%, #F0F7DD 70%, #FFF9E6 100%);
  --text-primary:   #0F3B25;
  --text-secondary: #5A7A66;
  --text-muted:     #8DA497;
  --border:         #DCE5DE;
  --border-light:   #E8F0EA;
  --whatsapp:       #25D366;
  --error:          #E53E3E;

  /* ── Typography ── */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* ── Shadows ── */
  --shadow-xs:     0 1px 3px rgba(15, 59, 37, 0.04);
  --shadow-sm:     0 2px 8px rgba(15, 59, 37, 0.05);
  --shadow-card:   0 4px 24px rgba(15, 59, 37, 0.06);
  --shadow-md:     0 8px 32px rgba(15, 59, 37, 0.08);
  --shadow-hover:  0 16px 48px rgba(15, 59, 37, 0.12);
  --shadow-lg:     0 20px 60px rgba(15, 59, 37, 0.15);
  --shadow-btn:    0 4px 16px rgba(164, 226, 109, 0.35);
  --shadow-green-glow: 0 0 40px rgba(164, 226, 109, 0.15);

  /* ── Spacing ── */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-card: 20px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 50px;
  --radius-img:  20px;

  /* ── Transitions ── */
  --transition:      all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-fast: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5em;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(38px, 5vw, 64px); letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.025em; }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: 20px; }

p {
  color: var(--text-secondary);
  margin-bottom: 1em;
  font-size: 17px;
  line-height: 1.8;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; border-radius: var(--radius-img); display: block; }
ul { list-style: none; }

::selection { background: rgba(164, 226, 109, 0.3); color: var(--primary); }

/* ============================================
   Utility Classes
   ============================================ */
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.bg-cream { background-color: var(--bg-cream); }
.bg-primary { background-color: var(--primary); color: white; }
.text-white { color: white !important; }
.text-health { color: var(--health-accent); }
.text-whatsapp { color: var(--whatsapp); }
.text-accent { color: var(--accent); }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.section-padding { padding: 110px 0; }
.full-width { width: 100%; text-align: center; }
.bg-gradient { background: var(--bg-gradient); }

/* Section Heading */
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { font-size: 18px; max-width: 560px; margin: 0 auto; color: var(--text-secondary); }
.section-heading .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(164, 226, 109, 0.15); color: var(--primary);
  padding: 6px 18px; border-radius: 50px; font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
}

/* ============================================
   Grid Systems
   ============================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ============================================
   Button System — Pill + Arrow
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius-pill);
  font-weight: 700; font-family: var(--font-heading); font-size: 15px;
  cursor: pointer; transition: var(--transition); border: 2px solid transparent;
  text-decoration: none; position: relative; white-space: nowrap;
}

.btn-teal {
  background-color: var(--accent); color: var(--primary);
  box-shadow: var(--shadow-btn); border-color: var(--accent);
}
.btn-teal:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(164, 226, 109, 0.45);
  color: var(--primary);
}

.btn-primary {
  background-color: var(--primary); color: white;
  border-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--primary-dark); color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(15, 59, 37, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary); color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary); color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 59, 37, 0.2);
}

.btn-white {
  background-color: white; color: var(--primary);
  border-color: white;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background-color: #f0f7e8; color: var(--primary);
  transform: translateY(-3px); box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: var(--whatsapp); color: white;
  border-color: var(--whatsapp);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background-color: #1ebe56; transform: translateY(-3px); color: white;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

/* Arrow inside buttons */
.btn .btn-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(15, 59, 37, 0.08); transition: var(--transition-fast);
  margin-left: 4px; flex-shrink: 0;
}
.btn .btn-arrow i { font-size: 11px; transition: transform 0.3s; }
.btn:hover .btn-arrow { background: rgba(15, 59, 37, 0.15); }
.btn:hover .btn-arrow i { transform: translateX(2px); }

.btn-teal .btn-arrow { background: rgba(15, 59, 37, 0.1); }
.btn-white .btn-arrow { background: rgba(15, 59, 37, 0.08); }
.btn-primary .btn-arrow { background: rgba(255, 255, 255, 0.15); }
.btn-primary .btn-arrow i { color: white; }
.btn-outline .btn-arrow { background: rgba(15, 59, 37, 0.08); }
.btn-outline:hover .btn-arrow { background: rgba(255, 255, 255, 0.2); }
.btn-outline:hover .btn-arrow i { color: white; }

/* Legacy chevron support */
.btn i.fa-chevron-right {
  background: rgba(15, 59, 37, 0.08); padding: 6px 7px 6px 9px;
  border-radius: 50%; font-size: 10px; transition: all 0.3s; margin-left: 4px;
}
.btn:hover i.fa-chevron-right { transform: translateX(3px); background: rgba(15, 59, 37, 0.14); }
.btn-primary i.fa-chevron-right,
.btn-primary:hover i.fa-chevron-right { background: rgba(255,255,255,0.15); color: white; }

/* ============================================
   Top Info Bar
   ============================================ */
.top-info-bar {
  background: var(--primary); color: white;
  padding: 10px 0; font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
}
.top-info-bar a { color: white; }
.top-info-bar a:hover { color: var(--accent); }
.divider { margin: 0 12px; opacity: 0.35; }

/* ============================================
   Navbar — Glassmorphism Pill
   ============================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 16px 0; transition: var(--transition);
  border-bottom: 1px solid rgba(15, 59, 37, 0.05);
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(15, 59, 37, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.logo {
  font-family: var(--font-heading); font-size: 24px; font-weight: 800;
  color: var(--primary); display: flex; align-items: center; gap: 10px;
}
.logo i { color: var(--accent); font-size: 28px; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--health-accent);
  border-radius: 50px; padding: 8px 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(76, 175, 130, 0.2);
  transition: all 0.3s ease;
}
.nav-links:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 28px rgba(76, 175, 130, 0.3);
}
.nav-links a {
  font-weight: 600; color: var(--primary); font-size: 15px;
  padding: 8px 18px; border-radius: 50px;
  transition: var(--transition-fast);
}
.nav-links a:hover { background: rgba(164, 226, 109, 0.12); color: var(--health-accent); }
.nav-links a.active { background: rgba(164, 226, 109, 0.18); color: var(--health-accent); }

.nav-cta { font-size: 14px !important; padding: 10px 24px !important; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px);
  background: white; box-shadow: var(--shadow-md); border-radius: var(--radius-card);
  padding: 12px 0; min-width: 220px; opacity: 0; visibility: hidden;
  transition: var(--transition); z-index: 100;
  border: 1px solid var(--border-light);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a {
  display: block; padding: 12px 24px; font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}
.dropdown-menu li a:hover { background: var(--bg-light); color: var(--health-accent); padding-left: 28px; }
.dropdown-menu li:last-child a { border-bottom: none; }
.nav-caret { font-size: 10px; margin-left: 4px; opacity: 0.6; transition: transform 0.3s; }
.dropdown:hover .nav-caret { transform: rotate(180deg); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger .bar {
  display: block; width: 24px; height: 2.5px; margin: 5px auto;
  background: var(--primary); border-radius: 2px; transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  min-height: auto !important;
  height: auto !important;
  padding-top: 120px !important;
  padding-bottom: 60px !important;
  overflow: hidden;
  background: var(--bg-gradient-hero);
  border-radius: 0 0 48px 48px;
  position: relative;
}
.hero-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(164, 226, 109, 0.08); filter: blur(80px);
  pointer-events: none;
}
.hero-section::after {
  content: ''; position: absolute; bottom: -50px; left: -50px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(45, 155, 99, 0.06); filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}

.trust-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(164, 226, 109, 0.18); color: var(--primary);
  padding: 10px 20px; border-radius: 50px; font-weight: 700;
  font-size: 13px; margin-bottom: 24px; letter-spacing: 0.03em;
  border: 1px solid rgba(164, 226, 109, 0.3);
}
.trust-badge i { color: var(--health-accent); }

.hero-content h1 { margin-bottom: 20px; }
.hero-content > p {
  font-size: 18px; line-height: 1.8; color: var(--text-secondary);
  max-width: 520px; margin-bottom: 8px;
}

.hero-ctas { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.trust-icons {
  display: flex; gap: 24px; color: var(--text-muted);
  font-size: 14px; font-weight: 500; margin-top: 32px; flex-wrap: wrap;
}
.trust-icons span {
  display: inline-flex; align-items: center; gap: 6px;
}
.trust-icons i { color: var(--health-accent); font-size: 15px; }

.hero-image { position: relative; }
.hero-image img {
  border-radius: var(--radius-lg); object-fit: cover; width: 100%; height: 480px;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Stats Bar — Floating Card
   ============================================ */
.stats-section { position: relative; z-index: 5; }
.stats-grid {
  transform: translateY(-50%);
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 44px 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border-light);
}
.stat-item {
  text-align: center; position: relative;
  padding: 0 20px;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%;
  height: 70%; width: 1px; background: var(--border-light);
}
.stat-item h2, .stat-item span {
  display: inline-block; font-size: 44px;
  color: var(--accent); margin-bottom: 4px; font-weight: 800;
}
.stat-item p { font-size: 15px; color: var(--text-muted); margin: 0; font-weight: 500; }

/* ============================================
   Service Cards
   ============================================ */
.services-section { position: relative; }

.service-card {
  background: white; border-radius: var(--radius-card);
  padding: 36px; box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--health-accent) 100%);
  opacity: 0; transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-hover);
  border-color: rgba(164, 226, 109, 0.3);
}

.service-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(164, 226, 109, 0.15) 0%, rgba(45, 155, 99, 0.1) 100%);
  color: var(--health-accent); display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--health-accent) 100%);
  color: white; transform: scale(1.05);
}

.service-card h3, .service-card h2 { font-size: 22px; margin-bottom: 12px; }
.service-card p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 0; }

.link-forward {
  color: var(--health-accent); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px; font-size: 15px;
}
.link-forward:hover { gap: 12px; color: var(--primary); }

/* ============================================
   Why Choose Us
   ============================================ */
.why-choose-us { overflow: hidden; }

.wcu-image { position: relative; overflow: hidden; max-height: 480px; border-radius: var(--radius-lg); }
.wcu-image img {
  border-radius: var(--radius-lg); object-fit: cover; object-position: center;
  box-shadow: var(--shadow-md); width: 100%; height: 100%; display: block;
}
.wcu-image::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 200px; height: 200px; border-radius: var(--radius-lg);
  background: var(--bg-gradient); z-index: -1;
}

.wcu-content h2 { margin-bottom: 16px; }
.wcu-content > p { font-size: 17px; }

.feature-list { margin-top: 8px; }
.feature-list li {
  margin-bottom: 16px; font-weight: 500; color: var(--primary);
  display: flex; align-items: center; gap: 14px; font-size: 16px;
}
.feature-list i { font-size: 20px; color: var(--health-accent); flex-shrink: 0; }

/* ============================================
   Doctor Section
   ============================================ */
.doctor-section { position: relative; }

.doctor-card {
  background: white; border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(164, 226, 109, 0.25);
}
.doctor-card img {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: 0; transition: var(--transition-slow);
}
.doctor-card:hover img { transform: scale(1.05); }

.doc-info {
  padding: 28px; text-align: center;
  background: linear-gradient(180deg, white 0%, var(--bg-cream) 100%);
}
.doc-info h3 { font-size: 20px; margin-bottom: 4px; }
.specialty { color: var(--health-accent) !important; font-weight: 600; margin-bottom: 4px; font-size: 15px; }
.experience { font-size: 13px; margin-bottom: 20px; color: var(--text-muted); }

/* ============================================
   How It Works
   ============================================ */
.how-it-works {
  background: var(--bg-gradient-subtle);
}

.steps-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }

.step-card {
  padding: 40px 28px; text-align: center;
  background: white; border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); border: 1px solid var(--border-light);
  transition: var(--transition); position: relative;
}
.step-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-hover);
}

.step-number {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--health-accent) 100%);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(15, 59, 37, 0.2);
}

.step-card h3 { font-size: 20px; margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--text-secondary); margin: 0; }

/* Step connector lines */
.steps-grid::before,
.steps-grid::after {
  display: none; /* Connector lines optional */
}

/* ============================================
   Reviews / Testimonials
   ============================================ */
.reviews-section { position: relative; overflow: hidden; }

.reviews-grid { text-align: left; }

.review-card {
  background: white; padding: 32px; border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); border: 1px solid var(--border-light);
  position: relative; transition: var(--transition);
  transform: rotate(-1deg);
}
.review-card:nth-child(2) { transform: rotate(0.5deg); }
.review-card:nth-child(3) { transform: rotate(-0.8deg); }

.review-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-size: 64px; font-family: Georgia, serif;
  color: rgba(164, 226, 109, 0.15); line-height: 1; pointer-events: none;
}

.review-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(164, 226, 109, 0.3);
}

.review-card .reviewer-info {
  display: flex; align-items: center; margin-bottom: 16px;
}
.review-card .reviewer-info img { border-radius: 50%; margin-right: 14px; }
.review-card .reviewer-info h3 { margin: 0; font-size: 17px; }

.stars {
  display: flex; gap: 3px; margin-top: 4px;
  color: #F5A623; font-size: 13px;
}
.stars.justify-center { justify-content: center; }

/* ============================================
   Map Section
   ============================================ */
.map-section { background: var(--bg-cream); }
.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 2px solid var(--border-light);
}

/* ============================================
   CTA Banner — Premium Gradient
   ============================================ */
.cta-banner {
  background: var(--bg-gradient); border-radius: var(--radius-xl);
  padding: 80px 40px; position: relative; overflow: hidden;
  margin: 0 24px 60px; box-shadow: var(--shadow-green-glow);
  border: 1px solid rgba(164, 226, 109, 0.2);
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(164, 226, 109, 0.1); filter: blur(60px);
  pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(45, 155, 99, 0.08); filter: blur(50px);
  pointer-events: none;
}
.cta-banner h2 { position: relative; z-index: 1; }
.cta-banner p { position: relative; z-index: 1; font-size: 18px; max-width: 550px; margin: 0 auto 8px; }
.cta-banner .hero-ctas { position: relative; z-index: 1; }

/* ============================================
   FAQ Section
   ============================================ */
.faq-section { background: var(--bg-light); }

.faq-item {
  background: white; border-radius: var(--radius-card);
  margin-bottom: 16px; box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.active { box-shadow: var(--shadow-card); border-color: rgba(164, 226, 109, 0.3); }

.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; cursor: pointer; font-weight: 700;
  font-family: var(--font-heading); font-size: 17px;
  color: var(--primary); transition: var(--transition-fast);
}
.faq-question:hover { color: var(--health-accent); }
.faq-question i {
  background: var(--bg-light); width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition); flex-shrink: 0;
}
.faq-item.active .faq-question i {
  background: var(--accent); color: var(--primary);
  transform: rotate(180deg);
}

/* ============================================
   Blog Section
   ============================================ */
.blog-card {
  background: white; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--border-light);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-hover);
}
.blog-card img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: 0; transition: var(--transition-slow);
}
.blog-card:hover img { transform: scale(1.05); }

.blog-card-content {
  padding: 28px;
}
.blog-card-content .blog-meta {
  display: flex; gap: 16px; font-size: 13px;
  color: var(--text-muted); font-weight: 500; margin-bottom: 12px;
}
.blog-card-content .blog-meta i { margin-right: 4px; }
.blog-card-content h2 { font-size: 20px; margin-bottom: 10px; }
.blog-card-content p { font-size: 15px; color: var(--text-secondary); }
.blog-card-content .read-more {
  color: var(--health-accent); font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
}
.blog-card-content .read-more:hover { gap: 12px; color: var(--primary); }

/* ============================================
   Team Section (Gradient BG variant)
   ============================================ */
.team-gradient-section {
  background: var(--bg-gradient);
  position: relative; overflow: hidden;
}
.team-gradient-section::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: rgba(164, 226, 109, 0.08); filter: blur(70px);
  pointer-events: none;
}

/* ============================================
   Appointment CTA Section — Dark Overlay
   ============================================ */
.appointment-cta {
  background: linear-gradient(135deg, rgba(15, 59, 37, 0.92) 0%, rgba(9, 36, 24, 0.95) 100%),
              url('../assets/images/background.jpeg') center/cover;
  border-radius: var(--radius-xl); padding: 80px 40px;
  margin: 0 24px; position: relative; overflow: hidden;
}
.appointment-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(164, 226, 109, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.appointment-cta h2 { color: white; position: relative; z-index: 1; }
.appointment-cta p { color: rgba(255,255,255,0.75); position: relative; z-index: 1; }
.appointment-cta .trust-points {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin: 24px 0 32px; position: relative; z-index: 1;
}
.appointment-cta .trust-point {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500;
}
.appointment-cta .trust-point i {
  color: var(--accent); font-size: 18px;
}

/* ============================================
   Footer — Dark Premium
   ============================================ */
.footer { padding: 80px 0 24px; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px; margin-bottom: 24px;
}

.footer h3 { color: white; font-size: 18px; margin-bottom: 24px; }
.footer p { color: rgba(255,255,255,0.55); }

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 14px; color: rgba(255,255,255,0.5);
  display: flex; align-items: flex-start; gap: 10px; font-size: 15px;
}
.footer-links ul li a { color: rgba(255,255,255,0.55); }
.footer-links ul li a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact ul li a { color: rgba(255,255,255,0.55); }
.footer-contact ul li a:hover { color: var(--accent); }
.footer-contact ul li i { color: var(--accent); margin-top: 4px; }

.social-icons a {
  width: 42px; height: 42px; background: rgba(255, 255, 255, 0.08);
  border-radius: 50%; display: inline-flex; align-items: center;
  justify-content: center; color: white; margin-right: 10px;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.06);
}
.social-icons a:hover {
  background: var(--accent); color: var(--primary);
  transform: translateY(-3px); box-shadow: 0 4px 16px rgba(164, 226, 109, 0.3);
}

.footer-bottom { color: rgba(255,255,255,0.35); font-size: 14px; padding-top: 4px; }

/* ============================================
   Contact / Form Styles
   ============================================ */
.contact-form-wrapper {
  background: white; padding: 44px; border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); border: 1px solid var(--border-light);
}
.contact-form-wrapper h2 { margin-bottom: 8px; }
.contact-form-wrapper > p { margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px; }

@media (max-width: 767px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: 14px;
  color: var(--primary); margin-bottom: 8px;
  font-family: var(--font-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--border-light); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 15px;
  transition: var(--transition-fast); background: white;
  color: var(--text-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--health-accent);
  box-shadow: 0 0 0 4px rgba(45, 155, 99, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { gap: 40px; }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 767px) {
  .section-padding { padding: 80px 0; }

  .top-info-bar .d-flex {
    flex-direction: column; align-items: center; gap: 6px;
  }

  .split-grid, .hero-grid {
    grid-template-columns: 1fr; text-align: center;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  .hero-section { padding: 60px 0 80px; border-radius: 0 0 32px 32px; }
  .hero-image img { height: 340px; }
  .hero-ctas { justify-content: center; }
  .trust-icons { justify-content: center; }
  .trust-badge { font-size: 12px; }

  .stats-grid {
    transform: translateY(0); margin-top: 40px;
    grid-template-columns: repeat(2, 1fr); gap: 20px;
    padding: 32px 24px;
  }
  .stat-item::after { display: none; }
  .stat-item h2, .stat-item span { font-size: 32px; }

  .wcu-image { order: -1; }
  .wcu-image img { height: 300px; }
  .feature-list { grid-template-columns: 1fr !important; }
  .feature-list li { justify-content: center; }

  .step-card { padding: 28px 20px; }
  .review-card { transform: rotate(0deg) !important; }

  .cta-banner { margin: 0 12px 40px; padding: 48px 24px; border-radius: var(--radius-card); }
  .appointment-cta { margin: 0 12px; padding: 48px 24px; border-radius: var(--radius-card); }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links ul li, .footer-contact ul li { justify-content: center; }
  .social-icons { justify-content: center; display: flex; }

  /* Mobile Menu - Professional Drawer */
  .hamburger { display: block; z-index: 1001; position: relative; }
  .menu-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(15, 59, 37, 0.4); backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: 0.3s ease; z-index: 998;
  }
  .menu-backdrop.active { opacity: 1; visibility: visible; }
  
    .navbar {
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      background: var(--bg-white, white) !important;
    }
    .nav-links {
      position: fixed; top: 0; right: -100%; height: 100vh; width: 85%; max-width: 340px;
      background: white; flex-direction: column; justify-content: center; align-items: stretch;
      transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); z-index: 999; border: none;
      border-radius: 24px 0 0 24px; padding: 40px 20px; gap: 8px;
      box-shadow: -10px 0 40px rgba(15, 59, 37, 0.15);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 18px; padding: 14px 20px; border-radius: 12px; font-weight: 600; }
    .nav-links a:hover, .nav-links a.active { background: var(--bg-light); color: var(--health-accent); }
    .navbar .logo { position: relative; z-index: 1001; }
    /* Mobile Dropdown styling */
    .dropdown-menu {
      position: static !important;
      transform: none !important;
      box-shadow: none !important;
      border: none !important;
      padding: 0 !important;
      max-height: 0;
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
      transition: max-height 0.3s ease, opacity 0.3s ease;
      background: var(--bg-light) !important;
      border-radius: 8px !important;
      margin-top: 5px !important;
      width: 100% !important;
    }
    .dropdown:hover .dropdown-menu {
      max-height: 500px;
      opacity: 1;
      visibility: visible;
      padding: 8px 0 !important;
    }
    .dropdown-menu li a {
      border-bottom: none !important;
      padding: 10px 20px !important;
      font-size: 15px !important;
    }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .nav-right { display: none; }

  .btn { padding: 14px 28px; font-size: 15px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 64px 0; }
  .hero-section { padding: 48px 0 64px; }
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  .stats-grid { padding: 24px 16px; }
  .service-card { padding: 28px; }
  .review-card { padding: 24px; }
  .step-card { padding: 24px 16px; }
  .cta-banner { padding: 36px 20px; }
}

/* ============================================
   Premium Additions (change6)
   ============================================ */

/* Before & After Cards */
.ba-section { overflow: hidden; }
.ba-card {
  background: white; border-radius: var(--radius-card); padding: 0; 
  box-shadow: var(--shadow-card); border: 1px solid var(--border-light);
  overflow: hidden; transition: var(--transition);
}
.ba-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(164, 226, 109, 0.3); }
.ba-img-compare { display: flex; width: 100%; height: 260px; }
.ba-img-compare .ba-before, .ba-img-compare .ba-after {
  flex: 1; position: relative; overflow: hidden;
}
.ba-img-compare [class^='ba-']::after {
  position: absolute; bottom: 12px; left: 16px; 
  background: rgba(0,0,0,0.6); color: white; padding: 4px 12px;
  border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.ba-img-compare .ba-before::after { content: 'Before'; }
.ba-img-compare .ba-after::after { content: 'After'; left: auto; right: 16px; background: var(--health-accent); }
.ba-img-compare img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.ba-info { padding: 24px; text-align: center; }
.ba-info h3 { font-size: 18px; margin-bottom: 4px; }
.ba-info p { font-size: 14px; margin-bottom: 0; color: var(--text-muted); }

/* Featured Testimonial */
.featured-testimonial {
  background: linear-gradient(135deg, white 0%, var(--bg-cream) 100%);
  border-radius: var(--radius-xl); padding: 44px; display: flex; gap: 40px; align-items: center;
  box-shadow: var(--shadow-md); border: 1px solid var(--border-light);
  margin-bottom: 40px; position: relative; overflow: hidden;
}
.featured-testimonial::after {
  content: '\f10e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: -20px; bottom: -40px; font-size: 180px;
  color: rgba(164, 226, 109, 0.1); pointer-events: none;
}
.ft-img { width: 180px; height: 180px; border-radius: var(--radius-lg); object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-md); }
.ft-content { flex: 1; position: relative; z-index: 1; }
.ft-content p.quote { font-size: 22px; font-weight: 500; color: var(--primary); font-style: italic; line-height: 1.6; margin-bottom: 16px; }
.ft-author h4 { margin: 0 0 4px; font-size: 18px; }
.ft-author p { margin: 0; font-size: 14px; color: var(--text-muted); }
.ft-service-tag { background: rgba(164, 226, 109, 0.15); color: var(--health-accent); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; display: inline-block; margin-top: 12px; }

@media (max-width: 767px) {
  .featured-testimonial { flex-direction: column; padding: 32px; gap: 24px; text-align: center; }
  .ft-img { width: 120px; height: 120px; }
  .ft-content p.quote { font-size: 18px; }
  .ba-img-compare { height: 200px; }
}

/* Pricing Preview List */
.pricing-preview { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); overflow: hidden; }
.pricing-item { display: flex; justify-content: space-between; align-items: center; padding: 24px 32px; border-bottom: 1px solid var(--border-light); transition: var(--transition-fast); }
.pricing-item:last-child { border-bottom: none; }
.pricing-item:hover { background: var(--bg-light); }
.pricing-item-info h4 { margin: 0 0 6px; font-size: 18px; }
.pricing-item-info p { margin: 0; font-size: 14px; font-weight: 500; color: var(--text-muted); }
.pricing-item-price { text-align: right; }
.pricing-item-price span.label { display: block; font-size: 12px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.pricing-item-price div.cost { font-size: 22px; font-weight: 800; color: var(--primary); }

@media (max-width: 767px) {
  .pricing-item { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .pricing-item-price { text-align: left; }
}

/* Enhancing Icon Feature Cards (WCU) */
.wcu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.wcu-card { background: white; padding: 32px; border-radius: var(--radius-card); text-align: center; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); transition: var(--transition); }
.wcu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(164, 226, 109, 0.4); }
.wcu-card i { font-size: 36px; padding: 18px; border-radius: 50%; color: var(--health-accent); background: linear-gradient(135deg, rgba(164, 226, 109, 0.15), rgba(45, 155, 99, 0.05)); margin-bottom: 20px; display: inline-block; transition: var(--transition); }
.wcu-card:hover i { background: var(--accent); color: white; transform: rotate(10deg); }
.wcu-card h3 { font-size: 18px; margin-bottom: 12px; }
.wcu-card p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }

@media (max-width: 767px) { .wcu-grid { grid-template-columns: 1fr; } }

/* Doctor Profile Premium Enhancements */
.doc-profile-hero { background: var(--bg-gradient); padding: 80px 0 60px; position: relative; }
.doc-profile-header { display: flex; gap: 48px; align-items: center; }
.doc-profile-img { width: 320px; height: 380px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 4px solid white; flex-shrink: 0; }
.doc-profile-info { flex: 1; }
.doc-profile-info h1 { margin-bottom: 8px; font-size: 42px; }
.doc-profile-info .doc-qual { font-size: 18px; font-weight: 500; color: var(--health-accent); margin-bottom: 16px; margin-top: -6px; display: block; }
.doc-profile-info p { font-size: 16px; margin-bottom: 24px; max-width: 600px; }
.doc-stats-row { display: flex; gap: 32px; margin-bottom: 32px; padding: 24px 0; border-top: 1px solid rgba(15, 59, 37, 0.1); border-bottom: 1px solid rgba(15, 59, 37, 0.1); }
.doc-stat { display: flex; flex-direction: column; }
.doc-stat span.num { font-size: 28px; font-weight: 800; color: var(--primary); }
.doc-stat span.label { font-size: 13px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; }

.doc-section { background: white; margin-top: -40px; position: relative; border-radius: 40px 40px 0 0; padding: 80px 0; }
.doc-grid-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.doc-sidebar-card { background: var(--bg-light); border-radius: var(--radius-card); padding: 32px; box-shadow: var(--shadow-sm); margin-bottom: 24px; border: 1px solid var(--border-light); }
.doc-sidebar-card h3 { font-size: 18px; margin-bottom: 16px; border-bottom: 1px solid var(--border-light); padding-bottom: 12px; }
.doc-feature-list li { margin-bottom: 12px; display: flex; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.doc-feature-list i { color: var(--health-accent); margin-top: 4px; }

@media (max-width: 900px) {
  .doc-profile-header { flex-direction: column; text-align: center; gap: 32px; }
  .doc-stats-row { justify-content: center; flex-wrap: wrap; }
  .doc-profile-info p { margin-left: auto; margin-right: auto; }
  .doc-grid-layout { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  /* Fix #2C: Mobile Form Fixes */
  .appointment-form {
    padding: 24px 16px !important;
    margin: 0 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important; /* Prevents iOS zoom */
  }

  .submit-btn {
    width: 100% !important;
    font-size: 16px;
    padding: 14px;
  }
}

/* Fix #2A: Additional Mobile Fixes */
@media (max-width: 767px) {
  .hero h1 { font-size: 32px !important; line-height: 1.3; }
  .hero p { font-size: 15px; }

  /* Removed conflicting mobile nav logic (handled by .nav-links full-screen slide-in instead) */
  .services-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .doctor-grid { grid-template-columns: 1fr !important; }
  .stats-bar { flex-direction: column; gap: 24px; }
  .testimonials-slider { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 767px) {
  /* Touch Targets for Interactive Elements on Mobile */
  button, .btn, .nav-links a, .social-icons a, .float-btn, .form-group input, .form-group select, .form-group textarea, input[type="submit"] {
    min-height: 44px;
    min-width: 44px;
  }

  /* Floating buttons layout on mobile */
  .whatsapp-float, .call-float, .float-btn {
    position: fixed !important;
    bottom: 24px !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
  }
  .whatsapp-float {
    right: 20px !important;
  }
  .call-float {
    left: 20px !important;
  }
  body {
    padding-bottom: 90px !important; /* Prevent floating buttons from overlapping bottom-most content */
  }
}

/* ============================================
   changemo.md Mobile Professional Optimizations
   ============================================ */
@media (max-width: 767px) {
  /* Change 3 — Hero Section Layout */
  .hero-grid {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .hero-content {
    order: 1;
    width: 100%;
  }
  .hero-image {
    order: 2;
    width: 100%;
    margin-top: 2rem;
  }
  .hero-section h1 { font-size: 2rem !important; line-height: 1.3; }
  .hero-section p { font-size: 1rem; }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    align-items: center;
  }
  .hero-ctas a.btn, .hero-ctas button {
    width: 100%;
    justify-content: center;
  }

  /* Change 4 — All Buttons Must Be Thumb-Friendly */
  button, .btn, a.btn, input[type="submit"] {
    min-height: 48px;
    min-width: 48px;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .whatsapp-float, .call-float {
    z-index: 9999 !important;
  }

  /* Change 5 — Stats Section Mobile Layout */
  .stats-grid, .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .stat-item h2, .stat-item span, .stat-number {
    font-size: 2.5rem !important;
  }
  .stat-item p, .stat-label {
    font-size: 0.85rem !important;
  }

  /* Change 6 — Services Cards Mobile Layout */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  .service-card {
    width: 100%;
    padding: 1.5rem;
  }
  .service-card[data-tilt] {
    transform: none !important;
  }

  /* Change 7 — Booking Form Mobile Friendly */
  .contact-form-wrapper, .booking-form {
    padding: 1.5rem !important;
    margin: 0 1rem;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px !important; /* prevents iOS zoom on focus */
    border-radius: 8px;
    box-sizing: border-box;
  }
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .form-row .form-group {
    width: 100%;
  }

  /* Change 8 — Typography Scaling */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }
  p { font-size: 0.95rem; line-height: 1.7; }
  .section-padding { padding: 3rem 1.5rem !important; }
  .section-heading { text-align: center; }

  /* Change 9 — Images Mobile Optimized */
  img { max-width: 100%; height: auto; }
  /* hero-image rules moved to universal fix at bottom of file */

  /* Change 10 — Footer Mobile Layout */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .social-icons {
    justify-content: center;
  }

  /* Change 11 — Navbar Mobile Spacing */
  .navbar {
    padding: 1rem 1.5rem;
  }
  .navbar .btn-primary { display: none !important; }

  /* Change 12 — 3D Tooth Model Hide on Mobile */
  #tooth-3d-canvas, #particles-js { display: none !important; }

  /* Change 13 — Testimonials Mobile Scroll */
  .reviews-grid, .testimonials-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 1rem;
    padding: 1rem 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .review-card, .testimonial-card {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
    transform: none !important;
  }

  /* Change 14 — Blog Cards Mobile */
  .blog-grid {
    grid-template-columns: 1fr !important;
    padding: 0 1.5rem;
  }
  .blog-card img {
    height: 180px;
  }
}

/* ==========================================================================
   Premium FAQ Cards for Service Pages (Service Detail FAQs)
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.faq-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(10, 126, 164, 0.3);
}

.faq-card-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

.faq-card-header h3 {
  font-size: 18px;
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  transition: color 0.3s ease;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

/* Open State */
.faq-card.open {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(10, 126, 164, 0.08);
}

.faq-card.open .faq-card-header h3 {
  color: var(--accent);
}

.faq-card.open .faq-icon {
  background: var(--accent);
  color: white;
  transform: rotate(180deg);
}

/* Smooth Accordion Animation using CSS Grid */
.faq-card-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.open .faq-card-body {
  grid-template-rows: 1fr;
}

.faq-card-body-inner {
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.faq-card.open .faq-card-body-inner {
  padding-bottom: 24px;
}

/* ==========================================================================
   Mobile-First Visual Redesign (Clove Oral Care Style)
   ========================================================================== */
@media (max-width: 767px) {
  /* 1. Navbar - Clean Minimal Bar */
  .navbar {
    padding: 12px 16px !important;
    background: white !important;
    border-bottom: 1px solid var(--border-light) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02) !important;
  }
  .navbar .fa-phone, .navbar [class*="phone"] {
    display: none !important;
  }
  .navbar .logo {
    display: flex !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
  }
  .navbar .logo i {
    display: inline-block !important; /* Keep tooth icon */
  }

  /* 2. Typography & Text Columns */
  body, p, li, .faq-card-body-inner {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }
  /* Center text and restrict column width like Clove's narrow readable columns */
  .section-padding p, 
  .hero-section p, 
  .wcu-content p, 
  .cta-banner p, 
  .appointment-cta p,
  .about-content p,
  .doctor-profile p {
    max-width: 85% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  
  /* Reset layout constraints for body text inside cards/footer/forms to fill width */
  .service-card p, 
  .review-card p, 
  .testimonial-card p, 
  .blog-card-content p, 
  .doctor-card p, 
  .step-card p, 
  .wcu-card p, 
  .pricing-card p, 
  .footer p, 
  .form-group p,
  .faq-card-body-inner {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
  
  h1, .hero-section h1, .doc-profile-info h1 {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
  }
  
  h2, .section-heading h2, .contact-form-wrapper h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.015em !important;
  }
  
  h3, .faq-card-header h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
  }

  /* Section subtitles/labels: 11px, letter-spacing 0.1em, uppercase */
  .section-tag, .trust-badge, .section-subtitle, .specialty, .doc-qual, .ft-service-tag {
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    display: inline-block !important;
  }

  /* 3. Cards — Small, Compact, App-Like */
  .service-card, .review-card, .testimonial-card, .blog-card, .doctor-card, .step-card, .wcu-card, .pricing-card {
    padding: 16px !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03) !important;
    background: white !important;
  }
  /* Card heading: 16px, card body text: 13px */
  .service-card h3, .service-card h2, .review-card h3, .review-card h2, .testimonial-card h3, .blog-card-content h3, .blog-card-content h2, .doctor-card h3, .step-card h3, .wcu-card h3, .pricing-card h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
  }
  .service-card p, .review-card p, .testimonial-card p, .blog-card-content p, .doctor-card p, .step-card p, .wcu-card p, .pricing-card p, .doctor-card .experience, .blog-meta {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  /* 4. Horizontal Scroll Sections */
  .services-grid, .reviews-grid, .testimonials-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding: 8px 20px !important;
    scrollbar-width: none !important; /* Firefox */
  }
  .services-grid::-webkit-scrollbar, 
  .reviews-grid::-webkit-scrollbar, 
  .testimonials-grid::-webkit-scrollbar {
    display: none !important; /* Safari and Chrome */
  }
  /* Each card: width: 75vw max so next card peeks (carousel feel) */
  .service-card, .review-card, .testimonial-card {
    width: 75vw !important;
    max-width: 280px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
  }

  /* 5. Section Spacing */
  .section-padding {
    padding: 40px 20px !important; /* 40px vertical, 20px horizontal */
  }
  .container {
    padding: 0 !important;
  }
  /* Gap between section heading and content: 16px */
  .section-heading, .section-header {
    margin-bottom: 16px !important;
  }
  /* Gap between cards in vertical stacks: 12px */
  .doctor-grid, .blog-grid, .steps-grid, .wcu-grid, .pricing-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* 6. Images */
  /* Hero image: 220px height max, border-radius: 16px */
  /* hero-image rules moved to universal fix at bottom of file */
  /* Card images: 150px height, object-fit: cover, border-radius: 12px */
  .doctor-card img, .blog-card img, .ba-img-compare {
    height: 150px !important;
    max-height: 150px !important;
    border-radius: 12px !important;
    object-fit: cover !important;
  }
  .wcu-image img {
    height: 200px !important;
    border-radius: 16px !important;
    object-fit: cover !important;
  }

  /* Icons inside cards */
  .service-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
    margin-bottom: 12px !important;
    border-radius: 10px !important;
  }
  .step-number {
    width: 48px !important;
    height: 48px !important;
    font-size: 18px !important;
    line-height: 48px !important;
    margin: 0 auto 12px !important;
  }
  .wcu-card i {
    font-size: 28px !important;
    padding: 14px !important;
    margin-bottom: 12px !important;
  }

  /* 7. Footer — Compact on Mobile */
  .footer {
    padding: 32px 20px !important;
  }
  /* Stack footer columns in 2-column grid instead of all single column */
  .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    text-align: left !important;
  }
  .footer-brand {
    grid-column: span 2 !important;
    text-align: center !important;
  }
  .footer, .footer a, .footer p, .footer li, .footer-contact ul li {
    font-size: 13px !important;
    text-align: left !important;
  }
  .footer-links ul li, .footer-contact ul li {
    justify-content: flex-start !important;
  }
  .footer-brand p {
    text-align: center !important;
  }
  /* Make the contact column span 2 for clean balanced width */
  .footer-contact {
    grid-column: span 2 !important;
  }
  /* Social icons row: compact, centered, gap: 12px */
  .social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 12px !important;
  }
  .social-icons a {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }
  /* Copyright bar: 12px font, single line centered */
  .footer-bottom {
    padding-top: 16px !important;
    margin-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-align: center !important;
    padding-bottom: 80px !important; /* Fix copyright bar overlapping floating buttons */
  }
  .footer-bottom p {
    font-size: 12px !important;
    margin: 0 !important;
    display: block !important;
    text-align: center !important;
  }

  /* 8. Buttons */
  button, .btn, a.btn, input[type="submit"], .submit-btn {
    height: 48px !important;
    min-height: 48px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  /* CTA buttons: full-width */
  .cta-banner .btn,
  .appointment-cta .btn,
  .submit-btn,
  .pricing-card .btn,
  .btn-primary,
  .btn-secondary,
  .contact-form-wrapper button,
  .booking-form button {
    width: 100% !important;
    text-align: center !important;
  }

  /* Floating controls retain their circle size */
  .whatsapp-float, .call-float, .float-btn, .hamburger {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Hero Section Immersive App Screen Look */
  .hero-section {
    min-height: 70vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 60px 0 40px !important;
    box-sizing: border-box !important;
  }
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Homepage hero buttons - rounded app buttons, not full-stretched boxy bars */
  .hero-ctas {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 16px !important;
  }
  .hero-ctas .btn, .hero-ctas button {
    width: 90% !important;
    max-width: 320px !important;
    margin: 0 auto 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
  }

  /* Stats Bar - Stacked and clean app list */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 24px 16px !important;
    background: white !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03) !important;
    margin-top: 24px !important;
  }
  .stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--border-light) !important;
  }
  .stat-item:last-child {
    border-bottom: none !important;
  }
  .stat-item h2, .stat-item span, .stat-number {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    line-height: 1.1 !important;
  }
  .stat-item p, .stat-label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text-secondary) !important;
    margin-top: 4px !important;
  }

  /* Doctor Profile Page */
  .doc-profile-img {
    width: 100% !important;
    max-width: 240px !important;
    height: 280px !important;
    margin: 0 auto !important;
  }
  .doc-stats-row {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
  }

  /* Form group refinements */
  .form-group input, 
  .form-group select, 
  .form-group textarea {
    height: 44px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    line-height: 1.4 !important;
  }
  .form-group textarea {
    height: auto !important;
    min-height: 90px !important;
  }
  .form-group label {
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
  }
  .contact-form-wrapper button[type="submit"], 
  .booking-form button[type="submit"], 
  .appointment-form button[type="submit"] {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
  }

  /* 1. Hero/Banner sections — Fix oversized green sections */
  .hero-section:not(:has(.hero-grid)) {
    max-height: 200px !important;
    min-height: auto !important;
    padding: 32px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }
  .hero-section:not(:has(.hero-grid)) h1 {
    font-size: 22px !important;
    margin-bottom: 6px !important;
    font-weight: 700 !important;
  }
  .hero-section:not(:has(.hero-grid)) p {
    font-size: 13px !important;
    line-height: 1.4 !important;
    max-width: 90% !important;
    margin: 0 auto !important;
  }
  .hero-section:not(:has(.hero-grid)) .section-tag {
    margin-bottom: 4px !important;
  }

  /* 2. Values/Features grid (Trust, Respect, Integrity cards) — 2-column layout */
  .bg-cream .grid-3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .bg-cream .grid-3 > div:nth-child(3) {
    grid-column: 1 / -1 !important;
    max-width: 50% !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .bg-cream .grid-3 .service-card {
    padding: 16px !important;
    border-radius: 12px !important;
  }
  .bg-cream .grid-3 .service-card .service-icon {
    width: 44px !important;
    height: 44px !important;
    margin: 0 auto 12px !important;
  }
  .bg-cream .grid-3 .service-card .service-icon i {
    font-size: 28px !important;
    line-height: 44px !important;
  }
  .bg-cream .grid-3 .service-card h3, .bg-cream .grid-3 .service-card h2 {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
  }
  .bg-cream .grid-3 .service-card .feature-list li {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* 3. Contact page — Full mobile-oriented redesign */
  .contact-info-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
  .info-card {
    padding: 14px 16px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    border-radius: 12px !important;
    text-align: left !important;
  }
  .info-card .info-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }
  .info-card h3 {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 2px !important;
  }
  .info-card p, .info-card a {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
  .contact-form-wrapper, .booking-form, .appointment-form {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }

  /* 3. Footer Overrides (Contact Info, spacing and icons size) */
  .footer-contact {
    padding: 16px 0 !important;
  }
  .footer-contact li, 
  .footer-contact li a,
  .footer-contact p {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
  .social-icons {
    margin-bottom: 16px !important;
  }
  .social-icons a {
    font-size: 16px !important;
  }

  /* 4. Remove Scroll Animations on Mobile */
  .fade-up-hero, .fade-up, .fade-in, .slide-in,
  [class*='fade'], [class*='slide'], .gsap-reveal,
  .container.fade-up-scroll {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
  }

  /* 5. Service detail pages compact banners */
  .bg-primary.text-white.section-padding.fade-up-hero {
    padding: 40px 20px !important;
    min-height: unset !important;
    height: auto !important;
    max-height: unset !important;
  }
  .bg-primary.text-white.section-padding.fade-up-hero h1 {
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
  }
  .bg-primary.text-white.section-padding.fade-up-hero p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    max-width: 85% !important;
  }

  /* 1. Checklist/Tick Items styling */
  .feature-list, .doc-feature-list, [class*="feature-list"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .feature-list li, .doc-feature-list li, [class*="feature-list"] li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    text-align: left !important;
    justify-content: flex-start !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 0 10px 0 !important;
    max-width: 100% !important;
  }
  .feature-list li i, .doc-feature-list li i, [class*="feature-list"] li i {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
  }

  /* 1. Homepage hero section — smaller and compact */
  .hero-section {
    padding: 40px 20px 32px !important;
    min-height: unset !important;
  }
  .hero-section .trust-badge {
    font-size: 10px !important;
    padding: 4px 10px !important;
  }
  .hero-section h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }
  .hero-section p {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
    max-width: 85% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-ctas .btn {
    height: 46px !important;
    min-height: 46px !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
  }
  .hero-section .trust-icons {
    font-size: 11px !important;
    gap: 8px !important;
  }

  /* 2. Stats section — card design */
  .stats-section {
    padding: 24px 20px !important;
    background: transparent !important;
  }
  .stats-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    margin-top: 0 !important;
  }
  .stat-item {
    background: var(--bg-light) !important;
    border-radius: 16px !important;
    padding: 20px 16px !important;
    border: 1px solid var(--border-light) !important;
    box-shadow: var(--shadow-sm) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    border-bottom: none !important;
  }
  .stat-item h2, .stat-item .counter {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    display: inline-block !important;
    line-height: 1.1 !important;
    margin: 0 !important;
  }
  .stat-item span {
    color: var(--health-accent) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    display: inline-block !important;
  }
  .stat-item p {
    font-size: 12px !important;
    color: var(--text-secondary) !important;
    margin-top: 4px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
  }
  .stat-item:last-child {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
  }
  .stat-item:last-child h2,
  .stat-item:last-child .counter,
  .stat-item:last-child span {
    color: white !important;
  }
  .stat-item:last-child p {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  /* 3. Reviews/testimonial cards compact */
  .review-card {
    padding: 16px !important;
    border-radius: 16px !important;
  }
  .reviewer-info img, .reviewer-info .avatar-placeholder {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
  }
  .reviewer-info h3 {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 2px !important;
  }
  .reviewer-info p {
    font-size: 11px !important;
  }
  .reviewer-info .stars {
    font-size: 10px !important;
    margin-top: 2px !important;
  }
  .review-card > p {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin: 10px 0 !important;
  }
  .review-card .ft-service-tag {
    font-size: 11px !important;
    padding: 4px 10px !important;
    margin-top: 8px !important;
  }

  /* 4. Doctor Image Crop Fix on Homepage */
  .doctor-card img {
    height: 280px !important;
    max-height: 280px !important;
    object-fit: cover !important;
    object-position: top !important;
  }

  /* 5. Contact Page Form Container Redesign */
  .contact-form-wrapper {
    background: var(--primary) !important;
    color: white !important;
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }
  .contact-form-wrapper h2,
  .contact-form-wrapper p,
  .contact-form-wrapper label {
    color: white !important;
  }
  .contact-form-wrapper input,
  .contact-form-wrapper select,
  .contact-form-wrapper textarea {
    background: white !important;
    color: var(--primary) !important;
    border: 1px solid var(--border-light) !important;
    height: 44px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
  }
  .contact-form-wrapper textarea {
    height: auto !important;
    min-height: 90px !important;
  }
  .contact-form-wrapper button[type="submit"] {
    background: var(--accent) !important;
    color: var(--primary) !important;
    height: 48px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border: none !important;
    width: 100% !important;
  }

  /* 6. Hamburger Menu Fix (to show 3 lines by default) */
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
  }
  .hamburger .bar {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    margin: 0 !important;
    background: var(--primary) !important;
    border-radius: 2px !important;
    transition: var(--transition) !important;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0 !important;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  /* 7. Doctor Profile Page Layout & Alignment Fix */
  .doc-profile-header {
    flex-direction: column !important;
    text-align: left !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .doc-profile-info {
    text-align: left !important;
    width: 100% !important;
  }
  .doc-profile-info h1 {
    font-size: 26px !important;
    text-align: left !important;
  }
  .doc-profile-info .doc-qual {
    font-size: 14px !important;
    text-align: left !important;
    margin-bottom: 12px !important;
  }
  .doc-profile-info p {
    font-size: 13px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    margin: 0 0 16px 0 !important;
    max-width: 100% !important;
  }
  .doc-stats-row {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    padding: 16px 0 !important;
    width: 100% !important;
  }
  .doc-stat {
    flex: 1 1 45% !important;
    text-align: left !important;
    align-items: flex-start !important;
  }
  .doc-stat span.num {
    font-size: 22px !important;
  }
  .doc-stat span.label {
    font-size: 11px !important;
  }
  .doc-profile-hero .hero-ctas {
    align-items: flex-start !important;
    width: 100% !important;
    margin-top: 12px !important;
  }
  .doc-profile-hero .hero-ctas .btn {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .doc-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .doc-main-content h2 {
    font-size: 18px !important;
    margin-top: 24px !important;
    margin-bottom: 12px !important;
    text-align: left !important;
  }
  .doc-main-content p {
    font-size: 13px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    margin-bottom: 12px !important;
  }

  /* 8. About page — Trust/Respect/Integrity cards */
  .bg-cream {
    overflow-x: hidden !important;
  }
  .bg-cream .grid-3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .bg-cream .grid-3 .service-card {
    background: white !important;
    border-radius: 16px !important;
    padding: 16px 12px !important;
    border: 1px solid var(--border-light) !important;
    min-width: 0 !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-sm) !important;
  }
  .bg-cream .grid-3 .service-card:nth-child(3) {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .bg-cream .grid-3 .service-card .service-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    margin: 0 auto 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .bg-cream .grid-3 .service-card .service-icon i {
    font-size: 20px !important;
    line-height: 40px !important;
  }
  .bg-cream .grid-3 .service-card h3, .bg-cream .grid-3 .service-card h2 {
    font-size: 15px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 12px !important;
  }
  .bg-cream .grid-3 .service-card .feature-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin: 0 !important;
    width: 100% !important;
    text-align: left !important;
  }
  .bg-cream .grid-3 .service-card .feature-list li {
    font-size: 12px !important;
    line-height: 1.4 !important;
    text-align: left !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin: 0 0 6px 0 !important;
    width: 100% !important;
  }

  /* 9. Mobile Bottom Sticky Navigation Bar */
  .mobile-bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 60px !important;
    background: white !important;
    border-top: 1px solid var(--border-light) !important;
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    z-index: 9998 !important;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08) !important;
  }
  .mobile-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: var(--text-secondary) !important;
    transition: var(--transition-fast) !important;
    flex: 1 !important;
    height: 100% !important;
  }
  .mobile-nav-item i {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }
  .mobile-nav-item span {
    font-size: 10px !important;
    font-weight: 600 !important;
  }
  .mobile-nav-item.active {
    color: var(--health-accent) !important;
  }

  /* Adjust floating buttons to not overlap with bottom nav */
  .whatsapp-float {
    bottom: 80px !important;
    right: 20px !important;
  }
  .call-float {
    bottom: 80px !important;
    left: 20px !important;
  }

  /* Padding-bottom on body so content doesn't hide behind bar */
  body {
    padding-bottom: 70px !important;
  }

  /* Task 1: Hide featured testimonial card on homepage on mobile */
  .featured-testimonial {
    display: none !important;
  }

  /* Task 3: Smaller floating Call & WhatsApp buttons on mobile */
  .call-float, .whatsapp-float, .float-btn {
    width: 48px !important;
    height: 48px !important;
    bottom: 76px !important;
  }
  .call-float i, .whatsapp-float i, .float-btn i {
    font-size: 18px !important;
    line-height: 48px !important;
  }

  /* Task 4: About page 'Delivering Expert Care with Heart' text left alignment */
  .why-choose-us .wcu-content h2 {
    text-align: left !important;
    font-size: 22px !important;
  }
  .why-choose-us .wcu-content p {
    text-align: left !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }
  .why-choose-us .wcu-content {
    text-align: left !important;
  }

  /* Task 5: About page image gallery horizontal scroll and sizing */
  .gallery-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 0 20px 16px !important;
    margin: 0 -20px !important;
    scrollbar-width: none !important; /* Firefox */
  }
  .gallery-grid::-webkit-scrollbar {
    display: none !important; /* Safari and Chrome */
  }
  .gallery-grid > div {
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    width: 240px !important;
    height: 180px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .gallery-grid img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 16px !important;
  }

  /* Task 6: About page — Trust/Respect/Integrity cards (Stitch layout) */
  .wcu-grid,
  [data-purpose="values-list"],
  .values-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    overflow: hidden !important;
    grid-template-columns: unset !important;
    padding: 0 !important;
  }
  .wcu-grid > *,
  [data-purpose="values-list"] > *,
  .values-grid > * {
    width: 90% !important;
    max-width: 340px !important;
    grid-column: unset !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  .value-card,
  [data-purpose="values-list"] .bg-white {
    background: white !important;
    border-radius: 24px !important;
    padding: 16px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
    border: 1px solid var(--border-light) !important;
  }
  .value-card .service-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    color: white !important;
    background: var(--accent) !important;
    margin: 0 auto 12px !important;
  }
  .value-card .service-icon i {
    font-size: 18px !important;
    color: white !important;
    line-height: 40px !important;
  }
  .value-card h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 12px !important;
  }
  .value-card .feature-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin: 0 !important;
    width: 100% !important;
    text-align: left !important;
  }
  .value-card .feature-list li {
    font-size: 12px !important;
    line-height: 1.4 !important;
    text-align: left !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin: 0 0 6px 0 !important;
    width: 100% !important;
  }

  /* Task 7: Contact page details cards alignment */
  .info-card {
    align-items: flex-start !important;
  }

  /* Task 8: Contact page map layout size */
  .map-section {
    padding: 0 16px 24px !important;
  }
  .map-container iframe {
    height: 200px !important;
    border-radius: 12px !important;
  }

  /* Task 9: Doctor Profile page credentials and hours Stitch styling */
  [data-purpose="credentials-and-hours"] {
    display: block !important;
    width: 100% !important;
  }
  [data-purpose="credentials-and-hours"] > div {
    background: #f0f7f0 !important;
    border-radius: 20px !important;
    padding: 20px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    margin-bottom: 16px !important;
  }
  [data-purpose="credentials-and-hours"] h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    text-align: left !important;
    color: var(--primary) !important;
  }
  [data-purpose="credentials-and-hours"] .flex {
    display: flex !important;
    gap: 14px !important;
    text-align: left !important;
    padding: 8px 0 !important;
    align-items: flex-start !important;
  }
  [data-purpose="credentials-and-hours"] p.font-bold {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: var(--primary) !important;
  }
  [data-purpose="credentials-and-hours"] p.text-sm {
    font-size: 12px !important;
    color: rgba(15,59,37,0.6) !important;
    margin: 0 !important;
  }

  /* Dr. Susheel — all pages — full face visible */
  .hero-image img:first-child,
  .hero-photos img:first-child,
  .doctor-card img,
  .team-card img,
  .doc-profile-img,
  .doc-profile-hero img,
  .doctor-profile img,
  .about-doctor-img,
  .about-image img,
  .mission-img img,
  .doctor-profile-card img,
  .wcu-image img {
    object-fit: cover !important;
    object-position: top center !important;
  }

  /* Dr. Harsh Pandey card — upper face cut fix */
  .doctors-grid > *:last-child img,
  .doctor-card:last-child img,
  .doctor-profile-card:last-child img {
    object-position: 50% 15% !important;
  }

  /* Mobile-only image swap to newdr.jpeg for Dr. Susheel */
  .hero-image img:first-child,
  .doctor-card:first-child img,
  .doctor-profile-card:first-of-type img,
  .wcu-image img[src*="last copy.jpeg"],
  .doc-profile-img[src*="finaldr.jpeg"],
  .doc-identity-section img[src*="finaldr.jpeg"] {
    content: url("../logo/updated%20services%20photos/newdr.jpeg") !important;
    object-fit: cover !important;
    object-position: top center !important;
  }
}

.mobile-bottom-nav {
  display: none;
}

/* Desktop styles for doctors grid to display in a single horizontal row */
@media (min-width: 1025px) {
  /* Grid — all 4 cards same height in a row */
  .doctors-grid, .team-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    padding: 0 16px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  /* Card container */
  .doctor-card, .team-card, .doctors-grid > * {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: white !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
    padding: 0 !important;
  }

  /* Photo container — top half of card, fixed height */
  .doctor-card img, .team-card img,
  .doctor-card .doctor-photo, .team-card .doctor-photo,
  .doctor-card .card-img-zoom img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 0 !important;
    display: block !important;
    flex-shrink: 0 !important;
  }

  /* Text content area */
  .doctor-card .card-body, .doctor-card .doctor-info,
  .doctor-card .doc-info,
  .team-card .card-body, .team-card .card-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 16px 20px !important;
    text-align: center !important;
  }

  /* Doctor name */
  .doctor-card h3, .doctor-card h2,
  .team-card h3, .team-card h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
  }

  /* Qualification/MDS line */
  .doctor-card .qualification, .doctor-card .doc-qual,
  .doctor-card .specialty:first-of-type,
  .team-card .qualification {
    font-size: 12px !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
    color: var(--health-accent) !important;
  }

  /* Speciality text */
  .doctor-card .speciality, .doctor-card .specialty,
  .doctor-card p, .team-card p {
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
    flex: 1 !important;
  }

  /* Hide extra info like BDS MDS, Registration, Experience 
     from homepage cards only — keep on doctor.html */
  .doctors-grid .doctor-card .extra-info,
  .doctors-grid .doctor-card .doc-credentials,
  .doctors-grid .doctor-card .experience-line,
  .doctors-grid .doctor-card .experience,
  .doctors-grid .doctor-card:first-child .specialty:nth-of-type(2) {
    display: none !important;
  }

  /* Button — pinned to bottom, full width */
  .doctor-card .btn, .doctor-card a[class*='btn'],
  .team-card .btn, .team-card a[class*='btn'] {
    margin-top: auto !important;
    width: 100% !important;
    text-align: center !important;
    border-radius: 50px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    overflow: hidden !important;
  }
}

/* Align "Learn More" buttons vertically to sit at the same height across all service cards */
.service-card, [class*="service"][class*="card"] {
  display: flex !important;
  flex-direction: column !important;
}

.service-card > div, [class*="service"][class*="card"] > div {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.service-card .btn, .service-card a[class*="btn"],
.service-card .learn-more, [class*="service"][class*="card"] .btn {
  margin-top: auto !important;
  align-self: stretch !important;
}

/* ═══════════════════════════════════════════
   CLINIC HORIZONTAL SCROLL PHOTO GALLERY
   ═══════════════════════════════════════════ */
.clinic-scroll-wrapper {
  position: relative;
  width: 100%;
}

.clinic-photo-strip {
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent, #0A7EA4) rgba(0,0,0,0.08);
  cursor: grab;
}

.clinic-photo-strip:active {
  cursor: grabbing;
}

.clinic-photo-strip::-webkit-scrollbar {
  height: 6px;
}
.clinic-photo-strip::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.06);
  border-radius: 10px;
}
.clinic-photo-strip::-webkit-scrollbar-thumb {
  background: var(--accent, #0A7EA4);
  border-radius: 10px;
}

.clinic-photo-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinic-photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.16);
}

.clinic-photo-item img {
  width: 320px;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.clinic-photo-item:hover img {
  transform: scale(1.04);
}

.scroll-hint {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-secondary, #6B7A8D);
  letter-spacing: 0.3px;
  opacity: 0.8;
}

.scroll-hint i {
  margin-right: 6px;
  color: var(--accent, #0A7EA4);
}

@media (max-width: 768px) {
  .clinic-photo-item {
    flex: 0 0 260px;
  }
  .clinic-photo-item img {
    width: 260px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .clinic-photo-item {
    flex: 0 0 220px;
  }
  .clinic-photo-item img {
    width: 220px;
    height: 170px;
  }
}

/* ═══════════════════════════════════════════
   LOGO IMAGE IN NAVBAR / FOOTER
   ═══════════════════════════════════════════ */
.logo img {
  width: auto !important;
  height: 80px !important;
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
}

/* On mobile, slightly smaller logo for better fit */
@media (max-width: 768px) {
  .logo img {
    width: 48px;
    height: 48px;
  }
}

/* Footer logo on dark background — invert to white */
.footer .logo img,
footer .logo img {
  filter: brightness(0) invert(1);
}

/* ═══════════════════════════════════════════
   NAVBAR BRAND / LOGO RESTRUCTURED LAYOUT
   ═══════════════════════════════════════════ */
.navbar-brand, .nav-logo-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.navbar-brand img, .nav-logo img {
  height: 80px !important;
  width: auto !important;
  flex-shrink: 0 !important;
}

.navbar-brand .brand-text, .nav-brand-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

@media (max-width: 768px) {
  .navbar-brand img, .nav-logo img {
    height: 50px !important;
  }
  .navbar-brand .brand-text span:first-child {
    font-size: 16px !important;
  }
  .navbar-brand .brand-text span:nth-child(2) {
    font-size: 9px !important;
  }
  .navbar-brand .brand-text span:nth-child(3) {
    font-size: 7px !important;
  }
}

.doctor-card img,
.team-card img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
}

.hero-section, .hero, section[class*='hero'] {
  padding-bottom: 60px !important;
  overflow: hidden !important;
  align-items: flex-start !important;
}

.hero-image, .hero-images, .hero-photos, .hero-right,
.hero-section .image-grid, .hero-section .photos-grid {
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
  align-self: center !important;
}

/* Doctor card fixes */
.doctor-card p,
.doctor-card .speciality,
.doctor-card .specialty,
.doctor-card .specialty-line {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1.4 !important;
}

.doctors-grid > *:last-child .speciality,
.doctors-grid > *:last-child .specialty,
.doctors-grid > *:last-child p,
.doctor-card:last-child .speciality,
.doctor-card:last-child .specialty {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (min-width: 992px) {
  .hero-section .hero-image img {
    height: 100% !important;
  }
}

/* Add a gap above Request Consultation button */
.doctor-card .specialty:last-of-type,
.doctor-card .speciality:last-of-type {
  margin-bottom: 16px !important;
}

/* Doctor card alignment & spacing fixes */
.doctor-card .specialty,
.doctor-card .speciality {
  flex: none !important;
}

/* Ensure the specialty description has consistent height across the 3 MDS doctors */
.doctor-card:not(:first-child) .specialty:nth-of-type(2),
.doctor-card:not(:first-child) .speciality:nth-of-type(2) {
  min-height: 52px !important;
}

/* Remove any borders/margins/padding on Dr. Susheel's photo and container */
.doctors-grid .doctor-card:first-child .card-img-zoom,
.doctors-grid .doctor-card:first-child img {
  border: none !important;
  border-top: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Shift the image slightly down to hide the black line in the original last.jpeg */
.doctors-grid .doctor-card:first-child img {
  object-position: center 6px !important;
}

/* ============================================
   Hero Image Grid — Universal Fix (All Breakpoints)
   Layout: 2-col grid, left photo spans full height,
   right side has 2 stacked photos.
   ============================================ */

/* All screens — base grid fix */
.hero-image {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 12px !important;
}

.hero-image img:first-child {
  grid-row: 1 / 3 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  border-radius: 16px !important;
}

.hero-image img:nth-child(2),
.hero-image img:nth-child(3) {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  display: block !important;
}

/* Desktop large (1025px+) */
@media (min-width: 1025px) {
  .hero-section {
    min-height: auto !important;
    height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 60px !important;
    align-items: center !important;
    overflow: hidden !important;
  }
  .hero-grid, .container.hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 48px !important;
    align-items: center !important;
    width: 100% !important;
  }
  .hero-content {
    width: 100% !important;
    max-width: none !important;
  }
  .hero-image {
    height: 520px !important;
  }
}

/* Windows laptop / medium desktop (1024px–1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .hero-image {
    height: 460px !important;
  }
}

/* Tablet (768px–1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-image {
    height: 420px !important;
  }
  .hero-section {
    min-height: auto !important;
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }

  /* ── Navbar tablet fix ── */

  /* Navbar overall */
  .navbar, header.navbar {
    padding: 10px 20px !important;
    align-items: center !important;
  }

  /* Logo + brand name container */
  .logo.navbar-brand {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    max-width: 240px !important;
  }

  /* Logo image smaller */
  .logo.navbar-brand img {
    height: 45px !important;
    width: auto !important;
    flex-shrink: 0 !important;
  }

  /* Clinic name text */
  .logo.navbar-brand .brand-text span:first-child {
    font-size: 14px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Tagline + sub-tagline smaller */
  .logo.navbar-brand .brand-text span:nth-child(2) {
    font-size: 10px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
  .logo.navbar-brand .brand-text span:nth-child(3) {
    font-size: 8px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  /* Nav links — horizontal row, tighter spacing */
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 6px 10px !important;
  }

  /* All nav link items same compact size */
  .nav-links > a {
    font-size: 13px !important;
    padding: 8px 10px !important;
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
  }

  /* Services dropdown button aligned */
  .nav-links .dropdown {
    display: flex !important;
    align-items: center !important;
  }

  .nav-links .dropdown > a {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 8px 10px !important;
    font-size: 13px !important;
  }
}

/* Mobile — single column stack (≤767px) */
@media (max-width: 767px) {
  .hero-image {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    gap: 10px !important;
  }
  .hero-image img:first-child {
    grid-row: unset !important;
    height: 300px !important;
  }
  .hero-image img:nth-child(2),
  .hero-image img:nth-child(3) {
    height: 200px !important;
  }
}

.trust-icons, .hero-trust, .trust-badges,
[class*='trust-icon'], [class*='trust-badge'] {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 16px !important;
}








