/* ================================================
   DARSHANAM HOSPITAL — Main Stylesheet
   Primary: #2ba4b3 | Secondary: #18294e
================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #2ba4b3;
  --primary-dark: #1e8a97;
  --primary-light: #d6f0f3;
  --secondary: #18294e;
  --secondary-light: #243d72;
  --gold: #f59e0b;
  --white: #ffffff;
  --light-bg: #f0f8fa;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --text: #1f2937;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(27, 41, 78, 0.12);
  --shadow-lg: 0 10px 40px rgba(27, 41, 78, 0.18);
  --radius: 14px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ── Selection ── */
::selection {
  background: var(--primary-light);
  color: var(--secondary);
}

/* ================================================
   NAVIGATION
================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 164, 179, 0.15);
  transition: var(--transition);
  padding: 0 24px;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(24, 41, 78, 0.12);
  padding: 20px 24px;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

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

.nav-logo img {
  height: 90px;
  width: auto;
  transition: var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

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

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.25s ease;
  position: relative;
  background: none !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: none !important;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown>a svg {
  transition: var(--transition);
}

.nav-dropdown:hover>a svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  overflow: hidden;
}

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

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--secondary);
  border-radius: 0;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}

.btn-book,
.nav-links a.btn-book,
a.btn-book {
  background: #2ba4b3 !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 4px 15px rgba(43, 164, 179, 0.35) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.btn-book:hover,
.nav-links a.btn-book:hover,
a.btn-book:hover {
  background: #cc3b32 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(204, 59, 50, 0.45) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(43, 164, 179, 0.08);
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 600px;
}

.mobile-menu-inner {
  padding: 16px 24px 24px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-menu a.btn-book-mobile {
  margin-top: 16px;
  background: #2ba4b3;
  color: white;
  text-align: center;
  border-radius: 50px;
  padding: 12px;
  border-bottom: none;
}

.mobile-menu a.btn-book-mobile:hover {
  background: #cc3b32;
}

@media (max-width: 768px) {
  .footer-bottom p {
    font-size: 12px !important;
    color: rgb(255 255 255 / 83%);
  }

  /* ── Page Transition ── */
  @keyframes pageFadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pageFadeOut {
    from {
      opacity: 1;
      transform: translateY(0);
    }

    to {
      opacity: 0;
      transform: translateY(-10px);
    }
  }

  body.page-entering {
    animation: pageFadeIn 0.4s ease forwards;
  }

  body.page-leaving {
    animation: pageFadeOut 0.3s ease forwards;
    pointer-events: none;
  }

  /* Mobile navbar adjustments */
  .nav-inner {
    height: 80px;
    justify-content: space-between;
    padding: 0 16px;
  }

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

  .nav-logo img {
    height: 68px;
  }

  .hamburger {
    display: flex;
    position: static;
    transform: none;
  }

  .mobile-menu {
    top: 80px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    height: 72px;
    padding: 0 12px;
    justify-content: space-between;
  }

  .nav-logo img {
    height: 60px;
  }

  .mobile-menu {
    top: 72px;
  }
}

/* ================================================
   PAGE BANNER / HERO (inner pages)
================================================ */
.page-banner {
  background-image: url('../img/eye-care.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 420px;
  padding: 180px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(6 13 24 / 75%) 0%, rgb(6 13 24 / 60%) 50%, rgb(43 164 179 / 35%) 100%);
  z-index: 0;
}

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

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  color: white;
}

.page-banner h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto;
}

/* Mobile page-banner adjustments */
@media (max-width: 768px) {
  .page-banner {
    padding: 120px 24px 60px;
    min-height: 300px;
  }
}

/* ================================================
   CONTAINERS & SECTIONS
================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ================================================
   BUTTONS
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: #2ba4b3;
  color: white;
  box-shadow: 0 4px 15px rgba(43, 164, 179, 0.35);
}

.btn-primary:hover {
  background: #cc3b32;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(6, 13, 24, 0.45);
}

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

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-gold {
  background: #2ba4b3;
  color: white;
  box-shadow: 0 4px 15px rgba(43, 164, 179, 0.35);
}

.btn-gold:hover {
  background: #cc3b32;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(204, 59, 50, 0.5);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
}

/* ================================================
   CARDS
================================================ */
.card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--primary);
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ================================================
   GRIDS
================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

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

.grid-2-auto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ================================================
   ABOUT SECTION (Home)
================================================ */
.about-section {
  background: white;
  padding: 96px 0;
  overflow: hidden;
}

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

/* ── Image side ── */
.about-img-wrap {
  position: relative;
}

/* Decorative teal frame behind image */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 75%;
  height: 75%;
  border: 3px solid rgba(43, 164, 179, 0.25);
  border-radius: 24px;
  z-index: 0;
}

/* Decorative dot cluster bottom-right */
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(43, 164, 179, 0.35) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 12px;
  z-index: 0;
}

.about-img-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
  display: block;
  transition: transform 0.5s ease;
}

.about-img-wrap:hover .about-img-main {
  transform: scale(1.02);
}

/* No-image fallback */
.about-img-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  border-radius: 22px;
  background: linear-gradient(145deg, #0d2a42 0%, #0a1e32 60%, #071320 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.about-img-placeholder svg {
  width: 72px;
  height: 72px;
  stroke: rgba(43, 164, 179, 0.5);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-img-placeholder span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

/* Experience badge — bottom-left of image */
.about-exp-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  z-index: 3;
  background: white;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
}

.about-exp-badge .badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #1794a4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-exp-badge .badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-exp-badge .badge-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
}

.about-exp-badge .badge-label {
  font-size: 11.5px;
  color: var(--gray);
  margin-top: 2px;
}

/* Rating badge — top-right of image */
.about-rating-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  z-index: 3;
  background: var(--secondary);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 90px;
}

.about-rating-badge .r-score {
  font-size: 22px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.about-rating-badge .r-stars {
  color: #fbbf24;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 3px 0;
}

.about-rating-badge .r-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Content side ── */
.about-content {}

.about-content .section-label {
  display: inline-block;
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--primary);
}

.about-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
  border-left: 3px solid var(--primary);
  padding-left: 18px;
}

/* Feature points */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 36px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.about-feat-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-feat:hover .about-feat-icon {
  background: var(--primary);
  transform: scale(1.12);
}

.about-feat-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease;
}

.about-feat:hover .about-feat-icon svg {
  stroke: white;
}

.about-feat-text {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
  padding-top: 4px;
}

/* CTA row */
.about-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-main,
  .about-img-placeholder {
    height: 340px;
  }

  .about-exp-badge {
    left: 12px;
    bottom: 12px;
  }

  .about-rating-badge {
    right: 12px;
    top: 12px;
  }
}

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

  .about-img-main,
  .about-img-placeholder {
    height: 280px;
  }
}

/* ================================================
   STATS BAR
================================================ */
.stats-bar {
  background: #fff;
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(43, 164, 179, 0.18);
}

.stat-item {
  text-align: center;
  padding: 36px 20px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* SVG Icon Wrap */
.stat-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.stat-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.stat-number {
  font-size: clamp(28px, 3.5vw, 30px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ================================================
   HERO SECTION — Full-Screen Slider
================================================ */

/* ── Keyframes ── */
/* Ken Burns animation removed */
@keyframes hsFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hsPopIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hsShimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

@keyframes hsPulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: .5;
  }
}

@keyframes hsGlow {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(43, 164, 179, .4);
  }

  50% {
    box-shadow: 0 14px 38px rgba(43, 164, 179, .7);
  }
}

/* ── Hero container ── */
.hero {
  height: 90vh;
  min-height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  background: none;
}

/* ── Slider ── */
.hs-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Each slide ── */
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.1s ease;
  z-index: 0;
}

.hs-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hs-slide.leaving {
  opacity: 0;
  z-index: 1;
  transition: opacity 1.1s ease;
}

/* Background image — static, no animation */
.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: none !important;
  transform: none !important;
}

/* Gradient overlays — strong dark overlay for both slides */
.hs-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.eye-overlay {
    background: linear-gradient(135deg, rgb(6 13 24 / 75%) 0%, rgb(6 13 24 / 60%) 50%, rgb(43 164 179 / 35%) 100%);
}

.dental-overlay {
 background: linear-gradient(135deg, rgb(6 13 24 / 75%) 0%, rgb(6 13 24 / 60%) 50%, rgb(43 164 179 / 35%) 100%);
}

/* Dot texture */
.hs-overlay::after {
  content: none;
}

/* ── Inner layout ── */
.hs-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 110px;
}

/* ── Left text ── */
.hs-text {
  max-width: 780px;
  width: 100%;
  flex-shrink: 0;
  text-align: center;
}

/* Tag */
.hs-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 164, 179, 0.15);
  border: 1px solid rgba(43, 164, 179, 0.4);
  color: #7ddde9;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
}

.hs-tag svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hs-slide.active .hs-tag {
  animation: hsFadeUp 0.6s ease 0.1s both;
}

/* Heading */
.hs-heading {
  font-size: clamp(34px, 3.8vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 27px;
  opacity: 0;
}

.hs-heading span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hs-heading span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), #2dd4e8, transparent);
  background-size: 400px 100%;
  animation: hsShimmer 2.5s linear infinite;
}

.hs-slide.active .hs-heading {
  animation: hsFadeUp 0.7s ease 0.2s both;
}

/* Description */
.hs-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
  margin-bottom: 50px;
  width: 64%;
  opacity: 0;
  margin: 0px auto 54px;
}

.hs-slide.active .hs-desc {
  animation: hsFadeUp 0.7s ease 0.35s both;
}

/* Stats row */
.hs-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 34px;
  opacity: 0;
}

.hs-slide.active .hs-stats {
  animation: hsFadeUp 0.7s ease 0.45s both;
}

.hs-stat {
  padding: 12px 20px 12px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 20px;
}

.hs-stat:last-child {
  border-right: none;
  margin-right: 0;
}

.hs-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hs-stat span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Buttons */
.hs-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}

.hs-slide.active .hs-btns {
  animation: hsFadeUp 0.7s ease 0.55s both;
}

.hs-btns .btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hs-btns .btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.hs-btns .btn-primary {
  background: #2ba4b3;
  color: #fff;
  box-shadow: 0 8px 28px rgba(43, 164, 179, 0.45);
  animation: hsGlow 3s ease infinite 1.2s;
}

.hs-btns .btn-primary:hover {
  background: #cc3b32;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(204, 59, 50, 0.6);
}

.hs-btns .btn-outline-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.hs-btns .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Right popup card ── */
.hs-popup {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
}

.hs-slide.active .hs-popup {
  animation: hsPopIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

/* Popup icon circle */
.hs-popup-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hs-popup-icon.eye-icon {
  background: rgba(43, 164, 179, 0.2);
  border: 1px solid rgba(43, 164, 179, 0.35);
}

.hs-popup-icon.dental-icon {
  background: rgba(43, 164, 179, 0.2);
  border: 1px solid rgba(43, 164, 179, 0.35);
}

.hs-popup-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Popup title */
.hs-popup-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

/* Service list */
.hs-popup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hs-popup-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.hs-popup-list li svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* Doctor info */
.hs-popup-doc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hs-popup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1e8a97);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(43, 164, 179, 0.4);
}

.hs-popup-avatar.dental-av {
  background: linear-gradient(135deg, #1a6b96, #0d4e7a);
}

.hs-popup-docinfo strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.hs-popup-docinfo span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Navigation arrows ── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.hs-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.hs-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hs-prev {
  left: 24px;
}

.hs-next {
  right: 24px;
}

/* ── Dots ── */
.hs-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hs-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hs-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(43, 164, 179, 0.5);
}

.hs-dot-label {
  font-size: 11px;
}

/* ── Progress bar ── */
.hs-progress {
  display: none;
}

.hs-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #2dd4e8);
  width: 0%;
  border-radius: 0 2px 2px 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hs-popup {
    width: 280px;
    padding: 24px 20px;
  }

  .hs-heading {
    font-size: clamp(28px, 4vw, 48px);
  }
}

@media (max-width: 768px) {
  .hs-inner {
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    gap: 24px;
  }

  .hs-popup {
    width: 100%;
    max-width: 400px;
  }

  .hs-heading {
    font-size: clamp(26px, 6vw, 40px);
  }

  .hs-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .hs-btns .btn {
    padding: 12px 20px;
    font-size: 13.5px;
  }

  .hs-popup {
    padding: 20px 16px;
  }
}

/* ================================================
   SPECIALITIES SECTION (Home — redesigned)
================================================ */
.services-section {
  background: #ffffff;
  padding: 90px 0;
}

.specialities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
}

/* ── Card shell ── */
.spec-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
  border: 1px solid var(--border);
  transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.spec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(43, 164, 179, 0.2);
  border-color: rgba(43, 164, 179, 0.3);
}

/* ── Photo area ── */
.spec-photo-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(145deg, #0d2a42 0%, #0a1e32 60%, #071320 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.spec-doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s ease;
  display: block;
}

.spec-card:hover .spec-doctor-photo {
  transform: scale(1.05);
}

/* gradient overlay on photo */
.spec-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 20%, rgba(6, 13, 24, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
}

/* specialty badge — top left */
.spec-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  color: white;
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(43, 164, 179, 0.55);
}

.spec-badge svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* doctor info — bottom of photo */
.spec-doctor-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 22px 22px 18px;
}

.spec-doc-name {
  font-size: 21px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.spec-doc-qual {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.spec-exp-pill {
  display: inline-block;
  margin-top: 9px;
  font-size: 11px;
  font-weight: 700;
  color: #2dd4e8;
  background: rgba(43, 164, 179, 0.22);
  border: 1px solid rgba(43, 164, 179, 0.45);
  padding: 3px 11px;
  border-radius: 20px;
}

/* ── Services body ── */
.spec-body {
  padding: 26px 26px 28px;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text);
  padding: 5px 0;
  transition: color 0.2s ease;
}

.spec-list li:hover {
  color: var(--primary);
}

.spec-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s ease, transform 0.22s ease;
}

.spec-list li:hover .spec-check {
  background: var(--primary);
  transform: scale(1.15);
}

.spec-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.22s ease;
}

.spec-list li:hover .spec-check svg {
  stroke: white;
}

/* CTA button */
.spec-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px 20px;
  background: #2ba4b3;
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(43, 164, 179, 0.28);
}

.spec-btn:hover {
  background: #cc3b32;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(204, 59, 50, 0.44);
  color: white;
}

.spec-btn svg {
  width: 17px;
  height: 17px;
  stroke: white;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.spec-btn:hover svg {
  transform: translateX(4px);
}

/* legacy .service-list fallback */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li:hover {
  color: var(--primary);
  padding-left: 4px;
}

.service-list .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

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

.why-section {
  background: #060d18;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle grid lines background */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 164, 179, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 164, 179, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow top-center */
.why-section::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(43, 164, 179, 0.12) 0%, transparent 70%);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.why-section .section-label {
  color: var(--primary);
  background: rgba(43, 164, 179, 0.1);
  border-color: rgba(43, 164, 179, 0.25);
}

.why-section .section-title {
  color: white;
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* ── Card shell ── */
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 36px 26px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: all 0.55s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Fill sweep from bottom on hover */
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2ba4b3 0%, #1b7a87 100%);
  transform: translateY(100%);
  transition: transform 0.55s ease;
  border-radius: 24px;
  z-index: 0;
}

/* Glowing border on hover */
.why-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, #2ba4b3, transparent 50%, #2ba4b3);
  opacity: 0;
  transition: opacity 0.55s ease;
  z-index: -1;
}

.why-card:hover::before {
  transform: translateY(0);
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 64px rgba(43, 164, 179, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}

/* ── Number badge ── */
.why-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(43, 164, 179, 0.4);
  font-family: 'Inter', sans-serif;
  z-index: 1;
  transition: color 0.35s ease;
}

.why-card:hover .why-num {
  color: rgba(255, 255, 255, 0.35);
}

/* ── Icon circle ── */
.why-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(43, 164, 179, 0.12);
  border: 1.5px solid rgba(43, 164, 179, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  transition: all 0.55s ease;
  flex-shrink: 0;
}

.why-card:hover .why-icon-wrap {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.07);
}

.why-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke: #2ba4b3;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.why-card:hover .why-icon-wrap svg {
  stroke: #fff;
}

/* ── Card body ── */
.why-card-body {
  position: relative;
  z-index: 1;
  flex: 1;
}

/* ── Divider ── */
.why-divider {
  width: 36px;
  height: 3px;
  background: #2ba4b3;
  border-radius: 10px;
  margin: 10px auto 14px;
  transition: background 0.55s ease, width 0.55s ease;
}

.why-card:hover .why-divider {
  background: rgba(255, 255, 255, 0.7);
  width: 52px;
}

/* ── Text ── */
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

.why-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: color 0.55s ease;
}

.why-card:hover p {
  color: rgba(255, 255, 255, 0.88);
}


/* ================================================
   TIMINGS BANNER
================================================ */
.timings-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 56px 0;
}

.timings-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.timing-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.timing-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.timing-info span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 4px;
}

.timing-info strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

/* ================================================
   TESTIMONIALS
================================================ */
/* ================================================
   TESTIMONIALS — 3-VISIBLE AUTO-PLAY CAROUSEL
================================================ */
.testimonials-section {
  background: #f5fbfc;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(43, 164, 179, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Carousel wrapper ── */
.tc-wrapper {
  position: relative;
  overflow: hidden;
  padding: 12px 0 16px;
}

/* ── Track — 6 slides (3 real + 3 clones), each 33.33% wide ── */
.tc-track {
  display: flex;
  will-change: transform;
}

/* ── Each slide ── */
.tc-slide {
  min-width: calc(100% / 3);
  padding: 0 12px;
  box-sizing: border-box;
}

/* ── Card ── */
.tc-card {
  background: #fff;
  border: 1.5px solid rgba(43, 164, 179, 0.12);
  border-radius: 20px;
  padding: 32px 28px 26px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  cursor: default;
  transition: border-color 0.3s ease;
}

.tc-card:hover {
  border-color: #2ba4b3;
}

/* ── Big quote mark ── */
.tc-quote {
  display: none;
  user-select: none;
}

/* ── Stars ── */
.tc-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: block;
}

/* ── Review text ── */
.tc-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

/* ── Author row ── */
.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

.tc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2ba4b3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: none;
  letter-spacing: 0;
}

.tc-info {
  flex: 1;
}

.tc-name {
  font-size: 14px;
  font-weight: 700;
  color: #060d18;
  line-height: 1.3;
}

.tc-role {
  font-size: 11.5px;
  color: #2ba4b3;
  margin-top: 2px;
  font-weight: 500;
}

.tc-arrow {
  display: none;
}

/* ── Dot indicators ── */
.tc-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(43, 164, 179, 0.2);
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.tc-dot.active {
  background: #2ba4b3;
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(43, 164, 179, 0.5);
}

.tc-dot:hover:not(.active) {
  background: rgba(43, 164, 179, 0.45);
}

/* ================================================
   LOCATION STRIP
================================================ */
.location-strip {
  background: var(--secondary);
  padding: 56px 0;
}

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

.location-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(43, 164, 179, 0.2);
  border: 1px solid rgba(43, 164, 179, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.location-item-info span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.location-item-info strong {
  display: block;
  font-size: 14px;
  color: white;
  font-weight: 500;
  line-height: 1.5;
}

.location-item-info a {
  color: var(--primary);
}

.location-item-info a:hover {
  color: white;
}

/* ================================================
   CTA SECTION
================================================ */
.cta-section {
  background:
    linear-gradient(135deg, rgba(7, 19, 32, 0.88) 0%, rgba(24, 41, 78, 0.82) 50%, rgba(7, 19, 32, 0.92) 100%),
    repeating-linear-gradient(0deg,
      transparent,
      transparent 38px,
      rgba(43, 164, 179, 0.06) 38px,
      rgba(43, 164, 179, 0.06) 40px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 38px,
      rgba(43, 164, 179, 0.06) 38px,
      rgba(43, 164, 179, 0.06) 40px);
  background-color: #071320;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 164, 179, 0.18) 0%, transparent 65%);
  animation: ctaPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 164, 179, 0.14) 0%, transparent 65%);
  animation: ctaPulse 8s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes ctaPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}


.cta-section h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  position: relative;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  position: relative;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.cta-btns .btn-gold:hover {
  background: #cc3b32;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(204, 59, 50, 0.5);
}

/* ================================================
   FOOTER
================================================ */
/* ── FOOTER ANIMATION KEYFRAMES ── */
@keyframes fOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -50px) scale(1.15);
  }

  66% {
    transform: translate(-20px, -30px) scale(0.9);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes fOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, -60px) scale(1.2);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes fOrb3 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: translate(30px, -40px) rotate(180deg);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes fOrb4 {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

@keyframes fShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fRing {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.15;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}

@keyframes fDrift {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

/* ── FOOTER BASE ── */
footer {
  background: #071320;
  padding: 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 164, 179, 0.18) 0%, rgba(7, 19, 32, 0) 45%, rgba(43, 164, 179, 0.08) 100%);
  background-size: 300% 300%;
  animation: fShimmer 8s ease infinite;
  pointer-events: none;
  z-index: 0;
}

footer::after {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 164, 179, 0.32) 0%, transparent 65%);
  top: -160px;
  right: -100px;
  animation: fOrb1 13s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.footer-orb-1 {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 164, 179, 0.25) 0%, transparent 65%);
  bottom: -120px;
  left: -80px;
  animation: fOrb2 16s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.footer-orb-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 164, 179, 0.18) 0%, transparent 70%);
  top: 40%;
  left: 48%;
  animation: fOrb4 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.footer-orb-3 {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(43, 164, 179, 0.45);
  border-radius: 50%;
  bottom: 70px;
  right: 18%;
  animation: fRing 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.footer-orb-3::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(43, 164, 179, 1);
  animation: fDrift 3s ease-in-out infinite;
}

footer .container,
footer .footer-topbar {
  position: relative;
  z-index: 1;
}

/* ── FOOTER TOP BAR ── */
.footer-topbar {
  border-bottom: 1px solid rgba(43, 164, 179, 0.18);
  background: rgba(43, 164, 179, 0.07);
  padding: 26px 0;
  position: relative;
  z-index: 1;
}

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

.footer-logo img {
  height: 100px;
  width: auto;
  filter: brightness(1.05) drop-shadow(0 4px 18px rgba(43, 164, 179, 0.45));
  transition: filter 0.3s ease;
}

.footer-logo img:hover {
  filter: brightness(1.15) drop-shadow(0 6px 24px rgba(43, 164, 179, 0.65));
}

.footer-top-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 0.03em;
  flex: 1;
  justify-content: center;
}

.footer-top-tagline svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.footer-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.follow-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.28);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 33px !important;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 28px rgba(43, 164, 179, 0.55);
}

.footer-socials a svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* ── FOOTER MAIN GRID ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 78px;
  padding: 52px 0 44px;
}

/* ── BRAND COLUMN ── */
.footer-desc {
  font-size: 16px;
  color: rgb(255 255 255 / 68%);
  line-height: 1.8;
  margin-bottom: 28px;
  border-left: none;
  padding-left: 0px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  transition: transform 0.2s ease;
}

.footer-contact-item:hover {
  transform: translateX(3px);
}

.fci-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(43, 164, 179, 0.12);
  border: 1px solid rgba(43, 164, 179, 0.25);
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.footer-contact-item:hover .fci-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(43, 164, 179, 0.45);
}

.fci-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fci-text {
  font-size: 16px;
  color: rgb(255 255 255 / 86%);
  line-height: 1.55;
  padding-top: 7px;
}

.fci-text a {
  font-size: 16px;
  color: rgb(255 255 255 / 82%);
  transition: color 0.2s ease;
}

.fci-text a:hover {
  color: var(--primary);
}

/* ── FOOTER COLUMN HEADINGS ── */
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #2ba4b3;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(43, 164, 179, 0.7);
}

/* ── FOOTER LINKS — HOVER EFFECT ── */
.footer-links {
  list-style: none;
}

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

.footer-links a {
  display: block;
  font-size: 16px;
  color: rgb(255 255 255 / 70%);
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ── FOOTER HOURS ── */
.footer-hours {
  list-style: none;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: rgb(255 255 255 / 94%);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.footer-hours li:hover {
  color: rgba(255, 255, 255, 0.75);
  padding-left: 5px;
}

.footer-hours .open {
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.22);
  padding: 2px 9px;
  border-radius: 20px;
}

/* ── FOOTER BOTTOM BAR ── */
.footer-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgb(255 255 255 / 83%);
}

.footer-bottom a {
  color: var(--primary);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: white;
}

/* ── FOOTER BRAND LOGO (in grid) ── */
.footer-brand .footer-logo {
  margin-bottom: 18px;
}

/* ── FOOTER SPECIALITIES SUB-GROUPS ── */
.footer-spec-group {
  margin-bottom: 14px;
}

.footer-spec-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(43, 164, 179, 0.2);
}

/* ── FOOTER SOCIALS (in brand column) ── */
.footer-brand .footer-socials {
  margin-top: 22px;
}

/* ── FOOTER WALK-IN NOTE ── */
.footer-walkin {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  text-align: center;
  padding: 8px 12px;
  border: 1px dashed rgba(43, 164, 179, 0.2);
  border-radius: 8px;
}

/* ================================================
   TABS
================================================ */
.tabs-wrapper {
  margin-bottom: 40px;
}

.tabs-bar {
  display: inline-flex;
  background: var(--light-bg);
  border-radius: 50px;
  padding: 4px;
  gap: 4px;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
}

.tab-btn.active {
  background: var(--secondary);
  color: white;
  box-shadow: 0 4px 12px rgba(24, 41, 78, 0.25);
}

.tab-btn:not(.active):hover {
  color: var(--secondary);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: tabFadeIn 0.4s ease;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================
   DOCTOR PROFILE CARD
================================================ */
.doctor-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.doctor-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}

.doctor-card-banner {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  padding: 32px 24px;
  text-align: center;
}

.doctor-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  margin: 0 auto 16px;
  border: 3px solid rgba(43, 164, 179, 0.5);
}

.doctor-card-banner h3 {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.doctor-card-banner .qual {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.doctor-card-banner .designation {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.doctor-card-body {
  padding: 24px;
}

.doctor-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.doctor-detail-row:last-child {
  border-bottom: none;
}

.doctor-detail-row .label {
  color: var(--gray);
}

.doctor-detail-row .val {
  font-weight: 600;
  color: var(--secondary);
}

.doctor-detail-row .val.fee {
  color: var(--primary);
  font-size: 16px;
}

.doctor-info {}

.doctor-bio {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.doctor-bio h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
}

.doctor-bio p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 12px;
}

.doctor-bio p:last-child {
  margin-bottom: 0;
}

.specializations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}


/* ================================================
   SERVICES GRID (inner pages)
================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Photo Service Card ── */
.photo-srv-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(24, 41, 78, 0.06);
}

.photo-srv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.photo-srv-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.photo-srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.photo-srv-card:hover .photo-srv-img img {
  transform: scale(1.08);
}

.photo-srv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(24, 41, 78, 0.75) 100%);
  transition: var(--transition);
}

.photo-srv-card:hover .photo-srv-img-overlay {
  background: linear-gradient(to bottom, transparent 20%, rgba(43, 164, 179, 0.65) 100%);
}

.photo-srv-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
}

.photo-srv-tag {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.photo-srv-body {
  padding: 20px 20px 22px;
}

.photo-srv-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.photo-srv-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
}

.photo-srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.photo-srv-link::after {
  content: '→';
  transition: var(--transition);
}

.photo-srv-card:hover .photo-srv-link::after {
  transform: translateX(4px);
}

/* ── Photo Gallery strip ── */
.photo-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.gallery-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}

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

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

.gallery-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(24, 41, 78, 0.85) 0%, transparent 100%);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 20px 12px 10px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-img:hover .gallery-img-caption {
  opacity: 1;
}

/* ── Old srv-card kept for fallback ── */
.srv-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

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

.srv-card:hover::before {
  opacity: 1;
}

.srv-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
  position: relative;
  z-index: 1;
}

.srv-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.srv-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ================================================
   ABOUT PAGE
================================================ */
/* ── Story Section ── */
.story-wrap {
  background: #f4f8fb;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.story-bg-shape {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(43, 164, 179, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.story-section {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 72px;
  align-items: center;
}

.story-visual {
  position: relative;
  padding: 20px 0 0 20px;
}

/* Decorative accent frame behind image */
.story-frame-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 3px solid #2ba4b3;
  border-radius: 28px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.story-img-box {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 480px;
  box-shadow: 0 32px 80px rgba(6, 13, 24, 0.20);
  z-index: 1;
}

.story-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.6s ease;
}

.story-visual:hover .story-bg-img {
  transform: scale(1.04);
}

.story-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(6, 13, 24, 0.30) 0%, rgba(6, 13, 24, 0.05) 50%, rgba(6, 13, 24, 0.55) 100%);
  z-index: 1;
}

/* Logo badge — top-left */
.story-logo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  width: 88px;
  height: 88px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 6px 24px rgba(6, 13, 24, 0.22), 0 0 0 4px rgba(43, 164, 179, 0.25);
}

.story-logo-badge img {
  width: 100%;
  object-fit: contain;
}

/* Experience tag — bottom-right */
.story-exp-tag {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 4;
  background: rgba(43, 164, 179, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 20px rgba(43, 164, 179, 0.35);
}

.story-exp-num {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
}

.story-exp-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
  line-height: 1.4;
}

/* Content side */
.story-content {
  padding-top: 10px;
}

/* Highlights row */
.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.story-hl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid rgba(43, 164, 179, 0.15);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--secondary);
  box-shadow: 0 2px 10px rgba(6, 13, 24, 0.05);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.story-hl-item:hover {
  border-color: rgba(43, 164, 179, 0.4);
  box-shadow: 0 4px 20px rgba(43, 164, 179, 0.12);
}

.story-hl-icon {
  font-size: 20px;
}

.story-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2ba4b3;
  background: rgba(43, 164, 179, 0.08);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.story-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.story-accent-line {
  width: 48px;
  height: 4px;
  background: #2ba4b3;
  border-radius: 2px;
  margin-bottom: 24px;
}

.story-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 16px;
}

.story-content p strong {
  color: #2ba4b3;
  font-weight: 700;
}

/* Stats row */
.story-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid rgba(43, 164, 179, 0.15);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 36px;
}

.story-stat-item {
  padding: 20px 12px;
  text-align: center;
  border-right: 1.5px solid rgba(43, 164, 179, 0.15);
  transition: background 0.3s ease;
}

.story-stat-item:last-child {
  border-right: none;
}

.story-stat-item:hover {
  background: rgba(43, 164, 179, 0.05);
}

.story-stat-item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #2ba4b3;
  line-height: 1;
  margin-bottom: 6px;
}

.story-stat-item span {
  font-size: 11.5px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-visual {
    padding: 16px 0 0 16px;
  }

  .story-img-box {
    height: 300px;
  }

  .story-heading {
    font-size: 28px;
  }

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

  .story-stat-item:nth-child(2) {
    border-right: none;
  }

  .story-stat-item:nth-child(3) {
    border-right: 1.5px solid rgba(43, 164, 179, 0.15);
    border-top: 1.5px solid rgba(43, 164, 179, 0.15);
  }

  .story-stat-item:nth-child(4) {
    border-top: 1.5px solid rgba(43, 164, 179, 0.15);
    border-right: none;
  }
}

/* Values */
.values-section {
  background: #ffffff;
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid rgba(43, 164, 179, 0.15);
  border-radius: 20px;
  overflow: hidden;
}

.value-card {
  background: #fff;
  padding: 40px 28px 36px;
  position: relative;
  border-right: 1.5px solid rgba(43, 164, 179, 0.15);
  transition: background 0.35s ease;
  overflow: hidden;
}

.value-card:last-child {
  border-right: none;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #2ba4b3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card:hover {
  background: #f4fbfc;
}

.val-num {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: rgba(43, 164, 179, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.val-line {
  width: 36px;
  height: 3px;
  background: #2ba4b3;
  border-radius: 2px;
  margin-bottom: 18px;
  transition: width 0.4s ease;
}

.value-card:hover .val-line {
  width: 60px;
}

.value-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
  }

  .value-card {
    border-right: 1.5px solid rgba(43, 164, 179, 0.15);
    border-bottom: 1.5px solid rgba(43, 164, 179, 0.15);
  }

  .value-card:nth-child(2n) {
    border-right: none;
  }

  .value-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    border-right: none;
    border-bottom: 1.5px solid rgba(43, 164, 179, 0.15);
  }

  .value-card:last-child {
    border-bottom: none;
  }
}

/* ── Mission & Vision ── */
/* ── Mission & Vision ── */
.mv-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.mv-row {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 36px;
  border: 1.5px solid rgba(43, 164, 179, 0.12);
  background: #fff;
  box-shadow: 0 4px 30px rgba(43, 164, 179, 0.07);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.mv-row:last-child {
  margin-bottom: 0;
}

.mv-row:hover {
  box-shadow: 0 12px 48px rgba(43, 164, 179, 0.14);
  transform: translateY(-4px);
}

.mv-row-reverse {
  grid-template-columns: 55% 45%;
}

.mv-row-reverse .mv-row-img {
  order: 2;
}

.mv-row-reverse .mv-row-content {
  order: 1;
}

.mv-row-img {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.mv-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: absolute;
  inset: 0;
}

.mv-row:hover .mv-row-img img {
  transform: scale(1.06);
}

.mv-row-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 164, 179, 0.25) 0%, rgba(6, 13, 24, 0.35) 100%);
  z-index: 1;
}

.mv-row-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.mv-row-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 48px;
  bottom: 48px;
  width: 4px;
  background: linear-gradient(180deg, #2ba4b3 0%, rgba(43, 164, 179, 0.2) 100%);
  border-radius: 0 4px 4px 0;
}

.mv-row-reverse .mv-row-content::before {
  left: auto;
  right: 0;
  border-radius: 4px 0 0 4px;
}

.mv-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2ba4b3;
  background: rgba(43, 164, 179, 0.08);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  width: fit-content;
}

.mv-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.25;
  margin-bottom: 18px;
}

.mv-row-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 28px;
}

.mv-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.mv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--secondary);
}

.mv-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--primary-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%232ba4b3' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center / 11px no-repeat;
  flex-shrink: 0;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.mv-list li:hover::before {
  background-color: #2ba4b3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  transform: scale(1.12);
}

@media (max-width: 900px) {

  .mv-row,
  .mv-row-reverse {
    grid-template-columns: 1fr;
  }

  .mv-row-reverse .mv-row-img {
    order: 0;
  }

  .mv-row-reverse .mv-row-content {
    order: 1;
  }

  .mv-row-img {
    min-height: 240px;
  }

  .mv-row-content {
    padding: 36px 28px;
  }

  .mv-row-content::before,
  .mv-row-reverse .mv-row-content::before {
    left: 0;
    right: auto;
    border-radius: 0 4px 4px 0;
    top: 28px;
    bottom: 28px;
  }

  .mv-list {
    grid-template-columns: 1fr;
  }

  .mv-title {
    font-size: 24px;
  }
}

/* Why choose list */
/* ── 10 Reasons Section ── */
.reasons-section {
  background: #ffffff;
  padding: 80px 0;
}

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

.reason-card {
  background: #fff;
  border: 1.5px solid rgba(43, 164, 179, 0.12);
  border-radius: 16px;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(43, 164, 179, 0.15);
  border-color: #2ba4b3;
}

.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(43, 164, 179, 0.1);
  color: #2ba4b3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.reason-icon svg {
  width: 22px;
  height: 22px;
}

.reason-card:hover .reason-icon {
  background: #2ba4b3;
  color: #fff;
}

.reason-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reason-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
}

.reason-text span {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

@media (max-width: 480px) {
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ── old why-list (keep for other pages) ── */
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--primary-light);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--secondary);
  font-weight: 500;
  transition: var(--transition);
}

.why-item:hover {
  background: var(--primary);
  color: white;
  transform: translateX(4px);
}

.why-item .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .check-icon {
  background: white;
  color: var(--primary);
}

/* ================================================
   FACILITIES PAGE
================================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.equip-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.equip-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.equip-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.equip-card:hover .equip-icon {
  background: var(--primary);
  transform: scale(1.05);
}

.equip-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.equip-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* OT Section */
.ot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ot-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.ot-header {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  padding: 24px;
}

.ot-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.ot-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.ot-body {
  padding: 24px;
}

.ot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.ot-list li:last-child {
  border-bottom: none;
}

.ot-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Hygiene list */
.hygiene-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hygiene-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--primary-light);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--secondary);
  font-weight: 500;
}

/* ================================================
   CONTACT PAGE
================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.contact-card>p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: #2ba4b3;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.contact-detail:hover .contact-detail-icon {
  background: #2ba4b3;
  color: #fff;
  transform: scale(1.05);
}

.contact-detail-info span {
  display: block;
  font-size: 11px;
  color: #2ba4b3;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-detail-info strong {
  display: block;
  font-size: 16px;
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.5;
}

.contact-detail-info a {
  color: var(--secondary);
}

.contact-detail-info a:hover {
  color: #2ba4b3;
}

/* Social icon buttons */
.contact-social-row {
  align-items: center;
  gap: 12px;
}

.contact-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(43, 164, 179, 0.1);
  color: #2ba4b3;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.contact-social-btn:hover {
  background: #2ba4b3;
  color: #fff;
  transform: translateY(-3px);
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

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

.form-group label .req {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(43, 164, 179, 0.12);
}

.form-control::placeholder {
  color: #9ca3af;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

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

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #2ba4b3;
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  background: #cc3b32;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 59, 50, 0.35);
}

.success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 10px;
  color: #065f46;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.success-msg.show {
  display: flex;
}

/* Appointment form sidebar */
.appt-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.appt-sidebar {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 28px;
}

.sidebar-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.sidebar-block ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* ================================================
   ANIMATIONS (Intersection Observer)
================================================ */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate.delay-1 {
  transition-delay: 0.1s;
}

.animate.delay-2 {
  transition-delay: 0.2s;
}

.animate.delay-3 {
  transition-delay: 0.3s;
}

.animate.delay-4 {
  transition-delay: 0.4s;
}

.animate.delay-5 {
  transition-delay: 0.5s;
}

.animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================================================
   BACK TO TOP
================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(43, 164, 179, 0.45);
  cursor: pointer;
  border: none;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  font-size: 18px;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .specialities-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

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

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

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

  .footer-grid> :last-child {
    display: block;
  }

  .timings-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .doctor-profile {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    position: static;
  }

  .tc-slide {
    min-width: 100%;
  }

  .tc-card {
    padding: 28px 20px 22px;
  }
}

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

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

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

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

  .grid-2-auto {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .story-section {
    grid-template-columns: 1fr;
  }

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

  .appt-layout {
    grid-template-columns: 1fr;
  }

  .appt-sidebar {
    order: -1;
  }

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

  .footer-grid> :last-child {
    display: block;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

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

  .location-items {
    grid-template-columns: 1fr;
  }


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

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

  .hygiene-list {
    grid-template-columns: 1fr;
  }

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

  section {
    padding: 60px 0;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .contact-grid {
    display: block !important;
  }

  .contact-card {
    width: 100% !important;
    margin-bottom: 24px;
  }

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

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

  .tabs-bar {
    flex-direction: column;
    border-radius: 14px;
  }

  .tab-btn {
    border-radius: 10px;
  }
}

/* ================================================
   EYE CARE PAGE
================================================ */

/* ── Info Strip ── */
.ec-strip {
  background: var(--secondary);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ec-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ec-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ec-strip-item:last-child {
  border-right: none;
}

.ec-strip-item svg {
  width: 30px;
  height: 30px;
  stroke: #2ba4b3;
  fill: none;
  flex-shrink: 0;
}

.ec-strip-item strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.ec-strip-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ── Tag Pill ── */
.ec-tag-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2ba4b3;
  background: rgba(43, 164, 179, 0.10);
  padding: 5px 16px;
  border-radius: 100px;
}

/* ── Services Section ── */
.ec-services-wrap {
  background: #f4f8fb;
  padding: 90px 0;
}

.ec-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ec-srv-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid rgba(43, 164, 179, 0.10);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ec-srv-card:hover {
  box-shadow: 0 14px 44px rgba(43, 164, 179, 0.13);
  border-color: rgba(43, 164, 179, 0.32);
  transform: translateY(-4px);
}

.ec-srv-icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: rgba(43, 164, 179, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ec-srv-card:hover .ec-srv-icon-wrap {
  background: #2ba4b3;
  transform: scale(1.08);
}

.ec-srv-right {
  flex: 1;
}

.ec-srv-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2ba4b3;
  background: rgba(43, 164, 179, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.ec-srv-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ec-srv-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
}

/* ── Trust / Why Choose Section ── */
.ec-trust-wrap {
  background: #fff;
  padding: 90px 0;
}

.ec-trust-layout {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 64px;
  align-items: center;
}

.ec-trust-img-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 28px 72px rgba(6, 13, 24, 0.17);
}

.ec-trust-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ec-trust-img-box:hover img {
  transform: scale(1.04);
}

.ec-trust-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 13, 24, 0.12) 0%, rgba(6, 13, 24, 0.55) 100%);
}

.ec-trust-fee-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #2ba4b3;
  border-radius: 14px;
  padding: 14px 22px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(43, 164, 179, 0.40);
}

.ec-trust-fee-badge strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ec-trust-fee-badge span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.ec-trust-heading {
  font-size: 34px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.22;
  margin: 14px 0 16px;
}

.ec-trust-heading span {
  color: #2ba4b3;
}

.ec-trust-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── Doctor Section ── */
.ec-doctor-wrap {
  background: #fff;
  padding: 90px 0;
}

.ec-doc-hero {
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  gap: 36px;
  align-items: center;
  box-shadow: 0 8px 40px rgba(6, 13, 24, 0.08);
  border: 1.5px solid rgba(43, 164, 179, 0.12);
  margin-bottom: 28px;
}

.ec-doc-avatar-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.ec-doc-avatar {
  width: 110px;
  height: 110px;
  background: rgba(43, 164, 179, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  border: 3px solid rgba(43, 164, 179, 0.25);
}

.ec-doc-fee-pill {
  background: #2ba4b3;
  color: #fff;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}

.ec-doc-fee-pill span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
}

.ec-doc-main {
  flex: 1;
}

.ec-doc-main h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}

.ec-doc-qual {
  font-size: 13.5px;
  color: #2ba4b3;
  font-weight: 600;
  margin-bottom: 20px;
}

.ec-doc-meta-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}

.ec-doc-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ec-doc-meta-item .label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.ec-doc-meta-item span:last-child {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--secondary);
}

/* Bio + Specs Grid */
.ec-doc-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ec-doc-panel {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid rgba(43, 164, 179, 0.10);
  box-shadow: 0 4px 20px rgba(6, 13, 24, 0.05);
}

.ec-doc-panel-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(43, 164, 179, 0.15);
}

.ec-doc-panel p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 14px;
}

.ec-doc-panel p:last-child {
  margin-bottom: 0;
}

/* Reviews */
.ec-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ec-review-card {
  background: #f4f8fb;
  border-radius: 14px;
  padding: 18px 20px;
  border-left: 4px solid #2ba4b3;
}

.ec-review-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.ec-review-card p {
  font-size: 13.5px;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 8px !important;
}

.ec-review-card span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ec-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ec-strip-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .ec-trust-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ec-trust-img-box {
    height: 300px;
  }

  .ec-doc-hero {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .ec-doc-meta-row {
    grid-template-columns: 1fr 1fr;
  }

  .ec-doc-details {
    grid-template-columns: 1fr;
  }
}

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

  .ec-doc-meta-row {
    grid-template-columns: 1fr;
  }
}

/* ── Patient Reviews Section ── */
.ec-reviews-wrap {
  background: #f4f8fb;
  padding: 90px 0;
}

.ec-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ec-rv-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1.5px solid rgba(43, 164, 179, 0.10);
  box-shadow: 0 4px 20px rgba(6, 13, 24, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ec-rv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(43, 164, 179, 0.13);
  border-color: rgba(43, 164, 179, 0.30);
}

.ec-rv-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.ec-rv-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #2ba4b3;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ec-rv-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
}

.ec-rv-stars {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 3px;
}

.ec-rv-source {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2ba4b3;
  background: rgba(43, 164, 179, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.ec-rv-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

@media (max-width: 900px) {
  .ec-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   EYE CARE — 4-COL SERVICES + DOCTOR REDESIGN
================================================ */

/* ── 4-Col Services Grid ── */
.ec-services-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ec-srv4-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid rgba(43, 164, 179, 0.12);
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.ec-srv4-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(43, 164, 179, 0.18);
  border-color: #2ba4b3;
}

.ec-srv4-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(43, 164, 179, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s ease;
}

.ec-srv4-icon svg {
  width: 28px;
  height: 28px;
  stroke: #2ba4b3;
  fill: none;
  transition: stroke 0.3s ease;
}

.ec-srv4-card:hover .ec-srv4-icon {
  background: #2ba4b3;
}

.ec-srv4-card:hover .ec-srv4-icon svg {
  stroke: #fff;
}

.ec-srv4-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #2ba4b3;
  background: rgba(43, 164, 179, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.ec-srv4-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.ec-srv4-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
}

/* ── Doctor Redesign ── */
.ec-doc-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

/* Profile Card */
.ec-doc-profile-card {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid rgba(43, 164, 179, 0.12);
  box-shadow: 0 8px 36px rgba(6, 13, 24, 0.08);
  overflow: hidden;
}

.ec-doc-profile-top {
  background: linear-gradient(135deg, #060d18 0%, #0d2137 100%);
  padding: 36px 24px 28px;
  text-align: center;
}

.ec-doc-avatar-circle {
  width: 90px;
  height: 90px;
  background: rgba(43, 164, 179, 0.15);
  border-radius: 50%;
  border: 3px solid rgba(43, 164, 179, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: 0 auto 16px;
}

.ec-doc-profile-top h2 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.ec-doc-profile-top p {
  font-size: 12.5px;
  color: #2ba4b3;
  font-weight: 600;
  margin-bottom: 12px;
}

.ec-doc-designation-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.70);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 4px 14px;
}

.ec-doc-profile-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ec-doc-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(43, 164, 179, 0.08);
}

.ec-doc-info-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.ec-doc-info-row svg {
  width: 18px;
  height: 18px;
  stroke: #2ba4b3;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.ec-doc-info-row div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ec-doc-info-row span {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray);
}

.ec-doc-info-row strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--secondary);
}

.ec-doc-fee {
  color: #2ba4b3 !important;
  font-size: 17px !important;
}

/* Right side */
.ec-doc-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ec-doc-bio-box,
.ec-doc-spec-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1.5px solid rgba(43, 164, 179, 0.10);
  box-shadow: 0 4px 18px rgba(6, 13, 24, 0.05);
}

.ec-doc-bio-box h3,
.ec-doc-spec-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(43, 164, 179, 0.15);
}

.ec-doc-bio-box p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 12px;
}

.ec-doc-bio-box p:last-child {
  margin-bottom: 0;
}

.ec-doc-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ec-doc-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(43, 164, 179, 0.05);
  border: 1px solid rgba(43, 164, 179, 0.12);
  border-radius: 10px;
  padding: 9px 12px;
  transition: background 0.25s, border-color 0.25s;
}

.ec-doc-spec-item:hover {
  background: rgba(43, 164, 179, 0.10);
  border-color: rgba(43, 164, 179, 0.30);
}

.ec-doc-spec-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .ec-services-grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ec-doc-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .ec-services-grid4 {
    grid-template-columns: 1fr;
  }

  .ec-doc-spec-grid {
    grid-template-columns: 1fr;
  }

  .story-wrap {
    background: #f4f8fb;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }

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

  .stats-bar {
    background: #fff;
    padding: 0px 0;
  }

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

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

  .hero {
    height: 70vh;
    min-height: auto;
    display: block;
    position: relative;
    overflow: hidden;
    background: none;
  }

  .about-section {
    background: white;
    padding: 0px 0 50px;
    overflow: hidden;
  }
}

/* ── Doctor Gallery ── */
.ec-doc-gallery-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1.5px solid rgba(43, 164, 179, 0.10);
  box-shadow: 0 4px 18px rgba(6, 13, 24, 0.05);
}

.ec-doc-gallery-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(43, 164, 179, 0.15);
}

.ec-doc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ec-gal-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.ec-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.ec-gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 13, 24, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ec-gal-item:hover .ec-gal-overlay {
  opacity: 1;
}

.ec-gal-overlay span {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .ec-doc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================
   FACILITIES PAGE
================================================ */

.fac-stats-section {
  background: var(--secondary);
  padding: 52px 0;
}

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

.fac-stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fac-stat-item:last-child {
  border-right: none;
}

.fac-stat-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.fac-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.4px;
}

.fac-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.fac-tag-pill svg {
  width: 15px;
  height: 15px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fac-equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fac-eq-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1.5px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(27, 41, 78, 0.05);
}

.fac-eq-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.fac-eq-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fac-eq-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fac-eq-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.fac-eq-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

.fac-img-accent {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 300px;
}

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

.fac-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 41, 78, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.fac-img-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 99px;
}

.fac-ot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.fac-ot-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fac-ot-head {
  background: var(--secondary);
  padding: 36px 28px;
  text-align: center;
}

.fac-ot-head-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(43, 164, 179, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.fac-ot-head-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fac-ot-head h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.fac-ot-head p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13.5px;
  line-height: 1.6;
}

.fac-ot-body {
  background: #fff;
  padding: 28px;
}

.fac-ot-body h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
  margin-top: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.fac-ot-body h4:first-child {
  margin-top: 0;
}

.fac-ot-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fac-ot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray);
}

.fac-ot-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

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

.fac-care-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 10px rgba(27, 41, 78, 0.05);
  transition: var(--transition);
}

.fac-care-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.fac-care-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.fac-care-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fac-care-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.fac-care-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

.fac-feature-box {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}

.fac-feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.fac-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.fac-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.fac-feature-item svg {
  width: 17px;
  height: 17px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.fac-hygiene-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fac-hygiene-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.fac-hygiene-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.fac-hygiene-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--primary-light);
}

.fac-hygiene-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fac-hygiene-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--light-bg);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}

.fac-hygiene-item:hover {
  background: var(--primary-light);
}

.fac-hygiene-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.fac-hygiene-item span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

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

  .fac-stat-item:nth-child(2) {
    border-right: none;
  }

  .fac-equip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fac-ot-grid {
    grid-template-columns: 1fr;
  }

  .fac-care-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fac-feature-grid {
    grid-template-columns: 1fr;
  }

  .fac-hygiene-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fac-hygiene-img-badge {
    bottom: 12px;
    right: 12px;
  }
}

@media (max-width: 600px) {
  .fac-equip-grid {
    grid-template-columns: 1fr;
  }

  .fac-care-grid {
    grid-template-columns: 1fr;
  }

  .fac-feature-box {
    padding: 28px 22px;
  }
}

/* ================================================
   GALLERY PAGE
================================================ */

/* Filter Buttons */
.gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.gal-filter-btn {
  padding: 10px 24px;
  border-radius: 99px;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.gal-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gal-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(43, 164, 179, 0.35);
}

/* Gallery Grid */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Gallery Item */
.gal-item {
  display: block;
}

.gal-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 2px 12px rgba(27, 41, 78, 0.10);
  cursor: pointer;
  background: var(--light-gray);
}

.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Hover zoom icon */
.gal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius);
}

.gal-card:hover::after {
  opacity: 1;
}

.gal-card:hover img {
  transform: scale(1.06);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lb-inner {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
  display: block;
}

.lb-caption {
  margin-top: 14px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 10000;
}

.lb-close:hover {
  opacity: 1;
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 36px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}

.lb-prev {
  left: 18px;
}

.lb-next {
  right: 18px;
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 600px) {
  .lb-prev {
    left: 6px;
  }

  .lb-next {
    right: 6px;
  }
}

/* Empty State */
.gal-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  color: var(--gray);
}

.gal-empty svg {
  width: 56px;
  height: 56px;
  stroke: var(--border);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gal-empty p {
  font-size: 15px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

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

  .gal-filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}