/* --- Mobile-First Header/Nav Responsive Fix --- */
@media (max-width: 700px) {
  .top-nav-wrap {
    background: #fff;
    border-radius: 18px !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    width: 98vw;
    left: 1vw;
    right: 1vw;
    top: 8px;
    padding: 0 2px;
    z-index: 1000;
    position: fixed;
    transition: top 0.28s;
  }
  .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px !important;
    min-height: 0;
    padding: 0 8px !important;
    border-radius: 18px !important;
    gap: 0 !important;
    box-shadow: none;
    background: transparent;
    position: relative;
    width: 100%;
  }
  .brand-logo-full {
    max-width: 90px !important;
    max-height: 32px !important;
    flex-shrink: 0;
    margin: 0;
    display: block;
    align-self: center;
    order: 1;
  }
  .appointment-btn {
    display: none !important;
  }
  .menu-toggle {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: none;
    border: none;
    z-index: 1100;
    order: 2;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    position: fixed;
    top: 54px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 54px);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 100;
    border-radius: 0 0 18px 18px;
    overflow-y: auto;
    max-height: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }
  .top-nav.menu-open .nav-links {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links > li {
    width: 100%;
  }
  .nav-links > li:not(:last-child):not(.mobile-only) {
    border-bottom: 1px solid #eef1f5;
  }
  .nav-links a, .nav-dd {
    color: var(--primary) !important;
    font-size: 19px !important;
    padding: 14px 22px !important;
    border-radius: 8px;
    margin: 0 8px;
    background: none;
    display: block;
    text-align: left;
    transition: background-color 0.15s ease;
  }
  .nav-links a:active, .nav-dd:active {
    background: #f3f6f8;
  }
  .nav-links a.active {
    color: var(--primary) !important;
    background: #e6f7f7;
  }
  .dropdown-menu {
    background: #f8fcff !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-radius: 10px;
    margin: 6px 0 6px 18px;
    padding: 6px 0;
    position: static;
    min-width: 0;
    width: 90%;
    display: none;
  }
  .has-dropdown > .nav-dd[aria-expanded="true"] + .dropdown-menu {
    display: block;
  }
  .dropdown-menu a {
    font-size: 17px !important;
    padding: 10px 18px !important;
    color: var(--primary) !important;
    border-radius: 6px;
  }
  .dropdown-menu a:hover {
    background: #e6f7f7;
  }
  .mobile-only {
    display: block !important;
  }
  body.menu-open {
    overflow: hidden;
  }
}
@media (max-width: 600px) {
  .top-nav-wrap {
    background: #fff;
    border-radius: 22px !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    width: 96vw;
    left: 2vw;
    right: 2vw;
    top: 10px;
    padding: 0;
    z-index: 1000;
  }
  .top-nav {
    height: 54px !important;
    min-height: 0;
    padding: 0 16px !important;
    border-radius: 22px !important;
    gap: 10px !important;
    box-shadow: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .brand-logo-full {
    max-width: 34vw !important;
    max-height: 32px !important;
    flex-shrink: 0;
  }
  .appointment-btn {
    display: inline-flex !important;
    background: #10a5be !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    padding: 8px 18px !important;
    min-width: 0;
    box-shadow: 0 2px 8px rgba(16,165,190,0.10);
    margin: 0 8px 0 0;
    border: none;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    background: none;
    border: none;
  }
}
@media (max-width: 700px) {
  .top-nav.menu-open .nav-links {
    display: flex;
    position: fixed;
    top: 54px;
    left: 0;
    width: 100vw;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 100;
    padding: 18px 0 18px 0;
    border-radius: 0 0 18px 18px;
  }
  .nav-links a, .nav-dd {
    color: var(--primary) !important;
    font-size: 19px !important;
    padding: 14px 22px !important;
    border-radius: 8px;
    margin: 0 8px;
    background: none;
    display: block;
    text-align: left;
  }
  .nav-links a.active {
    color: var(--primary) !important;
    background: #e6f7f7;
  }
  .dropdown-menu {
    background: #f8fcff !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-radius: 10px;
    margin: 6px 0 6px 18px;
    padding: 6px 0;
    position: static;
    min-width: 0;
    width: 90%;
  }
  .dropdown-menu a {
    font-size: 17px !important;
    padding: 10px 18px !important;
    color: var(--primary) !important;
    border-radius: 6px;
  }
  .dropdown-menu a:hover {
    background: #e6f7f7;
  }
}
@media (max-width: 600px) {
  .top-nav-wrap {
    top: 8px;
    padding: 0 2px;
    border-radius: 18px !important;
  }
  .top-nav {
    height: 54px !important;
    min-height: 0;
    padding: 0 8px !important;
    border-radius: 18px !important;
    gap: 6px !important;
    box-shadow: 0 4px 16px rgba(10, 26, 41, 0.10);
  }
  .brand-logo-full {
    max-width: 80px !important;
    max-height: 32px !important;
  }
  .menu-toggle {
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
  }
}
/* --- Enhanced Responsive Fixes for User-Friendly Mobile & Desktop --- */
@media (max-width: 900px) {
  .fertility-detail-grid,
  .services-page-grid,
  .about-main,
  .about-page-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .fertility-detail-img {
    max-width: 100%;
    margin-bottom: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .service-detail-overview,
  .service-key-list,
  .service-key-list li {
    font-size: 15px !important;
    padding: 8px 12px !important;
  }
  .service-key-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 12px !important;
  }
  .contact-form-card {
    padding: 16px 6px !important;
    border-radius: 10px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 15px !important;
    padding: 10px 12px !important;
  }
  .contact-form-submit {
    font-size: 16px !important;
    padding: 12px 0 !important;
  }
  .top-nav {
    flex-direction: column;
    height: auto;
    padding: 0 6px;
    gap: 8px;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    width: 100%;
  }
  .brand-logo-full {
    max-width: 120px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .fertility-detail-img {
    border-radius: 10px;
    margin-bottom: 12px;
  }
  .service-detail-heading {
    font-size: 20px !important;
  }
  .service-detail-overview {
    font-size: 14px !important;
  }
  .service-key-list {
    gap: 4px !important;
  }
  .service-key-list li {
    font-size: 12px !important;
    padding: 6px 8px !important;
  }
  .contact-form-card {
    padding: 10px 2px !important;
  }
  .contact-form-title {
    font-size: 18px !important;
  }
  .contact-form-field label {
    font-size: 12px !important;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 13px !important;
    padding: 7px 8px !important;
  }
  .contact-form-submit {
    font-size: 14px !important;
    padding: 8px 0 !important;
  }
  .top-nav {
    padding: 0 2px;
  }
  .nav-links {
    gap: 6px;
  }
  .brand-logo-full {
    max-width: 90px;
  }
  .footer-main {
    gap: 12px !important;
  }
}
/* Responsive Design for All Pages */
@media (max-width: 1024px) {
  .services-page-container,
  .about-page-container,
  .doctors-page-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .fertility-detail-grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .services-page-grid,
  .about-main,
  .about-page-grid,
  .fertility-detail-grid {
    grid-template-columns: 1fr;
  }
  .services-page-container,
  .about-page-container,
  .doctors-page-container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fertility-detail-img {
    max-width: 100%;
    margin-bottom: 22px;
  }
}

@media (max-width: 600px) {
  .services-page-hero,
  .about-page-hero,
  .doctors-page-hero {
    min-height: 220px;
    padding: 60px 6px 18px;
    align-items: flex-end;
  }
  .services-page-hero-inner h1,
  .about-page-hero h1,
  .doctors-page-hero-inner h1 {
    font-size: 22px;
  }
  .services-page-hero-inner p,
  .about-page-hero p,
  .doctors-page-hero-inner p {
    font-size: 17px;
  }
  .fertility-detail-img {
    border-radius: 10px;
    margin-bottom: 16px;
  }
  .service-detail-heading {
    font-size: 22px;
  }
  .service-detail-overview {
    font-size: 15px;
  }
  .service-key-list {
    gap: 6px;
  }
  .service-key-list li {
    font-size: 12px;
    padding: 6px 10px;
  }
  .contact-form-card {
    padding: 18px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(17,38,52,0.08);
  }
  .contact-form-title {
    font-size: 20px;
  }
  .contact-form-field label {
    font-size: 13px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 14px;
    padding: 8px 10px;
  }
  .contact-form-submit {
    font-size: 15px;
    padding: 10px 0;
  }
  .top-nav {
    flex-direction: column;
    height: auto;
    padding: 0 6px;
  }
  .nav-links {
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }
  .brand-logo-full {
    max-width: 120px;
  }
}
/* Fertility & IVF Care page image styling */
.fertility-detail-img {
  width: 100%;
  max-width: 750px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(17,38,52,0.10);
  margin-bottom: 32px;
  display: block;
}
/* Fertility & IVF Care Page Custom Layout */
.fertility-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-detail-heading {
  color: #2f4255;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 800;
  margin-top: 0;
}

.service-detail-overview {
  color: #43586c;
  font-size: 18px;
  margin-bottom: 18px;
}
@import url('/static/fonts/nunito/nunito-fonts.css');
:root {
  --primary: #9c1e22;
  --primary1: #f7a72e;
  --overlay: rgba(0, 0, 0, 0.6);
  --nav-text: #1a1a2e;
  --hero-text: #ffffff;
  --hero-subtext: #d7dde6;
  --container-max: 1220px;
  --section-gutter: clamp(14px, 2.8vw, 20px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', Arial, sans-serif;
}

body {
  background: #091218;
  color: var(--hero-text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-nav-wrap {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 30;
  padding: 0 clamp(12px, 2vw, 28px);
  transition: top 0.28s ease;
}

.top-nav-wrap.nav-scrolled {
  top: 0;
}

.top-nav {
  width: min(1420px, 100%);
  margin: 0 auto;
  border-radius: 999px;
  background: #ffffff;
  color: var(--nav-text);
  box-shadow: 0 8px 30px rgba(10, 26, 41, 0.12);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: clamp(26px, 2vw, 36px);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 0;
}

.brand-logo-full {
  display: block;
  width: clamp(146px, 12.2vw, 214px);
  max-height: 54px;
  height: auto;
  object-fit: contain;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border: 2px solid #95d8d6;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
}

.brand-icon i {
  font-size: 20px;
  color: var(--primary);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 24px);
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-links > li {
  position: relative;
}

.nav-links a,
.nav-dd {
  color: #526575;
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  position: relative;
}

.nav-dd::after {
  content: "\25BE";
  font-size: 0.68em;
  margin-left: 7px;
  color: #94a3b8;
}

.nav-links a:hover,
.nav-dd:hover,
.nav-links .active {
  color: var(--primary);
}

.nav-links .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  margin: auto;
  width: 100%;
  max-width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--primary);
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  left: 0;
  top: calc(100% - 10px);
  min-width: 250px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(10, 26, 41, 0.14);
  border: 1px solid #e5edf4;
  padding: 8px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 25;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  font-family: "Nunito", sans-serif;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 15px;
  color: #526575;
}

.dropdown-menu a:hover {
  background: #f4f8fb;
  color: var(--primary);
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu,
.has-dropdown > .nav-dd[aria-expanded="true"] + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.appointment-btn {
  background: var(--primary1);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-only {
  display: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--nav-text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-banner {
  position: relative;
  min-height: min(84vh, 760px);
  width: 100%;
  overflow: hidden;
  background: #e9eef3;
}

.hero-slide-track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 35, 51, 0.24), rgba(15, 35, 51, 0.16));
}

.hero-card {
  position: relative;
  z-index: 3;
  width: min(1320px, calc(100% - 120px));
  margin: clamp(132px, 17vh, 168px) auto 0;
  min-height: clamp(260px, 30vh, 340px);
  border-top: 4px solid var(--primary);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(12, 31, 45, 0.14);
  padding: clamp(34px, 5vw, 56px) clamp(20px, 6vw, 90px);
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  gap: 18px;
}

.hero-card h1,
.hero-card h2 {
  margin: 0;
  color: #37475a;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 800;
}

.hero-card p {
  margin: 0;
  max-width: 80ch;
  color: #2c3f53;
  font-size: 20px;
  line-height: 1.45;
}

.hero-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  padding: 12px 30px;
  border-radius: 8px;
  background: var(--primary1);
  color: #ffffff;
  font-size: clamp(16px, 1.2vw, 30px);
  font-weight: 700;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.hero-card-btn:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.42);
}

.hero-arrow i {
  font-size: 20px;
}

.hero-arrow-prev {
  left: clamp(10px, 2.2vw, 32px);
}

.hero-arrow-next {
  right: clamp(10px, 2.2vw, 32px);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 6;
}

.hero-dot {
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  padding: 0;
  cursor: pointer;
}

.hero-dot.is-active {
  background: #59d0cc;
}

.about-page-hero {
  position: relative;
  min-height: min(64vh, 560px);
  background-image: url("/static/images/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  padding: clamp(120px, 16vh, 170px) var(--section-gutter) clamp(40px, 5vw, 62px);
}

.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 32, 44, 0.76), rgba(9, 46, 62, 0.5));
}

.about-page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container-max), 100%);
  margin: auto;
}

.about-page-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #95eef0;
}

.about-page-hero h1 {
  margin: 12px 0 0;
  max-width: 30ch;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.about-page-hero p {
  margin: 16px 0 0;
  max-width: 70ch;
  color: #e4f2f4;
  font-size: 17px;
  line-height: 1.6;
}

.about-page-section {
  padding: clamp(62px, 7vw, 96px) var(--section-gutter);
  background: #f5f7f9;
}

.about-page-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.about-page-intro {
  background: #ffffff;
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(290px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.about-page-copy h2,
.about-page-heading h2 {
  margin: 0;
  color: #2f4255;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 800;
}

.about-page-title-inline {
  display: inline-block;
}

.about-page-title-inline .heading-accent {
  margin: 14px auto 16px;
}

.about-page-copy p {
  margin: 18px 0 0;
  color: #43586c;
  font-size: 17px;
  line-height: 1.7;
}

.about-page-media {
  width: 100%;
  min-height: 420px;
  background-image: url("/static/images/home-about.png");
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(17, 38, 52, 0.12);
}

.about-page-mv {
  background: #f3f6f9;
}

.about-page-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-page-card {
  background: #ffffff;
  border: 1px solid #dce5ec;
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 10px 24px rgba(18, 38, 54, 0.06);
}

.about-page-card h3 {
  margin: 0;
  color: #2f4255;
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 800;
}

.about-page-card p {
  margin: 14px 0 0;
  color: #475d71;
  font-size: 17px;
  line-height: 1.68;
}

.about-page-heading {
  text-align: center;
  margin-bottom: 32px;
}

.about-page-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.about-page-list li {
  background: #ffffff;
  border: 1px solid #dde5ec;
  border-radius: 10px;
  padding: 15px 16px;
  color: #3d5265;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
  line-height: 1.55;
}

.about-page-list i {
  margin-top: 4px;
  color: var(--primary);
}

.about-page-facilities {
  background: #ffffff;
}

.about-facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.about-facility-item {
  background: #f4f8fb;
  border: 1px solid #d8e1e8;
  border-radius: 12px;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
}

.about-facility-item i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
}

.about-facility-item p {
  margin: 0;
  color: #40556a;
  font-size: 17px;
  line-height: 1.55;
}

.doctors-page-hero {
  position: relative;
  min-height: min(60vh, 520px);
  background-image: url("/static/images/dept-urology.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  padding: clamp(120px, 16vh, 172px) var(--section-gutter) clamp(40px, 5vw, 60px);
}

.doctors-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(8, 32, 45, 0.78), rgba(13, 58, 78, 0.54));
}

.doctors-page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.doctors-page-hero-inner h1 {
  margin: 0;
  max-width: 22ch;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 800;
}

.doctors-page-hero-inner p {
  margin: 18px 0 0;
  max-width: 74ch;
  color: #e5f2f5;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.65;
}

.doctors-page-section {
  background: #f4f7f9;
  padding: clamp(62px, 7vw, 94px) var(--section-gutter);
}

.doctors-page-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.doctors-page-heading {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 48px);
}

.doctors-page-heading h2 {
  margin: 0;
  color: #2f4255;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 800;
}

.doctors-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.doctor-profile-card {
  background: #f6f8fa;
  border: 1px solid #e2e7ec;
  border-radius: 12px;
  padding: clamp(20px, 2.8vw, 30px);
  box-shadow: 0 8px 22px rgba(17, 35, 52, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.doctor-profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.68);
}

.doctor-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doctor-profile-content {
  min-width: 0;
}

.doctor-profile-card h3 {
  margin: 0;
  color: #243f54;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.doctor-profile-speciality {
  margin: 8px 0 0;
  color: #2c4257;
  font-size: clamp(19px, 1.22vw, 28px);
  font-weight: 700;
}

.doctor-profile-divider {
  width: 64px;
  height: 2px;
  background: #d7dce1;
  display: block;
  margin: 12px auto 0;
}

.doctor-profile-summary {
  margin: 12px 0 0;
  color: #44596c;
  font-size: clamp(17px, 1.03vw, 25px);
  line-height: 1.56;
}

.services-page-hero {
  position: relative;
  min-height: min(60vh, 520px);
  background-image: url("/static/images/services-lab.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  padding: clamp(120px, 16vh, 172px) var(--section-gutter) clamp(40px, 5vw, 60px);
}

.services-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(7, 34, 45, 0.8), rgba(12, 57, 76, 0.55));
}

.services-page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container-max), 100%);
  margin: auto;
}

.services-page-hero-inner h1 {
  margin: 0;
  max-width: 22ch;
  color: #ffffff;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 800;
}

.services-page-hero-inner p {
  margin: 18px 0 0;
  max-width: 74ch;
  color: #e6f3f6;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.65;
}

.services-page-section {
  background: #f4f7f9;
  padding: clamp(62px, 7vw, 94px) var(--section-gutter);
}

.services-page-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.services-page-intro {
  background: #ffffff;
  padding-bottom: clamp(26px, 3vw, 40px);
}

.services-page-intro-card {
  background: #f6fbfd;
  border: 1px solid #dce7ef;
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 36px);
}

.services-page-intro-card h2 {
  margin: 0;
  color: #2f4255;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 800;
}

.services-page-intro-card p {
  margin: 6px 0 0;
  color: #445a6f;
  font-size: clamp(15px, 1.04vw, 18px);
  line-height: 1.7;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-detail-card {
  background: #ffffff;
  border: 1px solid #dde5ec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(17, 35, 52, 0.05);
}

.service-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.service-card-body {
  position: relative;
  padding: clamp(24px, 2.8vw, 36px) clamp(20px, 2.8vw, 34px) clamp(22px, 2.8vw, 32px);
}

.service-card-icon {
  position: absolute;
  left: clamp(20px, 2.8vw, 34px);
  top: -38px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #0ea9c0;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(14, 169, 192, 0.34);
}

.service-card-icon i {
  font-size: 30px;
}

.service-detail-card h3 {
  margin: 0;
  color: #23475b;
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1.28;
  font-weight: 800;
}

.service-overview {
  margin: 12px 0 0;
  color: #455b70;
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.66;
}

.service-key-label {
  margin-top: 16px;
  color: #2b4258;
  font-size: 16px;
  font-weight: 800;
}

.service-key-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-key-list li {
  background: #eef7fa;
  border: 1px solid #d7e7ee;
  color: #3a5368;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.3;
}

.about-section {
  background: #f4f5f7;
  color: #2f3b4a;
  padding: clamp(68px, 8vw, 98px) var(--section-gutter) clamp(56px, 8vw, 90px);
}

.about-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.about-header h2 {
  margin: 0;
  color: #354556;
  font-size: clamp(30px, 2.8vw, 46px);
  font-weight: 800;
}

.heading-accent {
  width: 66px;
  height: 3px;
  border-radius: 2px;
  background: var(--primary);
  display: block;
  margin: 14px auto 16px;
}

.about-header p {
  margin: 0 auto;
  max-width: 64ch;
  color: #4e5f70;
  font-size: clamp(14px, 1.3vw, 19px);
}

.about-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 46px);
  align-items: start;
}

.about-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 12;
  background-image: url("/static/images/home-about.png");
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 999px;
  background: var(--primary1);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(10, 186, 181, 0.32);
}

.play-btn i {
  font-size: 22px;
  margin-left: 3px;
}

.about-content h3 {
  margin: 0;
  color: #36475b;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 800;
}

.about-content h4 {
  margin: 18px 0 0;
  color: #3b5068;
  font-size: 20px;
  line-height: 1.3;
}

.about-content p {
  margin: 16px 0 0;
  color: #384b5e;
  font-size: 16px;
  line-height: 1.6;
}


.about-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #2f3f51;
  font-size: 16px;
  line-height: 1.5;
}

.list-icon {
  display: inline-flex;
  margin-top: 2px;
}

.list-icon i {
  font-size: 14px;
  color: var(--primary);
  margin-top: 4px;
}

.about-stats {
  margin-top: clamp(28px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.stat-card {
  background: #ffffff;
  padding: clamp(20px, 2.2vw, 34px);
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(16, 30, 45, 0.06);
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
}

.stat-icon i {
  font-size: 38px;
  color: var(--primary);
}

.stat-card strong {
  display: block;
  color: #475569;
  font-size: clamp(30px, 2.2vw, 50px);
  line-height: 1;
  font-weight: 800;
}

.stat-card p {
  margin: 8px 0 0;
  color: #485a6c;
  font-size: clamp(14px, 0.95vw, 20px);
}

/* â”€â”€ Featured Departments â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dept-section {
  background: #ffffff;
  padding: clamp(64px, 8vw, 96px) var(--section-gutter) clamp(72px, 9vw, 108px);
}

.dept-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.dept-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 62px);
}

.dept-header h2 {
  margin: 0;
  color: #354556;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 800;
}

.dept-header p {
  margin: 0 auto;
  max-width: 64ch;
  color: #4e5f70;
  font-size: clamp(14px, 1.2vw, 18px);
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.dept-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(16, 30, 45, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.dept-card:hover {
  box-shadow: 0 10px 36px rgba(10, 186, 181, 0.16);
}

.dept-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.dept-badge {
  position: absolute;
  bottom: -24px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 22px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(10, 186, 181, 0.35);
  z-index: 2;
}

.dept-body {
  padding: 44px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}


.dept-body h3 {
  margin: 0 0 12px;
  color: #1e3a4a;
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 800;
}

.dept-body p {
  margin: 0;
  color: #4e6070;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
  flex: 1;
}

.dept-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--primary);
  font-weight: 700;
  font-size: clamp(14px, 1vw, 16px);
  text-decoration: none;
}

.dept-link i {
  transition: transform 0.18s;
}

.dept-link:hover i {
  transform: translateX(4px);
}

.lab-adv-section {
  background: #f4f5f7;
  padding: clamp(64px, 8vw, 100px) var(--section-gutter);
}

.lab-adv-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.lab-adv-title {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.lab-adv-title h2 {
  margin: 0;
  color: #354556;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
}

.lab-adv-title p {
  margin: 0 auto;
  max-width: 66ch;
  color: #4e5f70;
  font-size: clamp(14px, 1.1vw, 18px);
}

.lab-adv-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(280px, 1fr);
  gap: clamp(26px, 3.2vw, 56px);
  align-items: start;
}

.lab-adv-image {
  width: 100%;
  min-height: 680px;
  border-radius: 2px;
  background-image: url("/static/images/services-lab.jpg");
  background-size: cover;
  background-position: center;
}

.lab-adv-content h3 {
  
  color: #3d4f61;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  
}

.lab-adv-line {
  display: inline-block;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: var(--primary);
  margin: 18px 0 18px;
}

.lab-adv-content > p {
  margin: 0;
  color: #3f5265;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.6;
  max-width: 52ch;
}

.lab-adv-list {
  margin-top: 26px;
  display: grid;
  gap: 24px;
}

.lab-adv-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}

.lab-adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #edf2f5;
  color: var(--primary);
  display: grid;
  place-items: center;
}

.lab-adv-icon i {
  font-size: 27px;
}

.lab-adv-item h4 {
  margin: 0;
  color: #3f5165;
  font-size: 20px;
  font-weight: 800;
}

.lab-adv-item p {
  margin: 8px 0 0;
  color: #3e5266;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
}

.doctor-section {
  background: #ffffff;
  padding: clamp(66px, 8vw, 100px) var(--section-gutter) clamp(78px, 8vw, 110px);
}

.doctor-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.doctor-title {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.doctor-title h2 {
  margin: 0;
  color: #23495e;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
}

.doctor-title p {
  margin: 0 auto;
  max-width: 70ch;
  color: #597082;
  font-size: clamp(14px, 1.05vw, 18px);
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-right: 0;
  margin-left: 0;
}

.doctor-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17, 31, 45, 0.08);
}

.doctor-media {
  position: relative;
  aspect-ratio: 4 / 4;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #f0f4f7;
}

.doctor-status {
  position: absolute;
  top: 20px;
  right: 18px;
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.doctor-status.is-available {
  background: #39b54a;
}

.doctor-status.is-busy {
  background: #ffc31a;
  color: #ffffff;
}

.doctor-body {
  padding: 26px 30px 28px;
}

.doctor-body h3 {
  margin: 0;
  color: #17465f;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 500;
}

.doctor-body p{
  margin: 6px 0 0;
  color: #4e6070;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.5;}

  .doctor-body li {
    margin: 6px 0 0;
    color: #4e6070;
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.5;
  } 

.doctor-speciality {
  margin: 10px 0 0;
  color: #02a6d3;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 700;
}

.doctor-exp {
  margin: 10px 0 0;
  color: #6a727d;
  font-size: clamp(15px, 1.1vw, 17px);
}

.doctor-rating {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7480;
  font-size: clamp(14px, 1vw, 16px);
}

.doctor-stars {
  display: inline-flex;
  gap: 2px;
  color: #ffb400;
  font-size: 22px;
}

.doctor-actions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.doctor-btn {
  min-height: 50px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 700;
  text-align: center;
}

.doctor-btn-outline {
  border: 2px solid var(--primary1);
  color: var(--primary1);
  background: #ffffff;
}

.doctor-btn-solid {
  background: var(--primary);
  color: #ffffff;
}

.why-choose-section {
  background: #f4f5f7;
  padding: clamp(64px, 8vw, 100px) var(--section-gutter) clamp(74px, 9vw, 110px);
}

.why-choose-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.why-choose-title {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.why-choose-title h2 {
  margin: 0;
  color: #354556;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
}

.why-choose-title p {
  margin: 0 auto;
  max-width: 72ch;
  color: #5e6772;
  font-size: clamp(14px, 1.05vw, 18px);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 28px;
}

.why-choose-card {
  background: #ffffff;
  border: 1px solid #d8dde3;
  border-radius: 12px;
  padding: 34px 34px 32px;
  min-height: 260px;
  box-shadow: 0 6px 16px rgba(17, 31, 45, 0.05);
}

.why-choose-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  /* background: rgba(10, 186, 181, 0.18); */

  color: var(--primary);
  display: grid;
  place-items: center;
}

.why-choose-icon i {
  font-size: 28px;
}

.why-choose-card h3 {
  margin: 24px 0 10px;
  color: #3f5165;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.why-choose-card p {
  margin: 0;
  color: #5f6771;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.6;
}

.testimonial-section {
  background: #f4f5f7;
  padding: clamp(64px, 8vw, 100px) var(--section-gutter) clamp(74px, 9vw, 110px);
}

.testimonial-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.testimonial-title {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.testimonial-title h2 {
  margin: 0;
  color: #354556;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
}

.testimonial-title p {
  margin: 0 auto;
  max-width: 72ch;
  color: #566472;
  font-size: clamp(14px, 1.05vw, 18px);
}

.testimonial-carousel {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  position: relative;
  padding-top: 12px;
  padding-inline: 12px;
  flex: 0 0 33.3333%;
}

.testimonial-quote {
  background: #eceff2;
  border-radius: 10px;
  padding: 28px 24px 60px;
  min-height: 232px;
}

.testimonial-quote i {
  color: var(--primary1);
  font-size: 28px;
}

.testimonial-quote p {
  margin: 12px 0;
  color: #4c5661;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.55;
  font-style: italic;
}

.testimonial-quote .fa-quote-right {
  float: right;
}

.testimonial-author {
  margin-top: -44px;
  padding: 0 8px;
}

.testimonial-avatar {
  display: inline-grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 6px solid #f4f5f7;
  /* background: linear-gradient(135deg, #62c8ce, #2e9da5); */
  background: linear-gradient(135deg, var(--primary1), var(--primary));
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-author h3 {
  margin: 14px 0 2px;
  color: #48525f;
  font-size: 20px;
  font-weight: 700;
}

.testimonial-author p {
  margin: 0;
  color: #67727f;
  font-size: 16px;
}

.testimonial-dots {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}

.testimonial-dots .dot.is-active {
  background: var(--primary);
}

.emergency-cta-section {
  /* background: var(--primary); */
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary1) 100%);
  padding: clamp(58px, 8vw, 96px) var(--section-gutter);
  color: #ffffff;
}

.emergency-cta-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
  text-align: center;
  border-radius: clamp(26px, 3.5vw, 44px);
  border: 1.5px solid rgba(255, 255, 255, 0.36);
  padding: clamp(34px, 5vw, 56px) clamp(18px, 4vw, 42px);
  box-shadow: 0 20px 42px rgba(17, 62, 92, 0.28);
}

.emergency-cta-container h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1.15;
  font-weight: 800;
}

.emergency-cta-container p {
  margin: 22px auto 0;
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(16px, 1.2vw, 30px);
  line-height: 1.55;
  font-weight: 500;
}

.emergency-cta-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  min-width: 320px;
  min-height: 72px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 1.1vw, 26px);
  font-weight: 600;
  padding: 12px 28px;
  box-shadow: 0 10px 24px rgba(14, 58, 92, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.cta-btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14, 58, 92, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.cta-btn-solid {
  border: 2px solid #ffffff;
  color: #2f8e93;
  background: #ffffff;
}

.cta-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14, 58, 92, 0.34);
  background: #ecffff;
}

.faq-section {
  background: #f4f5f7;
  padding: clamp(10px, 9vw, 10px) var(--section-gutter);
}

.faq-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.faq-title h2 {
  margin: 0;
  color: #1f4f63;
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 800;
}

.faq-title p {
  margin: 18px auto 0;
  max-width: 68ch;
  color: #5f6f7c;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.55;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}

.faq-support-card {
  background: linear-gradient(145deg, var(--primary1) 0%, var(--primary) 100%);
  border-radius: 12px;
  padding: 30px 28px;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(19, 58, 75, 0.15);
}

.faq-support-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  font-size: 28px;
}

.faq-support-card h3 {
  margin: 24px 0 12px;
  font-size: clamp(30px, 1.8vw, 44px);
  line-height: 1.2;
  font-weight: 700;
}

.faq-support-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.55;
}

.faq-support-link {
  margin-top: 14px;
  min-height: 58px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: clamp(19px, 1.05vw, 24px);
  font-weight: 600;
}

.faq-support-link span {
  font-size: 22px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 10px;
  background: #eef1f3;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: #234f62;
  min-height: 76px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
}

.faq-question i {
  font-size: 24px;
  color: #17a3c0;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 18px;
  color: #445360;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.55;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
}

.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}

.contact-section {
  background: #f4f5f7;
  padding: clamp(70px, 9vw, 110px) var(--section-gutter);
}

.contact-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.contact-title h2 {
  margin: 0;
  color: #214f63;
  font-size: clamp(30px, 2.8vw, 46px);
  font-weight: 800;
}

.contact-title p {
  margin: 16px auto 0;
  max-width: 66ch;
  color: #5f6f7c;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(19, 33, 49, 0.06);
}

.contact-info-card-wide {
  grid-column: 1 / -1;
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px dotted #6ed1db;
  color: #33b7c6;
  display: inline-grid;
  place-items: center;
}

.contact-info-icon i {
  font-size: 28px;
}

.contact-info-card h3 {
  margin: 16px 0 10px;
  color: #ffffff;
  font-size: clamp(24px, 1.3vw, 32px);
  font-weight: 700;
}

.contact-info-card p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1vw, 24px);
  line-height: 1.5;
}

.contact-map-wrap {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(19, 33, 49, 0.06);
  min-height: 100%;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  background: #edf2f5;
  padding: clamp(56px, 7vw, 90px) var(--section-gutter) 20px;
  color: #45586c;
}

.footer-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1.8fr 0.8fr 1.3fr;
  gap: 36px;
}

.footer-col-2col {
  grid-template-columns: 1fr 1fr !important;
}

.footer-col h4 {
  margin: 0 0 18px;
  color: #374d63;
  font-weight: 700;
  font-size: 20px;
}

.footer-tagline {
  margin: 0;
  color: #4f6377;
  line-height: 1.65;
  font-size: clamp(14px, 0.95vw, 16px);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo {
  width: clamp(120px, 11vw, 170px);
  height: auto;
  display: block;
  border-radius: 10px;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.footer-col ul a {
  color: #556a7e;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-col ul a:hover {
  color: var(--primary1);
}

.footer-social {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #95a5b5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5f7388;
  font-size: 18px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4f6377;
  font-size: 15px;
  line-height: 1.55;
}

.footer-contact-list li i {
  margin-top: 3px;
  color: var(--primary1);
  font-size: 15px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #4f6377;
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: var(--primary1);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #d7dfe6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  margin: 0;
  color: #42596f;
  font-size: clamp(13px, 0.85vw, 15px);
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--primary1);
}

.blog-grid-section {
  background: #f0f2f5;
  padding: clamp(108px, 11vw, 138px) var(--section-gutter) clamp(70px, 9vw, 110px);
}

.blog-grid-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.blog-grid-title {
  margin: 0;
  text-align: center;
  color: #1e305f;
  font-size: clamp(30px, 3.2vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.blog-grid {
  margin-top: clamp(30px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #d8dee6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(18, 35, 52, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px 24px 20px;
}

.blog-card-category {
  margin: 0 0 12px;
  color: #5f7388;
  font-size: clamp(14px, 0.9vw, 16px);
}

.blog-card-body h2 {
  margin: 0;
  color: #132f5c;
  font-size: clamp(22px, 1.7vw, 34px);
  line-height: 1.26;
  font-weight: 700;
}

.blog-card-body p {
  margin: 16px 0 0;
  color: #5f748a;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.5;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 0;
  background: var(--primary);
  color: #ffffff;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.read-more-btn:hover {
  background: #1a4a82;
}

.blog-stats {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #66809b;
  font-size: clamp(15px, 0.9vw, 19px);
}

.blog-stats i {
  color: #1db1cc;
}

.pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.pagination a {
  background: var(--primary);
  color: #ffffff;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 15px;
}

.pagination span {
  color: #2e4762;
  font-size: 15px;
}

.blog-detail-section {
  background: #f0f2f5;
  padding: clamp(104px, 11vw, 132px) var(--section-gutter) clamp(70px, 9vw, 110px);
}

.blog-detail-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.breadcrumbs {
  margin: 0 0 12px;
  color: #617488;
  font-size: 14px;
}

.breadcrumbs a {
  color: #2f6280;
}

.blog-detail-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(17, 34, 50, 0.08);
  padding: 22px 22px 26px;
}

.blog-detail-meta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #52687c;
  font-size: 15px;
}

.blog-detail-meta-row i {
  color: #1d4ed8;
  margin-right: 6px;
}

.blog-detail-card h1 {
  margin: 16px 0 18px;
  color: #102b59;
  font-size: clamp(34px, 2.5vw, 56px);
  line-height: 1.2;
  font-weight: 800;
}

.blog-detail-image {
  width: 100%;
  border-radius: 12px;
  max-height: 420px;
  object-fit: cover;
}

.blog-detail-subtitle {
  margin: 24px 0 10px;
  color: #203550;
  font-size: clamp(28px, 2.1vw, 46px);
  line-height: 1.25;
}

.blog-content {
  color: #1f2f3f;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.7;
}

.blog-consult-sidebar {
  position: sticky;
  top: 92px;
}

.blog-consult-card {
  background: #ffffff;
  border-radius: 12px;
  border-top: 4px solid #1d4ed8;
  padding: 18px 18px 14px;
  box-shadow: 0 12px 28px rgba(17, 34, 50, 0.1);
}

.blog-consult-card h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1b2f5f;
  font-size: clamp(25px, 1.3vw, 30px);
}

.blog-consult-card .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3347b6;
}

.blog-consult-card > p {
  margin: 12px 0 12px;
  color: #687b8d;
  font-size: 15px;
  line-height: 1.6;
}

.blog-consult-form {
  display: grid;
  gap: 8px;
}

.blog-consult-form label {
  color: #2f4565;
  font-size: 14px;
  font-weight: 600;
}

.blog-consult-form input,
.blog-consult-form textarea {
  width: 100%;
  border: 1px solid #ced6de;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  color: #2d3f52;
  font-family: inherit;
}

.blog-consult-form textarea {
  resize: vertical;
}

.consult-btn {
  min-height: 46px;
  border-radius: 6px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}

.consult-btn-primary {
  margin-top: 8px;
  background: #10308c;
  color: #ffffff;
}

.consult-btn-whatsapp {
  background: #2ec95f;
  color: #ffffff;
}

.consult-links {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e0e6ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.consult-links a {
  color: #204f8d;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-faq-section,
.related-posts {
  margin-top: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(17, 34, 50, 0.08);
  padding: 20px;
}

.blog-faq-section h2,
.related-posts h2 {
  margin: 0 0 14px;
  color: #18355e;
  font-size: clamp(26px, 1.6vw, 34px);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 16px;
}

.related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.related-card h3 {
  margin: 10px 0 8px;
  color: #1b3760;
  font-size: 19px;
}

.related-card p {
  margin: 0;
  color: #62778b;
  font-size: 15px;
  line-height: 1.5;
}

/* Contact page */
.contact-page-hero {
  position: relative;
  min-height: min(52vh, 430px);
  padding: clamp(118px, 13vh, 150px) var(--section-gutter) clamp(54px, 8vh, 76px);
  background:
    linear-gradient(115deg, rgba(8, 29, 41, 0.93), rgba(7, 79, 91, 0.84)),
    url("/static/images/hero-banner.jpg") center / cover no-repeat;
}

.contact-page-hero-inner {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.contact-page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #b6f1ee;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 13px;
}

.contact-page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  line-height: 1.14;
  font-size: clamp(34px, 5vw, 57px);
}

.contact-page-hero-sub {
  margin: 16px 0 0;
  max-width: 840px;
  color: rgba(233, 247, 255, 0.95);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}

.contact-page-section {
  background: linear-gradient(180deg, #f4f8fb 0%, #ebf1f6 100%);
  padding: clamp(46px, 8vh, 78px) var(--section-gutter);
}

.contact-page-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: clamp(20px, 2.8vw, 30px);
}

.contact-info-card {
  background: linear-gradient(180deg, var(--primary1) 0%, var(--primary) 100%);
  border-radius: 18px;
  color: #ecf9ff;
  padding: 30px 20px 24px;
  box-shadow: 0 18px 48px rgba(8, 35, 46, 0.2);
}

.contact-info-title {
  margin: 0;
  font-size: clamp(27px, 2.4vw, 35px);
  color: #ffffff;
}

.contact-info-tagline {
  margin: 14px 0 0;
  color: rgba(234, 252, 255, 0.92);
  line-height: 1.7;
}

.contact-info-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.26);
  color: #ffffff;
  font-size: 14px;
}

.contact-info-icon--emergency {
  background: rgba(255, 255, 255, 0.3);
}

.contact-info-item strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-info-item span,
.contact-info-item a {
  color: rgba(239, 252, 255, 0.95);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-right-col {
  display: grid;
  gap: 16px;
}

.contact-map-wrap,
.contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(17, 41, 55, 0.1);
}

.contact-map-wrap {
  padding: 12px;
}

.contact-map-wrap iframe {
  border-radius: 12px;
}

.contact-map-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0e8fa9;
  text-decoration: none;
  font-weight: 800;
}

.contact-map-link:hover {
  color: #07748a;
}

.contact-form-card {
  padding: clamp(22px, 2.8vw, 30px);
}

.contact-form-title {
  margin: 0;
  color: #173954;
  font-size: clamp(27px, 2.2vw, 34px);
}

.contact-form-sub {
  margin: 10px 0 0;
  color: #5d7386;
  line-height: 1.65;
}

.contact-form {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form-field {
  display: grid;
  gap: 6px;
}

.contact-form-field label {
  color: #2b4c66;
  font-weight: 800;
  font-size: 14px;
}

.contact-form-field label span {
  color: #c32444;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid #d2ddea;
  border-radius: 10px;
  min-height: 48px;
  padding: 10px 12px;
  color: #1f3f57;
  background: #f8fbff;
  font: inherit;
}

.contact-form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: #0b94ad;
  box-shadow: 0 0 0 3px rgba(11, 148, 173, 0.16);
}

.contact-form-submit {
  border: none;
  border-radius: 11px;
  min-height: 50px;
  width: 100%;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--primary1), var(--primary));
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(7, 113, 136, 0.3);
}

.contact-emergency-cta {
  padding: 0 var(--section-gutter) clamp(56px, 7vh, 78px);
  background: linear-gradient(180deg, #ebf1f6 0%, #f9fcff 100%);
}

.contact-emergency-inner {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 24px);
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(108deg, var(--primary1), var(--primary));
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(10, 39, 61, 0.25);
}

.contact-emergency-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-size: 28px;
}

.contact-emergency-text h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.3vw, 33px);
}

.contact-emergency-text p {
  margin: 8px 0 0;
  color: rgba(229, 242, 255, 0.96);
  line-height: 1.6;
}

.contact-emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 11px;
  background: #ffffff;
  color: #0d4f76;
  font-weight: 900;
  min-height: 48px;
  padding: 0 20px;
  white-space: nowrap;
}

.contact-emergency-btn:hover {
  color: #09395a;
}

@media (max-width: 900px) {
  .dept-grid {
    grid-template-columns: 1fr;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 50%;
  }

  .emergency-cta-container p {
    font-size: 18px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-consult-sidebar {
    position: static;
  }

  .blog-grid-section {
    padding-top: 118px;
  }
}

@media (max-width: 560px) {
  .dept-grid {
    grid-template-columns: 1fr;
  }

  .dept-section {
    padding-inline: var(--section-gutter);
  }
}
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 1200px) {
  .top-nav {
    height: 64px;
    padding: 0 18px;
  }

  .brand-logo-full {
    width: clamp(130px, 15vw, 182px);
    max-height: 46px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a,
  .nav-dd,
  .appointment-btn {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .contact-page-container {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    max-width: 680px;
  }

  .contact-emergency-inner {
    grid-template-columns: auto 1fr;
  }

  .contact-emergency-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .doctors-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .about-page-media {
    min-height: 320px;
  }

  .about-page-cards {
    grid-template-columns: 1fr;
  }

  .about-page-list {
    grid-template-columns: 1fr;
  }

  .about-main {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lab-adv-main {
    grid-template-columns: 1fr;
  }

  .lab-adv-image {
    min-height: 480px;
  }

  .lab-adv-content h3 {
    max-width: 100%;
  }

  .doctor-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .top-nav-wrap {
    padding: 0 14px;
    top: 12px;
  }

  .top-nav {
    height: auto;
    padding: 12px 14px;
    border-radius: 26px;
    flex-wrap: wrap;
    position: relative;
    margin-top: 15px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .appointment-btn {
    display: none;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2px;
    padding: 10px 0 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .top-nav.menu-open .nav-links {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-links a,
  .nav-dd {
    width: 100%;
    padding: 10px 2px;
    text-align: left;
    font-size: 17px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 8px 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-dropdown > .nav-dd[aria-expanded="true"] + .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    font-size: 15px;
    padding: 8px 2px;
    border-radius: 0;
  }

  .dropdown-menu a:hover {
    background: transparent;
  }

  .mobile-only {
    display: list-item;
    width: 100%;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid #eef1f5;
  }

  .nav-links a.mobile-appointment {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px !important;
    background: var(--primary) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 13px 20px !important;
    margin: 0 8px !important;
    text-align: center !important;
    box-shadow: 0 6px 16px rgba(156, 30, 34, 0.22);
  }

  .nav-links a.mobile-appointment:active {
    filter: brightness(0.95);
  }

  .nav-links .active::after {
    bottom: 5px;
    width: 36px;
    margin: 0;
  }

  .hero-banner {
    min-height: min(78vh, 680px);
  }

  .hero-card {
    width: min(1320px, calc(100% - 84px));
    margin-top: clamp(116px, 14vh, 142px);
    min-height: 250px;
  }

  .hero-arrow {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 640px) {
  .contact-page-hero {
    min-height: min(54vh, 390px);
    padding-top: 114px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 22px 16px 18px;
  }

  .contact-info-item {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .contact-info-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .contact-emergency-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-emergency-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 23px;
  }

  .services-page-hero {
    min-height: min(52vh, 420px);
    padding-top: 118px;
  }

  .services-page-hero-inner h1 {
    max-width: 100%;
  }

  .services-page-section {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .service-card-icon {
    width: 62px;
    height: 62px;
    top: -31px;
  }

  .service-card-icon i {
    font-size: 24px;
  }

  .service-detail-card h3 {
    font-size: 36px;
  }

  .service-key-list li {
    width: 100%;
    border-radius: 10px;
    font-size: 15px;
  }

  .doctors-page-hero {
    min-height: min(52vh, 420px);
    padding-top: 118px;
  }

  .doctors-page-hero-inner h1 {
    max-width: 100%;
  }

  .doctors-page-grid {
    grid-template-columns: 1fr;
  }

  .doctor-profile-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .doctor-profile-content {
    width: 100%;
  }

  .doctor-profile-divider {
    margin-right: auto;
    margin-left: auto;
  }

  .about-page-hero {
    min-height: min(58vh, 460px);
    padding-top: 118px;
  }

  .about-page-hero h1 {
    max-width: 100%;
  }

  .about-page-section {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .about-facility-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid-section,
  .blog-detail-section {
    padding-top: 102px;
  }

  .brand-logo-full {
    width: clamp(116px, 34vw, 146px);
    max-height: 40px;
  }

  .hero-banner {
    min-height: min(70vh, 600px);
  }

  .hero-card {
    width: min(1320px, calc(100% - 34px));
    margin-top: clamp(102px, 12vh, 130px);
    min-height: 228px;
    padding: 26px 18px;
  }

  .hero-card h1,
  .hero-card h2 {
    font-size: 35px;
  }

  .hero-card p {
    font-size: clamp(16px, 4.6vw, 25px);
    line-height: 1.4;
  }

  .hero-card-btn {
    min-width: 148px;
    padding: 10px 20px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow i {
    font-size: 14px;
  }

  .hero-dot {
    width: 11px;
    height: 11px;
  }

  .about-section {
    padding-inline: var(--section-gutter);
  }

  .play-btn {
    width: 62px;
    height: 62px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .lab-adv-section {
    padding-inline: var(--section-gutter);
  }

  .lab-adv-image {
    min-height: 360px;
  }

  .lab-adv-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .lab-adv-icon {
    width: 48px;
    height: 48px;
  }

  .lab-adv-icon i {
    font-size: 21px;
  }

  .doctor-section {
    padding-inline: var(--section-gutter);
  }

  .why-choose-section {
    padding-inline: var(--section-gutter);
  }

  .testimonial-section {
    padding-inline: var(--section-gutter);
  }

  .why-choose-card {
    min-height: auto;
    padding: 26px 20px 24px;
  }

  .testimonial-quote {
    min-height: auto;
    padding: 24px 18px 56px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding-inline: 8px;
  }

  .testimonial-author h3 {
    font-size: 24px;
  }

  .testimonial-author p {
    font-size: 19px;
  }

  .emergency-cta-section {
    padding-inline: var(--section-gutter);
  }

  .emergency-cta-container {
    border-radius: 24px;
    padding: 28px 16px 30px;
  }

  .emergency-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    min-width: 0;
    max-width: 360px;
    min-height: 56px;
    font-size: 20px;
    border-radius: 14px;
  }

  .faq-section {
    padding-inline: var(--section-gutter);
  }

  .faq-support-card {
    padding: 24px 18px;
  }

  .faq-support-link {
    font-size: 18px;
  }

  .faq-question {
    min-height: 64px;
    padding: 14px 16px;
    font-size: 20px;
    font-family: "Nunito", sans-serif;
  }

  .faq-question i {
    font-size: 20px;
  }

  .faq-answer p {
    padding: 0 16px 16px;
    font-size: 16px;
  }

  .contact-section {
    padding-inline: var(--section-gutter);
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card-wide {
    grid-column: auto;
  }

  .contact-map-wrap iframe {
    min-height: 340px;
  }

  .site-footer {
    padding-inline: var(--section-gutter);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col h4 {
    font-size: 20px;
  }

  .footer-col a,
  .footer-col p,
  .footer-bottom p {
    font-size: 16px;
  }

  .footer-social a {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .blog-card-body {
    padding: 18px 16px 16px;
  }

  .blog-detail-card,
  .blog-faq-section,
  .related-posts,
  .blog-consult-card {
    padding: 16px;
  }

  .blog-detail-meta-row {
    font-size: 13px;
    gap: 12px;
  }

  .consult-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .doctor-body {
    padding: 22px 20px 24px;
  }

  .doctor-stars {
    font-size: 18px;
  }
}

/* ── Other Specialities Slider ─────────────────────────────── */
.other-spec-section {
  padding: 60px 0 50px;
  background: #f4f5f7;
  overflow: hidden;
}

.other-spec-header {
  text-align: center;
  margin-bottom: 36px;
}

.other-spec-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color:#1f4f63;
  letter-spacing: 0.01em;
}

.other-spec-track-wrap {
  overflow: hidden;
  width: 100%;
}

.other-spec-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: other-spec-scroll 28s linear infinite;
}

.other-spec-track:hover {
  animation-play-state: paused;
}

@keyframes other-spec-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.other-spec-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  min-height: 160px;
  padding: 24px 16px;
  background: #fff;
  border: 1.5px solid #1976d2;
  border-radius: 16px;
  text-decoration: none;
  gap: 14px;
  flex-shrink: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.other-spec-card:hover {
  box-shadow: 0 6px 24px rgba(25, 118, 210, 0.15);
  transform: translateY(-4px);
}

.other-spec-icon {
  font-size: 2.4rem;
  color: #1976d2;
  line-height: 1;
}

.other-spec-name {
  font-size: 13px;
  font-weight: 600;
  color: #1976d2;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .other-spec-card {
    width: 130px;
    min-height: 130px;
    padding: 18px 10px;
  }

  .other-spec-icon {
    font-size: 1.9rem;
  }

  .other-spec-name {
    font-size: 12px;
  }

  .other-spec-header h2 {
    font-size: 1.5rem;
  }
}

/* --- Floating WhatsApp / Call buttons --- */
.floating-actions {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(10, 26, 41, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-btn:hover,
.floating-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(10, 26, 41, 0.32);
}

.floating-btn-whatsapp {
  background: #25d366;
}

.floating-btn-call {
  background: var(--primary);
}

body.menu-open .floating-actions {
  display: none;
}

@media (max-width: 600px) {
  .floating-actions {
    gap: 10px;
    right: 14px;
    bottom: 14px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }
}

/* --- Generic CMS sections (gallery / custom) for admin-created pages --- */
.cms-gallery-section,
.cms-custom-section {
  padding: clamp(48px, 6vw, 96px) 0;
}

.cms-gallery-container,
.cms-custom-container {
  width: min(1220px, 100% - 2 * clamp(14px, 2.8vw, 20px));
  margin: 0 auto;
}

.cms-gallery-title {
  text-align: center;
  margin-bottom: 36px;
}

.cms-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.cms-gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 26, 41, 0.1);
}

.cms-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.cms-gallery-item figcaption {
  padding: 10px 14px;
  font-weight: 600;
  color: var(--nav-text);
}

.cms-custom-container {
  text-align: center;
}

.cms-custom-subheading {
  color: #526575;
}

.cms-custom-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  text-align: left;
}

.cms-custom-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(10, 26, 41, 0.08);
}

.cms-custom-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* ── Tamil / Bilingual FAQ Language Toggle ──────────────────── */
.lang-ta {
  display: none;
  font-family: 'Noto Sans Tamil', sans-serif;
}

.faq-section[data-lang="ta"] .lang-en { display: none; }
.faq-section[data-lang="ta"] span.lang-ta { display: inline; }
.faq-section[data-lang="ta"] p.lang-ta { display: block; }

.faq-lang-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.faq-lang-btn {
  padding: 5px 16px;
  border: 1.5px solid #c8d2da;
  background: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #526575;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  line-height: 1.6;
}

.faq-lang-btn[aria-pressed="true"],
.faq-lang-btn.is-active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.faq-lang-btn[data-lang="ta"] {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 13px;
}

.faq-support-link .lang-en,
.faq-support-link .lang-ta {
  font-size: inherit;
}