:root {
  /* Brand Navy (Main Color) */
  --navy: #001f4c;
  /* Deep brand navy blue from logo */
  --navy-dark: #00122e;
  /* Darker shade for topbar/footer/gradients */

  /* Brand Teal (Primary Accent) */
  --teal: #008297;
  /* Vibrant brand teal/cyan from logo */
  --teal-dark: #006b7d;
  /* Deeper teal for hovers/pressed states */
  --teal-light: #e0f2f5;
  /* Soft teal tint for card backgrounds & icon containers */

  /* Brand Red (Secondary Accent / Alerts) */
  --red: #c8283b;
  /* Ruby red from logo (emergency icons, alerts) */
  --red-dark: #9e1f2e;
  /* Hover state for urgent call-to-actions */
  --red-light: #fbeaea;
  /* Soft red background for warnings/alerts */

  /* Semantic Colors */
  --green: #10b981;
  /* Premium emerald green for success/positive statuses */
  --green-dark: #059669;
  /* Emerald dark for hovers */
  --gold: #f59e0b;
  /* Amber gold for reviews/stars */

  /* Neutral Scale */
  --ink: #0b1520;
  /* Slate dark blue-black for crisp, readable text */
  --muted: #4e6178;
  /* Medium slate gray for descriptions and secondary text */
  --bg-soft: #f0f6f9;
  /* Soft teal-tinted off-white background */
  --border: #d0dfe3;
  /* Branded subtle borders */
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
}

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

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(27, 138, 154, .35);
}

.btn-teal:hover {
  background: var(--teal-dark);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid #d7e2e8;
}

.eyebrow {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 8px;
}

section {
  padding: 64px 0;
}

/* ===== Topbar ===== */
.topbar {
  background: var(--navy-dark);
  color: #cfe3ee;
  font-size: 13.5px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar .right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar .right span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar strong {
  color: #fff;
}

/* ===== Header ===== */
header {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
}

header .container {
  max-width: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand .logo {
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
}

.brand h1 {
  font-size: 21px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .3px;
}

.brand .tag {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  font-weight: 600;
}

.brand .strap {
  display: inline-block;
  margin-top: 2px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
}

nav ul {
  display: flex;
  gap: 30px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}

@media (max-width: 1200px) {
  nav ul {
    gap: 16px;
    font-size: 14px;
  }

  .nav-wrap {
    gap: 20px;
  }
}

nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: bottom right;
}

nav a:hover::after,
nav .active a::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

nav a:hover,
nav .active a {
  color: var(--teal);
}

header .container>.btn {
  flex-shrink: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 34px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
  padding: 6px;
  transition: color 0.15s ease;
  line-height: 1;
}

.menu-toggle:hover {
  color: var(--teal);
}

/* ===== Slider ===== */
.slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  padding: 0;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 18, 46, .85) 0%, rgba(0, 18, 46, .6) 45%, rgba(0, 18, 46, .2) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #fff;
}

.slide-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin: 14px 0 16px;
  color: #fff;
}

.slide-content p {
  font-size: 15.5px;
  color: #dbe9f0;
  margin-bottom: 24px;
  max-width: 480px;
}

.slide-content .eyebrow::after {
  background: var(--teal);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.slide-arrow:hover {
  background: var(--teal);
}

.slide-arrow.prev {
  left: 24px;
}

.slide-arrow.next {
  right: 24px;
}

.slide-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slide-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: .2s;
}

.slide-dots .dot.active {
  background: var(--teal);
  width: 26px;
  border-radius: 5px;
}

@media(max-width:600px) {
  .slider {
    height: 420px;
  }

  .slide-content h2 {
    font-size: 26px;
  }

  .slide-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, #eef6f9 0%, #fbfdfe 100%);
  padding: 60px 0 0;
}

.hero .grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: center;
}

.hero h2 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy);
}

.hero h2 .accent {
  color: var(--teal);
}

.hero p.lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 440px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin: 28px 0;
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.hero-features span.sub {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 12.5px;
}

.icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.hero-visual {
  position: relative;
}

.hero-visual .photo-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 61, 99, .18);
}

.hero-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 31, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  z-index: 5;
}

.floating-card:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 31, 76, 0.35);
  filter: brightness(1.15);
}

.floating-card i {
  font-size: 24px;
  margin: 0;
  color: #fff;
}

.fc-emergency {
  background: var(--red);
}

.fc-call {
  background: var(--navy);
}

.fc-whatsapp {
  background: #0f8a3c;
  /* WhatsApp green */
}

.float-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-stack .floating-card {
  position: relative;
  top: auto;
  right: auto;
}

/* Floating contact labels */
.floating-card .float-label {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 4px 12px rgba(8, 44, 72, 0.15);
  pointer-events: none;
}

.floating-card .float-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--navy);
}

.fc-emergency .float-label {
  background: var(--red);
}

.fc-emergency .float-label::after {
  border-color: transparent transparent transparent var(--red);
}

.fc-call .float-label {
  background: var(--navy);
}

.fc-call .float-label::after {
  border-color: transparent transparent transparent var(--navy);
}

.fc-whatsapp .float-label {
  background: #0f8a3c;
}

.fc-whatsapp .float-label::after {
  border-color: transparent transparent transparent #0f8a3c;
}

/* Hover behaviors */
.floating-card:hover .float-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
  .floating-card .float-label {
    display: none !important;
  }
}

/* ===== Stats bar ===== */
.stats {
  background: var(--navy);
  color: #fff;
  padding: 0;
}

.stats .container {
  display: flex;
  justify-content: space-between;
  padding: 30px 24px;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 180px;
}

.stat .num {
  font-size: 26px;
  font-weight: 800;
}

.stat .lbl {
  font-size: 13px;
  color: #bcd3e2;
}

.stat .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== About Section ===== */
.about-section {
  background: #fff;
}

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

.about-content h2.section-title {
  margin-bottom: 16px;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.about-content .checklist {
  margin-bottom: 28px;
}

.about-content .checklist li {
  display: block;
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}

.about-content .checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 1px;
}

.about-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(11, 61, 99, .1);
}

.about-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ===== Specialities ===== */
.specialities-section {
  background: var(--bg-soft);
}

.specialities-header {
  text-align: center;
  margin-bottom: 40px;
}

.specialities-header .eyebrow {
  justify-content: center;
}

.specialities-header .eyebrow::after {
  display: none;
}

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

.spec-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 16px;
  text-align: center;
  transition: .2s;
  cursor: pointer;
}

.spec-card:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 24px rgba(11, 61, 99, .08);
  transform: translateY(-4px);
}

.spec-card .icon-circle {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--teal-light);
  font-size: 24px;
}

.spec-card p {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}

.specialities-footer {
  text-align: center;
  margin-top: 36px;
}


/* ===== Facilities ===== */
.facilities {
  background: var(--bg-soft);
  text-align: center;
}

.facilities .eyebrow {
  justify-content: center;
}

.facilities .eyebrow::after {
  display: none;
}

.facilities h2 {
  margin-bottom: 36px;
}

.fac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.fac-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 150px;
}

.fac-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fac-card .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 20px 10px 10px;
  text-align: center;
}

/* ===== Why choose + testimonials ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-photo {
  border-radius: 12px;
  overflow: hidden;
}

.why-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.why-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-list li {
  display: flex;
  gap: 14px;
}

.why-list .icon-circle {
  background: var(--navy);
  color: #fff;
  width: 38px;
  height: 38px;
}

.why-list h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 3px;
}

.why-list p {
  font-size: 13.5px;
  color: var(--muted);
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(8, 44, 72, 0.05);
}

.testimonials-section {
  background: var(--bg-soft);
  padding: 64px 0;
}

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

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

.testimonial .quote-mark {
  color: var(--teal);
  font-size: 26px;
  font-weight: 800;
  font-family: Georgia, serif;
}

.testimonial p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 6px 0 16px;
  flex: 1;
}

.testimonial .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.testimonial .stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.testimonial .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* ===== Insurance ===== */
.insurance {
  text-align: center;
}

.insurance .eyebrow {
  justify-content: center;
}

.insurance .eyebrow::after {
  display: none;
}

.ins-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 32px 0 20px;
  flex-wrap: wrap;
}

.ins-logos .logo {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 26px;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  background: #fff;
}

.insurance .footer-note {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
}

/* ===== Contact ===== */
.contact {
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info h3 {
  font-size: 24px;
  color: var(--navy);
  font-weight: 800;
  margin: 6px 0 20px;
}

.contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
}

.contact-info .icon-circle {
  background: var(--navy);
  color: #fff;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.map-box {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
  position: relative;
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
}

.book-form {
  background: var(--navy);
  border-radius: 10px;
  padding: 26px;
  color: #fff;
}

.book-form h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 18px;
}

.book-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  font-size: 13.5px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
}

.book-form textarea {
  margin-bottom: 14px;
  resize: none;
  height: 70px;
}

.book-form button {
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
}

.book-form button:hover {
  background: var(--teal-dark);
}

/* ===== Footer ===== */
footer {
  background: var(--navy-dark);
  color: #c3d6e2;
  padding: 50px 0 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 2fr 1.2fr;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand .footer-logo {
  height: 90px;
  width: auto;
  background-color: #fff;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

footer h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

footer ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

footer ul.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

footer ul.footer-contact li i {
  color: var(--teal);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 14px;
}

footer ul.footer-contact li a {
  color: inherit;
  transition: color 0.2s ease;
}

footer ul.footer-contact li a:hover {
  color: #fff;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-badge {
  margin-top: 16px;
  background: rgba(255, 255, 255, .06);
  padding: 12px 16px;
  border-radius: 8px;
}

.review-badge .score {
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 36px;
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #8fa9ba;
}

.mobile-only-btn {
  display: none;
}

@media(max-width: 1000px) {

  header .nav-wrap > .btn-teal {
    display: none;
  }

  .mobile-only-btn {
    display: block;
    margin-top: 12px;
  }

  .mobile-only-btn a.btn-teal {
    display: block;
    text-align: center;
    color: #fff !important;
    background: var(--teal) !important;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    margin: 4px 0;
  }

  .hero .grid,
  .about-grid,
  .why-grid,
  .contact-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    height: 300px;
  }

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

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

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

  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  nav.active {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(8, 44, 72, 0.08);
    padding: 20px 32px;
    z-index: 100;
  }

  nav.active ul {
    flex-direction: column;
    gap: 16px;
  }

  nav.active ul li {
    width: 100%;
  }

  nav.active ul li a::after {
    display: none;
  }
}

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

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

  .hero h2 {
    font-size: 32px;
  }

  .stats .container {
    flex-direction: column;
  }

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

  .topbar .right {
    gap: 14px;
    font-size: 12px;
  }

  .brand .logo {
    max-width: 160px;
  }

  .book-form .row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .hero-ctas .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Floating stack smaller footprint on mobile */
  .float-stack {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .float-stack .floating-card {
    width: 44px;
    height: 44px;
  }

  .float-stack .floating-card i {
    font-size: 18px;
  }

  /* About cards mobile padding */
  .about-cards-grid {
    gap: 20px;
  }

  .about-card {
    padding: 24px 20px;
  }

  /* Spec card mobile scaling */
  .spec-card {
    padding: 16px 8px;
  }

  .spec-card .icon-circle {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .spec-card p {
    font-size: 13px;
    line-height: 1.35;
  }

  /* Detailed specialities mobile layout */
  .detailed-spec-grid {
    gap: 20px;
  }

  .detailed-spec-card {
    padding: 24px 20px;
  }
}

/* ===== Subpage Header Banner & Custom Alignment ===== */
.page-banner {
  background: linear-gradient(90deg, rgba(8, 44, 72, 0.95) 0%, rgba(8, 44, 72, 0.75) 100%), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

.page-banner h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.breadcrumbs {
  font-size: 13.5px;
  color: #bcd3e2;
  font-weight: 500;
}

.breadcrumbs a {
  color: #fff;
  transition: color 0.15s ease;
}

.breadcrumbs a:hover {
  color: var(--teal);
}

.breadcrumbs span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.3);
}

.topbar i,
.stat i,
.icon-circle i,
.contact-info i,
.socials i,
.stars i {
  display: inline-block;
  line-height: inherit;
}

.stat .icon i {
  font-size: 18px;
  color: #fff;
}

.spec-card .icon-circle i {
  font-size: 24px;
}

/* ===== Doctor Cards Layout ===== */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}

.doc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(8, 44, 72, 0.08);
  border-color: var(--teal);
}

.doc-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin: 24px auto 10px;
  background: var(--bg-soft);
  border: 3px solid #eaf6f8;
  display: block;
}

.doc-info {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.doc-name {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.doc-qual {
  font-size: 12.5px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.doc-dept {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 18px;
}

.doc-info .btn {
  margin-top: auto;
  align-self: center;
  font-size: 13.5px;
  padding: 10px 20px;
}

/* ===== Gallery Grid ===== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: .15s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

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

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 230px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
}

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

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

.gallery-item .overlay-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(8, 44, 72, 0.85) 0%, rgba(8, 44, 72, 0.4) 60%, transparent 100%);
  padding: 24px 16px 12px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  transform: translateY(100%);
  transition: transform .25s ease;
}

.gallery-item:hover .overlay-title {
  transform: translateY(0);
}

/* ===== Sticky Floating Action Buttons (Bottom Right) ===== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  filter: brightness(1.05);
}

.floating-btn.btn-call {
  background: var(--navy);
  /* Deep brand navy to match the headset badge */
}

.floating-btn.btn-whatsapp {
  background: #0f8a3c;
  /* Rich WhatsApp green matching user_upload_1 */
}

/* Responsive adjustment for floating actions to prevent blocking main content on tiny screens */
@media(max-width: 600px) {
  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

/* Contact page specific card designs */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(8, 44, 72, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(8, 44, 72, 0.08);
  border-color: rgba(0, 130, 151, 0.3);
  /* Soft teal accent border on hover */
}

.contact-card .icon-circle {
  background: var(--navy);
  color: #fff;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  width: 100%;
}

.contact-card p+p {
  margin-top: 10px;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--teal);
}

.contact-card .nowrap {
  white-space: nowrap;
}

.contact-card .font-semibold {
  font-weight: 600;
}

/* ===== About Cards Grid ===== */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(8, 44, 72, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(8, 44, 72, 0.06);
}

.about-card .icon-circle {
  background: #e6f4f6;
  color: var(--teal);
  font-size: 20px;
  margin-bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.about-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* ===== Detailed Specialities Grid ===== */
.detailed-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

.detailed-spec-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(8, 44, 72, 0.02);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.detailed-spec-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 12px 30px rgba(8, 44, 72, 0.07);
}

.detailed-spec-card .icon-circle {
  width: 50px;
  height: 50px;
  background: #eaf6f8;
  color: var(--teal);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

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

.detailed-spec-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.detailed-spec-card ul {
  padding: 0;
  list-style: none;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 20px;
}

.detailed-spec-card ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detailed-spec-card ul li i {
  color: var(--teal);
  font-size: 14px;
}

.detailed-spec-card .btn {
  font-size: 13.5px;
  padding: 10px 20px;
  width: fit-content;
  margin-top: auto;
}

/* ===== Facilities Alternate Rows ===== */
.facilities-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.facilities-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.facilities-row-reverse {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.facilities-img-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 44, 72, 0.06);
}

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

.facilities-row h3, .facilities-row-reverse h3 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0 15px;
}

.facilities-row p, .facilities-row-reverse p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.facilities-row ul, .facilities-row-reverse ul {
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--ink);
}

.facilities-row ul li, .facilities-row-reverse ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.facilities-row ul li i, .facilities-row-reverse ul li i {
  color: var(--teal);
}

@media(min-width: 769px) {
  .facilities-row-reverse .facilities-img-box {
    order: 2;
  }
  .facilities-row-reverse .facilities-text-col {
    order: 1;
  }
}

/* ===== Insurance Page Styles ===== */
.insurance-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.insurance-hero-grid .description-para {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-top: 15px;
  margin-bottom: 20px;
}

.insurance-info-alert {
  background: #eaf6f8;
  border-left: 4px solid var(--teal);
  padding: 16px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-top: 20px;
}

.insurance-info-alert i {
  margin-right: 8px;
  color: var(--teal);
}

.insurance-docs-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}

.insurance-docs-card h3 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
}

.insurance-docs-card ul {
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--ink);
}

.insurance-docs-card ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.insurance-docs-card ul li i {
  color: var(--teal);
  margin-right: 10px;
  margin-top: 3px;
}

.claim-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.claim-step-card {
  background: #fff;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.claim-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(8, 44, 72, 0.04);
}

.claim-step-card .step-num {
  font-size: 36px;
  font-weight: 800;
  color: rgba(27, 138, 154, 0.15);
  position: absolute;
  top: 10px;
  right: 20px;
}

.claim-step-card h4 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.claim-step-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.insurance-footer-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin-top: 24px;
}

.insurance-footer-note i {
  color: var(--teal);
  margin-right: 6px;
}

/* Insurance TPA Brand Colors */
.ins-logos .logo-star { color: var(--teal) !important; }
.ins-logos .logo-hdfc { color: #c0392b !important; }
.ins-logos .logo-icici { color: #1f4fa3 !important; }
.ins-logos .logo-bajaj { background: #1f4fa3 !important; color: #fff !important; }
.ins-logos .logo-reliance { color: #c0392b !important; }
.ins-logos .logo-care { background: #f5c518 !important; color: var(--navy) !important; }

@media(max-width: 600px) {
  .insurance-hero-grid {
    gap: 30px;
  }
  .insurance-docs-card {
    padding: 24px 20px;
  }
  .claim-step-card {
    padding: 20px;
  }
  .facilities-row,
  .facilities-row-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}