/* ===================================================
   ARIYA HEALTH CARE – STYLESHEET
   Color Palette: Deep Green, Teal Blue, Gold, White, Off-White
   =================================================== */

/* -------- CSS VARIABLES -------- */
:root {
  --green-dark:   #1f433b;
  --green:        #29574d;
  --green-light:  #4d7a70;
  --green-pale:   #e7efed;
  --teal:         #29574d;
  --teal-light:   #4d7a70;
  --teal-pale:    #e7efed;
  --gold:         #a38455;
  --gold-light:   #b89a6a;
  --gold-pale:    #f5efe5;
  --white:        #FFFFFF;
  --off-white:    #f8f6f1;
  --bg-light:     #f3f0ea;
  --text-dark:    #1f312d;
  --text-mid:     #415751;
  --text-muted:   #6d7c77;
  --border:       #ddd2c0;
  --shadow-sm:    0 2px 8px rgba(41, 87, 77, 0.1);
  --shadow-md:    0 8px 24px rgba(41, 87, 77, 0.14);
  --shadow-lg:    0 16px 48px rgba(41, 87, 77, 0.18);
  --shadow-gold:  0 8px 24px rgba(163, 132, 85, 0.25);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h:     78px;
  --topbar-h:     42px;
}

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

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

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}

/* -------- UTILITIES -------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding { padding: 90px 0; }
.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-gold  { color: var(--gold); }
.w-full { width: 100%; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -------- SECTION HEADER -------- */
.section-header { margin-bottom: 56px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(163, 132, 85, 0.28);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(163, 132, 85, 0.36);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(41, 87, 77, 0.28);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(41, 87, 77, 0.36);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(163, 132, 85, 0.28);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(163, 132, 85, 0.36);
  color: var(--white);
}

.btn-outline-white {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-outline-white:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--green);
  padding: 4px 0;
  transition: all var(--transition);
}
.btn-link:hover { color: var(--green-dark); gap: 10px; }

/* ====================================================
   TOP BAR
   ==================================================== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: linear-gradient(90deg, var(--green-dark), #134a2a);
  color: rgba(255,255,255,0.86);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar span,
.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.86);
}
.top-bar a:hover {
  color: #fff;
}

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(255, 255, 255, 0.0);
  backdrop-filter: blur(0px);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(46, 139, 87, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-image {
  display: block;
  height: 66px;
  width: auto;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .navbar {
    top: 0;
  }
  .logo-image { height: 52px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-dark);
  transition: all var(--transition);
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-dropdown-caret {
  padding: 8px 10px;
}
.nav-dropdown-toggle i {
  font-size: 0.72rem;
  transition: transform var(--transition);
}
.nav-dropdown.open .nav-dropdown-toggle i,
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
  transform: rotate(180deg);
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.18);
  color: var(--green-dark);
}
.navbar.scrolled .nav-link { color: var(--text-mid); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  background: var(--green-pale);
  color: var(--green);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 280px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17, 41, 73, 0.08);
  box-shadow: 0 18px 42px rgba(17, 41, 73, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 20;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-dropdown-link:hover {
  background: var(--green-pale);
  color: var(--green);
}

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white !important;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  margin-left: 8px;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.45);
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  color: white;
  gap: 5px;
  padding: 8px;
  background: rgba(255,255,255,0.1) !important;
  border-radius: 8px;
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.scrolled .hamburger { background: var(--green-pale); border-color: var(--border); color: white !important; }
.navbar.scrolled .hamburger span { background: var(--green); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}
.hero-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.hero-carousel-control {
  width: 58px;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.hero:hover .hero-carousel-control {
  opacity: 1;
}
.hero-carousel-control .carousel-control-prev-icon,
.hero-carousel-control .carousel-control-next-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.16);
  background-size: 50% 50%;
  backdrop-filter: blur(8px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 52, 28, 0.88) 0%,
    rgba(26, 107, 138, 0.65) 60%,
    rgba(11, 52, 28, 0.5) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--navbar-h);
  padding-bottom: 60px;
  max-width: 750px;
}

.page-hero {
  margin-top: 120px;
  padding-bottom: 70px;
  background-color: #185732;
}

.page-hero-inner {
  max-width: 760px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  padding: 0 0 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.page-breadcrumb a,
.page-breadcrumb-current {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.72);
}

.page-breadcrumb a:hover {
  color: var(--white);
}

.page-breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}

.page-breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.46);
  font-size: 0.55rem;
}

.page-hero .section-label {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
}

.page-title {
  font-size: clamp(2.4rem, 2vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.page-subtitle {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-overview-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

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

.service-overview-card p {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.service-detail-grid.reverse .service-detail-image {
  order: 2;
}

.service-detail-grid.reverse .service-detail-copy {
  order: 1;
}

.service-detail-image img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
  min-height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.service-detail-copy p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-point-list {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.service-point-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-mid);
  line-height: 1.7;
}

.service-point-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 8px;
  flex: 0 0 9px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.gallery-media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-light);
}

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

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

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(8, 18, 14, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-frame {
  max-width: min(1200px, 100%);
  max-height: min(88vh, 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.gallery-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: var(--white);
}

.gallery-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  transition: background var(--transition), transform var(--transition);
}

.gallery-lightbox-close:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.04);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeSlideDown 0.8s ease both;
}

.hero-title {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeSlideUp 0.9s 0.2s ease both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 580px;
  animation: fadeSlideUp 0.9s 0.4s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideUp 0.9s 0.6s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  backdrop-filter: blur(12px);
  animation: fadeSlideUp 0.9s 0.8s ease both;
  flex-wrap: wrap;
  gap: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 80px;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 5px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.hero-scroll-indicator:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.hero-carousel-section {
  padding-top:120px;
  background: #f7fbf8;
}
.hero-seo-intro {
  padding: 30px 20px 0;
  text-align: center;
}
.hero-seo-intro h1 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--text-dark);
  font-size: clamp(2rem, 2vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-carousel-section {
   padding-top:70px;
  background:#f7fbf8;
  }
  .hero-seo-intro {
    padding-top: 24px;
  }
 
}
/* .hero-banner-image {
  width: 100%;
  height: min(78vh, 760px);
  object-fit: cover;
} */

/* ====================================================
   ABOUT SECTION
   ==================================================== */
.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(46, 139, 87, 0.08), transparent 28%),
    radial-gradient(circle at 88% 86%, rgba(212, 175, 55, 0.08), transparent 22%),
    linear-gradient(180deg, #fcfffd 0%, #f5fbf7 100%);
}
.about::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  left: -140px;
  border-radius: 50%;
  background: rgba(46, 139, 87, 0.06);
  filter: blur(8px);
}
.about::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.07);
  filter: blur(6px);
}
.about .container {
  position: relative;
  z-index: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(420px, 1.05fr);
  gap: 56px;
  align-items: center;
  position: relative;
}
.about-image-col {
  position: relative;
  padding-top: 8px;
}
.about-image-wrapper {
  position: relative;
  padding: 0;
  border-radius: 48px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: -20px 38px 34px -18px;
  border-radius: 46px;
  background: linear-gradient(180deg, rgba(132, 184, 161, 0.18), rgba(248, 250, 252, 0));
  pointer-events: none;
}
.about-main-img {
  width: 100%;
  display: block;
  border-radius: 90px 90px 32px 32px;
  box-shadow: 0 28px 60px rgba(17, 41, 73, 0.15);
  object-fit: cover;
  aspect-ratio: 5 / 6;
}
.about-floating-icon {
  position: absolute;
  left: -34px;
  top: 74px;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(46, 139, 87, 0.08);
  box-shadow: 0 22px 48px rgba(17, 41, 73, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.about-floating-icon i {
  font-size: 3rem;
  color: #f17f93;
}

.about-badge-card {
  position: absolute;
  left: -18px;
  bottom: 70px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  padding: 12px 18px 12px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(17, 41, 73, 0.14);
  font-size: 0.88rem;
  border: 1px solid rgba(46, 139, 87, 0.12);
  backdrop-filter: blur(10px);
}
.about-badge-card i {
  font-size: 1.8rem;
  color: var(--gold);
}
.about-badge-card strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.about-badge-card span  { color: var(--text-muted); font-size: 0.78rem; }
.about-badge-avatars {
  display: flex;
  align-items: center;
  margin-right: 4px;
}
.about-badge-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: linear-gradient(135deg, #2e8b57, #92d6af);
}
.about-badge-avatars span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #f4a259, #f7d08a);
}
.about-badge-avatars span:nth-child(2) {
  background: linear-gradient(135deg, #4ea8de, #90e0ef);
}
.about-badge-avatars span:nth-child(3) {
  background: linear-gradient(135deg, #ef476f, #ffd6de);
}

.about-text-col {
  position: relative;
  padding: 22px 8px 22px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.about-text-col .section-title {
  font-size: clamp(2.1rem, 2vw, 3.35rem);
  line-height: 1.08;
  margin-bottom: 18px;
}
.about-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.about-stars {
  display: inline-flex;
  gap: 4px;
  color: #f5b92b;
}
.about-rating {
  font-weight: 700;
  color: #3f4e95;
}
.about-trust-text {
  color: #445d9b;
  font-weight: 600;
}

.about-lead {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 14px;
}
.about-body {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 26px;
}
.about-feature-board {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 28px;
  margin-bottom: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08), transparent 20%),
    linear-gradient(135deg, #45539c 0%, #394b92 48%, #34457f 100%);
  box-shadow: 0 24px 48px rgba(57, 75, 146, 0.22);
}
.about-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.05);
}
.about-feature-icon i {
  font-size: 1.2rem;
  color: #fff;
}
.about-feature-copy strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.about-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.about-feature-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 500;
}
.about-feature-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--green-light);
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.about-actions .btn {
  justify-content: center;
  min-width: 220px;
}
.btn-outline-green {
  border: 1.5px solid var(--gold);
  color: #fff;
  background: var(--gold);
}
.btn-outline-green:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}
.about-counters {
  padding: 32px 0 32px;
  background-color: var(--green);
  /* background:
    radial-gradient(circle at 10% 30%, rgba(46, 139, 87, 0.1), transparent 20%),
    radial-gradient(circle at 88% 76%, rgba(212, 175, 55, 0.08), transparent 18%),
    linear-gradient(180deg, #edf7f1 0%, #e6f3eb 100%); */
}
.about-counters .container {
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}
.about-counters-shell {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  /* background: rgba(255, 255, 255, 0.56); */
  /* border: 1px solid rgba(46, 139, 87, 0.08); */
  /* box-shadow: 0 22px 48px rgba(17, 41, 73, 0.06); */
}
.about-counter-card {
  min-height: 150px;
  border-radius: 22px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 30px rgba(17, 41, 73, 0.07);
}
.about-counter-card.warm {
  background: linear-gradient(135deg, #fff0f8 0%, #fff6f9 100%);
}
.about-counter-card.cool {
  background: linear-gradient(135deg, #eff9ff 0%, #f3fcff 100%);
}
.about-counter-card.soft {
  background: linear-gradient(135deg, #fff8e7 0%, #fffdf5 100%);
}
.about-counter-card.green {
  background: linear-gradient(135deg, #eefaf3 0%, #f6fffb 100%);
}
.about-counter-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}
.about-counter-card.warm .about-counter-icon {
  background: rgba(240, 109, 149, 0.12);
  color: #ef5b8d;
}
.about-counter-card.cool .about-counter-icon {
  background: rgba(36, 145, 181, 0.12);
  color: var(--teal);
}
.about-counter-card.soft .about-counter-icon {
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold);
}
.about-counter-card.green .about-counter-icon {
  background: rgba(46, 139, 87, 0.12);
  color: var(--green);
}
.about-counter-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.about-counter-value .stat-number,
.about-counter-suffix {
  font-size: clamp(2.2rem, 1.8vw, 3.2rem);
  line-height: 1;
  font-weight: 600;
  color: var(--gold-light);
}

@media (max-width: 480px) {
  .about-counter-value .stat-number,
  .about-counter-suffix {
    font-size: 1.8rem;
  }
}

.about-counter-card p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--green);
}

/* ====================================================
   LIFE CARE FEATURE SECTION
   ==================================================== */
.life-care {
  background: #1179b8;
  color: #fff;
}
.life-care-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(520px, 1.3fr);
  gap: 36px;
  align-items: center;
}
.life-care-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(9, 48, 84, 0.22);
}
.life-care-image {
  display: block;
  width: 100%;
  min-height: 482px;
  object-fit: cover;
}
.life-care-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.life-care-title {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: clamp(2.35rem, 4.3vw, 4.15rem);
  line-height: 1.28;
  font-weight: 800;
  max-width: 840px;
  margin: 0 auto 34px;
  color: #fff;
  text-align: center;
}
.life-care-grid {
  display: grid;
  width: 100%;
  max-width: 860px;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}
.life-care-card {
  min-height: 210px;
  padding: 28px 18px 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform var(--transition);
}
.life-care-card:hover {
  transform: translateY(-4px);
}
.life-care-icon {
  width: 82px;
  height: 82px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 3.1rem;
  background: transparent !important;
}
.life-care-card.ortho .life-care-icon {
  color: #1986d6;
}
.life-care-card.oncology .life-care-icon {
  color: #1986d6;
}
.life-care-card.pediatric .life-care-icon {
  color: #1986d6;
}
.life-care-card.internal .life-care-icon {
  color: #1986d6;
}
.life-care-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 800;
  color: #1bb429;
}

/* ====================================================
   DEPARTMENTS SECTION
   ==================================================== */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.dept-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.dept-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dept-color, var(--green)), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.dept-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.dept-card:hover::before { opacity: 1; }

.dept-icon-wrapper {
  width: 68px; height: 68px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--dept-color, var(--green)) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--dept-color, var(--green));
  margin-bottom: 22px;
  transition: all var(--transition);
}
.dept-card:hover .dept-icon-wrapper {
  background: var(--dept-color, var(--green));
  color: white;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--dept-color, var(--green)) 40%, transparent);
}

.dept-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.dept-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.dept-features {
  margin-bottom: 22px;
}
.dept-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-mid);
  padding: 4px 0;
}
.dept-features li i { color: var(--green); font-size: 0.75rem; }

.dept-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  transition: all var(--transition);
}
.dept-link:hover { color: var(--green-dark); gap: 10px; }

.department-showcase {
  background: var(--bg-light);
}
.dept-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.dept-tabs-shell {
  position: relative;
}
.dept-focus-copy {
  max-width: 900px;
  margin: 18px auto 0;
  padding: 20px 24px;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 12px 28px rgba(17, 41, 73, 0.05);
}
.dept-focus-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.dept-focus-copy p + p {
  margin-top: 10px;
}
.dept-tabs-arrow {
  display: none;
}
.dept-tab {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  font-weight: 700;
  transition: all var(--transition);
  cursor: pointer;
}
.dept-tab:hover {
  transform: translateY(-2px);
  border-color: var(--green-light);
}
.dept-tab.active {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.dept-panels {
  position: relative;
}
.dept-panel {
  display: none;
}
.dept-panel.active {
  display: block;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}
.showcase-hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.showcase-hero-top {
  margin-bottom: 28px;
}
.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 18px;
}
.showcase-hero-card h3 {
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text-dark);
}
.showcase-hero-card p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.showcase-doctor-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(46, 139, 87, 0.08), rgba(255, 255, 255, 0.9));
  border: 1px solid var(--border);
}
.doctor-icon {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  flex-shrink: 0;
}
.doctor-icon.orthopaedic { background: linear-gradient(135deg, #2E8B57, #1B5E37); }
.doctor-icon.oncology    { background: linear-gradient(135deg, #1A6B8A, #154965); }
.doctor-icon.paediatric  { background: linear-gradient(135deg, #B8860B, #8A6100); }
.doctor-icon.general     { background: linear-gradient(135deg, #2E8B57, #1B5E37); }
.showcase-doctor-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.showcase-doctor-card span {
  display: inline-flex;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.showcase-doctor-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.showcase-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 20px;
}
.department-services {
  margin-top: 32px;
}
.services-heading {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-weight: 700;
}
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  align-items: stretch;
}
.service-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  color: inherit;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 139, 87, 0.16);
}
.service-thumb {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 24px rgba(17, 41, 73, 0.08);
  flex-shrink: 0;
}
.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
}
.service-copy h5 {
  font-size: 1.03rem;
  margin: 0;
  color: var(--text-dark);
  line-height: 1.4;
}
.service-copy p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}
.service-mobile-actions {
  display: none;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--green);
  transition: all var(--transition);
  align-self: start;
}
.service-card:hover .service-arrow {
  background: var(--green);
  color: #fff;
}
.showcase-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 26px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.showcase-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green);
}
.showcase-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.showcase-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.92rem;
}
.badge-teal { background: #E3F2F8; color: #1A6B8A; }
.badge-gold { background: #FBF5E0; color: #B8860B; }
.badge-blue { background: #E8F0FB; color: #154965; }

@media (max-width: 992px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .service-card-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .dept-tabs { gap: 10px; }
  .showcase-doctor-card { flex-direction: column; align-items: center; text-align: center; }
  .showcase-doctor-card div { width: 100%; }
}

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--teal) 50%, var(--green-dark) 100%);
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-secondary .cta-banner-bg {
  background: linear-gradient(135deg, #0f6b8f 0%, #1179b8 50%, #2e8b57 100%);
}
.cta-secondary .cta-banner-bg::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.16), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(212,175,55,0.18), transparent 20%);
}

/* ====================================================
   LOGO MARQUEE
   ==================================================== */
.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 26px 0;
  background:
    linear-gradient(180deg, #f4faf7 0%, #edf6f2 100%);
  border-top: 1px solid rgba(41, 87, 77, 0.08);
  border-bottom: 1px solid rgba(41, 87, 77, 0.08);
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f4faf7 0%, rgba(244, 250, 247, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #edf6f2 0%, rgba(237, 246, 242, 0) 100%);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logo-marquee-scroll 24s linear infinite;
}

.logo-marquee-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.logo-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(41, 87, 77, 0.12);
  box-shadow: 0 12px 24px rgba(31, 67, 59, 0.08);
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-marquee-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  padding: 5px;
}

@keyframes logo-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====================================================
   QUICK CTA
   ==================================================== */
.quick-cta {
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.06), transparent 24%),
    radial-gradient(circle at 86% 82%, rgba(212,175,55,0.12), transparent 18%),
    linear-gradient(135deg, #16352d 0%, #0f4b3b 45%, #0a6b56 100%);
}
.quick-cta-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 56px rgba(6, 26, 21, 0.28);
  backdrop-filter: blur(10px);
}
.quick-cta-kicker {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #d7f5e5;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.quick-cta-copy h2 {
  margin: 0 0 14px;
  /* font-size: clamp(1.9rem, 3.3vw, 2.8rem); */
  line-height: 1.15;
  color: #fff;
}
.quick-cta-copy p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
}
.quick-cta-panel {
  display: grid;
  gap: 16px;
}
.quick-cta-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 24px rgba(6, 26, 21, 0.14);
}
.quick-cta-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--green);
  background: rgba(46, 139, 87, 0.12);
}
.quick-cta-icon.alt {
  color: var(--teal);
  background: rgba(26, 107, 138, 0.12);
}
.quick-cta-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-dark);
  font-size: 1rem;
}
.quick-cta-option span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ====================================================
   DOCTORS SECTION
   ==================================================== */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.doctor-info {
  padding: 28px;
  flex: 1;
}

.doctor-info h3 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.doctor-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.doctor-specialty {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.doctor-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.doctor-qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.doctor-qualifications span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--bg-light);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.doctor-qualifications span i { color: var(--green); }
.doctor-qualifications.small span { font-size: 0.75rem; padding: 3px 10px; }

.doctor-card.small {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  height: 100%;
}

.doctor-avatar {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: white;
}
.doctor-avatar.photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 24px rgba(17, 41, 73, 0.14);
  border: 3px solid rgba(255, 255, 255, 0.9);
}
.doctor-avatar--prajwal {
  background-color: #56a27a;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(17, 41, 73, 0.14);
}
.doctor-avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.doctor-avatar-image--prajwal {
  object-fit: cover;
  object-position: center 22%;
}
.doctor-avatar.baby   { background: linear-gradient(135deg, var(--gold), #E4A030); }
.doctor-avatar.internal { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }

.doctor-card.small .doctor-specialty {
  font-size: 0.77rem;
  padding: 3px 10px;
}
.doctor-card.small .doctor-info { padding: 0; flex: 1; }
.doctor-card.small p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.doctor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.doctor-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition),
    border-color var(--transition);
  box-shadow: 0 10px 20px rgba(46, 139, 87, 0.18);
}

.doctor-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(46, 139, 87, 0.24);
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.doctor-action-btn.secondary {
  background: var(--white);
  color: var(--green);
  border-color: var(--border);
  box-shadow: none;
}

.doctor-action-btn.secondary:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  border-color: var(--green-light);
  box-shadow: none;
}

.doctor-profile {
  background:
    radial-gradient(circle at 10% 16%, rgba(46, 139, 87, 0.08), transparent 24%),
    radial-gradient(circle at 90% 84%, rgba(201, 168, 76, 0.08), transparent 18%),
    linear-gradient(180deg, #fcfffd 0%, #f3faf6 100%);
}

.doctor-profile-hero {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 36px;
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.doctor-profile-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.doctor-profile-photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(17, 41, 73, 0.16);
}
.doctor-profile-photo--prajwal {
  object-fit: cover;
  object-position: center 18%;
}

.doctor-profile-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.doctor-profile-main h2 {
  margin: 0 0 14px;
  /* font-size: clamp(1.8rem, 2vw, 2.5rem); */
  line-height: 1.15;
  color: var(--text-dark);
}

.doctor-profile-main p {
  margin: 0 0 20px;
  color: var(--text-mid);
  line-height: 1.8;
}

.doctor-profile-contact,
.doctor-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.doctor-profile-contact {
  margin-bottom: 22px;
}

.doctor-profile-contact .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  gap: 8px;
}

.doctor-profile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.doctor-profile-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--green);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.doctor-profile-social-link:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

.doctor-profile-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.doctor-profile-meta div {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.doctor-profile-meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.doctor-profile-meta span,
.doctor-profile-meta a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.doctor-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.doctor-profile-card {
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.doctor-profile-card.span-2 {
  grid-column: span 2;
}

.doctor-profile-card p {
  color: var(--text-mid);
  line-height: 1.8;
}

.doctor-profile-list {
  display: grid;
  gap: 14px;
}

.doctor-profile-list li {
  padding: 0 0 0 18px;
  position: relative;
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 0.94rem;
}

.doctor-profile-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.doctor-profile-list strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.96rem;
  margin-bottom: 2px;
}

/* ====================================================
   WHY CHOOSE US
   ==================================================== */
.why-choose {
  background:
    radial-gradient(circle at 12% 18%, rgba(46, 139, 87, 0.14), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(212, 175, 55, 0.12), transparent 18%),
    linear-gradient(180deg, #f9fdfb 0%, #eef8f2 55%, #e7f4ec 100%);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(46,139,87,0.04) 1px, transparent 1px),
    linear-gradient(rgba(46,139,87,0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.4;
  pointer-events: none;
}
.why-choose .container {
  position: relative;
  z-index: 1;
}

.clinic-facilities {
  background:
    radial-gradient(circle at top center, rgba(163, 132, 85, 0.12), transparent 32%),
    linear-gradient(180deg, #fffdf9 0%, var(--off-white) 100%);
}

.clinic-facilities-header {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.clinic-facilities-kicker {
  justify-content: center;
  color: var(--green) !important;
  background: rgba(41, 87, 77, 0.08) !important;
  border: 1px solid rgba(41, 87, 77, 0.14);
  box-shadow: 0 10px 22px rgba(41, 87, 77, 0.08);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.clinic-facilities-title {
  margin: 0 0 16px;
  color: var(--text-dark);
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.clinic-facilities-subtitle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.clinic-facilities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 18px;
}

.facility-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 190px;
  padding: 24px 18px 20px;
  background: #fffefb;
  border: 1px solid rgba(163, 132, 85, 0.2);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(41, 87, 77, 0.08);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.facility-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(41, 87, 77, 0.14);
  border-color: rgba(163, 132, 85, 0.42);
}

.facility-tile-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(41, 87, 77, 0.08),
    rgba(163, 132, 85, 0.14)
  );
}

.facility-tile-icon i {
  color: var(--green);
  font-size: 2.2rem;
}

.facility-tile h3 {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.why-header {
  margin-bottom: 48px;
}
.why-kicker {
  color: var(--green) !important;
  background: rgba(46, 139, 87, 0.1) !important;
  border: 1px solid rgba(46, 139, 87, 0.12);
  box-shadow: 0 10px 22px rgba(46, 139, 87, 0.08);
}
.why-title {
  margin: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: clamp(2.4rem, 2vw, 4.4rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text-dark);
  
  letter-spacing: 0.02em;
}
.why-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(520px, 1.32fr);
  gap: 30px;
  align-items: stretch;
}
.why-visual {
  display: flex;
}
.why-visual-frame {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 26px 56px rgba(17, 41, 73, 0.14);
  border: 1px solid rgba(46, 139, 87, 0.1);
  padding: 10px;
}
.why-main-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 20px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px 24px;
  border: 1px solid rgba(46, 139, 87, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 14px 30px rgba(17, 41, 73, 0.06);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(17, 41, 73, 0.1);
  border-color: rgba(46, 139, 87, 0.18);
}

.why-icon-circle {
  width: 74px; height: 74px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
  font-size: 1.75rem;
  transition: all var(--transition);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}
.why-icon-circle.green { background: rgba(46, 139, 87, 0.12); color: var(--green); }
.why-icon-circle.blue  { background: rgba(26, 107, 138, 0.12); color: var(--teal); }
.why-icon-circle.gold  { background: rgba(212, 175, 55, 0.14); color: var(--gold); }
.why-icon-circle.teal  { background: rgba(26,140,122,0.12); color: #1A8C7A; }

.why-card:hover .why-icon-circle.green,
.why-card:hover .why-icon-circle.blue,
.why-card:hover .why-icon-circle.gold,
.why-card:hover .why-icon-circle.teal {
  background: var(--green);
  color: white;
  box-shadow: 0 8px 20px rgba(46,139,87,0.24);
}

.why-copy {
  flex: 1;
  padding-top: 2px;
}
.why-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: #23364d;
  line-height: 1.7;
  margin: 0;
}

/* ====================================================
   FAQ
   ==================================================== */
.faq {
  /* background: linear-gradient(180deg, #f9fdfb 0%, #f2faf6 100%); */
}
.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(46, 139, 87, 0.12);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(17, 41, 73, 0.06);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  position: relative;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
}
.faq-item[open] summary::after {
  content: "-";
}
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.testimonials-track {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  display: none;
  animation: fadeIn 0.5s ease;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 24px; left: 36px;
  font-size: 6rem;
  color: var(--green-pale);
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  line-height: 1;
}
.testimonial-card.active { display: block; }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 18px; }

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  font-size: 3rem;
  color: var(--green);
  background: var(--green-pale);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-author span {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}
.testimonial-author span i { color: var(--green); font-size: 0.75rem; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-mid);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.testimonial-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.dot.active {
  background: var(--green);
  transform: scale(1.3);
}


/* ====================================================
   CONTACT SECTION
   ==================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form-card, .contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3, .contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form-card h3 i, .contact-info-card h3 i { color: var(--green); }

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.form-group label span { color: var(--green); }

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: all var(--transition);
}
.input-wrapper:focus-within {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.08);
}
.input-wrapper i {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: color var(--transition);
}
.input-wrapper:focus-within i { color: var(--green); }

.input-wrapper select { color: var(--text-dark); }
.input-wrapper select option { color: var(--text-dark); }

.input-wrapper.textarea {
  align-items: flex-start;
  padding-top: 14px;
}
.input-wrapper.textarea i { margin-top: 3px; }
.input-wrapper textarea { resize: none; }

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #E53935;
  margin-top: 5px;
  min-height: 18px;
  transition: all var(--transition);
}

.form-success {
  margin-top: 16px;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-info-item:hover { background: var(--green-pale); border-color: var(--green); }

.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.contact-info-item a { color: var(--text-muted); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--green); }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green) !important;
  margin-top: 6px;
}
.map-link:hover { color: var(--green-dark) !important; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; }

/* ====================================================
   FOOTER
   ==================================================== */
.footer { background: #0C2415; color: rgba(255,255,255,0.75); }

.footer-top { padding: 70px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo .logo-main { color: var(--green-light); }
.footer-logo .logo-sub  { color: rgba(255,255,255,0.5); }
.footer-logo .logo-image {
  height: 92px;
  width: auto;
}

.brand-col p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.6);
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(46,139,87,0.4);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-links a i { font-size: 0.65rem; color: var(--green-light); }
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.footer-contact-list i {
  color: var(--green-light);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact-list a { color: rgba(255,255,255,0.65); }
.footer-contact-list a:hover { color: var(--green-light); }
.footer-map-item {
  display: block !important;
}
.footer-map-frame {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 18px;
  display: block;
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.legal-links { display: flex; align-items: center; gap: 12px; }
.legal-links a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.legal-links a:hover { color: var(--green-light); }
.legal-links span { opacity: 0.3; }

/* ====================================================
   SCROLL TO TOP BUTTON
   ==================================================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green);
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46,139,87,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--green-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46,139,87,0.5);
}

/* ====================================================
   DESKTOP ACTION BAR
   ==================================================== */
.desktop-action-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.desktop-action-bar:hover .desktop-action-link {
  width: 72px;
}
.desktop-action-bar:hover .desktop-action-link:hover {
  width: 180px;
}
.desktop-action-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-end;
  gap: 14px;
  width: 72px;
  height: 58px;
  padding: 0 22px 0 18px;
  text-align: left;
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 22px 0 0 22px;
  box-shadow: 0 14px 28px rgba(17, 41, 73, 0.14);
  transition: width var(--transition), transform var(--transition), filter var(--transition), box-shadow var(--transition);
}
.desktop-action-link i {
  flex: 0 0 auto;
  width: 22px;
  text-align: center;
  font-size: 1.25rem;
}
.desktop-action-link span {
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.desktop-action-link:hover {
  transform: translateX(0);
  filter: brightness(1.05);
  box-shadow: 0 18px 36px rgba(17, 41, 73, 0.2);
}
.desktop-action-link:hover span {
  opacity: 1;
  transform: translateX(0);
}
.desktop-action-link.appointment,
.desktop-action-link.call {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}
.desktop-action-link.location,
.desktop-action-link.whatsapp {
  background: linear-gradient(135deg, var(--gold), #d9b65c);
}
.desktop-action-link.call {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}
.desktop-action-link.whatsapp {
  background: linear-gradient(135deg, #218c5d, #34b56f);
}

/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================
   RESPONSIVE DESIGN
   ==================================================== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse .service-detail-image,
  .service-detail-grid.reverse .service-detail-copy {
    order: initial;
  }
  .about-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-image-wrapper { max-width: 500px; margin: 0 auto; }
  .about-text-col { padding: 0; }
  .about-counters-shell { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-cta-shell { grid-template-columns: 1fr; }
  .life-care-shell { grid-template-columns: 1fr; }
  .life-care-image-wrap { max-width: 520px; margin: 0 auto; }
  .life-care-image { min-height: 380px; }
  .life-care-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-layout { grid-template-columns: 1fr; }
  .why-visual-frame { max-width: 560px; margin: 0 auto; }
  .why-main-image { min-height: 420px; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .brand-col { grid-column: span 2; }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px;
  }

  .desktop-action-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    transform: none;
    gap: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(46, 139, 87, 0.12);
    box-shadow: 0 -8px 24px rgba(17, 41, 73, 0.12);
  }

  .desktop-action-bar:hover .desktop-action-link,
  .desktop-action-bar:hover .desktop-action-link:hover {
    width: 100%;
  }

  .desktop-action-link {
    width: 100%;
    height: 74px;
    padding: 8px 6px 10px;
    gap: 6px;
    align-self: stretch;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .desktop-action-link:last-child {
    border-right: none;
  }

  .desktop-action-link i {
    width: auto;
    font-size: 1.45rem;
  }

  .desktop-action-link span {
    opacity: 1;
    transform: none;
  }

  .desktop-action-link:hover {
    transform: none;
    filter: none;
    box-shadow: none;
  }

  .desktop-action-link.location {
    order: 1;
    background: var(--green-dark) !important;
  }

  .desktop-action-link.whatsapp {
    order: 2;
    background: #218c5d !important;
  }

  .desktop-action-link.call {
    order: 3;
    background: var(--teal) !important;
  }

  .desktop-action-link.appointment {
    order: 4;
    background: var(--gold) !important;
  }

  :root { --navbar-h: 68px; --topbar-h: 56px; }

  .section-padding { padding: 64px 0; }
  .page-breadcrumb {
    padding: 0 0 10px;
    gap: 6px;
    margin-bottom: 16px;
  }
  .page-breadcrumb a,
  .page-breadcrumb-current {
    font-size: 0.75rem;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .service-overview-grid { grid-template-columns: 1fr; }
  .service-detail-image img { min-height: 240px; }
  .dept-tabs-shell {
    position: relative;
    padding: 0 34px;
    margin-bottom: 32px;
  }
  .dept-focus-copy {
    padding: 18px;
  }
  .dept-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0 0 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dept-tabs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(46, 139, 87, 0.08);
    color: var(--green);
    border: 1px solid rgba(46, 139, 87, 0.12);
    pointer-events: auto;
    cursor: pointer;
  }
  .dept-tabs-arrow:hover {
    background: rgba(46, 139, 87, 0.16);
    color: var(--green-dark);
  }
  .dept-tabs-arrow.left {
    left: 0;
  }
  .dept-tabs-arrow.right {
    right: 0;
  }
  .dept-tabs::-webkit-scrollbar {
    display: none;
  }
  .dept-tab {
    flex: 0 0 auto;
    min-width: max-content;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .gallery-lightbox {
    padding: 18px;
  }
  .gallery-lightbox-close {
    top: 16px;
    right: 16px;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  .service-mobile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }
  .service-mobile-btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 700;
    line-height: 1;
    transition: all var(--transition);
  }
  .service-mobile-btn.quote {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(46, 139, 87, 0.18);
  }
  .service-mobile-btn.readmore {
    background: var(--green-pale);
    color: var(--green-dark);
    border: 1px solid rgba(46, 139, 87, 0.14);
  }
  .service-thumb {
    width: 100%;
    height: 180px;
    border-radius: 18px;
  }
  .service-arrow {
    display: none;
  }

  .top-bar {
    font-size: 0.76rem;
  }
  .top-bar-inner {
    justify-content: center;
    text-align: center;
    padding: 6px 0;
  }
  .top-bar-left,
  .top-bar-right {
    justify-content: center;
    gap: 10px;
  }
  .top-bar-right {
    display: none;
  }
  .top-bar-left .fa-location-dot {
    display: none;
  }
  .top-bar-left span {
    justify-content: center;
  }

  .hamburger {
    display: flex;
    background-color: #0a6b56 !important;
    border-color: #0a6b56;
    color: var(--white) !important;
  }
  .hamburger span {
    background: var(--white);
  }
  .navbar.scrolled .hamburger {
    background-color: #0a6b56 !important;
    border-color: #0a6b56;
  }
  .navbar.scrolled .hamburger span {
    background: var(--white);
  }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px 30px;
    gap: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-top: 1px solid var(--border);
    z-index: 999;
    max-height: calc(100vh - var(--navbar-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--text-mid) !important; padding: 12px 16px; width: 100%; border-radius: 10px; }
  .nav-link:hover, .nav-link.active { background: var(--green-pale) !important; color: var(--green) !important; }
  .nav-item { width: 100%; }
  .nav-dropdown-trigger {
    width: 100%;
    gap: 6px;
  }
  .nav-dropdown-trigger .nav-link {
    flex: 1;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown-trigger .nav-dropdown-toggle {
    flex: 0 0 auto;
    width: auto;
    justify-content: center;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 6px;
    border-radius: 14px;
    box-shadow: none;
    border: 1px solid var(--border);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-cta { width: 100%; justify-content: center; margin: 8px 0 0; }

  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-stats { padding: 16px 20px; gap: 4px; }
  .stat-number { font-size: 1.6rem; }
  .stat-divider { height: 32px; }
  .hero-carousel-control { opacity: 1; width: 48px; }
  .logo-marquee {
    padding: 22px 0;
  }
  .logo-marquee::before,
  .logo-marquee::after {
    width: 56px;
  }
  .logo-marquee-item {
    padding: 10px 14px;
    gap: 10px;
    font-size: 0.8rem;
  }
  .logo-marquee-image {
    width: 36px;
    height: 36px;
  }

  .about-grid { gap: 30px; }
  .about-main-img { border-radius: 54px 54px 24px 24px; }
  .about-floating-icon {
    width: 92px;
    height: 92px;
    left: -10px;
    top: 32px;
  }
  .about-floating-icon i { font-size: 2rem; }
  .about-badge-card {
    left: 14px;
    bottom: 18px;
    right: 14px;
    border-radius: 22px;
    width: auto;
  }
  .about-text-col .section-title { font-size: clamp(1.9rem, 9vw, 2.7rem); }
  .about-actions {
    width: 100%;
  }
  .about-actions .btn {
    flex: 1 1 calc(50% - 7px);
    min-width: 0;
  }
  .about-feature-board { flex-direction: column; align-items: flex-start; padding: 22px; }
  .about-feature-list { grid-template-columns: 1fr; }
  .about-counters { padding: 20px 0 64px; }
  .about-counters .container { padding-left: 18px; padding-right: 18px; }
  .about-counters-shell { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-counters-shell { padding: 18px; border-radius: 24px; }
  .about-counter-card { min-height: 150px; padding: 12px 16px; }
  .about-counter-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 12px;
    font-size: 1.15rem;
  }
  .about-counter-card p { font-size: 0.92rem; }
  .quick-cta-shell { padding: 26px 22px; border-radius: 24px; }
  .quick-cta-option {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding: 18px;
  }
  .quick-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
  .quick-cta-option strong {
    font-size: 0.98rem;
  }
  .quick-cta-option span {
    font-size: 0.88rem;
  }
  .quick-cta-option .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .clinic-facilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .why-grid { grid-template-columns: 1fr; }
  .why-title { font-size: clamp(2rem, 10vw, 3rem); }
  .why-main-image { min-height: 320px; }
  .faq-item summary { padding: 18px 48px 18px 18px; font-size: 0.96rem; }
  .faq-item p { padding: 0 18px 18px; }
  .life-care-content { align-items: stretch; }
  .life-care-title { text-align: left; margin: 0 0 26px; }
  .life-care-grid { grid-template-columns: 1fr; }
  .life-care-card { min-height: 168px; }

  .contact-grid { grid-template-columns: 1fr; }
  .doctor-profile-hero { grid-template-columns: 1fr; }
  /* .doctor-profile-photo { max-width: 220px; } */
  .doctor-profile-grid { grid-template-columns: 1fr; }
  .doctor-profile-card.span-2 { grid-column: auto; }
  .doctor-profile-meta { grid-template-columns: 1fr 1fr; }

  .cta-content { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .doctor-card.small {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }
  .doctor-avatar {
    width: 82px;
    height: 82px;
  }
  .doctor-actions { width: 100%; }
  .doctor-action-btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }

  .testimonial-card { padding: 32px 24px; }
  .testimonial-card::before { font-size: 4rem; top: 16px; left: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .brand-col { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider:nth-child(even) { display: none; }
  .logo-marquee-track {
    animation-duration: 18s;
  }
  .logo-marquee-item {
    font-size: 0.74rem;
    letter-spacing: 0.03em;
  }
  .service-overview-card { padding: 20px; }
  .cta-actions {
    width: 100%;
    gap: 12px;
  }
  .cta-actions .btn {
    width: min(100%, 265px);
    justify-content: center;
    padding: 13px 20px;
    margin: 0 auto;
  }

  .departments-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-badge-card {
    position: static;
    margin-top: 16px;
  }
  .about-badge-avatars span {
    width: 30px;
    height: 30px;
  }
  .about-actions {
    flex-direction: column;
  }
  .about-actions .btn {
    width: 100%;
    flex: 1 1 100%;
  }
  .doctor-profile-hero,
  .doctor-profile-card {
    padding: 20px;
  }
  .doctor-profile-meta {
    grid-template-columns: 1fr;
  }
  .doctor-profile-contact,
  .doctor-cta-actions {
    flex-direction: column;
  }
  .doctor-profile-contact .btn,
  .doctor-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .doctor-actions {
    flex-direction: column;
  }
  .doctor-action-btn {
    width: 100%;
    flex: 1 1 100%;
  }
  .clinic-facilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .facility-tile {
    min-height: 170px;
    padding: 20px 14px 18px;
  }
  .facility-tile-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
  }
  .facility-tile-icon i {
    font-size: 1.9rem;
  }
  .facility-tile h3 {
    font-size: 1.02rem;
  }
  .contact-form-card, .contact-info-card { padding: 24px 18px; }
}


