/* ==========================================================================
   POOJA SMILE CARE DENTAL CLINIC - MAIN STYLESHEET
   Brand Colors:
   - Primary Cyan / Aqua : #77e5e4
   - Secondary Deep Navy  : #014371
   - Crisp White         : #ffffff
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --primary: #77e5e4;
  --primary-dark: #2abebc;
  --primary-deep: #169f9d;
  --primary-light: #e6faf9;
  --primary-gradient: linear-gradient(135deg, #77e5e4 0%, #2abebc 100%);
  --primary-btn-gradient: linear-gradient(135deg, #4ed9d8 0%, #20b4b2 100%);
  
  --secondary: #014371;
  --secondary-light: #0d5992;
  --secondary-dark: #002e50;
  --secondary-deepest: #00223d;
  
  --accent-white: #ffffff;
  --accent-gold: #f59e0b;
  --accent-green: #25d366; /* WhatsApp */
  
  /* Neutral Colors */
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-main: #ffffff;
  --bg-subtle: #f4fafb;
  --bg-card: #ffffff;
  --border-color: #e2eef1;
  --border-light: #edf6f8;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(1, 67, 113, 0.06);
  --shadow-md: 0 4px 8px -1px rgba(1, 67, 113, 0.08), 0 2px 4px -2px rgba(1, 67, 113, 0.05);
  --shadow-lg: 0 12px 28px -4px rgba(1, 67, 113, 0.1), 0 6px 12px -4px rgba(1, 67, 113, 0.06);
  --shadow-xl: 0 20px 40px -6px rgba(1, 67, 113, 0.16), 0 10px 16px -6px rgba(1, 67, 113, 0.08);
  --shadow-glow: 0 10px 25px rgba(119, 229, 228, 0.4);
  --shadow-navy-glow: 0 10px 25px rgba(1, 67, 113, 0.25);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 90px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.bg-subtle {
  background-color: var(--bg-subtle);
}

.bg-navy {
  background-color: var(--secondary-dark);
  color: #ffffff;
}

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4, .bg-navy h5 {
  color: #ffffff;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Section Header */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--primary-light);
  color: var(--secondary);
  border: 1px solid rgba(119, 229, 228, 0.4);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-tag i {
  color: var(--primary-deep);
}

.section-tag.tag-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary);
  border: 1px solid rgba(119, 229, 228, 0.3);
  backdrop-filter: blur(8px);
}

.section-tag.tag-white i {
  color: var(--primary);
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--secondary);
}

@media (min-width: 992px) {
  .section-title {
    font-size: 2.85rem;
  }
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.bg-navy .section-subtitle {
  color: #cbd5e1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: #ffffff;
  box-shadow: var(--shadow-navy-glow);
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(1, 67, 113, 0.3);
  color: #ffffff;
}

.btn-cyan {
  background: var(--primary-btn-gradient);
  color: var(--secondary-dark);
  /* box-shadow: var(--shadow-glow); */
  font-weight: 800;
}

.btn-cyan:hover {
  background: linear-gradient(135deg, #20b4b2 0%, #179695 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0px 20px rgba(119, 229, 228, 0.2);
}

.btn-secondary {
  background: var(--secondary-dark);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline {
  border-color: var(--secondary);
  color: var(--secondary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--secondary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--primary-light);
  color: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1.02rem;
}

/* ==========================================================================
   HEADER & TOPBAR
   ========================================================================== */
.topbar {
  background-color: var(--secondary-dark);
  color: #e2e8f0;
  font-size: 0.83rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(119, 229, 228, 0.2);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-item svg, .topbar-item i {
  color: var(--primary);
  font-size: 0.95rem;
}

.topbar-item a:hover {
  color: var(--primary);
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(1, 67, 113, 0.08);
  border-bottom: 2px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(119, 229, 228, 0.3);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  width: auto;
  max-width: 250px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.02);
}

.footer-logo-img {

  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;

}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--secondary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #f0fcfa 0%, #ffffff 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(#77e5e4 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1.5px solid var(--primary);
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(119, 229, 228, 0.25);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-deep);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(119, 229, 228, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(119, 229, 228, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(119, 229, 228, 0); }
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.hero-title .highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, rgba(119, 229, 228, 0.4) 0%, rgba(119, 229, 228, 0.4) 100%);
  background-repeat: no-repeat;
  background-size: 100% 35%;
  background-position: 0 88%;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hero-doctor-snippet {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-color);
  max-width: fit-content;
}

.doctor-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--primary);
}

.doctor-snippet-info h4 {
  font-size: 0.96rem;
  margin-bottom: 2px;
  color: var(--secondary);
}

.doctor-snippet-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero Visual / Right Column */
.hero-visual-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid #ffffff;
  background: #ffffff;
}

.hero-image-card img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.02);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.floating-badge.badge-experience {
  top: 25px;
  left: -20px;
  border-left: 4px solid var(--primary);
}

.floating-badge.badge-rating {
  bottom: 35px;
  right: -20px;
  border-right: 4px solid var(--secondary);
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
}

.badge-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* ==========================================================================
   HIGHLIGHTS / STATS BAR
   ========================================================================== */
.stats-bar-section {
  position: relative;
  margin-top: -40px;
  z-index: 10;
}

.stats-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border-color);
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--secondary);
  border: 1px solid rgba(119, 229, 228, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  background: var(--secondary);
  color: var(--primary);
  transform: rotate(5deg) scale(1.05);
}

.stat-content h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
  color: var(--secondary);
}

.stat-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   ABOUT SECTION & DOCTOR PROFILE
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid #ffffff;
}

.about-main-img img {
  width: 100%;
  /* height: 480px;
  object-fit: cover; */
}

.about-exp-box {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--secondary);
  color: #ffffff;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-navy-glow);
  border: 2px solid var(--primary);
  text-align: center;
}

.about-exp-box .exp-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.about-exp-box .exp-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

.doctor-credentials-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin: 24px 0;
}

.doc-regn-badge {
  display: inline-block;
  background: #ffffff;
  color: var(--secondary);
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  margin-top: 4px;
}

.features-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .features-checklist {
    grid-template-columns: 1fr 1fr;
  }
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--secondary);
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--secondary);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES GRID (Smilico Theme Style)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 45px;
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(119, 229, 228, 0.6);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--secondary);
  border: 1.5px solid rgba(119, 229, 228, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--secondary);
  color: var(--primary);
  transform: rotate(6deg) scale(1.08);
}

.service-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #dbeafe;
  font-family: 'Outfit', sans-serif;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.55;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
  cursor: pointer;
}

.service-link:hover {
  color: var(--secondary-light);
  gap: 12px;
}

/* ==========================================================================
   ADVANCED EXPERIENCE / WHY CHOOSE US (Navy Banner Section)
   ========================================================================== */
.experience-banner {
  background: linear-gradient(135deg, #001f38 0%, #014371 100%);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}

.video-cta-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 12px rgba(119, 229, 228, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.video-cta-circle:hover {
  transform: scale(1.08);
  background: #ffffff;
  color: var(--secondary);
}

.banner-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 45px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.banner-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.banner-feat-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.banner-feature-item span {
  font-size: 0.98rem;
  font-weight: 600;
  color: #f1f5f9;
}

/* ==========================================================================
   BEFORE & AFTER SMILE TRANSFORMATION SECTION
   ========================================================================== */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 45px;
}

.trans-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.trans-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.trans-img-container {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  background: #f8fafc;
}

.trans-half {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trans-half img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trans-badge {
  position: absolute;
  bottom: 12px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  z-index: 2;
}

.trans-badge.before {
  left: 12px;
  background: rgba(1, 67, 113, 0.9);
  color: #ffffff;
}

.trans-badge.after {
  right: 12px;
  background: var(--primary);
  color: var(--secondary-dark);
  font-weight: 800;
}

.trans-split-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--primary);
  z-index: 3;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.trans-info {
  padding: 22px;
  text-align: center;
}

.trans-info h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--secondary);
}

.trans-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   APPOINTMENT BOOKING SECTION
   ========================================================================== */
.booking-section {
  position: relative;
  background: linear-gradient(135deg, #f0fcfa 0%, #e6f7f6 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .booking-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
}

.booking-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border-color);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.booking-card-header {
  margin-bottom: 26px;
}

.booking-card-header h3 {
  font-size: 1.65rem;
  margin-bottom: 6px;
  color: var(--secondary);
}

.booking-card-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

.booking-form .btn {
  white-space: normal;
  line-height: 1.35;
  width: 100%;
  max-width: 100%;
}

.form-group-full {
  grid-column: span 2;
}

@media (max-width: 640px) {
  .booking-form {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
}

.form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  font-size: 0.92rem;
  color: var(--text-main);
  background: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(119, 229, 228, 0.35);
}

.timings-info-card {
  background: var(--secondary);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(119, 229, 228, 0.3);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.timings-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(119, 229, 228, 0.2);
  color: var(--primary);
  border: 1px solid rgba(119, 229, 228, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
  width: fit-content;
}

.timings-slot-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
  width: 100%;
}

.timing-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.slot-name {
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slot-time {
  font-weight: 700;
  color: var(--primary);
}

.direct-call-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(119, 229, 228, 0.2);
  margin-top: 24px;
  width: 100%;
  box-sizing: border-box;
}

.call-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.direct-call-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.direct-call-title {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.direct-call-numbers {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  word-break: break-all;
}

.call-divider {
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
/* ==========================================================================
   TESTIMONIALS SECTION & SLIDER
   ========================================================================== */
.testimonials-slider-wrapper {
  position: relative;
  margin-top: 35px;
  padding: 10px 4px 15px;
}

.testimonials-slider {
  width: 100%;
  overflow: hidden;
  padding: 12px 6px 24px;
}

.testimonials-slider .swiper-wrapper {
  align-items: stretch;
}

.testimonials-slider .swiper-slide {
  height: auto;
  display: flex;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 22px;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--secondary);
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-details h4 {
  font-size: 0.98rem;
  margin-bottom: 2px;
  color: var(--secondary);
}

.reviewer-details p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Testimonial Controls (Prev, Dots, Next) */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.slider-btn:active {
  transform: translateY(0);
}

.testimonial-pagination {
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 8px;
  position: static !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--text-light);
  opacity: 0.35;
  border-radius: var(--radius-full);
  transition: var(--transition);
  margin: 0 !important;
  cursor: pointer;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 26px;
  background: var(--secondary);
  opacity: 1;
  border-radius: 6px;
}

.google-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: #ffffff;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-top: 40px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 45px;
}

@media (min-width: 992px) {
  .faq-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
  user-select: none;
  transition: var(--transition);
}

.faq-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
}

.faq-item.active .faq-header h4 {
  color: var(--secondary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--secondary);
  color: var(--primary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-body {
  padding: 0 24px 20px 24px;
  margin-bottom: 18px;
}

.faq-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   LOCATION & CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 45px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--secondary);
  border: 1px solid rgba(119, 229, 228, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--secondary);
}

.contact-card-text p, .contact-card-text a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-card-text a:hover {
  color: var(--secondary-light);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  height: 100%;
  min-height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--secondary-deepest);
  color: #cbd5e1;
  padding: 80px 0 30px;
  position: relative;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr;
  }
}

.footer-widget h4 {
  font-size: 1.18rem;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-link-item a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-contact-item svg, .footer-contact-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ==========================================================================
   CALL TO ACTION BANNER STRIP
   ========================================================================== */
.cta-banner-strip {
  background: var(--secondary);
  padding: 50px 0;
  color: #ffffff;
  border-top: 3px solid var(--primary);
}

.cta-strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-strip-title {
  font-size: 2.3rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.cta-strip-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.cta-strip-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-call-btn {
  border-color: var(--primary) !important;
  color: #ffffff !important;
}

.cta-call-btn:hover {
  background: var(--primary) !important;
  color: var(--secondary-dark) !important;
}

.about-cta-group {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & STICKY MOBILE BAR
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 30px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(1, 67, 113, 0.3);
  transition: var(--transition);
  font-size: 1.4rem;
}

.floating-btn.whatsapp-float {
  background: #25d366;
}

.floating-btn.call-float {
  background: var(--secondary);
  border: 1px solid var(--primary);
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
  color: #ffffff;
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(1, 67, 113, 0.12);
  padding: 10px 16px;
  z-index: 998;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 2px solid var(--primary);
}

/* ==========================================================================
   APPOINTMENT MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 34, 61, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--border-color);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* Off-canvas mobile menu */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  z-index: 1500;
  box-shadow: var(--shadow-xl);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 34, 61, 0.5);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-links a:hover {
  color: var(--secondary-light);
  padding-left: 6px;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (ALL BREAKPOINTS)
   ========================================================================== */

/* --- 1. Laptops & Small Desktops (max-width: 1199px) --- */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-menu {
    gap: 18px;
  }
}

/* --- 2. Tablets & iPads (max-width: 991px) --- */
@media (max-width: 991px) {
  .section-padding {
    padding: 65px 0;
  }
  .section-padding-sm {
    padding: 45px 0;
  }
  .section-title {
    font-size: 2.1rem;
  }

  /* Navigation */
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .navbar-container {
    height: 75px;
  }

  /* Topbar */
  .topbar-content {
    justify-content: center;
    text-align: center;
  }

  /* Hero Section */
  .hero-section {
    padding: 45px 0 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-image-card img {
    height: 380px;
  }
  .floating-badge.badge-experience {
    top: 15px;
    left: 10px;
  }
  .floating-badge.badge-rating {
    bottom: 20px;
    right: 10px;
  }

  /* Stats Section */
  .stats-bar-section {
    margin-top: 25px;
  }
  .stats-card-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 16px;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* .about-main-img img {
    height: 380px;

  } */
  .about-image-wrapper{
    width: 50%;
  }

  /* Booking & Timings */
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* FAQ & Contact */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .map-container {
    min-height: 320px;
  }

  /* CTA Strip */
  .cta-strip-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cta-strip-title {
    font-size: 2rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

/* --- 3. Mobile Phones & Phablets (max-width: 767px) --- */
@media (max-width: 767px) {
  body {
    padding-bottom: 65px;
  }

  /* Topbar & Navbar */
  .topbar {
    display: none !important;
  }
  .book-pc {
    display: none;
  }
  .navbar-container {
    height: 68px;
  }
  .brand-logo-img {
    max-width: 190px;
  }

  /* Hero */
  .hero-section {
    padding: 35px 0 45px;
    overflow: hidden;
  }
  .hero-badge-pill {
    font-size: 0.8rem;
    padding: 6px 14px;
    white-space: normal;
  }
  .hero-title {
    font-size: 1.95rem;
    letter-spacing: -0.4px;
  }
  .hero-desc {
    font-size: 0.96rem;
    margin-bottom: 24px;
  }
  .hero-visual-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
  }
  .hero-image-card {
    border-width: 4px;
  }
  .hero-image-card img {
    height: 280px;
  }
  .floating-badge {
    padding: 8px 12px;
    animation: none;
  }
  .floating-badge.badge-experience {
    top: 10px;
    left: 8px;
    right: auto;
  }
  .floating-badge.badge-rating {
    bottom: 10px;
    right: 8px;
    left: auto;
  }
  .badge-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  .badge-title {
    font-size: 0.9rem;
  }
  .badge-sub {
    font-size: 0.68rem;
  }

  /* Stats */
  .stats-card-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  /* About */
  .about-image-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .about-main-img img {
    height: 100%;
  }
  .about-exp-box {
    padding: 14px 18px;
    bottom: -15px;
    right: 15px;
  }
  .about-exp-box .exp-number {
    font-size: 1.9rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Transformations */
  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trans-img-container {
    height: 280px;
  }

  /* Booking & Timings Centering */
  .booking-section {
    padding: 50px 0;
  }
  .booking-grid {
    grid-template-columns: 100% !important;
    gap: 24px;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }
  .booking-card {
    padding: 24px 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .timings-info-card {
    padding: 24px 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .booking-form {
    grid-template-columns: 100% !important;
    width: 100% !important;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .booking-form .btn {
    white-space: normal;
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  /* Testimonials */
  .testimonials-slider {
    padding: 8px 2px 20px;
  }
  .review-card {
    padding: 24px 18px;
  }
  .review-text {
    font-size: 0.9rem;
  }

  /* Sticky Bottom Bar & Floating buttons */
  .mobile-bottom-bar {
    display: grid;
  }
  .floating-actions-container {
    bottom: 75px;
    right: 15px;
    gap: 10px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .site-footer {
    padding: 50px 0 25px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* --- 4. Small Mobile Screens (max-width: 480px) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .brand-logo-img {
    max-width: 170px;
  }
  .section-tag {
    font-size: 0.78rem;
    padding: 5px 14px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .about-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .about-cta-group .btn {
    width: 100%;
  }
  .cta-strip-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .cta-strip-actions .btn {
    width: 100%;
  }
  .timing-slot {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 14px;
  }
  .direct-call-badge {
    padding: 14px;
    gap: 12px;
    flex-direction: row;
    align-items: center;
  }
  .direct-call-numbers {
    font-size: 1.05rem;
  }
  .modal-card {
    padding: 22px 15px;
    border-radius: var(--radius-lg);
  }
  .modal-close-btn {
    top: 14px;
    right: 14px;
  }
  .google-trust-badge {
    padding: 8px 14px;
    font-size: 0.8rem;
    border-radius: 12px;
  }
  .google-trust-badge span {
    font-size: 0.82rem !important;
  }
  .mobile-nav-drawer {
    width: 85vw;
    padding: 24px 18px;
  }
}

/* ==========================================================================
   DROPDOWN NAVIGATION (DESKTOP & MOBILE)
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-icon {
  font-size: 0.72rem;
  margin-left: 4px;
  transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(1, 67, 113, 0.15);
  border: 1px solid var(--border-color);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-item i {
  color: var(--primary-deep);
  font-size: 0.85rem;
  width: 18px;
  text-align: center;
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--secondary);
  padding-left: 22px;
}

.dropdown-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 6px 0;
}

.mobile-sublinks {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  margin-top: 4px;
  margin-bottom: 8px;
  border-left: 2px solid var(--primary);
  gap: 6px;
}

.mobile-sublinks a {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
  padding: 4px 0 !important;
}

.mobile-sublinks a:hover {
  color: var(--secondary) !important;
}

/* ==========================================================================
   INNER PAGE HERO BANNER & BREADCRUMBS
   ========================================================================== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-deepest) 0%, var(--secondary) 60%, var(--secondary-light) 100%);
  color: #ffffff;
  padding: 90px 0 60px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(119, 229, 228, 0.18) 0%, rgba(1, 67, 113, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb-nav a {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-title {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.page-hero-subtitle {
  font-size: 1.12rem;
  color: #d1e4f3;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-quick-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-stat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: #ffffff;
}

.hero-stat-badge i {
  color: var(--primary);
}

/* ==========================================================================
   SERVICE DETAIL PAGE LAYOUT & SIDEBAR
   ========================================================================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-main-content {
  background: #ffffff;
}

.service-intro-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 36px;
}

/* Service Featured Lead Media (Top of Service Page) */
.service-lead-image-box {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(10, 49, 97, 0.08);
  border: 1px solid var(--border-color);
  background: #0f172a;
}

.service-lead-image-box img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-lead-image-box:hover img {
  transform: scale(1.03);
}

.service-lead-badge-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 49, 97, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-lead-badge-overlay i {
  color: var(--primary);
}

.service-lead-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 14px;
  background: linear-gradient(to top, rgba(10, 49, 97, 0.9) 0%, rgba(10, 49, 97, 0.4) 60%, transparent 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Service Contextual Clinical Case Gallery */
.service-case-gallery-section {
  margin: 40px 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.service-case-gallery-header {
  margin-bottom: 22px;
}

.service-case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.service-case-gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-case-gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.service-case-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0f172a;
}

.service-case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-case-gallery-card:hover .service-case-img-wrap img {
  transform: scale(1.06);
}

.service-case-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(10, 49, 97, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-case-card-body {
  padding: 12px 14px;
  background: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-case-card-body h5 {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 4px;
  font-weight: 700;
}

.service-case-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .service-lead-image-box img {
    height: 100%;
  }
  .service-case-img-wrap {
    height: 180px;
  }
}

.service-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.service-highlight-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-highlight-box:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.procedure-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
  position: relative;
}

.procedure-step-item {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.procedure-step-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.step-number-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--secondary-deepest);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-info h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.step-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Service Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.sidebar-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
  background: var(--bg-subtle);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.sidebar-menu-item:hover,
.sidebar-menu-item.active {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
}

.sidebar-menu-item.active i,
.sidebar-menu-item:hover i {
  color: var(--primary);
}

.sidebar-booking-card {
  background: linear-gradient(145deg, var(--secondary-deepest) 0%, var(--secondary) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.sidebar-booking-card h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.sidebar-booking-card p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ==========================================================================
   SIMPLE CLEAN PHOTO GALLERY & LIGHTBOX
   ========================================================================== */
.simple-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-photo-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 3;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-photo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.gallery-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-photo-item:hover img {
  transform: scale(1.06);
}

.gallery-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 42, 74, 0.5) 0%, rgba(1, 42, 74, 0) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-photo-item:hover .gallery-photo-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

.gallery-photo-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
}

.lightbox-next {
  right: 20px;
  top: 50%;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(0,0,0,0.55);
  padding: 6px 18px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .simple-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}

/* ==========================================================================
   DOCTOR FULL PROFILE & CLINIC INFRASTRUCTURE (ABOUT PAGE)
   ========================================================================== */
.about-hero-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
}

.doctor-bio-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.doctor-bio-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.infra-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.infra-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.infra-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--secondary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.infra-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.infra-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ PAGE ACCORDIONS & SEARCH
   ========================================================================== */
.faq-category-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.faq-cat-btn {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: #ffffff;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
}

/* ==========================================================================
   CONTACT PAGE FULL GRID & TRANSIT GUIDE
   ========================================================================== */
.transit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.transit-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.transit-icon {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.transit-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.transit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Responsive Overrides for Inner Pages */
@media (max-width: 991px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-card {
    grid-template-columns: 1fr;
  }
  .page-hero-title {
    font-size: 2.2rem;
  }
  .page-hero {
    padding: 70px 0 45px;
  }
}

@media (max-width: 767px) {
  .page-hero-title {
    font-size: 1.85rem;
  }
  .service-intro-card {
    padding: 22px 18px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-quick-stats {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
