/* ============================================
   STELLAR DENTAL & AESTHETICS - MAIN STYLESHEET
   Premium Dental Website CSS
   ============================================ */

/* ============================================
   PRELOADER - Premium Dental Animation
   ============================================ */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0a1628 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Exit Animation - Stars scatter outward */
.preloader.exit-animate .stars-container .star {
  animation: starScatter 0.8s ease-in forwards !important;
}

.preloader.exit-animate .logo-ring {
  animation: ringExitSpin 0.8s ease-in forwards !important;
}

.preloader.exit-animate .logo-ring-inner {
  animation: ringExitSpin 0.8s ease-in reverse forwards !important;
}

.preloader.exit-animate .preloader-logo-img {
  animation: logoExitZoom 0.8s ease-in forwards !important;
}

.preloader.exit-animate .preloader-brand,
.preloader.exit-animate .preloader-progress,
.preloader.exit-animate .preloader-text,
.preloader.exit-animate .preloader-messages {
  animation: fadeSlideDown 0.5s ease-in forwards !important;
}

@keyframes starScatter {
  0% { opacity: 1; transform: scale(1) translate(0, 0); }
  100% { opacity: 0; transform: scale(2) translate(var(--scatter-x, 100px), var(--scatter-y, -100px)); }
}

@keyframes ringExitSpin {
  0% { transform: rotate(0deg) scale(1); opacity: 1; }
  100% { transform: rotate(180deg) scale(1.5); opacity: 0; }
}

@keyframes logoExitZoom {
  0% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 25px rgba(76, 208, 223, 0.5)); }
  50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 60px rgba(76, 208, 223, 0.9)); }
  100% { transform: scale(1.3); opacity: 0; filter: drop-shadow(0 0 80px rgba(76, 208, 223, 0)); }
}

@keyframes fadeSlideDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(20px); }
}

/* Body scroll lock during preloader */
body.preloader-active {
  overflow: hidden;
  touch-action: none;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Animated Background Particles */
.preloader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.preloader-bg::before,
.preloader-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 208, 223, 0.08) 0%, transparent 70%);
  animation: preloaderFloat 8s infinite ease-in-out;
}

.preloader-bg::before {
  top: -150px;
  right: -150px;
}

.preloader-bg::after {
  bottom: -150px;
  left: -150px;
  animation-delay: -4s;
}

@keyframes preloaderFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 30px) scale(1.15); }
}

/* Main Preloader Content */
.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

/* Logo Animation Container */
.logo-container {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating Outer Ring */
.logo-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 3px solid transparent;
  border-top-color: #4cd0df;
  border-right-color: rgba(76, 208, 223, 0.3);
  border-radius: 50%;
  animation: ringRotate 2s linear infinite;
}

/* Rotating Inner Ring */
.logo-ring-inner {
  position: absolute;
  width: 245px;
  height: 245px;
  border: 3px solid transparent;
  border-top-color: #c9a962;
  border-left-color: rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  animation: ringRotate 2.5s linear infinite reverse;
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Logo Image */
.preloader-logo-img {
  position: relative;
  z-index: 2;
  width: 240px;
  animation: logoPulse 2.5s ease-in-out infinite;
}

.preloader-logo-img img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(76, 208, 223, 0.5));
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 25px rgba(76, 208, 223, 0.5));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(76, 208, 223, 0.7));
  }
}

/* Sparkle Effects */
.sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  animation: sparkle 2.5s ease-in-out infinite;
  z-index: 3;
}

.sparkle:nth-child(3) {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.sparkle:nth-child(4) {
  top: 20%;
  right: -5px;
  animation-delay: 0.5s;
}

.sparkle:nth-child(5) {
  bottom: 10%;
  right: 5%;
  animation-delay: 1s;
}

.sparkle:nth-child(6) {
  bottom: -5px;
  left: 45%;
  animation-delay: 1.5s;
}

.sparkle:nth-child(7) {
  top: 25%;
  left: -5px;
  animation-delay: 2s;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 15px #fff, 0 0 30px #4cd0df;
  }
}

/* Twinkling Stars Container */
.stars-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Individual Star */
.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0;
  animation: twinkle var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

/* Different star sizes */
.star.small {
  width: 6px;
  height: 6px;
}

.star.medium {
  width: 10px;
  height: 10px;
}

.star.large {
  width: 14px;
  height: 14px;
}

/* Star positions - scattered across screen + around logo (78 stars) */
/* Varied delays (0-2s) and durations (1.5-4s) for random appearance */
/* Edge stars - left side */
.star:nth-child(1) { top: 3%; left: 5%; --delay: 0s; --duration: 1.8s; }
.star:nth-child(2) { top: 12%; left: 3%; --delay: 0.7s; --duration: 2.5s; }
.star:nth-child(3) { top: 22%; left: 6%; --delay: 1.4s; --duration: 2.1s; }
.star:nth-child(4) { top: 33%; left: 4%; --delay: 0.3s; --duration: 3.2s; }
.star:nth-child(5) { top: 44%; left: 5%; --delay: 1.9s; --duration: 1.6s; }
.star:nth-child(6) { top: 55%; left: 3%; --delay: 0.5s; --duration: 2.8s; }
.star:nth-child(7) { top: 66%; left: 6%; --delay: 1.1s; --duration: 2.3s; }
.star:nth-child(8) { top: 77%; left: 4%; --delay: 1.7s; --duration: 1.9s; }
.star:nth-child(9) { top: 88%; left: 5%; --delay: 0.2s; --duration: 3.5s; }
/* Edge stars - right side */
.star:nth-child(10) { top: 5%; left: 94%; --delay: 0.8s; --duration: 2.2s; }
.star:nth-child(11) { top: 15%; left: 96%; --delay: 1.5s; --duration: 1.7s; }
.star:nth-child(12) { top: 26%; left: 93%; --delay: 0.1s; --duration: 2.9s; }
.star:nth-child(13) { top: 37%; left: 95%; --delay: 1.2s; --duration: 2.4s; }
.star:nth-child(14) { top: 48%; left: 97%; --delay: 0.6s; --duration: 3.1s; }
.star:nth-child(15) { top: 59%; left: 94%; --delay: 1.8s; --duration: 1.5s; }
.star:nth-child(16) { top: 70%; left: 96%; --delay: 0.4s; --duration: 2.6s; }
.star:nth-child(17) { top: 81%; left: 93%; --delay: 1.3s; --duration: 2s; }
.star:nth-child(18) { top: 92%; left: 95%; --delay: 0.9s; --duration: 3.3s; }
/* Top edge */
.star:nth-child(19) { top: 2%; left: 18%; --delay: 0.4s; --duration: 2.7s; }
.star:nth-child(20) { top: 4%; left: 35%; --delay: 1.6s; --duration: 1.8s; }
.star:nth-child(21) { top: 3%; left: 50%; --delay: 0s; --duration: 2.4s; }
.star:nth-child(22) { top: 5%; left: 65%; --delay: 1.1s; --duration: 3s; }
.star:nth-child(23) { top: 2%; left: 82%; --delay: 0.7s; --duration: 2.1s; }
/* Bottom edge */
.star:nth-child(24) { top: 95%; left: 15%; --delay: 1.3s; --duration: 2.5s; }
.star:nth-child(25) { top: 97%; left: 32%; --delay: 0.2s; --duration: 1.9s; }
.star:nth-child(26) { top: 94%; left: 50%; --delay: 1.8s; --duration: 3.4s; }
.star:nth-child(27) { top: 96%; left: 68%; --delay: 0.5s; --duration: 2.2s; }
.star:nth-child(28) { top: 93%; left: 85%; --delay: 1s; --duration: 1.6s; }
/* Scattered middle-left */
.star:nth-child(29) { top: 18%; left: 15%; --delay: 0.9s; --duration: 2.8s; }
.star:nth-child(30) { top: 28%; left: 20%; --delay: 1.5s; --duration: 2s; }
.star:nth-child(31) { top: 72%; left: 18%; --delay: 0.3s; --duration: 3.2s; }
.star:nth-child(32) { top: 82%; left: 22%; --delay: 1.7s; --duration: 1.7s; }
/* Scattered middle-right */
.star:nth-child(33) { top: 16%; left: 80%; --delay: 0.6s; --duration: 2.6s; }
.star:nth-child(34) { top: 25%; left: 85%; --delay: 1.2s; --duration: 2.3s; }
.star:nth-child(35) { top: 75%; left: 82%; --delay: 0s; --duration: 3s; }
.star:nth-child(36) { top: 85%; left: 78%; --delay: 1.4s; --duration: 1.9s; }
/* Around logo - outer ring */
.star:nth-child(37) { top: 30%; left: 30%; --delay: 0.1s; --duration: 2.4s; }
.star:nth-child(38) { top: 28%; left: 45%; --delay: 1.6s; --duration: 1.8s; }
.star:nth-child(39) { top: 30%; left: 55%; --delay: 0.8s; --duration: 2.9s; }
.star:nth-child(40) { top: 28%; left: 70%; --delay: 1.3s; --duration: 2.1s; }
.star:nth-child(41) { top: 35%; left: 28%; --delay: 0.4s; --duration: 3.3s; }
.star:nth-child(42) { top: 35%; left: 72%; --delay: 1.9s; --duration: 1.6s; }
.star:nth-child(43) { top: 45%; left: 25%; --delay: 0.7s; --duration: 2.5s; }
.star:nth-child(44) { top: 45%; left: 75%; --delay: 1.1s; --duration: 2.7s; }
.star:nth-child(45) { top: 55%; left: 25%; --delay: 1.5s; --duration: 2s; }
.star:nth-child(46) { top: 55%; left: 75%; --delay: 0.2s; --duration: 3.1s; }
.star:nth-child(47) { top: 65%; left: 28%; --delay: 1.8s; --duration: 1.7s; }
.star:nth-child(48) { top: 65%; left: 72%; --delay: 0.5s; --duration: 2.8s; }
.star:nth-child(49) { top: 70%; left: 30%; --delay: 1s; --duration: 2.3s; }
.star:nth-child(50) { top: 72%; left: 45%; --delay: 0.3s; --duration: 3.5s; }
.star:nth-child(51) { top: 70%; left: 55%; --delay: 1.4s; --duration: 1.9s; }
.star:nth-child(52) { top: 72%; left: 70%; --delay: 0.9s; --duration: 2.6s; }
/* Around logo - inner ring (closer to logo) */
.star:nth-child(53) { top: 35%; left: 38%; --delay: 0s; --duration: 2.2s; }
.star:nth-child(54) { top: 33%; left: 50%; --delay: 1.2s; --duration: 3s; }
.star:nth-child(55) { top: 35%; left: 62%; --delay: 0.6s; --duration: 1.8s; }
.star:nth-child(56) { top: 40%; left: 33%; --delay: 1.7s; --duration: 2.4s; }
.star:nth-child(57) { top: 40%; left: 67%; --delay: 0.3s; --duration: 2.9s; }
.star:nth-child(58) { top: 50%; left: 30%; --delay: 1.4s; --duration: 1.6s; }
.star:nth-child(59) { top: 50%; left: 70%; --delay: 0.8s; --duration: 3.2s; }
.star:nth-child(60) { top: 60%; left: 33%; --delay: 0.1s; --duration: 2.5s; }
.star:nth-child(61) { top: 60%; left: 67%; --delay: 1.9s; --duration: 2.1s; }
.star:nth-child(62) { top: 65%; left: 38%; --delay: 0.5s; --duration: 2.7s; }
.star:nth-child(63) { top: 67%; left: 50%; --delay: 1.1s; --duration: 1.9s; }
.star:nth-child(64) { top: 65%; left: 62%; --delay: 1.6s; --duration: 3.4s; }
/* Extra scattered stars for randomness */
.star:nth-child(65) { top: 8%; left: 28%; --delay: 0.7s; --duration: 2.3s; }
.star:nth-child(66) { top: 10%; left: 72%; --delay: 1.3s; --duration: 1.7s; }
.star:nth-child(67) { top: 20%; left: 40%; --delay: 0.2s; --duration: 3.1s; }
.star:nth-child(68) { top: 20%; left: 60%; --delay: 1.8s; --duration: 2s; }
.star:nth-child(69) { top: 80%; left: 40%; --delay: 0.4s; --duration: 2.8s; }
.star:nth-child(70) { top: 80%; left: 60%; --delay: 1s; --duration: 2.4s; }
.star:nth-child(71) { top: 90%; left: 28%; --delay: 1.5s; --duration: 1.8s; }
.star:nth-child(72) { top: 88%; left: 72%; --delay: 0.6s; --duration: 3.3s; }
/* Corner accent stars */
.star:nth-child(73) { top: 8%; left: 8%; --delay: 1.2s; --duration: 2.6s; }
.star:nth-child(74) { top: 8%; left: 92%; --delay: 0s; --duration: 2.1s; }
.star:nth-child(75) { top: 92%; left: 8%; --delay: 0.9s; --duration: 3s; }
.star:nth-child(76) { top: 92%; left: 92%; --delay: 1.7s; --duration: 1.5s; }
/* Final fill stars */
.star:nth-child(77) { top: 42%; left: 15%; --delay: 0.3s; --duration: 2.7s; }
.star:nth-child(78) { top: 58%; left: 85%; --delay: 1.4s; --duration: 2.2s; }

/* Twinkle Animation - random appear/sparkle/disappear effect */
@keyframes twinkle {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: scale(1.2) rotate(45deg);
    filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 15px #4cd0df);
  }
  30% {
    opacity: 1;
    transform: scale(0.8) rotate(90deg);
    filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 8px #4cd0df);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(180deg);
    filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #4cd0df);
  }
  70% {
    opacity: 1;
    transform: scale(0.9) rotate(270deg);
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #4cd0df);
  }
  90% {
    opacity: 0.5;
    transform: scale(0.5) rotate(340deg);
    filter: drop-shadow(0 0 3px #fff);
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}

/* Gold accent stars */
.star.gold {
  background: #c9a962;
  filter: drop-shadow(0 0 6px #c9a962);
}

/* Teal accent stars */
.star.teal {
  background: #4cd0df;
  filter: drop-shadow(0 0 6px #4cd0df);
}

/* Brand Text */
.preloader-brand {
  text-align: center;
}

.preloader-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 300;
}

/* Gujarati & Hindi preloader tagline fix - tighter spacing, slightly larger font */
body.lang-gu .preloader-tagline,
body.lang-hi .preloader-tagline {
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: none;
}

/* Progress Bar */
.preloader-progress {
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4cd0df 0%, #c9a962 50%, #4cd0df 100%);
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  border-radius: 10px;
  transition: width 0.3s ease-out;
}

@keyframes progressShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Percentage counter */
.preloader-percent {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: rgba(201, 169, 98, 0.9);
  letter-spacing: 3px;
  margin-top: 8px;
  font-weight: 400;
}

/* Rotating custom messages */
/* Rotating Messages Container */
.preloader-messages {
  position: relative;
  width: 100%;
  height: 20px;
  margin-top: -15px;
}

/* Each message - stacked via absolute, only .active is visible */
.preloader-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.preloader-message.active {
  opacity: 1;
  visibility: visible;
}

/* Letter-by-letter wave animation (same as CREATING SMILES) */
.preloader-message > span {
  display: inline-block;
  animation: textFade 1.5s ease-in-out infinite;
}

.preloader-message > span:nth-child(1) { animation-delay: 0s; }
.preloader-message > span:nth-child(2) { animation-delay: 0.05s; }
.preloader-message > span:nth-child(3) { animation-delay: 0.1s; }
.preloader-message > span:nth-child(4) { animation-delay: 0.15s; }
.preloader-message > span:nth-child(5) { animation-delay: 0.2s; }
.preloader-message > span:nth-child(6) { animation-delay: 0.25s; }
.preloader-message > span:nth-child(7) { animation-delay: 0.3s; }
.preloader-message > span:nth-child(8) { animation-delay: 0.35s; }
.preloader-message > span:nth-child(9) { animation-delay: 0.4s; }
.preloader-message > span:nth-child(10) { animation-delay: 0.45s; }
.preloader-message > span:nth-child(11) { animation-delay: 0.5s; }
.preloader-message > span:nth-child(12) { animation-delay: 0.55s; }
.preloader-message > span:nth-child(13) { animation-delay: 0.6s; }
.preloader-message > span:nth-child(14) { animation-delay: 0.65s; }
.preloader-message > span:nth-child(15) { animation-delay: 0.7s; }
.preloader-message > span:nth-child(16) { animation-delay: 0.75s; }
.preloader-message > span:nth-child(17) { animation-delay: 0.8s; }
.preloader-message > span:nth-child(18) { animation-delay: 0.85s; }
.preloader-message > span:nth-child(19) { animation-delay: 0.9s; }
.preloader-message > span:nth-child(20) { animation-delay: 0.95s; }
.preloader-message > span:nth-child(21) { animation-delay: 1.0s; }
.preloader-message > span:nth-child(22) { animation-delay: 1.05s; }
.preloader-message > span:nth-child(23) { animation-delay: 1.1s; }
.preloader-message > span:nth-child(24) { animation-delay: 1.15s; }
.preloader-message > span:nth-child(25) { animation-delay: 1.2s; }
.preloader-message > span:nth-child(26) { animation-delay: 1.25s; }
.preloader-message > span:nth-child(27) { animation-delay: 1.3s; }

/* Bouncing dots after the text */
.preloader-message .loading-dots {
  display: inline-flex;
  gap: 3px;
  margin-left: 6px;
}

.preloader-message .loading-dots span {
  width: 4px;
  height: 4px;
  background: #4cd0df;
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite !important;
}

.preloader-message .loading-dots span:nth-child(1) { animation-delay: 0s !important; }
.preloader-message .loading-dots span:nth-child(2) { animation-delay: 0.2s !important; }
.preloader-message .loading-dots span:nth-child(3) { animation-delay: 0.4s !important; }

/* Loading Text Animation */
.preloader-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.preloader-text span {
  animation: textFade 1.5s ease-in-out infinite;
}

.preloader-text span:nth-child(2) { animation-delay: 0.1s; }
.preloader-text span:nth-child(3) { animation-delay: 0.2s; }
.preloader-text span:nth-child(4) { animation-delay: 0.3s; }
.preloader-text span:nth-child(5) { animation-delay: 0.4s; }
.preloader-text span:nth-child(6) { animation-delay: 0.5s; }
.preloader-text span:nth-child(7) { animation-delay: 0.6s; }
.preloader-text span:nth-child(8) { animation-delay: 0.7s; }
.preloader-text span:nth-child(9) { animation-delay: 0.8s; }
.preloader-text span:nth-child(10) { animation-delay: 0.9s; }
.preloader-text span:nth-child(11) { animation-delay: 1s; }

.loading-dots {
  display: inline-flex;
  gap: 3px;
  margin-left: 5px;
}

.loading-dots span {
  width: 4px;
  height: 4px;
  background: #4cd0df;
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes textFade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; color: #4cd0df; }
}

@keyframes dotBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* Mobile Responsive - Preloader */
@media (max-width: 576px) {
  .logo-container {
    width: 200px;
    height: 200px;
  }

  .logo-ring {
    width: 200px;
    height: 200px;
  }

  .logo-ring-inner {
    width: 170px;
    height: 170px;
  }

  .preloader-logo-img {
    width: 170px;
  }

  .preloader-tagline {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  body.lang-gu .preloader-tagline,
  body.lang-hi .preloader-tagline {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .preloader-progress {
    width: 180px;
  }

  .sparkle {
    width: 8px;
    height: 8px;
  }
}

/* CSS Variables */
:root {
  /* Primary Colors from Logo */
  --primary-teal: #4cd0df;
  --primary-teal-dark: #3ab8c6;
  --primary-teal-light: #7ee0eb;
  --grey-blue: #7c919b;
  --text-dark: #56575c;

  /* Secondary Colors */
  --gold: #c9a962;
  --gold-light: #e0c988;
  --white: #ffffff;
  --off-white: #f8fafb;
  --light-grey: #f0f4f5;
  --medium-grey: #e5ebed;
  --dark-grey: #2d3436;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #4cd0df 0%, #3ab8c6 100%);
  --gradient-hero: linear-gradient(135deg, rgba(76, 208, 223, 0.95) 0%, rgba(58, 184, 198, 0.9) 100%);
  --gradient-dark: linear-gradient(180deg, #2d3436 0%, #1a1d1e 100%);

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-teal: 0 10px 40px rgba(76, 208, 223, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-grey);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

.text-highlight {
  color: var(--primary-teal);
}

.text-gold {
  color: var(--gold);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 960px;
}

.container-lg {
  max-width: 1400px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(76, 208, 223, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-teal);
  border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
  background: var(--primary-teal);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(201, 169, 98, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--dark-grey);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-teal);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.top-bar {
  background: var(--dark-grey);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
}

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

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

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  opacity: 0.9;
}

.top-bar-left a:hover {
  opacity: 1;
  color: var(--primary-teal);
}

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

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.9rem;
}

.social-links a:hover {
  background: var(--primary-teal);
  transform: translateY(-2px);
}

/* Main Header */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 15px;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link i.nav-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--primary-teal);
  background: rgba(0, 163, 157, 0.08);
  border-radius: 5px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.nav-link:hover i.nav-icon,
.nav-link.active i.nav-icon {
  background: var(--primary-teal);
  color: #fff;
}

.nav-link i.fa-chevron-down {
  font-size: 0.55rem;
  color: inherit;
  opacity: 0.5;
  margin-left: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-teal);
  background: rgba(0, 163, 157, 0.06);
}

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

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

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 100;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-item i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary-teal);
  background: rgba(0, 163, 157, 0.08);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(0, 163, 157, 0.04);
  color: var(--primary-teal);
}

.dropdown-item:hover i {
  background: var(--primary-teal);
  color: #fff;
}

/* Mega Menu */
.mega-menu {
  position: fixed;
  top: auto;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 800px;
  max-width: 90vw;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 100;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mega-menu-column h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu-column ul li {
  margin-bottom: 4px;
}

.mega-menu-column ul li a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mega-menu-column ul li a:hover {
  color: var(--primary-teal);
  background: rgba(0, 163, 157, 0.04);
}

.mega-menu-column ul li a i {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--primary-teal);
  background: rgba(0, 163, 157, 0.08);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-menu-column ul li a:hover i {
  background: var(--primary-teal);
  color: #fff;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-cta .btn-sm {
  font-size: 0.8rem;
  padding: 8px 14px;
  white-space: nowrap;
}

.emergency-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 59, 59, 0.1);
  border-radius: var(--radius-xl);
  color: #ff3b3b;
  font-weight: 600;
  font-size: 0.9rem;
}

.emergency-btn:hover {
  background: #ff3b3b;
  color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark-grey);
  transition: var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */

/* ============================================
   HERO SECTION — Cinematic Frame Animation
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a1628;
  overflow: hidden;
}

/* Canvas — full viewport, no crop */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Fallback static image */
.hero-canvas-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-canvas-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Overlay — heavier on left for text, lighter on right for smile */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.70) 35%,
    rgba(10, 22, 40, 0.25) 65%,
    rgba(10, 22, 40, 0.15) 100%
  );
}

/* Bottom edge blend into next section */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #0a1628 0%, transparent 100%);
  pointer-events: none;
}

/* Inner layout — fills exactly 100vh */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5% 0;
  padding-top: 18vh;
}

/* Text block — left-aligned, compact */
.hero-text {
  color: var(--white);
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(76, 208, 223, 0.12);
  border: 1px solid rgba(76, 208, 223, 0.2);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  color: var(--primary-teal);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge i {
  font-size: 0.85rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--primary-teal);
  text-shadow: 0 0 40px rgba(76, 208, 223, 0.35);
}

.hero-title span[data-i18n="home.hero.titleOur"] {
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Stats bar — pushed to bottom of hero via margin-top auto */
.hero-bottom-bar {
  margin-top: auto;
  width: calc(100% + 10%);
  margin-left: -5%;
  margin-right: -5%;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 22px 5%;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.6) 60%, transparent 100%);
}

.hero-stat {
  text-align: center;
  color: var(--white);
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-teal);
  line-height: 1;
  margin-bottom: 3px;
}

.hero-stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.floating-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.1);
  border-radius: var(--radius-md);
  color: var(--primary-teal);
  font-size: 1.5rem;
}

.floating-card-content h4 {
  font-size: 0.95rem;
  font-family: var(--font-primary);
  margin-bottom: 2px;
}

.floating-card-content p {
  font-size: 0.8rem;
  color: var(--grey-blue);
  margin: 0;
}

/* ============================================
   SECTIONS COMMON STYLES
   ============================================ */

section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(76, 208, 223, 0.1);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--grey-blue);
  font-size: 1.1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  background: var(--off-white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-image-main {
  width: 85%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.about-image-secondary {
  position: absolute;
  width: 55%;
  bottom: -40px;
  right: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  z-index: 3;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-teal);
  z-index: 4;
}

.about-experience-badge .number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-content .section-badge {
  margin-bottom: 15px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content > p {
  color: var(--grey-blue);
  margin-bottom: 25px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.1);
  border-radius: var(--radius-md);
  color: var(--primary-teal);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 1rem;
  font-family: var(--font-primary);
  margin-bottom: 5px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--grey-blue);
  margin: 0;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-phone-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1.2rem;
}

.about-phone-text span {
  font-size: 0.8rem;
  color: var(--grey-blue);
  display: block;
}

.about-phone-text strong {
  font-size: 1.1rem;
  color: var(--dark-grey);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(76, 208, 223, 0.2);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.1);
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary-teal);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--grey-blue);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-teal);
}

.service-link i {
  transition: var(--transition-normal);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-choose {
  background: var(--light-grey);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 208, 223, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.why-choose .section-header {
  color: var(--dark-grey);
}

.why-choose .section-title {
  color: var(--dark-grey);
}

.why-choose .section-subtitle {
  color: var(--text-dark);
}

/* Why Choose - New Layout with Doctor Photo */
.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.why-choose-doctor {
  position: sticky;
  top: 120px;
}

.doctor-photo-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(76, 208, 223, 0.25);
  background: #ffffff;
}

.doctor-photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.doctor-photo-wrapper:hover img {
  transform: scale(1.03);
}

.doctor-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.9));
  padding: 40px 24px 20px;
  text-align: center;
}

.doctor-info-overlay h3 {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.doctor-info-overlay p {
  color: var(--primary-teal);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}

.doctor-quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--white);
  border-left: 3px solid var(--primary-teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.doctor-quote i {
  color: var(--primary-teal);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

.doctor-quote p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.why-choose-cards-side {
  /* wrapper for the grid */
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.why-choose-card {
  background: var(--white);
  border: 1px solid var(--medium-grey);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.why-choose-card:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(76, 208, 223, 0.4);
}

.why-choose-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.12);
  border-radius: var(--radius-full);
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--primary-teal-dark);
}

.why-choose-card h3 {
  color: var(--dark-grey);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.why-choose-card p {
  color: var(--text-dark);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   CLINIC GALLERY SECTION
   ============================================ */

.clinic-gallery {
  background: var(--off-white);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-rows: 220px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-wide {
  grid-column: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
  color: white;
  font-size: 1.8rem;
  background: rgba(76, 208, 223, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

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

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

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(76, 208, 223, 0.3);
  border-color: var(--primary-teal);
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */

.locations {
  background: var(--off-white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.location-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.location-card:hover .location-image img {
  transform: scale(1.1);
}

.location-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
}

.location-content {
  padding: 30px;
}

.location-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.location-info {
  margin-bottom: 20px;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.location-info-item i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.1);
  border-radius: var(--radius-sm);
  color: var(--primary-teal);
  flex-shrink: 0;
}

.location-info-item span {
  font-size: 0.9rem;
  color: var(--grey-blue);
}

.location-buttons {
  display: flex;
  gap: 12px;
}

/* ============================================
   DENTAL TOURISM SECTION
   ============================================ */

.dental-tourism {
  background: linear-gradient(135deg, rgba(76, 208, 223, 0.05) 0%, rgba(201, 169, 98, 0.05) 100%);
  position: relative;
}

.dental-tourism .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tourism-content h2 {
  margin-bottom: 20px;
}

.tourism-content > p {
  color: var(--grey-blue);
  margin-bottom: 25px;
}

.tourism-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.tourism-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tourism-benefit i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1rem;
}

.tourism-benefit span {
  font-weight: 500;
}

.tourism-savings {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.tourism-savings h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--primary-teal);
}

.savings-comparison {
  display: flex;
  gap: 20px;
}

.savings-item {
  flex: 1;
  text-align: center;
  padding: 15px;
  border-radius: var(--radius-md);
  background: var(--light-grey);
}

.savings-item.highlight {
  background: rgba(76, 208, 223, 0.15);
}

.savings-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-blue);
  margin-bottom: 5px;
}

.savings-item strong {
  font-size: 1.3rem;
  color: var(--dark-grey);
}

.savings-item.highlight strong {
  color: var(--primary-teal);
}

.tourism-visual {
  position: relative;
}

.tourism-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.tourism-image img {
  width: 100%;
  height: auto;
}

.tourism-floating-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px 40px;
  box-shadow: var(--shadow-xl);
  display: flex;
  gap: 40px;
}

.tourism-stat {
  text-align: center;
}

.tourism-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-teal);
  line-height: 1;
}

.tourism-stat-label {
  font-size: 0.8rem;
  color: var(--grey-blue);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: var(--white);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  margin: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  color: var(--primary-teal);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}

.testimonial-rating i {
  color: var(--gold);
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--primary-teal);
}

.testimonial-info h4 {
  font-size: 1rem;
  font-family: var(--font-primary);
  margin-bottom: 3px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--grey-blue);
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog {
  background: var(--off-white);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--grey-blue);
  margin-bottom: 12px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-content h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.4;
}

.blog-content h3 a:hover {
  color: var(--primary-teal);
}

.blog-content p {
  font-size: 0.9rem;
  color: var(--grey-blue);
  margin-bottom: 15px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-teal);
}

.blog-link:hover {
  gap: 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   VENTURES SECTION
   ============================================ */

.ventures {
  background: var(--off-white);
  padding: 80px 0;
}

.ventures .section-header {
  margin-bottom: 50px;
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.venture-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.venture-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.venture-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.venture-logo img {
  max-height: 70px;
  max-width: 150px;
  object-fit: contain;
}

.venture-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  transition: var(--transition-normal);
}

.venture-card:hover .venture-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-teal);
}

.venture-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

.venture-card h4 span {
  color: var(--primary-teal);
  font-style: italic;
}

.venture-tag {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(76, 208, 223, 0.1);
  border: 1px solid var(--primary-teal);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  color: var(--primary-teal);
  margin-bottom: 15px;
  font-weight: 500;
}

.venture-card p {
  font-size: 0.85rem;
  color: var(--grey-blue);
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark-grey);
  color: var(--white);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 80px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.2);
  border-radius: var(--radius-sm);
  color: var(--primary-teal);
}

.footer-contact-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-family: var(--font-primary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-teal);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-teal);
  padding-left: 5px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--gold);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  gap: 12px;
}

.footer-hours li:last-child {
  border: none;
}

.footer-hours li span:first-child {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  min-width: 85px;
}

.footer-hours li span:last-child {
  text-align: right;
  white-space: nowrap;
  font-size: 0.85rem;
}

.footer-hours li span:first-child:empty {
  min-width: 85px;
}

.footer-bottom {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--primary-teal);
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

  .mega-menu {
    width: 700px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 70px;
  }

  .logo img {
    height: 100px;
  }

  /* Mobile Navigation - Slide-down overlay */
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9998;
    overflow-y: auto;
    padding: 100px 0 40px;
    -webkit-overflow-scrolling: touch;
  }

  .nav.active {
    display: block;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
    list-style: none;
  }

  .nav-item {
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link {
    padding: 16px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    white-space: normal;
  }

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

  .nav-link i.nav-icon {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .nav-link i.fa-chevron-down {
    margin-left: auto;
    font-size: 0.65rem;
    opacity: 0.4;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .nav-item.dropdown-open > .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
    opacity: 0.7;
  }

  /* Mobile Dropdown */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 0;
    display: none;
    min-width: unset;
    margin: 0 0 8px 0;
    overflow: hidden;
  }

  .nav-item.dropdown-open .dropdown {
    display: block;
    animation: fadeIn 0.2s ease;
  }

  .nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-item {
    padding: 12px 20px 12px 46px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    text-align: left;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  /* Mobile Mega Menu */
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 8px 0;
    width: 100% !important;
    display: none;
    margin: 0 0 8px 0;
    overflow: hidden;
  }

  .nav-item.dropdown-open .mega-menu {
    display: block;
    animation: fadeIn 0.2s ease;
  }

  .nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mega-menu-column {
    padding: 0;
  }

  .mega-menu-column h4 {
    padding: 14px 20px 6px 20px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-teal);
    font-weight: 600;
  }

  .mega-menu-column ul li a {
    padding: 10px 20px 10px 36px;
    font-size: 0.92rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Mobile Hamburger animation */
  .mobile-toggle {
    display: flex;
    position: relative;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Hide header CTA on mobile */
  .header-cta {
    display: none;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  .about .container,
  .dental-tourism .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .why-choose-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ventures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .logo img {
    height: 80px;
  }

  .top-bar {
    display: none;
  }

  .hero-inner {
    justify-content: center;
    padding-top: 15vh;
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(10, 22, 40, 0.92) 0%,
      rgba(10, 22, 40, 0.60) 45%,
      rgba(10, 22, 40, 0.15) 75%,
      rgba(10, 22, 40, 0.20) 100%
    );
  }

  .hero-title {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero-bottom-bar {
    gap: 20px;
    padding: 16px 4%;
    width: calc(100% + 10%);
    margin-left: -5%;
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-doctor {
    position: static;
    max-width: 350px;
    margin: 0 auto;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .clinic-gallery {
    padding: 60px 0;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .tourism-benefits {
    grid-template-columns: 1fr;
  }

  .savings-comparison {
    flex-direction: column;
  }

  .tourism-floating-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .ventures-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-inner {
    padding-top: 14vh;
    padding-left: 4%;
    padding-right: 4%;
  }

  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.55;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .hero-bottom-bar {
    gap: 12px;
    padding: 14px 4%;
    width: calc(100% + 8%);
    margin-left: -4%;
  }

  .hero-stat-number {
    font-size: 1.2rem;
  }

  .hero-stat-label {
    font-size: 0.6rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .about-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .about-phone {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .location-buttons {
    flex-direction: column;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.my-0 { margin-top: 0; margin-bottom: 0; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.py-0 { padding-top: 0; padding-bottom: 0; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 1.5s infinite;
}

/* ============================================
   LIVE REVIEWS SECTION
   ============================================ */

.live-reviews {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.live-reviews .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.title-with-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.title-with-live .section-title {
  margin-bottom: 0;
}

.section-subtitle-large {
  font-size: 1.35rem;
  color: var(--grey-blue);
  font-weight: 400;
  margin-top: 0;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(76, 208, 223, 0.1) 0%, rgba(76, 208, 223, 0.05) 100%);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(76, 208, 223, 0.2);
}

.live-dot {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

@keyframes livePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.live-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-teal-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trustindex-widget-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-height: 300px;
}

/* Responsive Styles for Live Reviews */
@media (max-width: 768px) {
  .live-reviews {
    padding: 60px 0;
  }

  .title-with-live {
    flex-direction: column;
    gap: 15px;
  }

  .section-subtitle-large {
    font-size: 1.15rem;
  }

  .trustindex-widget-container {
    padding: 20px 15px;
    border-radius: var(--radius-md);
  }

  .live-indicator {
    padding: 8px 18px;
  }

  .live-text {
    font-size: 0.85rem;
  }

  .live-dot {
    width: 10px;
    height: 10px;
  }
}

/* ============================================
   INSTAGRAM FEED SECTION
   ============================================ */

.instagram-feed {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.instagram-feed .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.instagram-widget-container {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 300px;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.btn-instagram i {
  font-size: 1.2rem;
}

/* Responsive Styles for Instagram Feed */
@media (max-width: 768px) {
  .instagram-feed {
    padding: 60px 0;
  }

  .btn-instagram {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* ============================================
   PAGE SPECIFIC STYLES
   ============================================ */

/* --------------------------------------------
   SERVICES PAGE
   -------------------------------------------- */
.services-hero {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 58, 92, 0.9) 100%),
              url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1920&h=600&fit=crop') center/cover no-repeat;
  padding: 140px 0 100px;
  text-align: center;
  color: var(--white);
}

.services-hero h1 {
  color: var(--white);
  margin-bottom: 15px;
}

/* Service Categories */
.service-category {
  padding: 80px 0;
}

.service-category:nth-child(even) {
  background: var(--off-white);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.category-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  font-size: 2rem;
  color: var(--white);
}

.category-header h2 {
  margin: 0;
}

.category-header p {
  color: var(--grey-blue);
  margin: 5px 0 0;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(76, 208, 223, 0.3);
}

.service-item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.1);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: var(--font-primary);
}

.service-item p {
  color: var(--grey-blue);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-item .price {
  font-size: 0.85rem;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-item .btn {
  width: 100%;
}

/* CTA Banner */
.services-cta {
  background: var(--gradient-primary);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.services-cta h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.services-cta p {
  margin-bottom: 25px;
  opacity: 0.95;
}

@media (max-width: 992px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-list {
    grid-template-columns: 1fr;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------
   ABOUT PAGE
   -------------------------------------------- */
.about-hero {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(26, 58, 92, 0.88) 50%, rgba(13, 31, 54, 0.95) 100%),
              url('https://images.unsplash.com/photo-1629909615184-74f495363b67?w=1920&h=800&fit=crop') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  padding: 140px 0 100px;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}
.about-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}
.about-hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 650px;
}
.about-hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.about-nav-pill:hover {
  background: rgba(76,208,223,0.25);
  border-color: rgba(76,208,223,0.6);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76,208,223,0.25);
}
.about-nav-pill i { font-size: 0.82rem; opacity: 0.8; }

/* Story Section */
.our-story {
  padding: 100px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-images {
  position: relative;
}

.story-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.story-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-teal);
}

.story-badge .number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.story-badge .text {
  font-size: 0.9rem;
}

.story-text h2 {
  margin-bottom: 25px;
}

.story-text p {
  color: var(--grey-blue);
  margin-bottom: 20px;
}

/* Mission Vision */
.mission-vision {
  background: var(--off-white);
  padding: 100px 0;
}

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

.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.mv-card.gold::before {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.mv-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.1);
  border-radius: var(--radius-full);
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary-teal);
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.mv-card p {
  color: var(--grey-blue);
}

/* Team Section */
.team-section {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: var(--transition-slow);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-family: var(--font-primary);
}

.team-info .role {
  color: var(--primary-teal);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-info .qualifications {
  font-size: 0.85rem;
  color: var(--grey-blue);
}

/* Stats Section */
.stats-section {
  background: var(--gradient-primary);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  color: var(--white);
}

.stat-item .number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item .label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Technology Section */
.technology-section {
  padding: 100px 0;
  background: var(--off-white);
}

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

.tech-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.tech-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.1);
  border-radius: var(--radius-md);
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary-teal);
}

.tech-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.tech-card p {
  font-size: 0.9rem;
  color: var(--grey-blue);
}

/* Shourya Group Section */
.shourya-section {
  padding: 100px 0;
}

.shourya-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.shourya-text h2 {
  margin-bottom: 25px;
}

.shourya-text p {
  color: var(--grey-blue);
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .story-content,
  .shourya-content {
    grid-template-columns: 1fr;
  }

  .mv-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mv-grid,
  .team-grid,
  .stats-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

/* Live Reviews Section - About Specific Overrides */
.live-reviews-about {
  padding: 100px 0;
  background: var(--off-white);
}

/* --------------------------------------------
   CONTACT PAGE V2 - Modern Redesign
   -------------------------------------------- */

/* Hero V2 */
.contact-hero-v2 {
  position: relative;
  background: linear-gradient(160deg, #0a1628 0%, #1a3a5c 50%, #0d2240 100%);
  padding: 160px 0 120px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.contact-hero-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 208, 223, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-hero-v2::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Quick Connect Section */
.contact-connect-section {
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: -50px;
  margin-bottom: 40px;
}
.contact-connect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-connect-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.contact-connect-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-teal);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-connect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(76, 208, 223, 0.15);
  border-color: rgba(76, 208, 223, 0.2);
}
.contact-connect-card:hover::before {
  opacity: 1;
}
.contact-connect-emergency::before {
  background: #ff3b3b;
}
.contact-connect-emergency:hover {
  box-shadow: 0 16px 40px rgba(255, 59, 59, 0.12);
  border-color: rgba(255, 59, 59, 0.2);
}
.contact-connect-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.1);
  border-radius: 14px;
  font-size: 1.4rem;
  color: var(--primary-teal);
  flex-shrink: 0;
}
.contact-connect-content {
  flex: 1;
  min-width: 0;
}
.contact-connect-content h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-blue);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-connect-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-grey);
  margin: 0;
}
.contact-connect-sub {
  font-size: 0.8rem;
  color: var(--grey-blue);
  margin: 3px 0 0;
  opacity: 0.85;
}
.contact-connect-arrow {
  font-size: 0.9rem;
  color: var(--primary-teal);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.contact-connect-card:hover .contact-connect-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Locations Section V2 */
.contact-locations-section {
  padding: 80px 0;
  background: var(--off-white);
}
.contact-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.contact-location-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border: 1px solid var(--medium-grey);
}
.contact-location-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.contact-location-map {
  height: 220px;
  background: var(--light-grey);
  position: relative;
}
.contact-location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-location-body {
  padding: 30px;
}
.contact-location-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.contact-location-header h3 {
  font-size: 1.25rem;
  font-family: var(--font-secondary);
  color: var(--dark-grey);
  margin: 0;
}
.contact-location-badge {
  font-size: 0.7rem;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-location-badge.flagship {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
}
.contact-location-badge.new {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
  color: #fff;
}
.contact-location-info {
  margin-bottom: 22px;
}
.contact-location-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.contact-location-row:last-child {
  border-bottom: none;
}
.contact-location-row i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.08);
  border-radius: 10px;
  color: var(--primary-teal);
  flex-shrink: 0;
  font-size: 0.85rem;
}
.contact-location-row span,
.contact-location-row a {
  font-size: 0.9rem;
  color: var(--grey-blue);
  line-height: 1.6;
  padding-top: 6px;
}
.contact-location-row a:hover {
  color: var(--primary-teal);
}
.contact-location-actions {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--light-grey);
}

/* Hours Section V2 */
.contact-hours-section {
  background: var(--white);
  padding: 80px 0;
}
.contact-hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 920px;
  margin: 0 auto;
}
.contact-hours-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--medium-grey);
  transition: all 0.3s ease;
}
.contact-hours-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.contact-hours-card.emergency {
  background: linear-gradient(160deg, #fff5f5 0%, #fff 100%);
  border-color: rgba(255, 59, 59, 0.15);
}
.contact-hours-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--light-grey);
}
.contact-hours-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.1);
  border-radius: 12px;
  color: var(--primary-teal);
  font-size: 1.1rem;
}
.contact-hours-icon.emergency-icon {
  background: rgba(255, 59, 59, 0.1);
  color: #ff3b3b;
}
.contact-hours-icon-row h3 {
  font-size: 1.15rem;
  margin: 0;
}
.contact-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.95rem;
}
.contact-hours-list li:last-child {
  border-bottom: none;
}
.contact-hours-list li span:first-child {
  font-weight: 500;
  color: var(--dark-grey);
}
.contact-hours-list li span:last-child {
  color: var(--primary-teal);
  font-weight: 600;
}
.contact-hours-divider {
  height: 0 !important;
  padding: 0 !important;
  border-bottom: 1px dashed var(--medium-grey) !important;
}
.contact-emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 59, 59, 0.08);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ff3b3b;
}
.emergency-pulse {
  width: 10px;
  height: 10px;
  background: #ff3b3b;
  border-radius: 50%;
  display: inline-block;
  animation: emergencyPulse 1.5s ease-in-out infinite;
}
@keyframes emergencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.contact-emergency-number {
  margin-bottom: 20px;
}
.contact-emergency-number a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff3b3b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.contact-emergency-number a:hover {
  opacity: 0.8;
}
.contact-emergency-note {
  background: rgba(255, 59, 59, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border-left: 3px solid #ff3b3b;
}
.contact-emergency-note p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--grey-blue);
  line-height: 1.6;
}

/* Live Reviews & Instagram - Contact Specific */
.live-reviews-contact {
  background: var(--off-white);
  padding: 80px 0;
}
.instagram-feed-contact {
  background: var(--white);
  padding: 80px 0;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
  .contact-connect-grid {
    grid-template-columns: 1fr;
  }
  .contact-locations-grid {
    grid-template-columns: 1fr;
  }
  .contact-hours-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .contact-hero-v2 {
    padding: 130px 0 90px;
  }
  .contact-hero-v2 h1 {
    font-size: 2.2rem !important;
  }
  .contact-connect-section {
    margin-top: -35px;
  }
  .contact-connect-card {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .location-buttons {
    flex-direction: column;
  }
}

/* --------------------------------------------
   DENTAL TOURISM PAGE
   -------------------------------------------- */
.tourism-hero {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 58, 92, 0.9) 100%),
              url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1920&h=800&fit=crop') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
}

.tourism-hero-content {
  max-width: 800px;
}

.tourism-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}

.tourism-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Why India Section */
.why-india {
  background: var(--off-white);
}

.why-india-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-india-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.why-india-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.why-india-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 208, 223, 0.1);
  border-radius: var(--radius-full);
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary-teal);
}

.why-india-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.why-india-card p {
  font-size: 0.9rem;
  color: var(--grey-blue);
  margin: 0;
}

/* Cost Comparison */
.cost-comparison {
  background: var(--white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-table th,
.comparison-table td {
  padding: 20px 25px;
  text-align: center;
}

.comparison-table thead {
  background: var(--dark-grey);
  color: var(--white);
}

.comparison-table th {
  font-weight: 600;
  font-size: 1rem;
}

.comparison-table th.highlight {
  background: var(--primary-teal);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--light-grey);
}

.comparison-table tbody tr:hover {
  background: var(--off-white);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table td.highlight {
  background: rgba(76, 208, 223, 0.1);
  color: var(--primary-teal);
  font-weight: 600;
}

.savings-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Process Section */
.tourism-process {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);
  color: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(76, 208, 223, 0.3);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.process-step h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Packages Section */
.tourism-packages {
  background: var(--off-white);
}

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

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.package-card.featured {
  border: 2px solid var(--primary-teal);
}

.package-header {
  padding: 30px;
  text-align: center;
  background: var(--light-grey);
}

.package-card.featured .package-header {
  background: var(--gradient-primary);
  color: var(--white);
}

.package-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 5px 15px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.package-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.package-card.featured .package-header h3 {
  color: var(--white);
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-teal);
}

.package-card.featured .package-price {
  color: var(--white);
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

.package-body {
  padding: 30px;
}

.package-features {
  margin-bottom: 25px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
}

.package-features li:last-child {
  border: none;
}

.package-features li i {
  color: var(--primary-teal);
}

/* Tourism FAQ */
.tourism-faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-grey);
  transition: var(--transition-normal);
}

.faq-question:hover {
  color: var(--primary-teal);
}

.faq-question i {
  transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--grey-blue);
  font-size: 0.95rem;
}

/* Tourism Testimonials */
.tourism-testimonials {
  background: var(--off-white);
}

.tourism-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-flag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
}

/* Tourism CTA */
.tourism-cta {
  background: linear-gradient(135deg, rgba(76, 208, 223, 0.9) 0%, rgba(58, 184, 198, 0.95) 100%),
              url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&h=600&fit=crop') center/cover no-repeat;
  padding: 80px 0;
}

.tourism-cta-content {
  text-align: center;
  color: var(--white);
}

.tourism-cta h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.tourism-cta p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 30px;
}

/* Tourism Contact Cards */
.tourism-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.contact-card.transparent {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.contact-card.transparent i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-card.transparent h4 {
  color: var(--white);
  font-family: var(--font-primary);
  margin-bottom: 10px;
}

.contact-card.transparent a {
  color: var(--white);
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .why-india-grid,
  .packages-grid,
  .tourism-contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-india-grid,
  .packages-grid,
  .process-timeline,
  .tourism-contact-cards {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }
}

/* ============================================
   SERVICE DETAIL PAGES - Shared Styles
   Matches Dental Tourism page aesthetic
   ============================================ */

/* Service Page Hero */
.service-page-hero {
  background: linear-gradient(135deg, #0a2a3c 0%, #1a4a5c 40%, #0d3545 100%);
  padding: 140px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 208, 223, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.service-page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.service-page-hero .container {
  position: relative;
  z-index: 1;
}

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

.service-hero-text h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-hero-text h1 .text-highlight {
  color: var(--primary-teal-light);
}

.service-hero-text > p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}

.service-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 208, 223, 0.15);
  border: 1px solid rgba(76, 208, 223, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--white);
}

.service-hero-badge i {
  color: var(--primary-teal-light);
}

.service-hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-hero-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.service-hero-price {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.service-hero-price span {
  display: block;
  font-size: 0.8rem;
  color: var(--grey-blue);
  margin-bottom: 4px;
}

.service-hero-price strong {
  font-size: 1.4rem;
  color: var(--primary-teal);
  font-weight: 700;
}

/* Service Quick Stats Bar */
.service-stats-bar {
  background: var(--white);
  padding: 30px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--light-grey);
}

.service-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.service-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.service-stat-item i {
  font-size: 1.5rem;
  color: var(--primary-teal);
}

.service-stat-item .stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service-stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--grey-blue);
}

/* Service Main Content Area */
.service-detail-section {
  padding: 80px 0;
}

.service-detail-section.alt-bg {
  background: var(--off-white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.service-main-content h2 {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.service-main-content h3 {
  color: var(--text-dark);
  margin: 30px 0 15px;
  font-size: 1.4rem;
}

.service-main-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-dark);
}

.service-main-content ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.service-main-content ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}

.service-main-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-size: 0.85rem;
}

/* Service Feature Cards */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.service-feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.service-feature-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-feature-card i {
  font-size: 2.5rem;
  color: var(--primary-teal);
  margin-bottom: 15px;
}

.service-feature-card h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-feature-card p {
  font-size: 0.9rem;
  color: var(--grey-blue);
  margin-bottom: 0;
}

/* Service Process Timeline */
.service-process-section {
  background: linear-gradient(135deg, #0a2a3c 0%, #1a4a5c 100%);
  padding: 80px 0;
  color: var(--white);
}

.service-process-section h1,
.service-process-section h2,
.service-process-section h3,
.service-process-section .section-title,
.service-process-section p {
  color: var(--white);
}

.service-process-section .text-highlight {
  color: var(--primary-teal-light);
}

.service-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
}

.service-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.service-step-circle {
  width: 90px;
  height: 90px;
  background: rgba(76, 208, 223, 0.15);
  border: 3px solid var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary-teal);
  transition: var(--transition-normal);
  position: relative;
}

.service-process-step:hover .service-step-circle {
  background: var(--primary-teal);
  color: var(--white);
}

.service-step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.service-process-step h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.service-process-step p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
}

.service-step-time {
  display: inline-block;
  background: rgba(76, 208, 223, 0.2);
  border: 1px solid rgba(76, 208, 223, 0.3);
  color: var(--primary-teal-light);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-top: 10px;
}

/* Service Benefits Grid */
.service-benefits-section {
  padding: 80px 0;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-benefit-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.service-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-benefit-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--white);
}

.service-benefit-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-benefit-card p {
  font-size: 0.95rem;
  color: var(--grey-blue);
  line-height: 1.6;
}

/* Service Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.service-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 25px;
}

.service-sidebar-card h3 {
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-grey);
  font-size: 1.15rem;
}

.service-sidebar-card.cta-card {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
  color: var(--white);
}

.service-sidebar-card.cta-card h3 {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.service-sidebar-card.cta-card p {
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Service Quick Contact */
.service-quick-contact a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: var(--transition-normal);
  color: var(--text-dark);
}

.service-quick-contact a:hover {
  background: var(--primary-teal);
  color: var(--white);
}

.service-quick-contact a i {
  font-size: 1.2rem;
  color: var(--primary-teal);
  width: 20px;
  text-align: center;
}

.service-quick-contact a:hover i {
  color: var(--white);
}

/* Service Pricing Table */
.service-pricing-table {
  width: 100%;
}

.service-pricing-table tr {
  border-bottom: 1px solid var(--light-grey);
}

.service-pricing-table tr:last-child {
  border-bottom: none;
}

.service-pricing-table td {
  padding: 12px 0;
  font-size: 0.95rem;
}

.service-pricing-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--primary-teal);
}

/* Service Related Links */
.service-related-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-grey);
  color: var(--text-dark);
  transition: var(--transition-normal);
  font-size: 0.95rem;
}

.service-related-links a:hover {
  color: var(--primary-teal);
  padding-left: 8px;
}

.service-related-links a:last-child {
  border-bottom: none;
}

.service-related-links a i {
  color: var(--primary-teal);
  font-size: 0.8rem;
}

/* Service Comparison Table */
.service-comparison-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-comparison-table th,
.service-comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--light-grey);
}

.service-comparison-table th {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
  color: var(--white);
  font-weight: 600;
}

.service-comparison-table tr:hover {
  background: var(--off-white);
}

.service-comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

/* Service Image Gallery */
.service-image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.service-image-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.service-image-gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Service FAQ Section */
.service-faq-section {
  padding: 80px 0;
  background: var(--off-white);
}

.service-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.service-faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.service-faq-item:hover {
  box-shadow: var(--shadow-md);
}

.service-faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  font-family: var(--font-primary);
}

.service-faq-question i {
  color: var(--primary-teal);
  transition: var(--transition-normal);
  flex-shrink: 0;
  margin-left: 15px;
}

.service-faq-item.active .service-faq-question {
  color: var(--primary-teal);
}

.service-faq-item.active .service-faq-question i {
  transform: rotate(180deg);
}

.service-faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-faq-item.active .service-faq-answer {
  padding: 0 25px 20px;
  max-height: 500px;
}

.service-faq-answer p {
  color: var(--grey-blue);
  line-height: 1.7;
}

/* Service CTA Section */
.service-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2a3c 0%, #1a4a5c 100%);
  color: var(--white);
  text-align: center;
}

.service-cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 2rem;
}

.service-cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Service Page Responsive */
@media (max-width: 992px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .service-hero-badges {
    justify-content: center;
  }

  .service-hero-text .hero-buttons {
    justify-content: center;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .service-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-page-hero {
    padding: 120px 0 60px;
  }

  .service-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .service-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .service-image-gallery {
    grid-template-columns: 1fr;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .service-process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .service-benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-image img {
    height: 250px;
  }
}


/* =============================================
   ABOUT PAGES SHARED STYLES
   ============================================= */

/* ========================================
   Team Page Styles
   ======================================== */
.team-hero {
      background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 58, 92, 0.9) 100%),
                  url('assets/images/gallery/gallery_01.jpg
      padding: 140px 0 100px;
      text-align: center;
      color: var(--white);
    }

    .team-hero h1 {
      color: var(--white);
    }

    /* Team Introduction */
    .team-intro {
      padding: 80px 0;
      text-align: center;
    }

    .team-intro-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .team-intro p {
      color: var(--grey-blue);
      font-size: 1.1rem;
      line-height: 1.8;
    }

    /* Team Members Section */
    .team-members {
      padding: 0 0 100px;
    }

    .team-grid-full {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .team-card-full {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition-normal);
    }

    .team-card-full:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-xl);
    }

    .team-image-full {
      height: 320px;
      overflow: hidden;
      position: relative;
    }

    .team-image-full img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: var(--transition-slow);
    }

    .team-card-full:hover .team-image-full img {
      transform: scale(1.08);
    }

    .team-experience-badge {
      position: absolute;
      bottom: 15px;
      right: 15px;
      background: var(--gradient-primary);
      color: var(--white);
      padding: 8px 16px;
      border-radius: var(--radius-md);
      font-size: 0.85rem;
      font-weight: 600;
    }

    .team-info-full {
      padding: 30px;
    }

    .team-info-full h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
      font-family: var(--font-primary);
      color: var(--dark-grey);
    }

    .team-info-full .role {
      color: var(--primary-teal);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 12px;
      display: block;
    }

    .team-info-full .qualifications {
      font-size: 0.9rem;
      color: var(--grey-blue);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .team-info-full .qualifications i {
      color: var(--primary-teal);
    }

    .team-info-full .bio {
      font-size: 0.95rem;
      color: var(--grey-blue);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .team-specialties {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .specialty-tag {
      background: rgba(76, 208, 223, 0.1);
      color: var(--primary-teal-dark);
      padding: 6px 14px;
      border-radius: var(--radius-xl);
      font-size: 0.8rem;
      font-weight: 500;
    }

    /* Why Choose Our Team Section */
    .why-our-team {
      padding: 100px 0;
      background: var(--off-white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .why-card {
      background: var(--white);
      padding: 35px 25px;
      border-radius: var(--radius-lg);
      text-align: center;
      box-shadow: var(--shadow-md);
      transition: var(--transition-normal);
    }

    .why-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .why-icon {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(76, 208, 223, 0.1);
      border-radius: var(--radius-full);
      margin: 0 auto 20px;
      font-size: 1.8rem;
      color: var(--primary-teal);
    }

    .why-card h4 {
      font-size: 1.1rem;
      margin-bottom: 12px;
      font-family: var(--font-primary);
      color: var(--dark-grey);
    }

    .why-card p {
      font-size: 0.9rem;
      color: var(--grey-blue);
      line-height: 1.6;
    }

    /* Stats Banner */
    .team-stats {
      background: var(--gradient-primary);
      padding: 60px 0;
    }

    .team-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
      color: var(--white);
    }

    .team-stat-item .number {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 8px;
    }

    .team-stat-item .label {
      font-size: 0.95rem;
      opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .team-grid-full {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 992px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .team-grid-full {
        grid-template-columns: 1fr;
      }

      .team-image-full {
        height: 280px;
      }
    }

    @media (max-width: 576px) {
      .why-grid,
      .team-stats-grid {
        grid-template-columns: 1fr;
      }
    }

/* ========================================
   Technology Page Styles
   ======================================== */
.tech-hero {
      background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 58, 92, 0.9) 100%),
                  url('assets/images/gallery/gallery_07.jpg
      padding: 140px 0 100px;
      text-align: center;
      color: var(--white);
    }

    .tech-hero h1 {
      color: var(--white);
    }

    /* Technology Intro Section */
    .tech-intro {
      padding: 100px 0;
    }

    .intro-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .intro-text h2 {
      margin-bottom: 25px;
    }

    .intro-text p {
      color: var(--grey-blue);
      margin-bottom: 20px;
    }

    .intro-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .intro-feature {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .intro-feature i {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(76, 208, 223, 0.1);
      border-radius: var(--radius-md);
      color: var(--primary-teal);
    }

    .intro-feature span {
      font-weight: 500;
      color: var(--dark-grey);
    }

    .intro-image {
      position: relative;
    }

    .intro-image img {
      width: 100%;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
    }

    .tech-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--gradient-primary);
      color: var(--white);
      padding: 20px 30px;
      border-radius: var(--radius-lg);
      text-align: center;
      box-shadow: var(--shadow-teal);
    }

    .tech-badge .number {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1;
    }

    .tech-badge .text {
      font-size: 0.85rem;
    }

    /* Technology Cards Section */
    .tech-cards-section {
      padding: 100px 0;
      background: var(--off-white);
    }

    .tech-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .tech-detail-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition-normal);
    }

    .tech-detail-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-xl);
    }

    .tech-card-header {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 30px 30px 0;
    }

    .tech-card-icon {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(76, 208, 223, 0.1);
      border-radius: var(--radius-lg);
      font-size: 2rem;
      color: var(--primary-teal);
      flex-shrink: 0;
    }

    .tech-card-title h3 {
      font-size: 1.4rem;
      margin-bottom: 5px;
      font-family: var(--font-primary);
    }

    .tech-card-title .subtitle {
      color: var(--primary-teal);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .tech-card-body {
      padding: 25px 30px 30px;
    }

    .tech-card-body p {
      color: var(--grey-blue);
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .tech-benefits {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .tech-benefits li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-top: 1px solid rgba(124, 145, 155, 0.1);
      color: var(--dark-grey);
      font-size: 0.95rem;
    }

    .tech-benefits li:first-child {
      border-top: none;
    }

    .tech-benefits li i {
      color: var(--primary-teal);
      margin-top: 3px;
      flex-shrink: 0;
    }

    /* Featured Tech - Full Width Card */
    .featured-tech {
      grid-column: span 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .featured-tech .tech-card-content {
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .featured-tech .tech-card-image {
      position: relative;
      min-height: 350px;
    }

    .featured-tech .tech-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .featured-tech .tech-card-icon {
      width: 90px;
      height: 90px;
      font-size: 2.2rem;
      margin-bottom: 20px;
    }

    .featured-tech h3 {
      font-size: 1.8rem;
      margin-bottom: 8px;
      font-family: var(--font-primary);
    }

    .featured-tech .subtitle {
      color: var(--primary-teal);
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .featured-tech p {
      color: var(--grey-blue);
      margin-bottom: 25px;
      line-height: 1.7;
    }

    /* Stats Banner */
    .tech-stats-banner {
      background: var(--gradient-primary);
      padding: 60px 0;
    }

    .stats-banner-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
      color: var(--white);
    }

    .stat-banner-item .icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      opacity: 0.9;
    }

    .stat-banner-item .number {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 5px;
    }

    .stat-banner-item .label {
      font-size: 0.95rem;
      opacity: 0.9;
    }

    /* Sterilization Section */
    .sterilization-section {
      padding: 100px 0;
    }

    .sterilization-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .sterilization-image img {
      width: 100%;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
    }

    .sterilization-text h2 {
      margin-bottom: 25px;
    }

    .sterilization-text p {
      color: var(--grey-blue);
      margin-bottom: 20px;
    }

    .sterilization-list {
      list-style: none;
      padding: 0;
      margin: 25px 0 0;
    }

    .sterilization-list li {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 12px 0;
      color: var(--dark-grey);
    }

    .sterilization-list li i {
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(76, 208, 223, 0.1);
      border-radius: var(--radius-full);
      color: var(--primary-teal);
      font-size: 0.85rem;
    }

    /* Why Choose Section */
    .why-choose-tech {
      padding: 100px 0;
      background: var(--off-white);
    }

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

    .why-card {
      background: var(--white);
      padding: 40px 30px;
      border-radius: var(--radius-lg);
      text-align: center;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
      transition: var(--transition-normal);
    }

    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
    }

    .why-card.gold::before {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    }

    .why-icon {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(76, 208, 223, 0.1);
      border-radius: var(--radius-full);
      margin: 0 auto 25px;
      font-size: 2rem;
      color: var(--primary-teal);
    }

    .why-card.gold .why-icon {
      background: rgba(201, 169, 98, 0.1);
      color: var(--gold);
    }

    .why-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      font-family: var(--font-primary);
    }

    .why-card p {
      color: var(--grey-blue);
      font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .intro-content,
      .sterilization-content {
        grid-template-columns: 1fr;
      }

      .tech-cards-grid {
        grid-template-columns: 1fr;
      }

      .featured-tech {
        grid-column: span 1;
        grid-template-columns: 1fr;
      }

      .featured-tech .tech-card-image {
        min-height: 250px;
      }

      .stats-banner-grid,
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .intro-features {
        grid-template-columns: 1fr;
      }

      .stats-banner-grid,
      .why-grid {
        grid-template-columns: 1fr;
      }

      .tech-card-header {
        flex-direction: column;
        text-align: center;
      }
    }

/* ========================================
   Gallery Page Styles
   ======================================== */
.gallery-hero {
      background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 58, 92, 0.9) 100%),
                  url('assets/images/gallery/gallery_01.jpg
      padding: 140px 0 100px;
      text-align: center;
      color: var(--white);
    }

    .gallery-hero h1 {
      color: var(--white);
    }

    /* Gallery Section Base */
    .gallery-section {
      padding: 100px 0;
    }

    .gallery-section:nth-child(even) {
      background: var(--off-white);
    }

    .gallery-section .section-header {
      margin-bottom: 50px;
    }

    /* CSS Grid Gallery */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .gallery-item {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      transition: var(--transition-normal);
    }

    .gallery-item:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .gallery-item img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: var(--transition-slow);
    }

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

    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 60%);
      opacity: 0;
      transition: var(--transition-normal);
      display: flex;
      align-items: flex-end;
      padding: 25px;
    }

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

    .gallery-item-info h4 {
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 5px;
      font-family: var(--font-primary);
    }

    .gallery-item-info p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
    }

    /* Featured Item - Larger */
    .gallery-item.featured {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-item.featured img {
      height: 100%;
      min-height: 585px;
    }

    /* Before After Grid */
    .before-after-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .before-after-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transition: var(--transition-normal);
    }

    .before-after-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .before-after-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
    }

    .before-after-images::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 100%;
      background: var(--gradient-primary);
    }

    .ba-image {
      position: relative;
    }

    .ba-image img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .ba-label {
      position: absolute;
      bottom: 15px;
      left: 15px;
      background: rgba(10, 22, 40, 0.85);
      color: var(--white);
      padding: 8px 16px;
      border-radius: var(--radius-md);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .ba-label.after {
      background: var(--gradient-primary);
    }

    .before-after-info {
      padding: 25px;
      text-align: center;
    }

    .before-after-info h4 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      font-family: var(--font-primary);
      color: var(--dark-grey);
    }

    .before-after-info p {
      color: var(--grey-blue);
      font-size: 0.95rem;
    }

    .treatment-tag {
      display: inline-block;
      background: rgba(76, 208, 223, 0.1);
      color: var(--primary-teal);
      padding: 6px 14px;
      border-radius: var(--radius-full);
      font-size: 0.8rem;
      font-weight: 600;
      margin-top: 12px;
    }

    /* Team at Work Section */
    .team-work-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .team-work-item {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition-normal);
    }

    .team-work-item:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .team-work-item img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: var(--transition-slow);
    }

    .team-work-item:hover img {
      transform: scale(1.1);
    }

    .team-work-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 50%);
      opacity: 0;
      transition: var(--transition-normal);
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }

    .team-work-item:hover .team-work-overlay {
      opacity: 1;
    }

    .team-work-info h4 {
      color: var(--white);
      font-size: 1rem;
      font-family: var(--font-primary);
    }

    .team-work-info p {
      color: var(--primary-teal);
      font-size: 0.85rem;
      margin-top: 4px;
    }

    /* Equipment Grid */
    .equipment-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .equipment-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition-normal);
    }

    .equipment-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .equipment-image {
      height: 220px;
      overflow: hidden;
    }

    .equipment-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-slow);
    }

    .equipment-card:hover .equipment-image img {
      transform: scale(1.1);
    }

    .equipment-info {
      padding: 25px;
      text-align: center;
    }

    .equipment-info h4 {
      font-size: 1.15rem;
      margin-bottom: 8px;
      font-family: var(--font-primary);
      color: var(--dark-grey);
    }

    .equipment-info p {
      color: var(--grey-blue);
      font-size: 0.9rem;
    }

    .equipment-icon {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(76, 208, 223, 0.1);
      border-radius: var(--radius-full);
      margin: 0 auto 15px;
      color: var(--primary-teal);
      font-size: 1.3rem;
    }

    /* Lightbox Modal */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 22, 40, 0.95);
      z-index: 10000;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 90vh;
      position: relative;
    }

    .lightbox-content img {
      max-width: 100%;
      max-height: 85vh;
      border-radius: var(--radius-lg);
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
      position: absolute;
      top: -50px;
      right: 0;
      background: none;
      border: none;
      color: var(--white);
      font-size: 2rem;
      cursor: pointer;
      transition: var(--transition-fast);
    }

    .lightbox-close:hover {
      color: var(--primary-teal);
      transform: rotate(90deg);
    }

    .lightbox-caption {
      text-align: center;
      color: var(--white);
      margin-top: 20px;
    }

    .lightbox-caption h4 {
      font-size: 1.3rem;
      margin-bottom: 5px;
    }

    .lightbox-caption p {
      color: rgba(255, 255, 255, 0.7);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
      }

      .gallery-item.featured img {
        min-height: 350px;
      }

      .team-work-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 992px) {
      .before-after-grid {
        grid-template-columns: 1fr;
      }

      .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

      .gallery-item.featured {
        grid-column: span 1;
      }

      .gallery-item img,
      .gallery-item.featured img {
        height: 250px;
        min-height: auto;
      }

      .team-work-grid,
      .equipment-grid {
        grid-template-columns: 1fr;
      }

      .before-after-images {
        grid-template-columns: 1fr;
      }

      .before-after-images::after {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        height: 4px;
      }
    }

/* ========================================
   Certifications Page Styles
   ======================================== */
.certifications-hero {
      background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 58, 92, 0.9) 100%),
                  url('assets/images/gallery/gallery_01.jpg
      padding: 140px 0 100px;
      text-align: center;
      color: var(--white);
    }

    .certifications-hero h1 {
      color: var(--white);
    }

    /* Awards Section */
    .awards-section {
      padding: 100px 0;
    }

    .awards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .award-card {
      background: var(--white);
      padding: 40px 30px;
      border-radius: var(--radius-lg);
      text-align: center;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
      transition: var(--transition-normal);
    }

    .award-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    }

    .award-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-xl);
    }

    .award-icon {
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
      border-radius: var(--radius-full);
      margin: 0 auto 25px;
      font-size: 2.5rem;
      color: var(--gold);
    }

    .award-card h3 {
      font-size: 1.25rem;
      margin-bottom: 12px;
      font-family: var(--font-primary);
    }

    .award-card p {
      color: var(--grey-blue);
      font-size: 0.95rem;
      margin-bottom: 15px;
    }

    .award-year {
      display: inline-block;
      background: rgba(76, 208, 223, 0.1);
      color: var(--primary-teal);
      padding: 5px 15px;
      border-radius: var(--radius-xl);
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* Certifications Section */
    .certifications-section {
      padding: 100px 0;
      background: var(--off-white);
    }

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

    .certification-card {
      background: var(--white);
      padding: 50px 40px;
      border-radius: var(--radius-lg);
      text-align: center;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
      transition: var(--transition-normal);
    }

    .certification-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
    }

    .certification-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-xl);
    }

    .certification-logo {
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(76, 208, 223, 0.1);
      border-radius: var(--radius-full);
      margin: 0 auto 25px;
      font-size: 2.8rem;
      color: var(--primary-teal);
    }

    .certification-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      font-family: var(--font-primary);
    }

    .certification-card p {
      color: var(--grey-blue);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .certification-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(34, 197, 94, 0.1);
      color: #16a34a;
      padding: 8px 18px;
      border-radius: var(--radius-xl);
      font-size: 0.85rem;
      font-weight: 600;
      margin-top: 20px;
    }

    .certification-badge i {
      font-size: 0.9rem;
    }

    /* Doctor Certifications Section */
    .doctor-certifications {
      padding: 100px 0;
    }

    .doctor-cert-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .doctor-cert-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      display: flex;
      transition: var(--transition-normal);
    }

    .doctor-cert-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-xl);
    }

    .doctor-cert-image {
      width: 200px;
      min-height: 280px;
      overflow: hidden;
      flex-shrink: 0;
    }

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

    .doctor-cert-info {
      padding: 30px;
      flex: 1;
    }

    .doctor-cert-info h4 {
      font-size: 1.4rem;
      margin-bottom: 5px;
      font-family: var(--font-primary);
    }

    .doctor-cert-info .role {
      color: var(--primary-teal);
      font-size: 0.95rem;
      font-weight: 500;
      margin-bottom: 15px;
    }

    .doctor-cert-info .qualifications {
      font-size: 0.9rem;
      color: var(--grey-blue);
      margin-bottom: 20px;
    }

    .cert-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .cert-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: 0.9rem;
      color: var(--dark-grey);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .cert-list li:last-child {
      border-bottom: none;
    }

    .cert-list li i {
      color: var(--primary-teal);
      font-size: 0.8rem;
      margin-top: 4px;
    }

    /* Trust Indicators */
    .trust-section {
      padding: 80px 0;
      background: var(--gradient-primary);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
      color: var(--white);
    }

    .trust-item .number {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 10px;
    }

    .trust-item .label {
      font-size: 1rem;
      opacity: 0.9;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
      .awards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 992px) {
      .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .doctor-cert-grid {
        grid-template-columns: 1fr;
      }

      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .doctor-cert-card {
        flex-direction: column;
      }

      .doctor-cert-image {
        width: 100%;
        min-height: 250px;
      }
    }

    @media (max-width: 576px) {
      .awards-grid,
      .certifications-grid,
      .trust-grid {
        grid-template-columns: 1fr;
      }
    }

/* ========================================
   UTILITY STYLES (moved from inline)
   ======================================== */


/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* Text center with top margin variants — CTA buttons below content */
.text-center.mt-50 {
  margin-top: 50px;
}

.text-center.mt-40 {
  margin-top: 40px;
}

.text-center.mt-60 {
  margin-top: 60px;
}

/* Ensure proper spacing between section content and CTA buttons */
.gallery-grid + .text-center,
.trustindex-widget-container + .text-center,
.instagram-widget-container + .text-center,
.services-grid + .text-center,
.video-testimonials-grid + .text-center {
  margin-top: 50px !important;
  padding-top: 30px;
}

/* Footer legal links */
.footer-legal {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* Location badge for new branch */
.location-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-grey);
}

/* ===========================
   VIDEO TESTIMONIALS SECTION
   =========================== */

.video-testimonials {
  background: var(--dark-blue);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.video-testimonials .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.video-testimonials .section-title {
  color: var(--white);
  margin-bottom: 15px;
}

.video-testimonials .section-subtitle {
  color: var(--grey-blue);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Video Carousel Container */
.video-carousel {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

/* Individual Video Card */
.video-testimonial-card {
  width: 280px !important;
  max-width: 280px !important;
  min-width: 280px !important;
  flex: 0 0 280px !important;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(76, 208, 223, 0.15);
  position: relative;
}

.video-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(76, 208, 223, 0.3);
  border-color: var(--primary-teal);
}

/* Video Wrapper - 9:16 aspect ratio */
.video-wrapper {
  position: relative;
  width: 280px !important;
  max-width: 280px !important;
  height: 460px !important;
  background: linear-gradient(135deg, #f0fafb 0%, #e8f7f8 100%);
  overflow: hidden !important;
}

.video-wrapper video {
  display: block;
  width: 280px !important;
  max-width: 280px !important;
  height: 460px !important;
  object-fit: cover;
}

/* Video Info Section */
.video-testimonial-info {
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fdfd 100%);
  text-align: center;
  border-top: 2px solid rgba(76, 208, 223, 0.12);
}

.video-testimonial-info h4 {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  font-family: var(--font-primary);
  letter-spacing: 0.2px;
}

.treatment-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(76, 208, 223, 0.12) 0%, rgba(76, 208, 223, 0.06) 100%);
  color: var(--primary-teal);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: capitalize;
  letter-spacing: 0.4px;
  border: 1px solid rgba(76, 208, 223, 0.2);
}

/* See More Reviews Button */
.video-testimonials .see-more-reviews {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-see-more-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-teal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-normal);
  border: 2px solid var(--primary-teal);
  cursor: pointer;
}

.btn-see-more-reviews:hover {
  background: var(--primary-teal-dark);
  border-color: var(--primary-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 208, 223, 0.3);
}

.btn-see-more-reviews i {
  font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-testimonials {
    padding: 40px 0;
  }

  .video-testimonials .section-header {
    margin-bottom: 35px;
  }

  .video-carousel {
    gap: 16px;
    padding: 15px 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  .video-testimonial-card {
    width: 200px;
    max-width: 200px;
    min-width: 200px;
    flex: 0 0 200px;
  }

  .video-wrapper {
    width: 200px;
    height: 356px;
  }

  .video-wrapper video {
    width: 200px;
    height: 356px;
  }

  .video-testimonial-info h4 {
    font-size: 0.9rem;
  }

  .treatment-tag {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
}

@media (max-width: 480px) {
  .video-testimonials {
    padding: 30px 0;
  }

  .video-carousel {
    gap: 12px;
    padding: 10px 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .video-testimonial-card {
    width: 150px;
    max-width: 150px;
    min-width: 150px;
    flex: 0 0 150px;
  }

  .video-wrapper {
    width: 150px;
    height: 267px;
  }

  .video-wrapper video {
    width: 150px;
    height: 267px;
  }

  .video-testimonial-info {
    padding: 12px;
  }

  .video-testimonial-info h4 {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .treatment-tag {
    font-size: 0.65rem;
  }

  .btn-see-more-reviews {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
