/* ============================================================
   Home Page V2 — Premium Redesign Styles
   ============================================================ */

/* ── Premium Buttons ──────────────────────────────────────────── */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s;
}

.btn-premium:hover::after {
  transform: translateX(100%);
}

.btn-premium--gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  box-shadow: 0 4px 15px rgba(245, 158, 11, .35);
}

.btn-premium--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, .45);
  color: #fff;
}

.btn-premium--primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 99, 235, .3);
}

.btn-premium--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, .4);
  color: #fff;
}

.btn-premium--glass {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.btn-premium--glass:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-2px);
  color: #fff;
}

.btn-premium--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-premium--outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-premium--lg {
  padding: .9rem 2.2rem;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-premium--sm {
  padding: .6rem 1.4rem;
  font-size: .82rem;
  border-radius: 10px;
}

/* WhatsApp button — green brand colour */
.btn-premium--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, .35);
}

.btn-premium--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, .5);
  color: #fff;
}

/* Hero trust bar */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem 1rem;
  color: rgba(255, 255, 255, .78);
  font-size: .85rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: .55rem 1.25rem;
  margin-bottom: var(--sp-6);
  width: fit-content;
}

.hero-trust-bar strong {
  color: #fff;
}

.hero-trust-bar__sep {
  color: rgba(255, 255, 255, .3);
  font-weight: 300;
}

/* Hero availability note */
.hero-availability {
  margin-top: var(--sp-4);
  font-size: .83rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .01em;
}

.hero-availability strong {
  color: rgba(255, 255, 255, .9);
}

/* ── Section Chip ─────────────────────────────────────────────── */
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
  color: var(--teal);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: var(--sp-4);
}

.section-title-v2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--sp-4);
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section--alt {
  background: var(--gray-50);
}

/* ── Pulse Dot ────────────────────────────────────────────────── */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  animation: pulse-glow 2s ease-in-out infinite;
}

.pulse-dot--teal {
  background: var(--teal);
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

/* ── Floating Orbs ────────────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
  animation: orb-float 8s ease-in-out infinite;
}

.orb--teal {
  width: 300px;
  height: 300px;
  background: var(--teal);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.orb--blue {
  width: 250px;
  height: 250px;
  background: var(--blue);
  bottom: 15%;
  left: 5%;
  animation-delay: 2s;
}

.orb--gold {
  width: 180px;
  height: 180px;
  background: var(--gold);
  top: 50%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 15px) scale(.95);
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO V2
   ═══════════════════════════════════════════════════════════════ */
.hero-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #3b0764 0%, #7c3aed 50%, #0d9488 100%);
  padding: clamp(5rem, 12vh, 8rem) 0 clamp(6rem, 14vh, 10rem);
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: -6px;
}

/* Improve first render cost for long homepage */
#servicesSection,
#facilitiesSection,
#whyChooseSection,
#aboutSection,
#caseStudiesSection,
#gallerySection,
#testimonialsSection,
#blogSection,
#locationSection,
#faqDynamicSection,
#ctaSection {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.hero-v2__gradient-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-v2__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-v2__container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.hero-v2__content {
  min-width: 0;
}

.hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, .9);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: var(--sp-6);
}

.hero-v2__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-v2__title {
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  margin-bottom: var(--sp-4);
  line-height: 1.25;
  min-height: 4.5em;
  /* Prevent vertical shift */
}

.hero-v2__title-accent {
  display: inline-block;
  margin-top: 0.15em;
  white-space: nowrap;
  /* Prevent line wrapping mid-animation */
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing-cursor {
  display: inline-block;
  color: var(--gold);
  font-weight: 300;
  animation: blink 1s step-end infinite;
  margin-left: 4px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-v2__subtitle {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--sp-8);
  text-wrap: balance;
}

/* Hero pills (timings/location) */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: 0 0 var(--sp-6);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .88);
  font-size: .9rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.hero-pill__icon {
  width: 18px;
  display: inline-flex;
  justify-content: center;
}

.hero-pill__label {
  color: rgba(255, 255, 255, .80);
  font-weight: 600;
}

.hero-pill__value {
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
}

.hero-v2__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-v2__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-v2__wave svg {
  width: 100%;
  height: 80px;
}

/* Hero Visual — Glass Card Stack */
.hero-v2__visual {
  display: flex;
  justify-content: flex-end;
}

.hero-v2__card-stack {
  position: relative;
  width: 320px;
  height: 380px;
  transform: translateX(15px);
}

.hero-glass-card {
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  padding: var(--sp-8);
  color: #fff;
}

.hero-glass-card--main {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  animation: float-card 6s ease-in-out infinite;
}

.hero-glass-card__icon {
  width: 230px;
  height: 260px;
  margin: 0 auto var(--sp-4);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-sm);
  background: #f0f4f8;
}

.hero-glass-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.hero-glass-card--main h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: .25rem;
}

.hero-glass-card--main p {
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  font-weight: 500;
}

.hero-glass-card__tags {
  display: flex;
  gap: .4rem;
  justify-content: center;
  margin-top: var(--sp-4);
}

.hero-glass-card__tags span {
  background: rgba(13, 148, 136, .3);
  color: var(--teal-light);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 50px;
}

.hero-glass-card--float {
  position: absolute;
  padding: .6rem 1rem;
  border-radius: 14px;
  animation: float-badge 5s ease-in-out infinite;
}

.hero-glass-card--float-1 {
  top: -25px;
  right: -70px;
  animation-delay: .5s;
}

.hero-glass-card--float-2 {
  bottom: 50px;
  left: -100px;
  animation-delay: 1.5s;
}

.hero-glass-card--float-3 {
  bottom: -30px;
  right: -60px;
  animation-delay: 2.5s;
}

.hero-glass-card--float-4 {
  top: 90px;
  left: -170px;
  animation-delay: 1.2s;
  padding: .6rem 1.2rem;
}

.hero-glass-card__reviews {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: center;
}

.hero-glass-card__reviews-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.hero-glass-card__reviews-text {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-glass-card__mini-stat {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
}

.hero-glass-card__mini-stat strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.hero-glass-card__mini-stat--live {
  font-size: .78rem;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(1deg);
  }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════════ */
.trust-strip {
  padding: var(--sp-12) 0;
  position: relative;
  z-index: 4;
  margin-top: -2rem;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: var(--sp-6);
  box-shadow: 0 4px 20px rgba(10, 37, 64, .06);
  transition: all .3s var(--ease);
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-badge__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.trust-badge__text strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
}

.trust-badge__text span {
  font-size: .78rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES V2
   ═══════════════════════════════════════════════════════════════ */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}

.service-card-v2 {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-v2__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--gold));
  opacity: 0;
  transition: opacity .35s;
}

.service-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-v2:hover .service-card-v2__glow {
  opacity: 1;
}

.service-card-v2__img-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.service-card-v2__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.service-card-v2:hover .service-card-v2__img-wrap img {
  transform: scale(1.05);
}

.service-card-v2__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 37, 64, .08));
}

.service-card-v2__icon-wrap {
  padding: var(--sp-6) var(--sp-6) 0;
}

.service-card-v2__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-light), var(--teal-light));
  font-size: 1.6rem;
  transition: transform .3s;
}

.service-card-v2:hover .service-card-v2__icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card-v2__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-v2__title {
  font-size: 1.1rem;
  margin-bottom: var(--sp-2);
}

.service-card-v2__title a {
  color: inherit;
  text-decoration: none;
}

.service-card-v2__title a:hover {
  color: var(--blue);
}

.service-card-v2__desc {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.service-card-v2__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap .3s, color .3s;
}

.service-card-v2__link:hover {
  gap: .6rem;
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════════
   STATS V2
   ═══════════════════════════════════════════════════════════════ */
.stats-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-deep) 100%);
  padding: var(--sp-16) 0;
}

.stats-v2__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}

.stats-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
  z-index: 1;
}

.stat-card-v2 {
  background: rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: var(--sp-8);
  text-align: center;
  transition: all .35s var(--ease);
}

.stat-card-v2:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px);
}

.stat-card-v2__icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-3);
}

.stat-card-v2__num,
.stat-card-v2__num-text {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: #fff;
  display: inline;
  line-height: 1;
}

.stat-card-v2__prefix,
.stat-card-v2__suffix {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .6);
  display: inline;
}

.stat-card-v2__label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  margin-top: var(--sp-3);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT V2
   ═══════════════════════════════════════════════════════════════ */
.about-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-v2__img-frame {
  position: relative;
}

.about-v2__img-placeholder {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--teal-light) 100%);
  border-radius: 24px;
  aspect-ratio: 3/4;
  max-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-v2__doctor-emoji {
  font-size: 8rem;
  position: relative;
  z-index: 1;
}

.about-v2__img-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(37, 99, 235, .1) 0%, transparent 70%);
}

.about-v2__floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: .65rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .5rem;
  animation: float-badge 5s ease-in-out infinite;
}

.about-v2__floating-badge--1 {
  top: var(--sp-4);
  right: -1rem;
  animation-delay: 0s;
}

.about-v2__floating-badge--1 strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
}

.about-v2__floating-badge--1 span {
  font-size: .78rem;
  color: var(--gray-500);
}

.about-v2__floating-badge--2 {
  bottom: var(--sp-8);
  left: -1rem;
  animation-delay: 1.5s;
}

.about-v2__floating-badge--2 span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
}

.about-v2__text {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}

/* Qualification Grid */
.quals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--off-white);
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  transition: all .3s;
}

.qual-item:hover {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.qual-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.qual-item strong {
  display: block;
  font-size: .88rem;
  color: var(--navy);
}

.qual-item span {
  font-size: .78rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS V2
   ═══════════════════════════════════════════════════════════════ */
.testimonials-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-6);
}

.testimonial-card-v2 {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: var(--sp-8);
  transition: all .35s var(--ease);
  overflow: hidden;
}

.testimonial-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card-v2__quote-icon {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  color: var(--blue);
}

.testimonial-card-v2__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: var(--sp-4);
  letter-spacing: .1em;
}

.testimonial-card-v2__body {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  font-style: italic;
}

.testimonial-card-v2__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-card-v2__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue);
  flex-shrink: 0;
}

.testimonial-card-v2__name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}

.testimonial-card-v2__location {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG V2
   ═══════════════════════════════════════════════════════════════ */
.blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}

.blog-card-v2 {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s var(--ease);
}

.blog-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card-v2__body {
  padding: var(--sp-6);
}

.blog-card-v2__cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: .2rem .6rem;
  border-radius: 6px;
  margin-bottom: var(--sp-3);
}

.blog-card-v2__title {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
  color: var(--navy);
  line-height: 1.4;
}

.blog-card-v2__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-v2__title a:hover {
  color: var(--blue);
}

.blog-card-v2__excerpt {
  font-size: .88rem;
  color: var(--gray-500);
  margin-bottom: var(--sp-4);
  line-height: 1.65;
}

.blog-card-v2__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--gray-100);
}

.blog-card-v2__meta {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--gray-300);
}

.blog-card-v2__read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap .3s;
}

.blog-card-v2__read-more:hover {
  gap: .6rem;
}

/* ═══════════════════════════════════════════════════════════════
   CTA V2
   ═══════════════════════════════════════════════════════════════ */
.cta-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 100%);
  padding: var(--sp-24) 0;
}

.cta-v2__bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-v2__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
  background: rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: var(--sp-12);
}

.cta-v2__content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--sp-3);
}

.cta-v2__content p {
  color: rgba(255, 255, 255, .65);
  max-width: 450px;
  font-size: .95rem;
}

.cta-v2__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-v2__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-v2__subtitle {
    margin: 0 auto var(--sp-8);
  }

  .hero-trust-bar {
    justify-content: center;
    margin: 0 auto var(--sp-6);
  }

  .hero-v2__actions {
    justify-content: center;
  }

  .hero-v2__visual {
    display: none;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .stats-v2__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-v2__grid {
    grid-template-columns: 1fr;
  }

  .about-v2__visual {
    order: -1;
  }

  .cta-v2__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-v2__actions {
    justify-content: center;
  }

  .hero-pills {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-v2 {
    min-height: 0;
    padding: var(--sp-16) 0 var(--sp-24);
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .stats-v2__grid {
    grid-template-columns: 1fr;
  }

  .quals-grid {
    grid-template-columns: 1fr;
  }

  .hero-v2__actions {
    flex-direction: column;
    align-items: center;
  }

  .offers-grid-v2 {
    grid-template-columns: 1fr;
  }

  .about-v2__img-placeholder {
    max-height: 400px;
  }

  .stat-card-v2__num,
  .stat-card-v2__num-text {
    font-size: 2.2rem;
  }

  .stat-card-v2__prefix,
  .stat-card-v2__suffix {
    font-size: 1.2rem;
  }

  .hero-v2__title {
    font-size: 2.4rem;
  }

  .hero-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   OFFERS V2
   ═══════════════════════════════════════════════════════════════ */
.offers-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-6);
}

.offer-card-v2 {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s var(--ease);
}

.offer-card-v2__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--blue));
  opacity: 0;
  transition: opacity .35s;
  z-index: 2;
}

.offer-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.offer-card-v2:hover .offer-card-v2__glow {
  opacity: 1;
}

/* Banner */
.offer-card-v2__banner {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.offer-card-v2__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.offer-card-v2:hover .offer-card-v2__banner img {
  transform: scale(1.05);
}

.offer-card-v2__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 37, 64, .12));
}

.offer-card-v2__banner--placeholder {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--blue-light) 50%, var(--teal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card-v2__placeholder-icon {
  font-size: 4rem;
  opacity: .5;
}

/* Badge */
.offer-card-v2__badge-wrap {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  z-index: 2;
}

.offer-card-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(245, 158, 11, .3);
}

/* Body */
.offer-card-v2__body {
  padding: var(--sp-6);
}

.offer-card-v2__title {
  font-size: 1.15rem;
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.offer-card-v2__desc {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
}

.offer-card-v2__validity {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: .3rem .75rem;
  border-radius: 50px;
}

/* ── Gallery Section ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-md);
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.8) 0%, rgba(10, 37, 64, 0) 50%);
  opacity: 0;
  transition: opacity .4s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-6);
}

.gallery-item__overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  transform: translateY(10px);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item__overlay span {
  transform: translateY(0);
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1.8fr 1fr;
    grid-template-rows: repeat(2, 280px);
  }

  .gallery-item {
    height: 100%;
  }

  .gallery-item:nth-child(1) {
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: auto;
    aspect-ratio: 16/9;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ V2
   ═══════════════════════════════════════════════════════════════ */
.faq-grid-v2 {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.faq-item-v2 {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s var(--ease);
}

.faq-item-v2:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.faq-item-v2 details {
  width: 100%;
}

.faq-item-v2 summary {
  padding: var(--sp-6);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item-v2 summary::-webkit-details-marker {
  display: none;
}

.faq-item-v2 summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 300;
  transition: transform .3s;
}

.faq-item-v2 details[open] summary::after {
  transform: rotate(45deg);
}

.faq-item-v2__content {
  padding: 0 var(--sp-6) var(--sp-6);
  color: var(--gray-600);
  line-height: 1.7;
  font-size: .95rem;
}

/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES V2
   ═══════════════════════════════════════════════════════════════ */
.cases-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-6);
}

.case-card-v2 {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: var(--sp-8);
  position: relative;
  transition: all .35s var(--ease);
  overflow: hidden;
}

.case-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal), var(--blue));
}

.case-card-v2__badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
  margin-bottom: var(--sp-4);
}

.case-card-v2__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.case-card-v2__desc {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}

.case-card-v2__outcome {
  background: var(--off-white);
  padding: var(--sp-4);
  border-radius: 12px;
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.case-card-v2__outcome-icon {
  color: var(--success);
  font-size: 1.2rem;
}

.case-card-v2__outcome-text {
  font-size: .88rem;
  color: var(--gray-700);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US SECTION
   ═══════════════════════════════════════════════════════════════ */
.why-choose-us {
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: var(--sp-8);
  text-align: center;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity .3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card:hover::after {
  opacity: 1;
}

.why-card__icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  transition: transform .35s var(--ease);
}

.why-card:hover .why-card__icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.why-card__icon-wrap--teal {
  background: var(--teal-light);
  color: var(--teal);
}

.why-card__icon-wrap--blue {
  background: var(--blue-light);
  color: var(--blue);
}

.why-card__icon-wrap--gold {
  background: var(--gold-light);
  color: var(--gold-dark);
}

.why-card__icon-wrap--rose {
  background: #fff0f3;
  color: #e11d48;
}

.why-card__title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  font-family: var(--font-serif);
}

.why-card__desc {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Scroll Progress Bar ───────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--gold));
  transition: width .1s linear;
  pointer-events: none;
}

/* ── Missing shadow-xl CSS variable ───────────────────────── */
:root {
  --shadow-xl: 0 30px 60px rgba(10, 37, 64, .18);
  --gray-600: #475569;
}

/* ── Rating Summary Bar ────────────────────────────────────── */
.rating-summary {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: var(--sp-6) var(--sp-8);
  margin: 0 auto var(--sp-12);
  max-width: 720px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.rating-summary__score {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.rating-summary__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
}

.rating-summary__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .1em;
}

.rating-summary__label {
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.rating-summary__bars {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: .78rem;
  color: var(--gray-500);
}

.rating-bar-row span:first-child {
  min-width: 26px;
}

.rating-bar-row span:last-child {
  min-width: 28px;
  text-align: right;
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 50px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.rating-bar__fill--4 {
  background: #86efac;
}

.rating-bar__fill--3 {
  background: var(--gray-300);
}

.rating-summary__google {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  padding-left: var(--sp-6);
  border-left: 1px solid var(--gray-100);
}

@media (max-width: 640px) {
  .rating-summary {
    flex-direction: column;
    gap: var(--sp-4);
    text-align: center;
  }

  .rating-summary__google {
    border-left: none;
    border-top: 1px solid var(--gray-100);
    padding-left: 0;
    padding-top: var(--sp-4);
  }
}

/* ═══════════════════════════════════════════════════════════════
   FACILITIES SECTION
   ═══════════════════════════════════════════════════════════════ */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.facility-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-light);
}

.facility-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.facility-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.facility-card:hover .facility-card__image img {
  transform: scale(1.1);
}

.facility-card__icon-box {
  height: 220px;
  background: linear-gradient(135deg, var(--teal-light), #f0fdfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.facility-card__content {
  padding: var(--sp-8);
}

.facility-card__title {
  font-size: 1.35rem;
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.facility-card__desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Hero */
  .hero-v2__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-v2__visual {
    display: none;
  }

  .hero-v2__title {
    min-height: unset;
  }

  .hero-v2__subtitle {
    max-width: 100%;
  }

  /* Trust strip */
  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  /* Stats */
  .stats-v2__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* About */
  .about-v2__grid {
    grid-template-columns: 1fr;
  }

  .about-v2__img-frame {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-v2__floating-badge--1 {
    right: 0;
  }

  .about-v2__floating-badge--2 {
    left: 0;
  }

  /* Quals */
  .quals-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Why Choose */
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Facilities */
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero */
  .hero-v2 {
    min-height: unset;
    padding: 4rem 0 5rem;
  }

  .hero-v2__badge {
    font-size: .72rem;
    padding: .35rem .9rem;
  }

  .hero-v2__title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .hero-v2__subtitle {
    font-size: 1rem;
  }

  .hero-v2__actions {
    flex-direction: column;
    gap: .75rem;
  }

  .hero-v2__actions .btn-premium {
    width: 100%;
    justify-content: center;
  }

  .hero-v2__wave svg {
    height: 48px;
  }

  /* Trust strip */
  .trust-strip {
    margin-top: -1rem;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

  .trust-badge {
    padding: var(--sp-4);
  }

  .trust-badge__icon {
    font-size: 1.5rem;
  }

  /* Stats */
  .stats-v2 {
    padding: var(--sp-12) 0;
  }

  .stats-v2__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

  .stat-card-v2 {
    padding: var(--sp-6);
  }

  .stat-card-v2__num,
  .stat-card-v2__num-text {
    font-size: 2.2rem;
  }

  /* About */
  .about-v2__img-placeholder {
    max-height: 360px;
  }

  .about-v2__floating-badge {
    display: none;
  }

  /* hide floating badges on mobile */
  .quals-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid-v2 {
    grid-template-columns: 1fr;
  }

  /* Blog grid */
  .blog-grid-v2 {
    grid-template-columns: 1fr;
  }

  /* CTA V2 */
  .cta-v2__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-v2__actions {
    flex-direction: column;
    gap: .75rem;
  }

  .cta-v2__actions .btn-premium {
    width: 100%;
    justify-content: center;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-item-v2 summary {
    font-size: 1rem;
    padding: var(--sp-4);
  }

  /* Case studies */
  .cases-grid-v2 {
    grid-template-columns: 1fr;
  }

  /* Why choose */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

  .why-card {
    padding: var(--sp-6);
  }

  /* Facilities */
  .facilities-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* Trust strip — single column on tiny screens */
  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  /* Stats — single column */
  .stats-v2__grid {
    grid-template-columns: 1fr;
  }

  /* Why choose — single column */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Hero title */
  .hero-v2__title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  /* Section titles */
  .section-title-v2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* Stat card numbers */
  .stat-card-v2__num,
  .stat-card-v2__num-text {
    font-size: 2rem;
  }

  /* About image */
  .about-v2__img-placeholder {
    height: 260px;
  }

  /* Blog card */
  .blog-card-v2__img {
    height: 180px;
  }

  /* Section spacing */
  .section {
    padding: var(--sp-16) 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .orb,
  .pulse-dot,
  .typing-cursor,
  .reveal,
  .service-card-v2,
  .gallery-item,
  .why-card,
  .testimonial-card-v2,
  .blog-card-v2 {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CTA V2 — Layout (no existing styles found, adding here)
   ═══════════════════════════════════════════════════════════════ */
.cta-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a6e 100%);
  padding: var(--sp-16) 0;
}

.cta-v2__bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-v2__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  position: relative;
  z-index: 1;
}

.cta-v2__content h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--sp-3);
}

.cta-v2__content p {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  max-width: 480px;
}

.cta-v2__actions {
  display: flex;
  gap: var(--sp-4);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Location grid ────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.location-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-8);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 28px;
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .location-grid-v2 {
    grid-template-columns: 1fr;
    padding: var(--sp-4);
  }
}

.location-info__item {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.location-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.location-info__label {
  font-size: .75rem;
  color: var(--gray-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.location-info__value {
  font-size: .95rem;
  color: var(--navy);
  font-weight: 500;
  margin-top: 2px;
}

/* ── Blog V2 ──────────────────────────────────────────────── */
.blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}

.blog-card-v2 {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s var(--ease);
}

.blog-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-v2__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}

.blog-card-v2:hover .blog-card-v2__img {
  transform: scale(1.04);
}

.blog-card-v2__img-wrap {
  overflow: hidden;
  height: 200px;
}

.blog-card-v2__body {
  padding: var(--sp-6);
}

.blog-card-v2__cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-2);
  display: block;
}

.blog-card-v2__title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  line-height: 1.4;
}

.blog-card-v2__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-v2__title a:hover {
  color: var(--blue);
}

.blog-card-v2__excerpt {
  font-size: .88rem;
  color: var(--gray-500);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

.blog-card-v2__meta {
  font-size: .78rem;
  color: var(--gray-300);
  display: flex;
  gap: var(--sp-3);
}