/* ==========================================================================
   PREMIUM DENTAL - Modern Dental Clinic Design System & Stylesheet
   Color Palette inspired by TWO.png: Medical Teals, Deep Navy, Clean Whites
   ========================================================================== */

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

:root {
  /* Brand Primary Colors (Extracted from TWO.png) */
  --primary: #00A896;
  --primary-light: #02C39A;
  --primary-lighter: #E6FAF7;
  --primary-dark: #008779;
  --primary-gradient: linear-gradient(135deg, #00A896 0%, #02C39A 50%, #05DFB0 100%);
  --primary-glow: rgba(0, 168, 150, 0.35);
  --primary-soft: rgba(0, 168, 150, 0.1);

  /* Deep Brand Navy (Extracted from TWO.png typography) */
  --navy-950: #061322;
  --navy-900: #0B223D;
  --navy-800: #103158;
  --navy-700: #184273;
  --navy-600: #235B9C;
  --navy-gradient: linear-gradient(135deg, #061322 0%, #0B223D 60%, #103158 100%);

  /* Accents */
  --accent-gold: #F59E0B;
  --accent-gold-soft: rgba(245, 158, 11, 0.12);
  --accent-cyan: #06B6D4;
  --accent-emerald: #10B981;
  --accent-rose: #F43F5E;

  /* Neutrals & Surfaces */
  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --border-light: #E2E8F0;
  --border-subtle: rgba(226, 232, 240, 0.8);
  --border-focus: rgba(0, 168, 150, 0.5);

  /* Text Colors */
  --text-primary: #0B192C;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --text-inverse: #FFFFFF;
  --text-brand: #00A896;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-bg-dark: rgba(11, 34, 61, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);

  /* Elevation Shadows */
  --shadow-xs: 0 1px 2px rgba(11, 34, 61, 0.04);
  --shadow-sm: 0 2px 8px rgba(11, 34, 61, 0.06);
  --shadow-md: 0 8px 24px -4px rgba(11, 34, 61, 0.08), 0 4px 12px -2px rgba(11, 34, 61, 0.04);
  --shadow-lg: 0 16px 40px -8px rgba(11, 34, 61, 0.12), 0 8px 16px -4px rgba(11, 34, 61, 0.04);
  --shadow-xl: 0 24px 60px -12px rgba(11, 34, 61, 0.18);
  --shadow-glow: 0 0 35px rgba(0, 168, 150, 0.3);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1240px;
  --nav-height: 94px;
}

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

html {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  line-height: 1.6;
  position: relative;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  color: var(--navy-900);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

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

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-subtle {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6F9 50%, #F8FAFC 100%);
}

/* Badges & Pills */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--primary-lighter);
  color: var(--primary-dark);
  border: 1px solid rgba(0, 168, 150, 0.2);
  box-shadow: 0 2px 6px rgba(0, 168, 150, 0.08);
  margin-bottom: 16px;
}

.badge-pill.badge-navy {
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary-light);
  border-color: rgba(2, 195, 154, 0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 168, 150, 0.5); }
  50% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 168, 150, 0); }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px auto;
}

.section-header h2 {
  font-size: 2.65rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: 1.1rem;
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.btn:hover::after {
  left: 140%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 20px -2px rgba(0, 168, 150, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -2px rgba(0, 168, 150, 0.6);
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--navy-900);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.btn-call-primary {
  background: var(--navy-900);
  color: #FFFFFF;
  border-color: rgba(2, 195, 154, 0.3);
  box-shadow: 0 6px 22px rgba(11, 34, 61, 0.3);
}

.btn-call-primary:hover {
  background: var(--navy-800);
  border-color: var(--primary-light);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(11, 34, 61, 0.45);
}

.btn-call-pulse {
  animation: callGlow 3s infinite alternate;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 6px 20px -2px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee06e 0%, #0e7569 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -2px rgba(37, 211, 102, 0.6);
}

@keyframes callGlow {
  0% { box-shadow: 0 6px 20px -2px rgba(0, 168, 150, 0.4); }
  100% { box-shadow: 0 8px 26px 4px rgba(0, 168, 150, 0.65); }
}

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

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.top-bar {
  background: var(--navy-950);
  color: #94A3B8;
  font-size: 0.815rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CBD5E1;
  transition: color var(--transition-fast);
}

.top-info-item svg {
  color: var(--primary-light);
}

.top-info-item:hover {
  color: #FFFFFF;
}

.whatsapp-pill {
  background: rgba(37, 211, 102, 0.16);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.whatsapp-pill:hover {
  background: #25D366;
  color: #FFFFFF;
}

.emergency-pill {
  background: rgba(244, 63, 94, 0.15);
  color: #FDA4AF;
  border: 1px solid rgba(244, 63, 94, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.emergency-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F43F5E;
  animation: pulse-dot 1.5s infinite;
}

/* Main Navigation */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-smooth);
}

.header-nav.scrolled {
  box-shadow: var(--shadow-md);
  height: 80px;
  background: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Logo (Enlarged & Sharp) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.1));
  transition: transform var(--transition-bounce), height var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06) rotate(-2deg);
}

.header-nav.scrolled .brand-logo-img {
  height: 52px;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.05;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-logo-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--navy-900);
  padding: 8px 6px;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

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

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

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

.mobile-drawer-footer {
  display: none !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Header Direct WhatsApp Button */
.nav-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, 0.12);
  color: #128C7E;
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
}

.nav-whatsapp-btn:hover {
  background: #25D366;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* Header Direct Phone Button */
.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-900);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--primary-lighter);
  color: var(--primary-dark);
  border: 1px solid rgba(0, 168, 150, 0.2);
  transition: all var(--transition-fast);
}

.nav-phone-btn svg {
  color: var(--primary);
}

.nav-phone-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.nav-phone-btn:hover svg {
  color: #FFFFFF;
}

/* Hamburger Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--navy-900);
}

.hamburger {
  width: 26px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--navy-900);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background-color: var(--primary);
}
.mobile-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active .hamburger span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: var(--primary);
}

/* ==========================================================================
   HERO SECTION WITH ANIMATED SVG TOOTH
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 90px 0;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(2, 195, 154, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(11, 34, 61, 0.05) 0%, transparent 40%),
              #F8FAFC;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  color: var(--navy-950);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 34px;
  color: #475569;
  max-width: 530px;
}

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

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.1;
}

.metric-val span {
  color: var(--primary);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-top: 4px;
}

/* ==========================================================================
   HERO VISUAL & HOLOGRAPHIC LASER TOOTH STAGE
   ========================================================================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-stage-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  background: radial-gradient(circle at 50% 40%, rgba(240, 253, 249, 0.95) 0%, #FFFFFF 70%, #EFF6F9 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(0, 168, 150, 0.18), inset 0 0 40px rgba(2, 195, 154, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.hero-stage-card:hover {
  box-shadow: var(--shadow-xl), 0 0 70px rgba(0, 168, 150, 0.28);
}

/* Background Radiant Aurora & Halo */
.svg-bg-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(5, 223, 176, 0.35) 0%, rgba(2, 195, 154, 0.15) 45%, transparent 70%);
  border-radius: 50%;
  animation: breatheGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
  filter: blur(8px);
}

.svg-orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-outer {
  width: 440px;
  height: 440px;
  border: 1.5px dashed rgba(0, 168, 150, 0.28);
  animation: rotateSlow 24s linear infinite;
  box-shadow: 0 0 20px rgba(0, 168, 150, 0.08);
}

.ring-inner {
  width: 330px;
  height: 330px;
  border: 1px solid rgba(2, 195, 154, 0.22);
  animation: rotateSlow 18s linear infinite reverse;
}

@keyframes breatheGlow {
  0% { transform: scale(0.88); opacity: 0.55; }
  100% { transform: scale(1.18); opacity: 1; }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Dynamic Active Laser Whitening Scanner Beam */
.laser-scanner-line {
  position: absolute;
  left: 12%;
  width: 76%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #05DFB0 25%, #FFFFFF 50%, #02C39A 75%, transparent);
  box-shadow: 0 0 16px #05DFB0, 0 0 28px rgba(2, 195, 154, 0.9);
  border-radius: 50%;
  z-index: 5;
  pointer-events: none;
  animation: laserSweep 3.8s ease-in-out infinite alternate;
}

@keyframes laserSweep {
  0% { top: 18%; opacity: 0.1; transform: scaleX(0.6); }
  15% { opacity: 0.95; transform: scaleX(1); }
  85% { opacity: 0.95; transform: scaleX(1); }
  100% { top: 78%; opacity: 0.2; transform: scaleX(0.7); }
}

/* Interactive Animated SVG Tooth */
.tooth-svg-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: transform var(--transition-bounce);
}

.tooth-svg-wrapper:hover {
  transform: scale(1.06) translateY(-4px);
}

.interactive-svg-tooth {
  width: 275px;
  height: 275px;
  filter: drop-shadow(0 14px 30px rgba(0, 168, 150, 0.3));
  transition: all var(--transition-smooth);
}

.tooth-base-shape {
  animation: toothGleamBreathe 4s ease-in-out infinite alternate;
}

@keyframes toothGleamBreathe {
  0% { filter: drop-shadow(0 10px 20px rgba(0, 168, 150, 0.25)); }
  100% { filter: drop-shadow(0 18px 40px rgba(2, 195, 154, 0.55)); }
}

/* SVG Tooth Outline & Smile Animation */
.svg-tooth-outline {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             outlineGlow 3.5s ease-in-out 2.5s infinite alternate;
}

.svg-tooth-smile {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawPath 2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards,
             smilePulse 3s ease-in-out 2.6s infinite alternate;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes outlineGlow {
  0% { filter: drop-shadow(0 0 2px rgba(0, 168, 150, 0.4)); }
  100% { filter: drop-shadow(0 0 10px rgba(5, 223, 176, 0.85)); }
}

@keyframes smilePulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(2, 195, 154, 0)); }
  100% { transform: scale(1.02); filter: drop-shadow(0 0 8px rgba(2, 195, 154, 0.7)); }
}

/* Sparkle Particle Constellation */
.svg-sparkle {
  transform-origin: center;
}

.sparkle-1 { animation: sparkleGleam 2.2s ease-in-out infinite 0s; }
.sparkle-2 { animation: sparkleGleam 2.7s ease-in-out infinite 0.7s; }
.sparkle-3 { animation: sparkleGleam 2.4s ease-in-out infinite 1.3s; }
.sparkle-4 { animation: sparkleGleam 3.0s ease-in-out infinite 1.9s; }

@keyframes sparkleGleam {
  0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
  50% { transform: scale(1.25) rotate(90deg); opacity: 1; filter: drop-shadow(0 0 10px #F59E0B); }
}

/* Floating Trust Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 4px 14px rgba(0, 168, 150, 0.08);
  border: 1px solid var(--glass-border);
  z-index: 6;
  transition: transform var(--transition-bounce);
}

.floating-badge:hover {
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: var(--shadow-xl), 0 6px 20px rgba(0, 168, 150, 0.18);
}

.badge-top-right {
  top: 10px;
  right: -8px;
  animation: floatPhysics 5s ease-in-out infinite alternate;
}

.badge-bottom-left {
  bottom: 24px;
  left: -8px;
  animation: floatPhysics 6s ease-in-out infinite 1.2s alternate;
}

.badge-mid-right {
  bottom: 110px;
  right: -8px;
  padding: 8px 14px;
  animation: floatPhysics 5.5s ease-in-out infinite 2.2s alternate;
}

.badge-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-lighter);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon-box.gold {
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
}

.badge-icon-box.emerald {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
}

.badge-text-bold {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
}

.badge-text-sub {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

/* Click to Sparkle Interactive Hint */
.tooth-action-hint {
  position: absolute;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-dark);
  border: 1px solid rgba(0, 168, 150, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  animation: bounceSubtle 3s infinite ease-in-out;
  z-index: 6;
}

.hint-sparkle-icon {
  font-size: 0.9rem;
}

@keyframes bounceSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes floatPhysics {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-14px); }
}

/* ==========================================================================
   QUICK CALL ACTION BANNER
   ========================================================================== */
.quick-call-strip {
  background: var(--navy-gradient);
  color: #FFFFFF;
  padding: 24px 0;
  box-shadow: 0 4px 20px rgba(11, 34, 61, 0.2);
}

.quick-call-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.quick-call-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.call-pulse-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(2, 195, 154, 0.2);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(2, 195, 154, 0.4);
  animation: pulse-dot 2.5s infinite ease-in-out;
}

.quick-call-info h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.quick-call-info p {
  color: #CBD5E1;
  font-size: 0.925rem;
}

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

/* ==========================================================================
   CLINIC SHOWCASE & TEAM GALLERY (AI-ENHANCED REAL PHOTOS)
   ========================================================================== */
.clinic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.gallery-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 168, 150, 0.4);
}

.gallery-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #E2E8F0;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-badge-pill {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(11, 34, 61, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-badge-pill svg {
  color: var(--primary-light);
}

.gallery-content {
  padding: 26px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gallery-content h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--navy-900);
}

.gallery-content p {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================================================
   SERVICES SECTION (CARDS WITH ANIMATED SVG ICONS)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 168, 150, 0.3);
}

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

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-bounce);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary-gradient);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 168, 150, 0.35);
}

.service-icon-wrap svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  transition: color var(--transition-fast);
}

.service-card:hover .service-icon-wrap svg {
  color: #FFFFFF;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  margin-bottom: 22px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--navy-800);
  font-weight: 500;
  margin-bottom: 8px;
}

.service-features-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition-fast);
}

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

/* ==========================================================================
   BEFORE & AFTER SMILE MAKEOVER SLIDER
   ========================================================================== */
.transformation-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF9 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.comparison-info h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.comparison-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.procedure-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.proc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  border: 1px solid var(--border-light);
}

.proc-pill svg {
  color: var(--primary);
}

.split-viewer-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  border: 4px solid #FFFFFF;
}

.split-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-after {
  z-index: 1;
}

.split-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.split-before-wrap .split-image {
  width: 100%;
  max-width: none;
}

.split-tag {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 4;
}

.split-tag-before {
  left: 16px;
  background: rgba(11, 34, 61, 0.85);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.split-tag-after {
  right: 16px;
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.4);
}

.split-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #FFFFFF;
  z-index: 5;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.split-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  transition: transform var(--transition-fast);
}

.split-handle:hover, .split-handle.dragging {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--primary);
  color: #FFFFFF;
}

.split-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   DOCTORS & CLINIC SPECIALISTS
   ========================================================================== */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}

.doctor-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 168, 150, 0.4);
}

.doctor-image-wrapper {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.doctor-card:hover .doctor-image {
  transform: scale(1.05);
}

.doctor-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.doctor-badge-overlay svg {
  color: var(--primary-light);
}

.doctor-details {
  padding: 32px;
}

.doctor-name {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.doctor-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.doctor-bio {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.doctor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.cred-tag {
  font-size: 0.775rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-subtle);
  border-radius: var(--radius-xs);
  color: var(--navy-800);
}

/* Clinic Environment Banner */
.clinic-showcase-box {
  margin-top: 56px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid #FFFFFF;
}

.clinic-showcase-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.clinic-showcase-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 34, 0.2) 0%, rgba(6, 19, 34, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  color: #FFFFFF;
}

.clinic-showcase-content h3 {
  color: #FFFFFF;
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.clinic-showcase-content p {
  color: #CBD5E1;
  max-width: 600px;
  font-size: 1.05rem;
}

.clinic-features-row {
  display: flex;
  gap: 32px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.clinic-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.clinic-feat-item svg {
  color: var(--primary-light);
}

/* ==========================================================================
   LOCATION & EMBEDDED GOOGLE MAP SECTION
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: stretch;
}

.location-details-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  background: #ECFDF5;
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-bottom: 16px;
  width: fit-content;
}

.loc-clinic-name {
  font-size: 1.8rem;
  color: var(--navy-900);
  margin-bottom: 24px;
}

.loc-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.loc-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-lighter);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-item strong {
  font-size: 0.95rem;
  color: var(--navy-900);
  display: block;
  margin-bottom: 4px;
}

.loc-item p {
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.loc-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.loc-call-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

/* Map Embed Container */
.map-embed-wrapper {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #FFFFFF;
}

.google-map-frame {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  border: 0;
}

.map-overlay-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  pointer-events: none;
}

/* ==========================================================================
   ONLINE BOOKING FORM
   ========================================================================== */
.booking-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
}

.booking-header {
  background: var(--navy-900);
  color: #FFFFFF;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.booking-header h3 {
  color: #FFFFFF;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.booking-header p {
  color: #94A3B8;
  font-size: 0.95rem;
}

.booking-body {
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  color: var(--navy-900);
  background: var(--bg-surface);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.booking-success-box {
  display: none;
  text-align: center;
  padding: 36px 20px;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-lighter);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   TESTIMONIALS & GOOGLE REVIEWS INTEGRATION
   ========================================================================== */
.google-badge-pill {
  background: #FFFFFF;
  color: var(--navy-900);
  border-color: #E2E8F0;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.google-rating-scorecard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  max-width: 520px;
  margin: 22px auto 0 auto;
  box-shadow: var(--shadow-sm);
}

.scorecard-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.score-val {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1;
}

.score-stars {
  color: #FBBC05;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1.2;
}

.score-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.scorecard-divider {
  width: 1px;
  height: 44px;
  background: var(--border-light);
}

.scorecard-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.score-badge {
  font-size: 0.825rem;
  font-weight: 700;
  color: #059669;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.score-loc {
  font-size: 0.775rem;
  color: var(--text-tertiary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 168, 150, 0.3);
}

.review-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #FBBC05;
  font-size: 1.15rem;
}

.google-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4285F4;
  background: rgba(66, 133, 244, 0.08);
  border: 1px solid rgba(66, 133, 244, 0.2);
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

.review-quote {
  font-size: 0.965rem;
  line-height: 1.65;
  color: var(--navy-900);
  font-style: italic;
  margin-bottom: 22px;
}

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

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-lighter);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.925rem;
}

.reviewer-treatment {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.google-reviews-action-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-google-action {
  gap: 10px;
  font-size: 0.925rem;
  padding: 12px 24px;
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER EXTRA COMPONENTS
   ========================================================================== */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 19, 34, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-footer {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.drawer-contact-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
}

.drawer-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.925rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.drawer-btn-call {
  background: var(--navy-900);
  color: #FFFFFF;
}

.drawer-btn-call:hover {
  background: var(--navy-800);
  color: #FFFFFF;
}

.drawer-btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
}

.drawer-info-note {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
  background: var(--bg-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   FOOTER & CONTACT
   ========================================================================== */
.footer-main {
  background: var(--navy-950);
  color: #CBD5E1;
  padding: 72px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 54px;
}

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

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 16px rgba(0, 168, 150, 0.28);
  transition: transform var(--transition-bounce);
}

.footer-logo-wrap:hover .footer-logo-img {
  transform: scale(1.08) rotate(-2deg);
}

.footer-brand-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94A3B8;
  max-width: 320px;
}

.footer-col h5 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

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

.hours-table {
  width: 100%;
  font-size: 0.85rem;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-table td {
  padding: 8px 0;
}

.hours-table td:first-child {
  color: #94A3B8;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #FFFFFF;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (DUAL CALL & WHATSAPP)
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-call-btn, .floating-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.925rem;
  letter-spacing: 0.02em;
  transition: all var(--transition-smooth);
  position: relative;
}

.floating-call-btn {
  background: var(--primary-gradient);
  box-shadow: 0 10px 30px rgba(0, 168, 150, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.floating-call-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(0, 168, 150, 0.65);
  color: #FFFFFF;
}

.floating-wa-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.floating-wa-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.65);
  color: #FFFFFF;
}

.floating-call-pulse {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary-light);
  opacity: 0.6;
  animation: pulse-ring 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.floating-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: pulse-ring 2s infinite cubic-bezier(0.25, 1, 0.5, 1) 1s;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE-FIRST OPTIMIZATION
   ========================================================================== */

/* Tablet & Medium Screens (max-width: 1080px) */
@media (max-width: 1080px) {
  :root {
    --nav-height: 80px;
  }

  .top-bar {
    display: none;
  }

  .brand-logo-img {
    height: 52px;
    width: auto;
    flex-shrink: 0;
  }

  .brand-logo-title {
    font-size: 1.35rem;
  }

  .brand-logo-sub {
    font-size: 0.65rem;
  }

  .nav-phone-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }

  .mobile-nav-backdrop {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px 20px 30px 20px;
    box-shadow: 0 20px 40px rgba(11, 34, 61, 0.18);
    border-bottom: 2px solid var(--border-light);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    gap: 4px;
    max-height: calc(100vh - var(--nav-height) - 20px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
    color: var(--navy-900);
    display: block;
  }

  .nav-link:hover, .nav-link.active {
    background: var(--primary-lighter);
    color: var(--primary-dark);
  }

  .nav-link::after {
    display: none;
  }

  .mobile-drawer-footer {
    display: flex !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .hero-stage-card {
    overflow: hidden;
    max-width: 440px;
    height: 420px;
    margin: 0 auto;
  }

  .ring-outer {
    width: 360px;
    height: 360px;
  }

  .ring-inner {
    width: 270px;
    height: 270px;
  }

  .svg-bg-glow {
    width: 310px;
    height: 310px;
  }

  .interactive-svg-tooth {
    width: 210px;
    height: 210px;
  }

  .badge-top-right {
    top: 12px;
    right: 12px;
  }

  .badge-bottom-left {
    bottom: 12px;
    left: 12px;
  }

  .badge-mid-right {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 28px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .booking-card {
    max-width: 100%;
  }

  .booking-header {
    padding: 26px 30px;
  }

  .booking-body {
    padding: 30px 26px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

/* Mobile & Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --nav-height: 74px;
  }

  body {
    padding-bottom: 76px; /* Clearance for mobile bottom action dock */
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section {
    padding: 52px 0;
    overflow-x: clip;
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 34px;
    padding: 0 8px;
  }

  .section-header h2 {
    font-size: clamp(1.75rem, 5.2vw, 2.2rem);
  }

  .section-header p {
    font-size: 0.96rem;
  }

  .header-nav {
    height: var(--nav-height);
    max-width: 100%;
  }

  .header-nav.scrolled {
    height: var(--nav-height);
  }

  .brand-logo {
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-logo-img {
    height: 46px;
    width: auto;
    flex-shrink: 0;
  }

  .brand-logo-text {
    min-width: 0;
    overflow: hidden;
  }

  .brand-logo-title {
    font-size: clamp(1.1rem, 4vw, 1.25rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-whatsapp-btn {
    padding: 6px 12px;
    font-size: 0.825rem;
    flex-shrink: 0;
  }

  .nav-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 24px 0 44px 0;
    overflow: hidden;
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-title {
    font-size: clamp(1.95rem, 6.5vw, 2.6rem);
    margin-bottom: 16px;
    word-break: break-word;
  }

  .hero-description {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    gap: 12px;
    margin-bottom: 26px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .hero-metrics {
    gap: 12px;
    padding-top: 18px;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
  }

  .metric-val {
    font-size: 1.5rem;
  }

  .metric-label {
    font-size: 0.72rem;
  }

  .hero-stage-card {
    height: 300px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden; /* Strictly prevent rings and aura from overflowing viewport */
  }

  .ring-outer {
    width: 260px;
    height: 260px;
  }

  .ring-inner {
    width: 190px;
    height: 190px;
  }

  .svg-bg-glow {
    width: 220px;
    height: 220px;
  }

  .interactive-svg-tooth {
    width: 150px;
    height: 150px;
  }

  .floating-badge {
    padding: 7px 12px;
    gap: 7px;
    border-radius: var(--radius-sm);
    max-width: calc(100% - 16px);
    box-sizing: border-box;
  }

  .badge-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .badge-icon-box svg {
    width: 14px;
    height: 14px;
  }

  .badge-text-bold {
    font-size: 0.76rem;
  }

  .badge-text-sub {
    font-size: 0.65rem;
  }

  .badge-top-right {
    top: 8px;
    right: 8px;
  }

  .badge-bottom-left {
    bottom: 8px;
    left: 8px;
  }

  .badge-mid-right {
    display: none; /* Hide middle right badge on mobile to prevent clutter and overflow */
  }

  .tooth-action-hint {
    bottom: 8px;
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  /* Quick Call Strip */
  .quick-call-strip {
    overflow: hidden;
    max-width: 100%;
  }

  .quick-call-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }

  .quick-call-info {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    width: 100%;
  }

  .quick-call-info h4 {
    font-size: 1.15rem;
  }

  .quick-call-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .quick-call-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Clinic Tour Grid */
  .clinic-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .gallery-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .gallery-img-wrap {
    height: 220px;
    width: 100%;
    max-width: 100%;
  }

  .gallery-content {
    padding: 18px 16px;
  }

  .gallery-content h4 {
    font-size: 1.15rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .service-card {
    padding: 24px 18px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .service-icon-wrap {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .service-icon-wrap svg {
    width: 24px;
    height: 24px;
  }

  .service-title {
    font-size: 1.2rem;
  }

  /* Comparison Smile Makeover Slider */
  .transformation-section {
    overflow: hidden;
    max-width: 100%;
  }

  .comparison-wrapper {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    gap: 22px;
  }

  .comparison-info h3 {
    font-size: 1.5rem;
  }

  .comparison-info p {
    font-size: 0.925rem;
  }

  .procedure-pill-list {
    gap: 6px;
    margin-bottom: 20px;
    width: 100%;
  }

  .proc-pill {
    padding: 5px 10px;
    font-size: 0.76rem;
    max-width: 100%;
  }

  .split-viewer-container {
    border-radius: var(--radius-md);
    border-width: 3px;
    touch-action: pan-y;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .split-tag {
    padding: 4px 8px;
    font-size: 0.68rem;
    top: 10px;
  }

  .split-tag-before {
    left: 10px;
  }

  .split-tag-after {
    right: 10px;
  }

  .split-handle {
    width: 36px;
    height: 36px;
  }

  .split-handle svg {
    width: 12px;
    height: 12px;
  }

  /* Doctors Grid */
  .doctors-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  .doctor-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  /* Clinic Showcase Banner */
  .clinic-showcase-box {
    margin-top: 36px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .clinic-showcase-img {
    height: 320px;
    width: 100%;
    object-fit: cover;
  }

  .clinic-showcase-content {
    padding: 24px 18px;
  }

  .clinic-showcase-content h3 {
    font-size: 1.35rem;
  }

  .clinic-showcase-content p {
    font-size: 0.925rem;
  }

  .clinic-features-row {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  /* Location & Google Map */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  .location-details-card {
    padding: 22px 18px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .loc-clinic-name {
    font-size: 1.35rem;
    margin-bottom: 16px;
  }

  .loc-item {
    gap: 12px;
    margin-bottom: 14px;
  }

  .loc-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    flex-shrink: 0;
  }

  .map-embed-wrapper {
    min-height: 280px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .google-map-frame {
    min-height: 280px;
    width: 100%;
    max-width: 100%;
  }

  .map-overlay-badge {
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  /* Appointment Booking Form */
  .booking-card {
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .booking-header {
    padding: 22px 18px;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .booking-header h3 {
    font-size: 1.35rem;
  }

  .booking-header p {
    font-size: 0.88rem;
  }

  .booking-body {
    padding: 22px 18px;
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
    width: 100%;
  }

  .form-control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Google Reviews Section */
  .google-rating-scorecard {
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .scorecard-divider {
    display: none;
  }

  .scorecard-right {
    text-align: center;
    align-items: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    max-width: 100%;
  }

  .review-card {
    padding: 20px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    word-break: break-word;
  }

  .google-reviews-action-strip {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-google-action {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-main {
    padding: 44px 0 20px 0;
    overflow: hidden;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 30px;
    width: 100%;
  }

  .footer-desc {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .hours-table {
    width: 100%;
    max-width: 100%;
  }

  .hours-table td {
    word-break: break-word;
    padding: 6px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    width: 100%;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* Mobile Bottom Floating Action Dock */
  .floating-actions-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px max(12px, env(safe-area-inset-bottom)) 14px;
    background: rgba(6, 19, 34, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.3);
    align-items: center;
    z-index: 1000;
  }

  .floating-call-btn, .floating-wa-btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 12px 10px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    border-width: 1.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .floating-call-pulse, .floating-wa-pulse {
    display: none; /* Hide pulse in bottom dock bar for cleaner UI */
  }
}

/* Small Smartphone Viewports (max-width: 480px) */
@media (max-width: 480px) {
  :root {
    --nav-height: 70px;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-logo-img {
    height: 42px;
  }

  .brand-logo-title {
    font-size: 1.15rem;
  }

  .brand-logo-sub {
    font-size: 0.58rem;
  }

  .nav-whatsapp-btn {
    padding: 5px 10px;
    font-size: 0.78rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.3rem);
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
  }

  .hero-metrics {
    justify-content: space-between;
    width: 100%;
    gap: 8px;
  }

  .metric-item {
    text-align: center;
  }

  .metric-val {
    font-size: 1.35rem;
  }

  .metric-label {
    font-size: 0.68rem;
  }

  .hero-stage-card {
    height: 260px;
    border-radius: var(--radius-md);
  }

  .ring-outer {
    width: 220px;
    height: 220px;
  }

  .ring-inner {
    width: 160px;
    height: 160px;
  }

  .svg-bg-glow {
    width: 190px;
    height: 190px;
  }

  .interactive-svg-tooth {
    width: 130px;
    height: 130px;
  }

  .badge-top-right {
    top: 6px;
    right: 6px;
    padding: 5px 9px;
  }

  .badge-bottom-left {
    bottom: 6px;
    left: 6px;
    padding: 5px 9px;
  }

  .badge-text-bold {
    font-size: 0.72rem;
  }

  .badge-text-sub {
    font-size: 0.62rem;
  }

  .comparison-wrapper {
    padding: 16px 12px;
    gap: 16px;
  }

  .comparison-info div[style*="display: flex"] {
    flex-direction: column;
    width: 100%;
  }

  .comparison-info div[style*="display: flex"] .btn {
    width: 100%;
    justify-content: center;
  }

  .split-tag {
    padding: 3px 7px;
    font-size: 0.65rem;
  }

  .gallery-img-wrap {
    height: 190px;
  }

  .gallery-content {
    padding: 16px 14px;
  }

  .service-card {
    padding: 20px 14px;
  }

  .location-details-card {
    padding: 18px 14px;
  }

  .loc-call-group a {
    font-size: 0.88rem;
    padding: 11px 14px;
  }

  .booking-header {
    padding: 18px 14px;
  }

  .booking-body {
    padding: 18px 14px;
  }

  .review-card {
    padding: 18px 14px;
  }

  .floating-btn-text {
    font-size: 0.8rem;
  }
}

/* Extra Small Viewports (max-width: 360px) */
@media (max-width: 360px) {
  .nav-whatsapp-btn span {
    display: none;
  }

  .nav-whatsapp-btn {
    padding: 7px;
    border-radius: 50%;
  }

  .brand-logo-img {
    height: 38px;
  }

  .brand-logo-title {
    font-size: 1.05rem;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .floating-call-btn, .floating-wa-btn {
    padding: 10px 4px;
    font-size: 0.76rem;
    gap: 4px;
  }

  .floating-call-btn svg, .floating-wa-btn svg {
    width: 16px;
    height: 16px;
  }
}

