/* ============================================
   CURETHEGLOBE CONSORTIUM — GLOBAL STYLES
   ============================================ */

/* ---- COLORS ---- */
:root {
  --navy: #0d9488;
  --gold: #D9AB55;
  --gold-soft: #E8C482;
  --green: #166534;
  --crimson: #991B1B;
  --bg: #FDFCF9;
  --text: #1E293B;
  --muted: #6B7280;
  --border: #E5E7EB;
  --white: #ffffff;
  --shadow-card: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 16px 32px -8px rgba(15, 23, 42, 0.12);
}

/* ---- RESET ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100vw;
  position: relative;
  overflow-x: clip;
}

body {
  font-family: 'Lato', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  position: relative;
  overflow-x: clip;
}

/* Global Responsive Failsafes */
img, svg, video, iframe, canvas {
  max-width: 100% !important;
  height: auto;
}
p, h1, h2, h3, h4, h5, h6, a, span, li, blockquote {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

::selection {
  background: var(--navy);
  color: var(--gold);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border: 3px solid var(--bg);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

img {
  max-width: 100%;
  display: block;
  content-visibility: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 8vw, 4.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  padding: 6rem 0;
}

.section-muted {
  background: #f8f9fa;
  position: relative;
}

.section-muted::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.3;
  pointer-events: none;
}

.text-center {
  text-align: center;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: 2rem auto;
  border-radius: 2px;
}

.eyebrow {
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  display: block;
  margin-bottom: 1rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Primary button (formerly gold, now teal) */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #d6ae5e 100%);
  color: var(--white);
  border: none;
  font-weight: 800;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ce9d4f 0%, #c19246 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(184, 144, 83, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 600px) {
  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.76rem;
  }

  .hero .cta-row {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero .cta-row .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
  transition: all 0.4s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-logo>span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d9488;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-logo>span span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: .75rem 1.5rem;
  border-radius: 4px;
}

.nav-cta:hover {
  background: #0f766e;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    padding: 0.75rem 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, .25);
    display: none;
    max-height: 85vh;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold);
  }

  .nav-cta {
    margin-top: 0.25rem;
    text-align: center;
  }

  .nav-logo img {
    height: 60px;
  }

  .nav-logo>span {
    font-size: 1rem;
  }

  .nav-logo>span span {
    font-size: 0.6rem;
  }
}

/* ============================================
   HERO / PAGE BANNERS
   ============================================ */
.hero {
  position: relative;
  color: var(--white);
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.55) 0%, rgba(10, 18, 36, 0.7) 60%, rgba(13, 148, 136, 0.4) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero h1 {
  color: var(--white);
  margin-top: 0.5rem;
}

.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.hero p.lead {
  max-width: 640px;
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.7;
  font-weight: 300;
}

.hero .cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-banner {
  min-height: 400px;
}

/* Trust strip under hero */
.trust-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-strip .row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding: 2.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-strip .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  justify-content: center;
}

.trust-strip .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.trust-strip .lab {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .trust-strip .row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .trust-strip .row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trust-strip .num {
    font-size: 2rem;
  }
}

@media (max-width: 400px) {
  .trust-strip .row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CARDS / GRIDS
   ============================================ */
.card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .5s cubic-bezier(0.16, 1, 0.3, 1), border-color .5s ease;
  box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.06);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  border-color: rgba(184, 144, 83, 0.3);
}

.card-body {
  padding: 2rem 1.8rem;
}

.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Service Image Tile */
.service-tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--navy);
}

.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  opacity: 0.9;
}

.service-tile:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.service-tile .overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 60%, rgba(15, 23, 42, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.service-tile h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', serif;
}

.service-tile p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  font-family: 'Lato', sans-serif;
}

.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: rgba(184, 144, 83, 0.1);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(184, 144, 83, 0.2);
}

/* ---- SERVICE CARDS (New Layout) ---- */
@keyframes svc-shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: rgba(184, 144, 83, 0.4);
}

.svc-card-img {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #ece5d9 0%, #f7f2eb 40%, #e8dfd2 70%, #f0e9df 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer effect on placeholder */
.svc-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  background-size: 400px 100%;
  animation: svc-shimmer 3s ease-in-out infinite;
  z-index: 1;
}

.svc-card-img::after {
  content: '+';
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(184, 144, 83, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.5;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.05);
}

/* When an image is present, hide the placeholder pseudo-elements */
.svc-card-img:has(img)::before,
.svc-card-img:has(img)::after {
  display: none;
}

.svc-card-body {
  padding: 1.15rem 1.3rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, #fdfcfa 100%);
}

.svc-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.svc-procedures {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
  line-height: 1.45;
}

.svc-accreditation {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.45rem;
}

.svc-highlight {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-style: italic;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }

  .svc-card-img {
    height: 340px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .svc-card-img {
    height: 300px;
  }
}

/* ---- DOCTOR / TEAM PHOTO ---- */
.photo-gold {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  object-fit: cover;
  margin: 0 auto;
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.15), 0 12px 30px -10px rgba(201, 168, 76, 0.45);
}

.doctor-card {
  text-align: center;
  padding: 2rem 1.25rem;
}

.doctor-card h3 {
  margin-top: 1rem;
}

.doctor-card .role {
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.doctor-card .meta {
  color: var(--muted);
  font-size: .9rem;
  margin-top: .5rem;
}

/* ---- BADGES ---- */
.badge {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-right: .35rem;
  margin-bottom: .35rem;
}

.badge-gold {
  background: rgba(201, 168, 76, .15);
  color: #8a6e1a;
  border: 1px solid rgba(201, 168, 76, .4);
}

.badge-green {
  background: rgba(44, 107, 47, .12);
  color: var(--green);
  border: 1px solid rgba(44, 107, 47, .3);
}

/* ---- TESTIMONIAL ---- */
.testimonial {
  padding: 2.5rem;
  text-align: left;
  border-top: 3px solid var(--gold);
}

.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.testimonial .stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--navy);
}

.testimonial .who {
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--text);
  font-size: .95rem;
}

.testimonial .country {
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 0.2rem;
}

/* ---- WHY INDIA ---- */
.why-india {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.why-india img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(100%) contrast(1.2);
}

.why-india .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.85) 0%, rgba(10, 18, 36, 0.7) 50%, rgba(13, 148, 136, 0.75) 100%);
  z-index: 1;
}

.why-india .container {
  position: relative;
  z-index: 2;
}

.why-india h2 {
  color: var(--white);
}

.why-india .three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.why-india .icon-circle {
  margin: 0 auto 1rem;
}

.why-india h3 {
  color: var(--white);
}

.why-india p {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 800px) {
  .why-india .three {
    grid-template-columns: 1fr;
  }
}

/* ---- COUNTRY SECTION (HOSPITALS) ---- */
.country-block {
  margin-bottom: 3rem;
}

.country-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.country-title h2 {
  margin: 0;
}

.country-title hr {
  flex: 1;
  border: none;
  border-top: 2px solid var(--gold);
}

/* ---- HORIZONTAL TIMELINE (HOW IT WORKS) ---- */
.horizontal-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  text-align: left;
}

.horizontal-timeline-4 {
  grid-template-columns: repeat(4, 1fr);
}

.horizontal-timeline-3 {
  grid-template-columns: repeat(3, 1fr);
}

.horizontal-step {
  position: relative;
  padding-top: 3rem;
}

.horizontal-step::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 38px;
  width: calc(100% - 38px + 1.5rem);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.horizontal-step:last-child::before {
  display: none;
}

.horizontal-step-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(184, 144, 83, 0.15);
}

.horizontal-step h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.horizontal-step p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .horizontal-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .horizontal-step::before {
    left: 19px;
    top: 38px;
    width: 1px;
    height: calc(100% - 38px + 2rem);
  }

  .horizontal-step {
    padding-top: 0;
    padding-left: 3.5rem;
  }
}

@media (max-width: 600px) {
  .horizontal-timeline {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .horizontal-step {
    padding-left: 3rem;
  }

  .horizontal-step-num {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .horizontal-step::before {
    left: 16px;
    top: 32px;
    height: calc(100% - 32px + 1.5rem);
  }

  .horizontal-step h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  .horizontal-step p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
}

/* ---- FORM ---- */
.form-grid {
  display: grid;
  gap: 1.2rem;
}

.form-grid .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 600px) {
  .form-grid .row-2 {
    grid-template-columns: 1fr;
  }
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 1.15rem 1.4rem;
  border: 1px solid rgba(229, 231, 235, 0.7);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  background: var(--white);
  outline: none;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
  color: var(--text);
}

.form-grid select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B89053' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 12px;
  padding-right: 3rem;
  cursor: pointer;
}

.form-grid select option[disabled] {
  color: var(--muted);
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(184, 144, 83, 0.15);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: var(--muted);
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
}

/* Document Upload Zone */
.upload-zone {
  border: 2px dashed rgba(184, 144, 83, 0.4);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  background: rgba(184, 144, 83, 0.03);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.upload-zone:hover {
  background: rgba(184, 144, 83, 0.08);
  border-color: var(--gold);
}

.upload-zone.dragover {
  background: rgba(13, 148, 136, 0.08);
  border-color: var(--teal);
  transform: scale(1.02);
}

.file-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--navy);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.file-item-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
}

.file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.file-size {
  color: var(--muted);
  font-size: 0.75rem;
}

.remove-file {
  color: #dc2626;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: grid;
  place-items: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.remove-file:hover {
  background: rgba(220, 38, 38, 0.1);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Side info card */
.info-card {
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  margin-bottom: 1.25rem;
}

.info-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  padding: .4rem 0;
  font-size: .95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card li b {
  color: var(--navy);
  font-weight: 700;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: var(--green);
  color: var(--white);
  padding: 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  transition: opacity .2s;
}

.whatsapp-btn:hover {
  opacity: .9;
}

/* ---- SPLIT (image + text) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split img {
    height: 280px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 800px) {
  .footer .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer .grid {
    grid-template-columns: 1fr;
  }
}

.footer h4 {
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  padding: .25rem 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white) !important;
}

.footer a:hover {
  color: var(--gold);
}

.footer .brand {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.footer .brand small {
  display: block;
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-top: .4rem;
  font-family: 'Lato', sans-serif;
}

.footer .socials {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.footer .socials a {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  transition: all .3s;
}

.footer .socials a:hover {
  background: var(--white);
  color: var(--navy);
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 3.5rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .85);
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ============================================
   BRANDED TEXT — .text-ctg (green CureTheGlobe)
   ============================================ */
.text-ctg {
  color: var(--green);
  font-weight: 700;
}

/* ============================================
   PREMIUM SEARCH BAR
   ============================================ */
.premium-search-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.premium-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  width: 360px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.premium-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(184, 144, 83, 0.12);
  transform: translateY(-2px);
}

.premium-search input {
  border: none;
  background: none;
  outline: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  width: 100%;
}

.premium-search input::placeholder {
  color: var(--muted);
  font-family: 'Lato', sans-serif;
}

.premium-search svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.search-results-count {
  text-align: right;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.no-results {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--muted);
  font-size: 1.25rem;
  display: none;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* ============================================
   HOSPITAL & DOCTOR FINDER
   ============================================ */
.finder-section {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.finder-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.finder-controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.finder-select {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B89053' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 1rem center;
  background-color: var(--white);
  cursor: pointer;
}

.partner-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.partner-link:hover {
  color: var(--navy);
}

@media (max-width: 900px) {
  .finder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .finder-controls {
    justify-content: center;
  }

  .finder-section {
    margin-top: 0;
    border-radius: 0;
  }
}

/* ============================================
   PRINCIPAL CONSULTANT BADGE
   ============================================ */
.principal-badge {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  line-height: 1.2;
}

/* ============================================
   RESPONSIVE FIXES — COMPREHENSIVE
   ============================================ */

/* ---- TABLET (≤ 900px) ---- */
@media (max-width: 900px) {
  .premium-search-wrapper {
    margin-bottom: 1.5rem;
  }

  .premium-search {
    width: 100%;
  }

  /* Split layouts stack vertically */
  .split {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .split>div[style*="flex: 1"] {
    width: 100% !important;
  }

  .split>img {
    height: 350px !important;
    min-height: auto !important;
    width: 100% !important;
    position: relative !important;
  }

  .split div[style*="border-radius:16px"] img {
    height: 200px !important;
    width: 200px !important;
    border-radius: 50% !important;
    margin: 3rem auto 0 auto !important;
    object-position: center top !important;
    display: block !important;
  }

  .mobile-reverse {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 0 !important;
  }

  .mobile-reverse img {
    margin-top: 2.5rem !important;
    min-height: 0 !important;
    position: relative !important;
    top: auto !important;
    object-fit: cover !important;
  }

  /* Hero contact form — stack columns */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* Stat grids — 2 columns on tablet */
  div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Hide gold decorative borders on mobile */
  div[style*="border:2px solid var(--gold)"][style*="position:absolute"],
  div[style*="border: 2px solid var(--gold)"][style*="position:absolute"],
  div[style*="border-left: 2px solid var(--gold)"][style*="position: absolute"] {
    display: none !important;
  }

  /* Service cards — 2 per row */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .svc-card-img {
    height: 320px !important;
  }

  /* Grid layouts */
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .grid-2 {
    grid-template-columns: 1fr !important;
  }

  /* Section spacing */
  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav-inner {
    padding: 0.4rem 1rem;
  }

  /* Hero text */
  .hero p.lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Gold divider */
  .gold-divider {
    margin: 1.5rem auto;
  }

  /* Leadership split — stack */
  .leadership-split {
    flex-direction: column !important;
  }

  .leadership-split>div:first-child {
    min-height: auto !important;
    display: flex !important;
    justify-content: center !important;
  }

  .leadership-text {
    padding: 3rem 1.5rem !important;
    text-align: center !important;
    align-items: center !important;
  }

  /* Team member cards — center on tablet */
  .card[style*="display: flex"] {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.25rem !important;
    padding: 2.5rem 1.5rem !important;
  }

  .card[style*="display: flex"] img {
    margin: 0 auto !important;
  }

  /* Horizontal timeline stacks */
  .horizontal-timeline {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .horizontal-step::before {
    left: 19px;
    top: 38px;
    width: 1px;
    height: calc(100% - 38px + 2rem);
  }

  .horizontal-step {
    padding-top: 0;
    padding-left: 3.5rem;
  }
}

/* ---- SMALL TABLET (≤ 800px) ---- */
@media (max-width: 800px) {

  /* Overlapping images resize */
  .overlapping-images {
    height: 340px !important;
  }

  .overlapping-images img:nth-child(2) {
    width: 40% !important;
    height: 35% !important;
  }

  .overlapping-images img:nth-child(3) {
    width: 45% !important;
    height: 38% !important;
  }

  /* Continuity of care 2x2 grid to 1 column */
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  img[style*="transform: translateY"] {
    transform: none !important;
  }

  /* Trust strip - 2 columns on tablet/mobile */
  .trust-strip .row {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    padding: 2rem 1rem !important;
  }

  .trust-strip .item:last-child {
    grid-column: 1 / -1;
  }

  /* Affiliations strip — robust scroll logos on small screens */
  .affiliations-strip {
    padding: 1.5rem 1rem !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
    display: block !important;
  }

  .affiliations-strip>div {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 3rem !important;
    width: max-content !important;
    margin: 0 auto;
    padding-bottom: 1rem !important;
  }

  .affiliations-strip::-webkit-scrollbar {
    height: 4px;
  }

  .affiliations-strip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
  }

  .affiliations-strip::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
  }

  /* Hide divider lines when scrolling */
  .affiliations-strip>div>div[style*="width: 1px"] {
    display: none !important;
  }
}

/* ---- MOBILE (≤ 600px) ---- */
@media (max-width: 600px) {
  .overlapping-images {
    height: 320px !important;
    margin-bottom: 1.5rem;
  }

  .overlapping-images img:nth-child(1) {
    width: 75% !important;
    height: 85% !important;
    left: 0 !important;
    top: 0 !important;
  }

  .overlapping-images img:nth-child(2) {
    width: 55% !important;
    height: 50% !important;
    bottom: 0 !important;
    right: 0 !important;
    top: auto !important;
  }

  /* Leadership */
  .leadership-split>div:first-child {
    min-height: 280px !important;
  }

  .leadership-text {
    padding: 2rem 1.25rem !important;
  }

  .leadership-text h2 {
    font-size: 1.8rem !important;
  }

  /* Section spacing */
  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  /* Typography tightening */
  h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 0.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .gold-divider {
    margin: 1.25rem auto;
    width: 60px;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Hero adjustments */
  .page-banner {
    min-height: 280px;
    text-align: center;
  }

  .page-banner .container {
    padding-top: 5rem !important;
    padding-bottom: 3rem !important;
  }

  .page-banner h1 {
    font-size: 1.8rem !important;
  }

  .page-banner p.lead {
    font-size: 0.9rem !important;
  }

  .hero:not(.hero-slider) {
    min-height: auto;
  }

  .hero:not(.hero-slider) .container {
    padding-top: 6rem !important;
    padding-bottom: 3.5rem;
  }

  .hero:not(.hero-slider) .cta-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero:not(.hero-slider) h1 {
    font-size: 1.8rem;
    margin-top: 0.75rem;
  }

  /* Contact grid */
  .contact-grid {
    gap: 1.5rem;
  }

  /* Photo circles on mobile */
  .photo-gold {
    width: 140px;
    height: 140px;
  }

  /* Search */
  .premium-search {
    padding: 0.6rem 1rem;
  }

  /* All grid layouts single column */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .grid-3 {
    grid-template-columns: 1fr !important;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .grid-2 {
    grid-template-columns: 1fr !important;
  }

  /* Split section images */
  .split>img {
    height: 240px !important;
  }

  /* Stat/info card grids to single column */
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:1.25rem"],
  div[style*="grid-template-columns: 1fr 1fr"][style*="gap:1.25rem"] {
    grid-template-columns: 1fr !important;
  }

  /* Footer — fully centered on mobile */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer .grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
    text-align: center !important;
  }

  .footer .grid>div {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .grid img {
    margin: 0 auto !important;
    height: 65px !important;
  }

  .footer .grid a>img {
    margin: 0 auto !important;
  }

  .footer .grid p {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    font-size: 0.85rem !important;
  }

  .footer .grid h4 {
    text-align: center !important;
    margin-bottom: 0.5rem;
  }

  .footer .grid ul {
    list-style: none;
    padding: 0;
    text-align: center !important;
  }

  .footer .grid li {
    font-size: 0.85rem;
    padding: 0.2rem 0;
  }

  .footer .socials {
    justify-content: center !important;
    margin-top: 0.75rem;
  }

  .footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.78rem;
  }

  .footer .copyright p {
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
  }

  /* About page sticky image fix on mobile */
  img[style*="position: sticky"] {
    position: relative !important;
    min-height: auto !important;
    height: 300px !important;
  }

  /* Fix all inline spacing inconsistencies on mobile */
  [style*="margin-top: 4rem"],
  [style*="margin-top:4rem"] {
    margin-top: 2rem !important;
  }

  [style*="margin-top: 3.5rem"],
  [style*="margin-top:3.5rem"] {
    margin-top: 1.5rem !important;
  }

  [style*="margin-top: 3rem"],
  [style*="margin-top:3rem"] {
    margin-top: 1.5rem !important;
  }

  [style*="margin-top: 2.5rem"],
  [style*="margin-top:2.5rem"] {
    margin-top: 1.25rem !important;
  }

  /* Any inline flex sections with large gaps */
  div[style*="gap: 5rem"],
  div[style*="gap:5rem"] {
    gap: 2rem !important;
  }

  div[style*="gap: 4rem"],
  div[style*="gap:4rem"] {
    gap: 1.5rem !important;
  }

  div[style*="gap: 3rem"],
  div[style*="gap:3rem"] {
    gap: 1.25rem !important;
  }

  /* Inline padding overrides for mobile */
  div[style*="padding: 4rem 3rem"] {
    padding: 2rem 1.25rem !important;
  }

  div[style*="padding:4rem 3rem"] {
    padding: 2rem 1.25rem !important;
  }

  /* Doctor cards center alignment */
  .doctor-card {
    padding: 1.5rem 1rem;
  }

  /* Service card body */
  .svc-card-body {
    padding: 1rem 1.1rem 1.1rem;
  }

  /* Info card (hero form) */
  .info-card {
    padding: 1.5rem !important;
  }

  /* Country title on hospitals page */
  .country-title h2 {
    font-size: 1.4rem;
  }

  /* Eyebrow text */
  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  /* Team member cards — stack vertically on mobile */
  .card[style*="display: flex"] {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.25rem !important;
    padding: 2rem 1.5rem !important;
  }

  .card[style*="display: flex"] img {
    width: 140px !important;
    height: 140px !important;
  }

  /* Gallery grid — 2 columns on mobile */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  /* Leadership split card — stack on mobile */
  .leadership-split {
    grid-template-columns: 1fr !important;
  }

  .leadership-split>div:first-child {
    min-height: 300px !important;
  }

  /* Values cards */
  div[style*="border-left: 3px solid var(--gold)"] {
    padding: 1.5rem 1.25rem !important;
  }

  /* Testimonial slider */
  .testimonials-slider article {
    width: 280px !important;
    min-width: 280px !important;
    max-width: 100% !important;
  }
}

/* ---- SMALL MOBILE (≤ 400px) ---- */
@media (max-width: 400px) {
  .overlapping-images {
    height: 240px !important;
  }

  .nav-inner {
    padding: 0.3rem 0.75rem;
  }

  .nav-logo img {
    height: 46px;
  }

  .nav-logo>span {
    font-size: 0.8rem;
  }

  .nav-logo>span span {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .nav-toggle {
    font-size: 1.4rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 0.85rem;
  }

  /* Trust strip adjust */
  .trust-strip .row {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  /* Stat counters smaller */
  div[style*="font-size:2.8rem"] {
    font-size: 1.8rem !important;
  }

  /* Buttons — full width & touch friendly */
  .btn {
    font-size: 0.75rem;
    padding: 0.9rem 1.25rem;
    width: 100%;
    text-align: center;
  }

  .cta-row {
    flex-direction: column !important;
    gap: 0.6rem !important;
  }

  /* Hero form buttons */
  .hero .btn {
    width: 100%;
    text-align: center;
  }

  /* Team cards image smaller */
  .card[style*="display: flex"] img {
    width: 110px !important;
    height: 110px !important;
  }

  .card[style*="display: flex"] {
    padding: 1.5rem 1.25rem !important;
  }

  /* Footer copyright */
  .footer .copyright {
    font-size: 0.72rem;
  }

  .footer .copyright p {
    font-size: 0.7rem !important;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  display: block;
}

@media (max-width: 600px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
  }

  .floating-whatsapp svg {
    width: 21px;
    height: 21px;
  }
}

/* ============================================
   WHY INDIA (7 Icons Grid)
   ============================================ */
.why-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-icon-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(184, 144, 83, 0.15);
  border-top: 3px solid var(--gold);
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.why-icon-card>p:last-child {
  margin-top: auto !important;
}

@media (max-width: 1024px) {
  .why-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-icons-grid {
    grid-template-columns: 1fr;
  }
}

.why-icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12), 0 8px 24px rgba(184, 144, 83, 0.08);
  border-color: rgba(184, 144, 83, 0.4);
}

.why-icon-card .icon-circle {
  background: linear-gradient(135deg, var(--gold) 0%, #a47e45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(184, 144, 83, 0.25);
}

.why-icon-card .icon-circle svg {
  stroke: var(--white);
}

.why-icon-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-icon-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.why-icon-card p:last-child {
  margin-bottom: 0;
}

.text-gold {
  color: var(--gold);
  font-weight: 800;
}


@media (max-width: 768px) {
  .why-icon-card {
    width: 100%;
    padding: 1.5rem 1.2rem;
  }

  .why-icon-card h3 {
    font-size: 1.05rem;
  }

  .why-icon-card p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .why-icon-card .icon-circle {
    margin-bottom: 1rem;
  }

  .why-icons-grid {
    gap: 1rem;
  }
}

@media (max-width: 500px) {
  .why-icon-card {
    width: 100%;
    padding: 1.25rem 1.15rem;
  }

  .why-icon-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .why-icon-card p {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
  }

  .why-icon-card .icon-circle {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 0.85rem;
  }

  .why-icon-card .icon-circle svg {
    width: 21px;
    height: 21px;
  }

  .why-icons-grid {
    gap: 0.85rem;
  }
}

/* ============================================
   HERO SLIDER — PREMIUM REDESIGN
   ============================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  max-height: 780px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  will-change: opacity, visibility;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

/* Background image with subtle zoom */
.hero-slide .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  will-change: transform;
}

.hero-slide.active .bg {
  transform: scale(1);
}

/* Cinematic gradient overlay with teal tint */
.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.6) 0%, rgba(10, 18, 36, 0.65) 40%, rgba(13, 148, 136, 0.35) 100%),
    linear-gradient(to top, rgba(10, 18, 36, 0.85) 0%, transparent 40%);
}

/* Content container */
.hero-slide .container {
  position: relative;
  z-index: 2;
  padding-top: 6.5rem;
  padding-bottom: 4.5rem;
  width: 100%;
}

.hero-content {
  max-width: 780px;
}

/* Animated content entrance */
.hero-slide .hero-badge,
.hero-slide h1,
.hero-slide .lead,
.hero-slide .cta-row,
.hero-slide .hero-trust-badges,
.hero-slide .hero-founder-sig {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
}

.hero-slide.active .hero-badge {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.15s;
}

.hero-slide.active h1 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}

.hero-slide.active .lead {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.45s;
}

.hero-slide.active .cta-row {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.6s;
}

.hero-slide.active .hero-trust-badges {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.75s;
}

.hero-slide.active .hero-founder-sig {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.55s;
}

/* Badge / pill label */
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(184, 144, 83, 0.5);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(184, 144, 83, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

/* Hero heading override */
.hero-slider h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
}

.hero-slider h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

/* Lead text */
.hero-slider .lead {
  max-width: 660px;
  margin-top: 1.25rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-weight: 300;
}

/* CTA row */
.hero-slider .cta-row {
  margin-top: 2.25rem;
}

/* Trust badges row */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Founder signature block */
.hero-founder-sig {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(184, 144, 83, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 380px;
}

.hero-founder-sig img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.hero-founder-sig strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
}

.hero-founder-sig span {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Decorative corner accent */
.hero-corner-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  z-index: 2;
  border-right: 2px solid rgba(184, 144, 83, 0.2);
  border-bottom: 2px solid rgba(184, 144, 83, 0.2);
  pointer-events: none;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 10;
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.scroll-line {
  width: 100%;
  height: 50%;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

/* Slider dot controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  position: relative;
}

.slide-dot:hover {
  border-color: var(--gold);
  transform: scale(1.3);
}

.slide-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(184, 144, 83, 0.4);
}

/* ---- Hero slider responsive ---- */
@media (max-width: 1024px) {
  .hero-slider {
    min-height: 80vh;
    max-height: none;
  }

  .hero-slider h1 {
    font-size: 3.2rem;
  }

  .hero-slider .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 80vh;
  }

  .hero-slider h1 {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .hero-slide .container {
    padding-top: 7.5rem;
    padding-bottom: 4rem;
  }

  .hero-slider .lead {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-trust-badges {
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .hero-trust-badges span {
    font-size: 0.72rem;
  }

  .hero-corner-accent {
    display: none;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-founder-sig {
    padding: 0.65rem 0.85rem;
    max-width: 320px;
  }

  .hero-founder-sig img {
    width: 40px;
    height: 40px;
  }

  .hero-founder-sig strong {
    font-size: 0.85rem;
  }

  .hero-founder-sig span {
    font-size: 0.72rem;
  }

  .hero-slider .cta-row {
    margin-top: 1.5rem;
    gap: 0.75rem;
    flex-direction: column;
  }

  .hero-slider .cta-row .btn {
    width: 100%;
    text-align: center;
    padding: 0.95rem 1.5rem;
    font-size: 0.82rem;
    border-radius: 50px;
  }

  .slider-controls {
    bottom: 1.5rem;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    min-height: 85vh;
  }

  .hero-slider h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-slider .lead {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 1rem;
  }

  .hero-slide .container {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .hero-trust-badges span {
    font-size: 0.68rem;
  }

  .hero-slider .cta-row {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-slider .cta-row .btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.78rem;
    border-radius: 50px;
    letter-spacing: 0.08em;
  }

  .slide-dot.active {
    width: 22px;
  }

  .slider-controls {
    bottom: 1.25rem;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.75rem;
    letter-spacing: 0.12em;
  }
}

/* Slide 1 — image pushed to right on mobile */
@media (max-width: 768px) {
  .bg-slide1 {
    object-position: 70% center;
  }
}

@media (max-width: 480px) {
  .bg-slide1 {
    object-position: 75% center;
  }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  padding: 2.5rem 3rem 2.5rem 0;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}

.marquee-content .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.marquee-content .lab {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .marquee-content {
    gap: 2rem;
    padding-right: 2rem;
  }

  .marquee-content .num {
    font-size: 1.8rem;
  }

  .marquee-content .lab {
    font-size: 0.65rem;
  }
}

.marquee-item {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.marquee-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.35rem;
}

/* ---- AFFILIATION LOGO SCROLLER ---- */
.logo-scroller-wrap {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.logo-scroller {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: logo-scroll 20s linear infinite;
}

.logo-scroller:hover {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  to {
    transform: translateX(calc(-50% - 2rem));
  }
}

@media (max-width: 600px) {
  .logo-scroller {
    gap: 2rem;
    animation-duration: 15s;
  }

  @keyframes logo-scroll {
    to {
      transform: translateX(calc(-50% - 1rem));
    }
  }
}

/* ---- SVC GRID (Treatments Page) ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   STRICT MOBILE FAILSAFES
   ============================================ */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .form-grid {
    grid-template-columns: 1fr !important;
  }
  .row-2, .cta-row {
    flex-direction: column !important;
    width: 100% !important;
  }
  .container {
    padding: 0 1rem !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .section {
    padding: 3rem 0 !important;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 0.75rem !important; }
  .section { padding: 2rem 0 !important; }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE ENHANCEMENTS
   ============================================ */

/* ---- TABLET (≤ 900px) ---- */
@media (max-width: 900px) {
  .split[style*="grid-template-columns: 4fr 6fr"],
  .split[style*="grid-template-columns:4fr 6fr"] {
    grid-template-columns: 1fr !important;
  }
  .leadership-img {
    min-height: 300px !important;
    max-height: 380px !important;
  }
  .leadership-img img {
    height: 100% !important;
    max-height: 380px !important;
  }
  div[style*="padding: 4rem 3rem"],
  div[style*="padding:4rem 3rem"],
  div[style*="padding: 3rem 2.5rem"],
  div[style*="padding:3rem 2.5rem"] {
    padding: 2rem 1.5rem !important;
  }
  h3[style*="font-size: 1.9rem"],
  h3[style*="font-size:1.9rem"] {
    font-size: 1.5rem !important;
  }
  img[style*="height:580px"],
  img[style*="height: 580px"] {
    height: 380px !important;
  }
  div[style*="grid-template-columns: 1.4fr 1fr"],
  div[style*="grid-template-columns:1.4fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .footer .grid > div:first-child a[style*="display: flex"] {
    justify-content: center;
  }
}

/* ---- MOBILE (≤ 600px) ---- */
@media (max-width: 600px) {
  .marquee-item span[style*="position: absolute"] {
    display: none !important;
  }
  img[style*="position: sticky"],
  img[style*="position:sticky"] {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    height: 280px !important;
    align-self: auto !important;
  }
  img[style*="min-height:500px"],
  img[style*="min-height: 500px"] {
    min-height: auto !important;
    height: 280px !important;
  }
  img[style*="height:580px"],
  img[style*="height: 580px"] {
    height: 240px !important;
  }
  .leadership-img {
    min-height: 250px !important;
    max-height: 300px !important;
  }
  .leadership-text {
    padding: 1.5rem 1rem !important;
  }
  .leadership-text h2 {
    font-size: 1.5rem !important;
  }
  .principal-badge {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  h3[style*="font-size: 1.9rem"],
  h3[style*="font-size:1.9rem"] {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
  }
  p[style*="font-size: 1.15rem"],
  p[style*="font-size:1.15rem"],
  p[style*="font-size: 1.1rem"],
  p[style*="font-size:1.1rem"] {
    font-size: 0.95rem !important;
  }
  p[style*="font-size: 1.05rem"],
  p[style*="font-size:1.05rem"] {
    font-size: 0.92rem !important;
  }
  div[style*="display: flex"][style*="justify-content: space-between"] {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  div[style*="grid-template-columns: repeat(4"],
  div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero-founder-sig {
    max-width: 100% !important;
  }
  div[style*="display: flex"][style*="justify-content: center"][style*="gap: 1.5rem"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }
  h2[style*="font-size: 2.5rem"],
  h2[style*="font-size:2.5rem"] {
    font-size: 1.6rem !important;
  }
  h4[style*="font-size: 1.3rem"],
  h4[style*="font-size:1.3rem"] {
    font-size: 1.1rem !important;
  }
  .form-grid input,
  .form-grid textarea,
  .form-grid select {
    font-size: 16px !important;
    padding: 1rem 1.2rem !important;
  }
  .upload-zone {
    padding: 1.5rem 1rem;
  }
  div[style*="gap: 2.5rem"],
  div[style*="gap:2.5rem"] {
    gap: 1.5rem !important;
  }
  div[style*="gap: 2rem"],
  div[style*="gap:2rem"] {
    gap: 1.25rem !important;
  }
  .service-tile .overlay { padding: 1rem; }
  .service-tile h3 { font-size: 1rem; }
  .service-tile p { font-size: 0.78rem; }
  .badge { font-size: 0.62rem; padding: 0.2rem 0.5rem; }
  .testimonial { padding: 1.5rem; }
  .testimonial blockquote { font-size: 1rem; }
  .info-card { padding: 1.25rem !important; }
  .info-card h3 { font-size: 1.15rem; }
  .info-card li { font-size: 0.88rem; }
}

/* ---- SMALL MOBILE (≤ 400px) ---- */
@media (max-width: 400px) {
  .leadership-img {
    min-height: 200px !important;
    max-height: 250px !important;
  }
  h3[style*="font-size: 1.9rem"],
  h3[style*="font-size:1.9rem"] {
    font-size: 1.1rem !important;
  }
  p[style*="font-size: 1.15rem"],
  p[style*="font-size:1.15rem"],
  p[style*="font-size: 1.1rem"],
  p[style*="font-size:1.1rem"],
  p[style*="font-size: 1.05rem"],
  p[style*="font-size:1.05rem"] {
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
  }
  .overlapping-images {
    height: 220px !important;
  }
  .overlapping-images img:nth-child(1) {
    width: 80% !important;
    height: 80% !important;
  }
  .overlapping-images img:nth-child(2) {
    width: 50% !important;
    height: 45% !important;
  }
  .marquee-content .num,
  .marquee-item .num {
    font-size: 1.5rem !important;
  }
  .marquee-item {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .footer {
    padding: 2rem 0 1rem !important;
  }
  .footer .copyright {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  div[style*="padding: 4rem 3rem"],
  div[style*="padding:4rem 3rem"],
  div[style*="padding: 3rem 2.5rem"],
  div[style*="padding:3rem 2.5rem"] {
    padding: 1.5rem 1rem !important;
  }
  .hero-badge {
    font-size: 0.55rem !important;
    padding: 0.25rem 0.65rem !important;
  }
  .card[style*="display: flex"] {
    padding: 1.25rem 1rem !important;
    gap: 1rem !important;
  }
  .card[style*="display: flex"] img {
    width: 100px !important;
    height: 100px !important;
  }
  .card[style*="display: flex"] p {
    font-size: 0.82rem !important;
  }
  div[style*="position: absolute"][style*="opacity: 0.25"],
  div[style*="position: absolute"][style*="opacity:0.03"],
  div[style*="position: absolute"][style*="opacity: 0.03"] {
    display: none !important;
  }
}

/* ---- PRINT ---- */
@media print {
  .navbar, .floating-whatsapp, .hero-scroll-indicator,
  .slider-controls, .hero-corner-accent {
    display: none !important;
  }
  body { font-size: 12pt; line-height: 1.5; }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE ENHANCEMENTS
   Covers inline-styled elements, edge cases,
   and cross-page consistency.
   ============================================ */

/* ---- TABLET (≤ 900px) ---- */
@media (max-width: 900px) {

  /* Leadership split — 4fr/6fr inline grid override */
  .split[style*="grid-template-columns: 4fr 6fr"],
  .split[style*="grid-template-columns:4fr 6fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Leadership image container */
  .leadership-img {
    min-height: 300px !important;
    max-height: 380px !important;
  }

  .leadership-img img {
    height: 100% !important;
    max-height: 380px !important;
  }

  /* Inline padding/gap overrides for mission/vision cards */
  div[style*="padding: 4rem 3rem"],
  div[style*="padding:4rem 3rem"],
  div[style*="padding: 3rem 2.5rem"],
  div[style*="padding:3rem 2.5rem"] {
    padding: 2rem 1.5rem !important;
  }

  /* Inline font-size overrides for headings inside cards */
  h3[style*="font-size: 1.9rem"],
  h3[style*="font-size:1.9rem"] {
    font-size: 1.5rem !important;
  }

  /* About page inline image heights */
  img[style*="height:580px"],
  img[style*="height: 580px"] {
    height: 380px !important;
  }

  /* Contact grid inline override */
  div[style*="grid-template-columns: 1.4fr 1fr"],
  div[style*="grid-template-columns:1.4fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Footer logo flex area */
  .footer .grid > div:first-child a[style*="display: flex"] {
    justify-content: center;
  }
}

/* ---- MOBILE (≤ 600px) ---- */
@media (max-width: 600px) {

  /* Marquee tooltip text — hide on mobile to avoid overflow */
  .marquee-item span[style*="position: absolute"] {
    display: none !important;
  }

  /* About page sticky image override */
  img[style*="position: sticky"],
  img[style*="position:sticky"] {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    height: 280px !important;
    align-self: auto !important;
  }

  /* Inline height overrides */
  img[style*="min-height:500px"],
  img[style*="min-height: 500px"] {
    min-height: auto !important;
    height: 280px !important;
  }

  img[style*="height:580px"],
  img[style*="height: 580px"] {
    height: 240px !important;
  }

  /* Leadership section */
  .leadership-img {
    min-height: 250px !important;
    max-height: 300px !important;
  }

  .leadership-text {
    padding: 1.5rem 1rem !important;
  }

  .leadership-text h2 {
    font-size: 1.5rem !important;
  }

  /* Principal badge */
  .principal-badge {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  /* Mission/vision card headings */
  h3[style*="font-size: 1.9rem"],
  h3[style*="font-size:1.9rem"] {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
  }

  /* Inline font-size 1.15rem body text */
  p[style*="font-size: 1.15rem"],
  p[style*="font-size:1.15rem"],
  p[style*="font-size: 1.1rem"],
  p[style*="font-size:1.1rem"] {
    font-size: 0.95rem !important;
  }

  p[style*="font-size: 1.05rem"],
  p[style*="font-size:1.05rem"] {
    font-size: 0.92rem !important;
  }

  /* COVID card inline flex */
  div[style*="display: flex"][style*="justify-content: space-between"] {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  /* Inline 2-column grids override */
  div[style*="grid-template-columns: repeat(4"],
  div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Founder signature in hero */
  .hero-founder-sig {
    max-width: 100% !important;
  }

  /* Inline display:flex sections stacking */
  div[style*="display: flex"][style*="justify-content: center"][style*="gap: 1.5rem"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }

  /* Inline large font sizes on headings */
  h2[style*="font-size: 2.5rem"],
  h2[style*="font-size:2.5rem"] {
    font-size: 1.6rem !important;
  }

  h4[style*="font-size: 1.3rem"],
  h4[style*="font-size:1.3rem"] {
    font-size: 1.1rem !important;
  }

  /* Form inputs — touch friendly */
  .form-grid input,
  .form-grid textarea,
  .form-grid select {
    font-size: 16px !important; /* Prevents iOS zoom on focus */
    padding: 1rem 1.2rem !important;
  }

  /* Upload zone — smaller padding */
  .upload-zone {
    padding: 1.5rem 1rem;
  }

  /* Inline gap 2.5rem */
  div[style*="gap: 2.5rem"],
  div[style*="gap:2.5rem"] {
    gap: 1.5rem !important;
  }

  div[style*="gap: 2rem"],
  div[style*="gap:2rem"] {
    gap: 1.25rem !important;
  }

  /* Service tile text on mobile */
  .service-tile .overlay {
    padding: 1rem;
  }

  .service-tile h3 {
    font-size: 1rem;
  }

  .service-tile p {
    font-size: 0.78rem;
  }

  /* Badge sizing */
  .badge {
    font-size: 0.62rem;
    padding: 0.2rem 0.5rem;
  }

  /* Testimonial card sizing */
  .testimonial {
    padding: 1.5rem;
  }

  .testimonial blockquote {
    font-size: 1rem;
  }

  /* Info card contact sidebar */
  .info-card {
    padding: 1.25rem !important;
  }

  .info-card h3 {
    font-size: 1.15rem;
  }

  .info-card li {
    font-size: 0.88rem;
  }
}

/* ---- SMALL MOBILE (≤ 400px) ---- */
@media (max-width: 400px) {

  /* Leadership image */
  .leadership-img {
    min-height: 200px !important;
    max-height: 250px !important;
  }

  /* Mission/vision headings */
  h3[style*="font-size: 1.9rem"],
  h3[style*="font-size:1.9rem"] {
    font-size: 1.1rem !important;
  }

  /* About page body text */
  p[style*="font-size: 1.15rem"],
  p[style*="font-size:1.15rem"],
  p[style*="font-size: 1.1rem"],
  p[style*="font-size:1.1rem"],
  p[style*="font-size: 1.05rem"],
  p[style*="font-size:1.05rem"] {
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
  }

  /* Overlapping images */
  .overlapping-images {
    height: 220px !important;
  }

  .overlapping-images img:nth-child(1) {
    width: 80% !important;
    height: 80% !important;
  }

  .overlapping-images img:nth-child(2) {
    width: 50% !important;
    height: 45% !important;
  }

  /* Marquee numerals */
  .marquee-content .num,
  .marquee-item .num {
    font-size: 1.5rem !important;
  }

  .marquee-item {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  /* Footer minimal spacing */
  .footer {
    padding: 2rem 0 1rem !important;
  }

  .footer .copyright {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  /* Inline padding overrides */
  div[style*="padding: 4rem 3rem"],
  div[style*="padding:4rem 3rem"],
  div[style*="padding: 3rem 2.5rem"],
  div[style*="padding:3rem 2.5rem"] {
    padding: 1.5rem 1rem !important;
  }

  /* Hero badge pill */
  .hero-badge {
    font-size: 0.55rem !important;
    padding: 0.25rem 0.65rem !important;
  }

  /* Team cards compact */
  .card[style*="display: flex"] {
    padding: 1.25rem 1rem !important;
    gap: 1rem !important;
  }

  .card[style*="display: flex"] img {
    width: 100px !important;
    height: 100px !important;
  }

  .card[style*="display: flex"] p {
    font-size: 0.82rem !important;
  }

  /* Inline decorative absolute icons hide */
  div[style*="position: absolute"][style*="opacity: 0.25"],
  div[style*="position: absolute"][style*="opacity: 0.05"],
  div[style*="position: absolute"][style*="opacity:0.03"],
  div[style*="position: absolute"][style*="opacity: 0.03"] {
    display: none !important;
  }
}

/* ---- PRINT ---- */
@media print {
  .navbar, .floating-whatsapp, .hero-scroll-indicator,
  .slider-controls, .hero-corner-accent {
    display: none !important;
  }
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}

/* ============================================
   PREMIUM POLISH — PRE-LAUNCH ENHANCEMENTS
   ============================================ */

/* Smooth page entrance */
body {
  animation: page-fade-in 0.6s ease-out;
}
@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Navbar glassmorphism on scroll */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08);
}

/* Premium button micro-interactions */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::after {
  transform: translateX(100%);
}
.btn:active {
  transform: translateY(-1px) scale(0.98) !important;
}

/* Premium gold button glow */
.btn-gold {
  box-shadow: 0 4px 15px rgba(217, 171, 85, 0.3);
}
.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(217, 171, 85, 0.45) !important;
}

/* Card premium lift + glow border */
.card:hover,
.svc-card:hover,
.why-icon-card:hover {
  box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.15),
              0 0 0 1px rgba(184, 144, 83, 0.15);
}

/* Gold divider pulse animation */
.gold-divider {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: divider-shimmer 3s ease-in-out infinite;
}
@keyframes divider-shimmer {
  0%, 100% { background-position: 200% center; }
  50% { background-position: -200% center; }
}

/* Premium nav link hover underline */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 70%;
}
@media (max-width: 900px) {
  .nav-links a::after { display: none; }
}

/* Premium icon circle glow */
.icon-circle {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-icon-card:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(184, 144, 83, 0.4);
}

/* Premium form focus glow */
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 144, 83, 0.12),
              0 4px 12px rgba(184, 144, 83, 0.15);
}

/* Premium photo border pulse */
.photo-gold {
  transition: all 0.4s ease;
}
.photo-gold:hover {
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.2),
              0 0 30px rgba(201, 168, 76, 0.15),
              0 12px 30px -10px rgba(201, 168, 76, 0.45);
  transform: scale(1.03);
}

/* Smooth image reveal on load */
.fade-up img {
  transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium eyebrow text tracking */
.eyebrow {
  position: relative;
  display: inline-block;
}

/* Footer link hover animation */
.footer li a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* Premium testimonial quote */
.testimonial blockquote {
  position: relative;
}
.testimonial blockquote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: -0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

/* Premium badge pill shine */
.badge {
  transition: all 0.3s ease;
}
.badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Floating WhatsApp pulse */
.floating-whatsapp {
  animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* Hero slider progress bar on dots */
.slide-dot.active {
  position: relative;
  overflow: hidden;
}
.slide-dot.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255,255,255,0.3);
  border-radius: 6px;
  animation: dot-progress 5s linear forwards;
}
@keyframes dot-progress {
  from { width: 0; }
  to { width: 100%; }
}

/* Premium trust strip marquee separator */
.marquee-item {
  transition: opacity 0.3s ease;
}

/* Section separator line */
.section + .section {
  border-top: 1px solid rgba(229, 231, 235, 0.5);
}
.section-muted + .section,
.section + .section-muted {
  border-top: none;
}

/* Smooth anchor scroll offset for sticky nav */
:target {
  scroll-margin-top: 100px;
}

