/* ===================================================
   Ashtvinayak Hospitals Pvt Ltd — Main Stylesheet
   =================================================== */

/* ---------- CSS Variables ---------- */
/* Logo colors: Navy #2438b0 (snowflake) + Cyan #00b4e6 (ASHTVINAYAK text) */
:root {
  --primary: #2438b0;
  --primary-dark: #192a8a;
  --primary-light: #3b52d4;
  --secondary: #00b4e6;
  --secondary-light: #33c6ed;
  --accent: #f59e0b;
  --danger: #ef4444;

  --bg: #ffffff;
  --bg-alt: #f0f8ff;
  --bg-dark: #0b1240;
  --bg-footer: #0b1240;

  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --border: #dde8f5;
  --shadow-sm: 0 2px 8px rgba(36, 56, 176, 0.08);
  --shadow-md: 0 8px 30px rgba(36, 56, 176, 0.13);
  --shadow-lg: 0 20px 60px rgba(36, 56, 176, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --font-body: "Inter", sans-serif;
  --font-heading: "Playfair Display", serif;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-2 {
  margin-top: 2rem;
}

/* ---------- Scroll-based AOS ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-aos="fade-right"] {
  transform: translateX(-30px);
}
[data-aos="fade-left"] {
  transform: translateX(30px);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary-nav {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn-primary-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-nav {
  border-color: var(--primary);
  color: var(--primary);
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn-outline-nav:hover {
  background: var(--primary);
  color: #fff;
}

.btn-hero-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(36, 56, 176, 0.35);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(36, 56, 176, 0.45);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  padding: 14px 32px;
  font-size: 1rem;
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-primary-solid {
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
}
.btn-primary-solid:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-cta-call {
  background: #fff;
  color: var(--primary);
  font-size: 1rem;
  padding: 14px 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn-cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-book {
  background: var(--secondary);
  color: #fff;
  font-size: 1rem;
  padding: 14px 30px;
}
.btn-cta-book:hover {
  background: #0099c4;
  transform: translateY(-2px);
}

.btn-form-submit {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: #fff;
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-md);
}
.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Section Headers ---------- */
.section-label {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(36, 56, 176, 0.1),
    rgba(0, 180, 230, 0.1)
  );
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(36, 56, 176, 0.2);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36, 56, 176, 0.08);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(36, 56, 176, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.logo-icon-white {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
  transition: all var(--transition);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #0b1240 0%,
    #192a8a 40%,
    #2438b0 70%,
    #00b4e6 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 180, 230, 0.2), transparent);
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: 100px;
  left: -80px;
  background: radial-gradient(circle, rgba(0, 180, 230, 0.15), transparent);
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 40%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
  width: fit-content;
}

.hero-badge i {
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #00b4e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.chip i {
  color: var(--accent);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero image wrapper */
.hero-img-wrapper {
  position: relative;
  width: 420px;
  height: 500px;
  flex-shrink: 0;
}

.hero-doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.15) 0%,
    rgba(15, 23, 42, 0.05) 40%,
    rgba(15, 23, 42, 0.55) 100%
  );
}

/* Bottom stat pill on hero image */
.hero-img-stat {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  white-space: nowrap;
  z-index: 3;
}

.hero-img-stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}
.hero-img-stat small {
  font-size: 0.75rem;
  opacity: 0.85;
}

.his-pulse {
  position: relative;
  width: 14px;
  height: 14px;
}

.his-dot {
  display: block;
  width: 10px;
  height: 10px;
  background: #33c6ed;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
}

.his-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #33c6ed;
  animation: pulseRing 1.8s ease infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 90px;
  text-align: center;
  animation: floatAnim 4s ease-in-out infinite;
  z-index: 4;
}

.floating-card i {
  font-size: 1.4rem;
  color: #93c5fd;
}

.fc-1 {
  top: 60px;
  left: -30px;
  animation-delay: 0s;
}
.fc-2 {
  top: 60px;
  right: -30px;
  animation-delay: 0.8s;
}
.fc-3 {
  bottom: 120px;
  left: -30px;
  animation-delay: 1.6s;
}
.fc-4 {
  bottom: 120px;
  right: -30px;
  animation-delay: 2.4s;
}

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

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ===================================================
   STATS
   =================================================== */
/* ===================================================
   QUICK INFO STRIP
   =================================================== */
.quick-strip {
  background: #f8faff;
  padding: 36px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 24px rgba(36, 56, 176, 0.07);
}

.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.qs-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  margin: 0 8px;
  box-shadow: 0 2px 16px rgba(36, 56, 176, 0.07);
  border: 1px solid rgba(36, 56, 176, 0.08);
  transition: all var(--transition);
  gap: 8px;
}

.qs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(36, 56, 176, 0.15);
  border-color: rgba(36, 56, 176, 0.2);
}

.qs-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 4px;
}

.qs-icon svg {
  width: 100%;
  height: 100%;
}

.qs-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.qs-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Featured centre card */
.qs-card.qs-card-featured {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-color: transparent;
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(36, 56, 176, 0.35);
}

.qs-card.qs-card-featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 48px rgba(36, 56, 176, 0.45);
}

.qs-card.qs-card-featured h4 {
  color: #fff;
}

.qs-card.qs-card-featured p {
  color: rgba(255, 255, 255, 0.9);
}

.qs-card.qs-card-featured p a {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.qs-card.qs-card-featured p a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1000px) {
  .quick-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .qs-card {
    margin: 0;
  }
  .qs-card.qs-card-featured {
    transform: none;
  }
  .qs-card.qs-card-featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 620px) {
  .quick-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .quick-strip-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   STATS */
.stats-section {
  background: var(--bg-alt);
  padding: 60px 0;
}

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

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(36, 56, 176, 0.1),
    rgba(0, 180, 230, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--primary);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===================================================
   ABOUT
   =================================================== */
.about-section {
  padding: 100px 0;
  background: var(--bg);
}

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

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

/* Small overlay card bottom-left */
.about-img-small {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  width: 160px;
  border: 3px solid #fff;
}

.about-img-small img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.about-img-small span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  padding: 8px 10px;
  text-align: center;
}

.nabh-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.nabh-badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nabh-badge span {
  font-weight: 800;
  font-size: 1rem;
}
.nabh-badge small {
  font-size: 0.7rem;
  opacity: 0.85;
}

.about-content {
}

.about-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.highlight-item i {
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===================================================
   SPECIALITIES
   =================================================== */
/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-section {
  padding: 100px 0;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Left content */
.why-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}

.why-intro {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.why-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Vertical connector line */
.why-list::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0.15;
  border-radius: 4px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

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

.why-item:hover .why-item-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.why-item-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(
    135deg,
    rgba(36, 56, 176, 0.1),
    rgba(0, 180, 230, 0.1)
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: all var(--transition);
  margin-top: 2px;
}

.why-item-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.why-item-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-item-body p strong {
  color: var(--primary);
  font-weight: 600;
}

/* Right images */
.why-images {
  position: relative;
}

.why-img-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.why-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
  transition: transform 0.5s ease;
}

.why-img-main:hover img {
  transform: scale(1.04);
}

.why-img-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-img-small {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex: 1;
  position: relative;
}

.why-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 150px;
  transition: transform 0.5s ease;
}

.why-img-small:hover img {
  transform: scale(1.06);
}

/* Decorative dot grid */
.why-dots {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(
    circle,
    var(--primary) 1.5px,
    transparent 1.5px
  );
  background-size: 10px 10px;
  opacity: 0.25;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-img-main img {
    min-height: 260px;
  }
  .why-img-small img {
    min-height: 120px;
  }
}

/* ===================================================*/
.specialities-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.specialities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.spec-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0 0 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
  overflow: hidden;
}

/* Image header on speciality card */
.spec-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  margin-bottom: 16px;
}

.spec-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.spec-card:hover .spec-img-wrap img {
  transform: scale(1.08);
}

.spec-img-icon {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--c) 12%, white);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.spec-card h3 {
  padding: 0 16px;
  margin-top: 22px;
}

.spec-card p {
  padding: 0 16px;
}

.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(36, 56, 176, 0.2);
}

.spec-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.spec-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Spec card action buttons */
.spec-btns {
  display: flex;
  gap: 8px;
  padding: 0 16px 4px;
  margin-top: 14px;
}

.spec-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.spec-btn-call {
  background: #e0f5fb;
  color: #005f80;
  border: 1.5px solid #00b4e6;
}

.spec-btn-call:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 180, 230, 0.35);
}

.spec-btn-enquiry {
  background: #eaedfa;
  color: #2438b0;
  border: 1.5px solid #2438b0;
}

.spec-btn-enquiry:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36, 56, 176, 0.3);
}

/* Center the lone last card when grid has an odd count */
.spec-card-last {
  grid-column: 2;
}

.spec-more {
  text-align: center;
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.spec-more strong {
  color: var(--primary);
}

/* ===================================================
   FACILITIES
   =================================================== */
.facilities-section {
  padding: 100px 0;
  background: var(--bg);
}

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

/* Facility card with background image */
.fac-card {
  border-radius: var(--radius-lg);
  padding: 32px 22px 28px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
}

.fac-card.fac-img-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 200px;
  border: none;
}

.fac-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(36, 56, 176, 0.62) 100%
  );
  border-radius: var(--radius-lg);
  z-index: 0;
  transition: background var(--transition);
}

.fac-card.fac-img-card:hover .fac-img-overlay {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(36, 56, 176, 0.78) 100%
  );
}

.fac-card.fac-img-card > *:not(.fac-img-overlay) {
  position: relative;
  z-index: 1;
}

.fac-card.fac-img-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fac-card:not(.fac-img-card):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.fac-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #fff;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.fac-card.fac-img-card:hover .fac-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.fac-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.fac-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--bg);
}

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

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

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

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 24px 14px 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-section {
  background: linear-gradient(135deg, #0b1240 0%, #192a8a 40%, #00b4e6 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-s1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: 10%;
  background: radial-gradient(circle, rgba(0, 180, 230, 0.2), transparent);
}

.cta-s2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: 5%;
  background: radial-gradient(circle, rgba(0, 180, 230, 0.2), transparent);
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-content p {
  color: #94a3b8;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-content h4 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.ci-content p,
.ci-content a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ci-content a:hover {
  color: var(--primary);
}

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

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  transition: all var(--transition);
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
}
.social-btn.fb {
  background: #1877f2;
}
.social-btn.ig {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.social-btn.li {
  background: #0a66c2;
}

/* Contact Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(36, 56, 176, 0.1);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

.form-note i {
  margin-right: 4px;
  color: var(--secondary);
}

/* Form Success */
.form-success {
  display: none;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 180, 230, 0.2);
  text-align: center;
}

.form-success.show {
  display: block;
}

.form-success i {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  display: block;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
}

/* ===================================================
   MAP
   =================================================== */
.map-section {
  width: 100%;
  line-height: 0;
  filter: grayscale(20%);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--bg-footer);
  color: var(--text-light);
}

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

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

.footer-tagline {
  font-style: italic;
  color: var(--secondary);
  margin: 12px 0;
  font-size: 0.95rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.footer-col h4 {
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--text-light);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-contact-list {
  gap: 14px !important;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-contact-list li i {
  color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-list li a {
  color: var(--text-light);
}
.footer-contact-list li a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ===================================================
   FLOATING CALL BUTTON
   =================================================== */
.float-call {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c3e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.float-call:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.7);
}

/* Ripple rings */
.float-call-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(37, 211, 102, 0.6);
  animation: floatCallPulse 2s ease-out infinite;
}

.float-call-ring-2 {
  animation-delay: 0.7s;
}

@keyframes floatCallPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Icon rotation on hover */
.float-call:hover i {
  animation: phoneRing 0.4s ease infinite alternate;
}

@keyframes phoneRing {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}

/* Tooltip label */
.float-call-tooltip {
  position: absolute;
  right: 68px;
  background: #0b1240;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.float-call-tooltip::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0b1240;
}

.float-call:hover .float-call-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===================================================
   FLOATING ENQUIRY BUTTON
   =================================================== */
.float-enquiry {
  position: fixed;
  bottom: 165px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 18px 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(36, 56, 176, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.float-enquiry i {
  font-size: 1rem;
}

.float-enquiry:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 32px rgba(36, 56, 176, 0.6);
}

@media (max-width: 480px) {
  .float-enquiry-label { display: none; }
  .float-enquiry {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    bottom: 160px;
  }
}

/* ===================================================
   POPUP ENQUIRY FORM
   =================================================== */

/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 64, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Box */
.popup-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(11, 18, 64, 0.4);
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}

/* Close button */
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.popup-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Left panel */
.popup-left {
  position: relative;
  min-height: 460px;
}

.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popup-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(36, 56, 176, 0.82) 0%,
    rgba(0, 180, 230, 0.75) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  color: #fff;
}

.popup-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 6px 12px;
}

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

.popup-left-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.popup-left-overlay p {
  font-size: 0.82rem;
  opacity: 0.88;
  line-height: 1.5;
  margin-bottom: 18px;
}

.popup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.popup-chips span {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
}

/* Right panel */
.popup-right {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-header {
  text-align: center;
  margin-bottom: 24px;
}

.popup-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px rgba(36, 56, 176, 0.3);
}

.popup-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 6px;
}

.popup-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Fields */
.popup-field {
  position: relative;
  margin-bottom: 14px;
}

.popup-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 0.9rem;
}

.popup-field input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  background: #f8faff;
}

.popup-field input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 180, 230, 0.15);
  background: #fff;
}

/* Submit */
.popup-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(36, 56, 176, 0.3);
}

.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(36, 56, 176, 0.4);
}

.popup-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 10px;
}

.popup-note i {
  color: var(--secondary);
  margin-right: 4px;
}

/* Responsive */
@media (max-width: 680px) {
  .popup-box {
    grid-template-columns: 1fr;
  }
  .popup-left {
    display: none;
  }
  .popup-right {
    padding: 32px 24px;
  }
  .popup-close {
    background: rgba(36, 56, 176, 0.15);
    color: var(--primary);
  }
}

/* ===================================================
   SCROLL TOP
   =================================================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .specialities-grid {
    grid-template-columns: repeat(3, 1fr);
  } /* already 3 */
  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item.gi-wide {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    display: none;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-chips {
    justify-content: center;
  }
  .hero-desc {
    margin: 0 auto 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrapper {
    height: 380px;
  }
  .about-img-small {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.gi-tall {
    grid-row: span 1;
  }
  .gallery-item.gi-wide {
    grid-column: span 2;
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow-md);
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open + .nav-cta {
    display: none;
  }

  .specialities-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .spec-card-last {
    grid-column: auto;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 20px;
  }

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

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .specialities-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
  .gallery-item.gi-wide {
    grid-column: span 2;
  }
  .hero-badge {
    font-size: 0.72rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
