@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --primary: #0699b2;
  --primary-dark: #047a8f;
  --nav-text: #273272;
  --nav-sub: #021343;
  --footer-bg: #374a5e;
  --footer-border: #5e6d7e;
  --text: #1f2d3d;
  --muted: #5a6b7d;
  --white: #ffffff;
  --bg-soft: #f5fbfd;
  --shadow: 0 8px 24px rgba(18, 17, 71, 0.12);
  --heading-font: "Plus Jakarta Sans", "Lato", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: #fff;
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-strip,
.social-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-strip a,
.social-strip a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-strip a {
  width: 30px;
  height: 30px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transition: 0.25s ease;
}

.social-strip a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nav-wrap {
  background: #fff;
  box-shadow: 0 1px 0 rgba(6, 153, 178, 0.14);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 230px;
  height: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  width: 42px;
  height: 42px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
}

.main-nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav li {
  position: relative;
}

.main-nav li > a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--nav-text);
  padding: 10px 14px;
  display: block;
  letter-spacing: 0.4px;
  transition: color 0.25s ease;
}

.main-nav li > a:hover,
.main-nav li > a.active,
.main-nav li:hover > a {
  color: var(--primary);
}

.main-nav li > a.nav-appointment-btn {
  background: var(--primary);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.main-nav li > a.nav-appointment-btn:hover,
.main-nav li > a.nav-appointment-btn:focus-visible {
  background: var(--primary-dark);
  color: #fff !important;
}

.has-dropdown {
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  color: var(--nav-sub);
  padding: 8px 8px 8px 0;
  cursor: pointer;
  font-size: 11px;
}

.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 230px;
  background: #fff;
  border-radius: 4px;
  padding: 12px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s ease;
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  padding: 9px 18px;
}

.dropdown a:hover {
  color: #121147;
  background: rgba(6, 153, 178, 0.08);
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-slider {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 26, 61, 0.75), rgba(4, 37, 87, 0.44));
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 4;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  color: var(--white);
  max-width: 700px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-family: var(--heading-font);
}

.hero-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.4vw, 32px);
  color: #d5f7ff;
}

.hero-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(2, 19, 67, 0.28);
}

.hero-form-card h2 {
  margin: 0 0 8px;
  color: var(--nav-sub);
  font-size: 27px;
  font-family: var(--heading-font);
}

.hero-form-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

/* Full Name + Phone Number side by side */
.form-grid input[name="full_name"],
.form-grid input[name="phone_number"] {
  width: 100%;
}

/* Remaining fields full width */
.form-grid input[name="city_name"],
.form-grid select,
.form-grid textarea,
.form-grid button,
.form-grid input[type="date"] {
  grid-column: 1 / -1;
}

.form-grid #appointment-date-section {
  grid-column: 1 / -1;
  width: 100%;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.form-grid button {
  width: 100%;
  border: 1px solid #ccd8e6;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: inherit;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 153, 178, 0.14);
  outline: none;
}

/* Mobile */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.btn {
  border: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
}

body.modal-open {
  overflow: hidden;
}

.appointment-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 19, 67, 0.56);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 18px;
}

.appointment-modal.open {
  display: flex;
}

.appointment-modal-card {
  width: min(560px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(2, 19, 67, 0.26);
}

.appointment-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.appointment-modal-head h2 {
  margin: 0;
  color: var(--nav-sub);
  font-size: 26px;
  font-family: var(--heading-font);
}

.appointment-modal-close {
  border: 0;
  background: #e8f3f8;
  color: var(--nav-sub);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.appointment-modal-close:hover {
  background: #d9ebf3;
}

.slider-controls {
  position: absolute;
  inset: auto 28px 26px auto;
  z-index: 5;
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 17px;
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: var(--primary);
}

.section {
  padding: 72px 0;
}

.section.bg-soft {
  background: var(--bg-soft);
}

.about-us-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fc 100%);
}

.about-us-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.about-us-image-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(2, 19, 67, 0.12);
  overflow: hidden;
}

.about-us-image {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.about-us-image-wrap.image-border-hover {
  position: relative;
  overflow: visible;
  isolation: isolate;
  transition: transform 0.35s ease;
}

.about-us-image-wrap.image-border-hover::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 2px solid #2a7ec5;
  border-radius: 18px;
  z-index: -1;
  opacity: 0.78;
  transition: transform 0.35s ease, opacity 0.35s ease, border-color 0.35s ease;
}

.about-us-image-wrap.image-border-hover .about-us-image {
  display: block;
  border-radius: 16px;
}

.about-us-image-wrap.image-border-hover:hover {
  transform: translateY(-2px);
}

.about-us-image-wrap.image-border-hover:hover::before {
  transform: translate(8px, 8px);
  opacity: 1;
  border-color: #0f5ea4;
}

.about-us-content {
  min-width: 0;
}

.about-us-title {
  margin: 0 0 14px;
  color: var(--nav-sub);
  font-size: clamp(28px, 3vw, 40px);
  font-family: var(--heading-font);
}

.about-us-content p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
}

.profile-highlights-section {
  background: #ffffff;
}

.profile-highlights-head {
  margin-bottom: 28px;
  max-width: 100%;
}

.section-head.profile-highlights-head {
  text-align: left;
}

.profile-highlights-head h2 {
  font-size: clamp(18px, 1.75vw, 32px);
  white-space: nowrap;
  margin-left: -8px;
}

.profile-highlights-kicker {
  margin: 0 0 10px;
  color: #0f6288;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.profile-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.profile-card {
  position: relative;
  background: #fff;
  border: 1px solid #d7e7f2;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(8, 40, 73, 0.1);
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #0699b2 0%, #0d2e57 100%);
}

.profile-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.profile-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 153, 178, 0.14), rgba(13, 46, 87, 0.12));
  color: #0f6288;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.profile-card h3 {
  margin: 0;
  color: #0d2e57;
  font-size: 22px;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.profile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dfebf3;
  color: #33536b;
  line-height: 1.5;
}

.profile-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.profile-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eaf8fc;
  color: #0f6288;
  border: 1px solid #cde8f2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.section-head {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 760px;
}

.section-head h2 {
  margin: 0 0 14px;
  color: var(--nav-sub);
  font-size: clamp(28px, 3vw, 36px);
  font-family: var(--heading-font);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section.profile-highlights-section .section-head.profile-highlights-head {
  text-align: left;
  margin: 0 0 28px;
  max-width: 100%;
}

.section.profile-highlights-section .section-head.profile-highlights-head h2 {
  white-space: nowrap;
  margin-left: -10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(2, 19, 67, 0.08);
  border-top: 4px solid var(--primary);
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--nav-sub);
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.specialisation-section {
  background: linear-gradient(180deg, rgba(234, 246, 250, 0.94) 0%, rgba(229, 244, 248, 0.98) 100%);
}

.specialisation-head {
  margin-bottom: 28px;
}

.specialisation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.specialisation-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(2, 19, 67, 0.1);
  border: 1px solid #dce9f1;
}

.specialisation-media {
  height: 190px;
  overflow: hidden;
}

.specialisation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.specialisation-card:hover .specialisation-media img {
  transform: scale(1.06);
}

.specialisation-body {
  padding: 16px;
}

.specialisation-body h3 {
  margin: 0 0 14px;
  color: var(--nav-sub);
  font-size: 20px;
  line-height: 1.3;
  font-family: var(--heading-font);
}

.specialisation-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.specialisation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.specialisation-btn {
  text-align: center;
  font-size: 13px;
  padding: 11px 12px;
  font-weight: 700;
}

.specialisation-btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.specialisation-btn-outline:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

.speciality-clinics-strip {
  background: #ffffff;
  padding: 54px 0 44px;
}

.speciality-clinics-wrap {
  width: min(1180px, 94%);
}

.speciality-clinics-head {
  margin-bottom: 24px;
}

.speciality-clinics-kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.speciality-clinics-head h2 {
  margin-bottom: 10px;
}

.speciality-clinics-head p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.speciality-clinics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.speciality-clinic-card {
  position: relative;
  min-height: 182px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(140deg, #ffffff 0%, #eff9fc 100%);
  border: 2px solid #c9dde8;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 8px 22px rgba(4, 42, 62, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.speciality-clinic-card::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 4px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, #0497b0 0%, #0fc0d6 100%);
}

.speciality-clinic-card::after {
  content: none;
}

.speciality-clinic-card:hover {
  transform: translateY(-4px);
  border-color: #5ab7ca;
  box-shadow: 0 14px 30px rgba(4, 42, 62, 0.16);
}

.speciality-clinic-content {
  position: relative;
  z-index: 2;
  max-width: 52%;
}

.speciality-clinic-card h3 {
  margin: 0 0 8px;
  color: #11476a;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.2;
  letter-spacing: 0.1px;
  font-family: var(--heading-font);
  font-weight: 700;
}

.speciality-clinic-card p {
  margin: 0;
  color: #4f6578;
  font-size: 14px;
  line-height: 1.55;
}

.speciality-clinic-card img {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 46%;
  height: 68%;
  max-height: none;
  object-fit: contain;
  object-position: right bottom;
  z-index: 1;
  filter: saturate(0.98) contrast(1.02);
}

.clinic-gallery-section {
  padding: 60px 0 56px;
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 145, 170, 0.12) 0%, rgba(8, 145, 170, 0) 42%),
    radial-gradient(circle at 100% 18%, rgba(13, 46, 87, 0.1) 0%, rgba(13, 46, 87, 0) 48%),
    linear-gradient(180deg, #f6fbff 0%, #edf7fc 100%);
}

.clinic-gallery-section .container {
  width: min(1160px, 92%);
}

.clinic-gallery-head {
  margin-bottom: 24px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.clinic-gallery-kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.clinic-gallery-head h2 {
  margin: 0 0 10px;
  color: #0d2e57;
}

.clinic-gallery-head p {
  margin: 0;
  color: #46627b;
  line-height: 1.72;
}

.clinic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-card {
  position: relative;
  display: block;
  height: 210px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #c7ddeb;
  box-shadow: 0 14px 28px rgba(6, 40, 62, 0.11);
  background: #fff;
  isolation: isolate;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 54, 0) 24%, rgba(7, 26, 54, 0.54) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card::after {
  content: "\f00e";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0d2e57;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 14px rgba(7, 39, 69, 0.2);
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(0.95) contrast(1.03);
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.05);
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: #9fc5da;
  box-shadow: 0 22px 34px rgba(6, 40, 62, 0.18);
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card-tall {
  grid-row: auto;
}

.gallery-card-wide {
  grid-column: auto;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 12, 22, 0.88);
  z-index: 1200;
  padding: 24px;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 900px);
  border-radius: 14px;
  overflow: hidden;
  background: #0d1824;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox-image {
  width: 100%;
  max-height: min(88vh, 900px);
  object-fit: contain;
  display: block;
}

.gallery-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.82);
  transform: scale(1.06);
}

.gallery-lightbox-close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.why-choose-section {
  padding: 78px 0 74px;
  background: #ffffff;
}

.why-choose-kicker {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.why-choose-head {
  text-align: center;
  max-width: 1240px;
  margin: 0 auto 34px;
}

.why-choose-head h2 {
  margin: 0 0 14px;
  color: #0f3155;
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.16;
  font-family: var(--heading-font);
  letter-spacing: -0.2px;
}

.why-choose-head p {
  margin: 0;
  color: #4f6578;
  line-height: 1.75;
  font-size: 14px;
}

.why-choose-wrap {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(290px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-choose-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  border: 1px solid #cfe3ec;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 8px 22px rgba(4, 44, 67, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  border-color: #75c3d3;
  box-shadow: 0 14px 26px rgba(4, 44, 67, 0.14);
}

.why-choose-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0699b2 0%, #057f95 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.why-choose-card h3 {
  margin: 0 0 7px;
  color: #12395a;
  font-size: 21px;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.why-choose-card p {
  margin: 0;
  color: #566f83;
  line-height: 1.62;
  font-size: 14px;
}

.why-choose-cta {
  margin-top: 20px;
}

.why-choose-media {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid #c9e2eb;
  box-shadow: 0 16px 34px rgba(4, 44, 67, 0.14);
}

.why-choose-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 31, 56, 0.06) 0%, rgba(9, 31, 56, 0.34) 100%);
  z-index: 1;
}

.why-choose-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.why-choose-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #103d61;
  border: 1px solid #c9e0ea;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(4, 44, 67, 0.2);
}

.why-badge-top {
  left: 12px;
  top: 12px;
}

.why-badge-bottom {
  right: 12px;
  bottom: 12px;
}

@media (min-width: 1200px) {
  .why-choose-head h2 {
    white-space: nowrap;
  }
}

.inner-hero {
  background: linear-gradient(135deg, #eaf8fc, #f5f8ff);
  padding: 68px 0;
  border-bottom: 1px solid #d9ebf1;
}

.inner-hero h1 {
  margin: 0 0 8px;
  color: var(--nav-sub);
  font-size: clamp(28px, 4vw, 44px);
  font-family: var(--heading-font);
}

.inner-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.about-inner-hero {
  background:
    linear-gradient(rgba(10, 34, 61, 0.58), rgba(10, 34, 61, 0.58)),
    url("../img/slide-1.webp");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(217, 235, 241, 0.45);
}

.about-inner-hero h1,
.about-inner-hero p {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.content-block {
  padding: 64px 0;
}

.content-block h2 {
  margin: 0 0 14px;
  color: var(--nav-sub);
  font-family: var(--heading-font);
}

.content-block p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
}

.diabetes-care-overview {
  background: linear-gradient(180deg, #f8fcff 0%, #eef7fc 100%);
}

.diabetes-care-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.diabetes-care-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 16px 34px rgba(8, 40, 73, 0.16);
}

.diabetes-care-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diabetes-care-image-tag {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 46, 87, 0.85);
  color: #fff;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 13px;
  line-height: 1.4;
}

.diabetes-care-image-tag i {
  color: #6be6ff;
}

.diabetes-care-content {
  background: #fff;
  border: 1px solid #d8e8f2;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(8, 40, 73, 0.08);
}

.diabetes-care-kicker {
  margin: 0 0 10px;
  color: #0f6288;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.diabetes-care-content h2 {
  margin: 0 0 14px;
  color: #0d2e57;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.24;
}

.diabetes-care-point-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 20px;
}

.diabetes-care-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  background: #f6fbff;
  border: 1px solid #d7e8f3;
  border-radius: 12px;
  color: #3b5a73;
  line-height: 1.5;
  font-size: 14px;
}

.diabetes-care-point-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(6, 153, 178, 0.16), rgba(13, 46, 87, 0.14));
  color: #0f6288;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.diabetes-treatment-section {
  background: #fff;
}

.diabetes-treatment-head {
  max-width: 860px;
}

.diabetes-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.diabetes-treatment-card {
  background: #fff;
  border: 1px solid #d8e7f1;
  border-top: 4px solid #089cb5;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(6, 35, 64, 0.09);
}

.diabetes-treatment-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 153, 178, 0.16), rgba(13, 46, 87, 0.15));
  color: #0f6288;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.diabetes-treatment-card h3 {
  margin: 0 0 10px;
  color: #0d2e57;
  font-size: 21px;
  line-height: 1.22;
}

.diabetes-treatment-card p {
  margin: 0 0 12px;
  color: #48657a;
  line-height: 1.7;
  font-size: 14px;
}

.diabetes-treatment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.diabetes-treatment-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
  color: #3c5a72;
  font-size: 14px;
  line-height: 1.55;
}

.diabetes-treatment-list li:last-child {
  margin-bottom: 0;
}

.diabetes-treatment-list li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #089cb5;
  font-size: 12px;
}

.diabetes-pathway-section {
  background: linear-gradient(180deg, #f4fbff 0%, #ebf5fc 100%);
}

.diabetes-pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.diabetes-pathway-card {
  background: #fff;
  border: 1px solid #d8e7f1;
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 10px 22px rgba(6, 35, 64, 0.08);
}

.diabetes-pathway-step {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0699b2, #0d2e57);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.diabetes-pathway-card h3 {
  margin: 0 0 8px;
  color: #0d2e57;
  font-size: 18px;
  line-height: 1.3;
}

.diabetes-pathway-card p {
  margin: 0;
  color: #47657b;
  line-height: 1.65;
  font-size: 14px;
}

.health-tips-featured {
  background: linear-gradient(180deg, #f8fcff 0%, #eef7fc 100%);
}

.health-featured-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  background: #fff;
  border: 1px solid #d8e8f2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(8, 40, 73, 0.1);
}

.health-featured-media {
  min-height: 360px;
}

.health-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.health-featured-content {
  padding: 28px;
}

.health-tip-kicker {
  margin: 0 0 10px;
  color: #0f6288;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.health-featured-content h2 {
  margin: 0 0 12px;
  color: #0d2e57;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.22;
}

.health-featured-content p {
  margin: 0 0 14px;
  color: #48657a;
  line-height: 1.72;
}

.health-tip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.health-tip-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #d3e5f0;
  background: #f3faff;
  color: #2f516b;
  font-size: 13px;
}

.health-tip-meta i {
  color: #0f6288;
}

.health-blogs-section {
  background: #fff;
}

.health-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.health-blog-card {
  background: #fff;
  border: 1px solid #d7e7f2;
  border-top: 4px solid #089cb5;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(6, 35, 64, 0.08);
}

.health-blog-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 153, 178, 0.16), rgba(13, 46, 87, 0.15));
  color: #0f6288;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.health-blog-category {
  margin: 0 0 8px;
  color: #0f6288;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.health-blog-card h3 {
  margin: 0 0 10px;
  color: #0d2e57;
  font-size: 21px;
  line-height: 1.3;
  font-family: var(--heading-font);
}

.health-blog-card p {
  margin: 0 0 12px;
  color: #47657b;
  line-height: 1.7;
  font-size: 14px;
}

.health-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f6288;
  font-size: 14px;
  font-weight: 700;
}

.health-read-more:hover {
  color: #0d2e57;
}

.health-quick-reminders {
  background: linear-gradient(180deg, #f4fbff 0%, #ebf5fc 100%);
}

.health-reminder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.health-reminder-card {
  background: #fff;
  border: 1px solid #d7e7f2;
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 10px 22px rgba(6, 35, 64, 0.08);
}

.health-reminder-card span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0699b2, #0d2e57);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.health-reminder-card h3 {
  margin: 0 0 8px;
  color: #0d2e57;
  font-size: 18px;
  line-height: 1.3;
}

.health-reminder-card p {
  margin: 0;
  color: #47657b;
  line-height: 1.65;
  font-size: 14px;
}

.health-tips-cta {
  margin-top: 20px;
  background: #0d2e57;
  color: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.health-tips-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

.health-tips-cta .btn {
  background: #10a7c0;
}

.health-tips-cta .btn:hover {
  background: #0895ad;
}

.blog-inner-hero {
  background:
    linear-gradient(120deg, rgba(7, 46, 86, 0.88), rgba(4, 124, 146, 0.82)),
    url("../img/slide-2.webp");
  background-size: cover;
  background-position: center;
}

.blog-inner-hero h1,
.blog-inner-hero p {
  color: #fff;
}

.blog-hero-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-hero-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
}

.blog-featured-section {
  background: linear-gradient(180deg, #f8fcff 0%, #eef7fc 100%);
}

.blog-featured-post {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  border: 1px solid #d5e6f1;
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 32, 61, 0.08);
}

.blog-featured-image {
  border-radius: 14px;
  overflow: hidden;
  min-height: 310px;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-badge {
  margin: 0 0 10px;
  color: #0f6288;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.blog-featured-copy h2 {
  margin: 0 0 12px;
  color: #0d2e57;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.24;
}

.blog-featured-copy p {
  margin: 0 0 14px;
  color: #48657a;
  line-height: 1.75;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #2d5169;
  background: #f2f9ff;
  border: 1px solid #d3e5f0;
  border-radius: 999px;
  padding: 8px 10px;
}

.blog-main-section {
  background: #fff;
}

.blog-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.blog-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  background: #fff;
  border: 1px solid #d8e8f2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(6, 32, 61, 0.08);
}

.blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .blog-card.blog-card-infographic img {
    height: auto;
    object-fit: contain;
    object-position: center top;
    background: transparent;
  }
}

.blog-card-body {
  padding: 16px;
}

.blog-card-category {
  margin: 0 0 8px;
  color: #0f6288;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.blog-card-body h3 {
  margin: 0 0 8px;
  color: #0d2e57;
  font-size: 20px;
  line-height: 1.3;
}

.blog-card-body p {
  margin: 0 0 10px;
  color: #47657b;
  font-size: 14px;
  line-height: 1.65;
}

.blog-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f6288;
  font-size: 14px;
  font-weight: 700;
}

.blog-card-body a:hover {
  color: #0d2e57;
}

.blog-sidebar {
  display: grid;
  gap: 14px;
}

.blog-side-card {
  background: #fff;
  border: 1px solid #d8e8f2;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(6, 32, 61, 0.07);
}

.blog-side-card h3 {
  margin: 0 0 10px;
  color: #0d2e57;
  font-size: 20px;
}

.blog-search {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.blog-search input {
  border: 1px solid #cfe1ed;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  font-family: inherit;
}

.blog-search button {
  border: 0;
  border-radius: 10px;
  background: #0f9db6;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.blog-side-list,
.blog-popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-side-list li,
.blog-popular-list li {
  margin-bottom: 8px;
}

.blog-side-list li:last-child,
.blog-popular-list li:last-child {
  margin-bottom: 0;
}

.blog-side-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #deebf4;
  background: #f8fcff;
  border-radius: 10px;
  padding: 9px 10px;
  color: #2f5269;
}

.blog-side-list a strong {
  font-size: 12px;
  color: #0f6288;
}

.blog-popular-list a {
  display: block;
  color: #33556d;
  line-height: 1.5;
  border-bottom: 1px dashed #deebf4;
  padding-bottom: 8px;
}

.blog-popular-list li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-newsletter {
  background: linear-gradient(160deg, #f0f9ff 0%, #e6f5fd 100%);
}

.blog-newsletter p {
  margin: 0 0 12px;
  color: #3f6078;
  line-height: 1.65;
}

.blog-tips-strip {
  margin-top: 20px;
  background: linear-gradient(115deg, #0d2e57 0%, #0b6a8a 100%);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-tips-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.55;
}

.blog-tips-strip strong {
  color: #ffffff;
}

.blog-tips-strip .btn {
  background: #14afc8;
  white-space: nowrap;
}

.blog-tips-strip .btn:hover {
  background: #0d9eb5;
}

.contact-connect-section {
  background: linear-gradient(180deg, #f7fbff 0%, #edf6fb 100%);
}

.contact-kicker {
  margin: 0 0 10px;
  color: #0f6288;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-connect-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.contact-details-card,
.contact-map-card,
.contact-form-panel,
.clinic-hours-panel {
  background: #fff;
  border: 1px solid #d5e6f0;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 26px rgba(8, 42, 74, 0.08);
}

.contact-details-card h2,
.contact-map-card h2,
.contact-form-panel h2,
.clinic-hours-panel h2 {
  margin: 0 0 12px;
  color: #0d2e57;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.15;
  font-family: var(--heading-font);
}

.contact-details-card > p {
  margin: 0 0 14px;
  color: #3c5b72;
  line-height: 1.7;
}

.contact-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-detail-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #dceaf3;
}

.contact-detail-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(6, 153, 178, 0.16), rgba(13, 46, 87, 0.14));
  color: #0f6288;
  font-size: 17px;
}

.contact-detail-list h3 {
  margin: 0 0 4px;
  color: #0d2e57;
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.contact-detail-list p {
  margin: 0;
  color: #3f5d72;
  line-height: 1.6;
}

.contact-detail-list a {
  color: #0f6288;
  font-weight: 600;
}

.contact-map-card .map-box {
  margin-top: 6px;
}

.contact-map-card iframe {
  min-height: 380px;
}

.contact-support-section {
  background: #ffffff;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 22px;
  align-items: start;
}

.contact-appointment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-appointment-form input,
.contact-appointment-form select,
.contact-appointment-form textarea {
  width: 100%;
  border: 1px solid #cfe0ea;
  border-radius: 11px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

.contact-appointment-form input:focus,
.contact-appointment-form select:focus,
.contact-appointment-form textarea:focus {
  border-color: rgba(6, 153, 178, 0.55);
  box-shadow: 0 0 0 3px rgba(6, 153, 178, 0.16);
}

.contact-appointment-form textarea,
.contact-appointment-form button {
  grid-column: 1 / -1;
}

.clinic-hours-panel {
  background: linear-gradient(180deg, #0d2e57 0%, #123f73 100%);
  border-color: #194a7e;
  color: #fff;
}

.clinic-hours-panel .contact-kicker {
  color: #cbe7ff;
}

.clinic-hours-panel h2 {
  color: #fff;
}

.clinic-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.clinic-hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(203, 231, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #e9f4ff;
  font-weight: 600;
}

.clinic-hours-list li:last-child {
  margin-bottom: 0;
}

.clinic-hours-list span:last-child {
  color: #bde9ff;
  white-space: nowrap;
}

.clinic-hours-note {
  margin: 14px 0 0;
  color: rgba(230, 245, 255, 0.9);
  line-height: 1.55;
}


.about-pillars-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f9fc, #eef5f9);
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD DESIGN */
.about-pillar-card {
  background: #ffffff;
  padding: 30px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* subtle top border highlight */
.about-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #0ea5a4, #22c55e);
}

/* HEADER */
.about-pillar-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.about-pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0ea5a4, #0f766e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

/* LABEL */
.about-pillar-label {
  font-size: 13px;
  font-weight: 600;
  color: #0ea5a4;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* HEADING */
.about-pillar-head h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 4px 0 0;
  color: #0f172a;
}

/* TEXT */
.about-pillar-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 14px;
}

/* TAGS */
.about-pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.about-pillar-tags span {
  background: #ecfeff;
  color: #0f766e;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #ccfbf1;
}

/* MISSION / VISION */
.about-pillar-point {
  margin-top: 18px;
  padding-left: 28px;
  position: relative;
}

.about-pillar-point h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-pillar-point h3 i {
  color: #0ea5a4;
}

.about-pillar-point p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-pillar-card {
    padding: 24px;
  }

  .about-pillar-head h2 {
    font-size: 20px;
  }
}

.about-pillars-section {
  position: relative;
  background: linear-gradient(180deg, #f6fbff 0%, #ecf5fb 100%);
  overflow: hidden;
}

.about-pillars-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 153, 178, 0.12) 0%, rgba(6, 153, 178, 0) 72%);
  pointer-events: none;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.about-pillar-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #d6e6f1;
  border-radius: 20px;
  padding: 24px 24px 22px;
  box-shadow: 0 12px 28px rgba(9, 42, 72, 0.09);
}

.about-pillar-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #f1f8ff 100%);
  border-color: #cfe2f0;
}

.about-pillar-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #0699b2 0%, #0d2e57 100%);
}

.about-pillar-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.about-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(6, 153, 178, 0.14), rgba(13, 46, 87, 0.12));
  color: #0f6288;
  font-size: 18px;
  flex-shrink: 0;
}

.about-pillar-label {
  margin: 0 0 5px;
  color: #0f6288;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.about-pillars-section h2 {
  margin: 0 0 10px;
  color: #0d2e57;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.2;
  font-family: var(--heading-font);
}

.about-pillar-card p {
  margin: 0 0 12px;
  color: #35556d;
  line-height: 1.75;
}

.about-pillar-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-pillar-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: #eaf8fc;
  color: #0f6288;
  border: 1px solid #cde8f2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.about-pillar-point {
  background: linear-gradient(180deg, #f9fcff 0%, #eef6fd 100%);
  border: 1px solid #d9e7f2;
  border-radius: 14px;
  padding: 14px 14px 10px;
  margin-bottom: 10px;
}

.about-pillar-point:last-child {
  margin-bottom: 0;
}

.about-pillar-point h3 {
  margin: 0 0 8px;
  color: #0d2e57;
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--heading-font);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-pillar-point h3 i {
  color: #0f6288;
  font-size: 15px;
}

.about-pillar-point p {
  margin: 0;
  line-height: 1.65;
}

.reviews-section {
  padding: 68px 0 54px;
  background: linear-gradient(180deg, #f7fcff 0%, #eef7fb 100%);
}

.reviews-head {
  margin-bottom: 24px;
}

.reviews-kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.reviews-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.reviews-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #bdd5e2;
  background: #fff;
  color: #123f62;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.reviews-nav:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.reviews-nav:disabled {
  opacity: 0.5;
  cursor: default;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: #fff;
  border: 1px solid #d4e5ee;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(8, 45, 66, 0.08);
}

.review-stars {
  color: #d8a334;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-card blockquote {
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(6, 153, 178, 0.3);
  color: #3f5a6f;
  line-height: 1.7;
  min-height: 160px;
}

.review-author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0e5577;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author h3 {
  margin: 0 0 2px;
  color: #072b50;
  font-size: 24px;
}

.review-author p {
  margin: 0;
  color: #637f94;
  font-size: 13px;
}

.reviews-summary {
  margin-top: 24px;
  background: #0d2e57;
  border-radius: 22px;
  padding: 26px 24px;
  color: #fff;
  display: grid;
  grid-template-columns: 180px 1fr 260px;
  gap: 22px;
  align-items: center;
}

.reviews-score h3 {
  margin: 0;
  color: #f0bc4d;
  font-size: 44px;
  line-height: 1;
}

.google-reviews-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.google-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.8px;
}

.g-blue {
  color: #4285f4;
}

.g-red {
  color: #ea4335;
}

.g-yellow {
  color: #fbbc05;
}

.g-green {
  color: #34a853;
}

.google-reviews-label {
  color: #d8e6f2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.reviews-stars-inline {
  margin: 6px 0 4px;
  color: #f0bc4d;
  letter-spacing: 1px;
}

.reviews-score p:last-child {
  margin: 0;
  color: #b8d0df;
}

.reviews-bars {
  display: grid;
  gap: 8px;
}

.reviews-bar-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: #d0e2ef;
  font-size: 14px;
}

.reviews-bar-row span i {
  color: #f0bc4d;
}

.reviews-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.reviews-bar > div {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #11a4bd 0%, #f0bc4d 100%);
}

.reviews-bar-row strong {
  color: #a8c5d9;
  font-weight: 600;
}

.reviews-cta p {
  margin: 0 0 12px;
  color: #d8e6f2;
  line-height: 1.45;
}

.reviews-cta .btn {
  background: #f0bc4d;
  color: #0d2e57;
  font-weight: 700;
}

.reviews-cta .btn:hover {
  background: #e4a72b;
  color: #0d2e57;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.site-footer {
  margin-top: 30px;
}

.floating-quick-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.floating-action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 22px rgba(9, 34, 64, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(9, 34, 64, 0.3);
}

.floating-action-btn.whatsapp-btn {
  background: #20c863;
  position: relative;
  overflow: visible;
}

.floating-action-btn.whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(32, 200, 99, 0.5);
  animation: whatsapp-pulse-ring 2.3s ease-out infinite;
  pointer-events: none;
}

.floating-action-btn.whatsapp-btn i {
  animation: whatsapp-icon-bob 1.8s ease-in-out infinite;
}

.floating-action-btn.call-btn {
  background: #0f9db6;
}

.floating-action-btn.scroll-top-btn {
  background: #0d2e57;
  opacity: 0.58;
}

.floating-action-btn.scroll-top-btn.is-visible {
  opacity: 1;
}

@keyframes whatsapp-pulse-ring {
  0% {
    transform: scale(0.88);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.22);
    opacity: 0;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@keyframes whatsapp-icon-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.footer-main {
  background: #0D2E57;
  color: #fff;
  padding: 58px 0 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  width: 280px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.footer-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

.footer-title {
  margin: 0 0 14px;
  font-size: 20px;
  font-family: var(--heading-font);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-links span {
  color: #fff;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #b6ebf5;
}

.footer-links-col .footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}

.footer-link-arrow {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid var(--footer-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bdeaf5;
  font-size: 10px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.footer-links-col .footer-links a:hover .footer-link-arrow {
  background: rgba(182, 235, 245, 0.16);
  border-color: #b6ebf5;
  transform: translateX(1px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--footer-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bdeaf5;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-contact-list a,
.footer-contact-list span {
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  word-break: break-word;
}

.footer-contact-meta {
  display: flex;
  flex-direction: column;
}

.footer-contact-subtitle {
  font-weight: 600;
}

.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--footer-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--footer-border);
}

.footer-bottom {
  background: #0699B2;
  color: #fff;
  text-align: center;
  padding: 16px 12px;
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.map-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-box iframe {
  border: 0;
  width: 100%;
  min-height: 340px;
}

.clinic-map-section {
  padding: 0;
  background: #fff;
}

.physician-connect-section {
  padding: 0;
  background: #fff;
}

.physician-connect-grid {
  --physician-banner-height: clamp(250px, 26vw, 320px);
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  min-height: var(--physician-banner-height);
}

.physician-connect-grid > div {
  height: var(--physician-banner-height);
}

.physician-connect-copy {
  background: #215d9d;
  color: #fff;
  padding: clamp(20px, 3.2vw, 36px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.physician-connect-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c8e3ff;
}

.physician-connect-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  font-family: var(--heading-font);
}

.physician-connect-copy p:not(.physician-connect-kicker) {
  margin: 0 0 16px;
  max-width: 600px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

.physician-connect-copy .btn {
  margin-top: 6px;
  background: #fff;
  color: #215d9d;
}

.physician-connect-copy .btn:hover {
  background: #dbecff;
}

.physician-connect-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
}

.physician-connect-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 32, 66, 0.45), rgba(11, 32, 66, 0.22));
  z-index: 1;
}

.physician-connect-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex: 1;
}

.physician-connect-contact {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.physician-connect-contact span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f1463e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.physician-connect-contact a {
  color: #fff;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}

.business-growth-section {
  padding: 0;
  background: #e5ebf3;
}

.business-growth-section .physician-connect-grid {
  --physician-banner-height: clamp(240px, calc(25vw - 10px), 320px);
}

.business-growth-section .physician-connect-copy {
  background: #0699b2;
  padding-left: clamp(22px, 8vw, 90px);
  position: relative;
}

.business-growth-section .physician-connect-copy::before {
  content: "";
  width: 70px;
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.business-growth-section .physician-connect-kicker {
  color: #d2e9ff;
}

.business-growth-section .physician-connect-media::before {
  background: linear-gradient(90deg, rgba(17, 37, 70, 0.58), rgba(17, 37, 70, 0.28));
}

.business-growth-section .physician-connect-contact {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.business-growth-section .physician-connect-contact span {
  box-shadow: 0 0 0 12px rgba(241, 70, 62, 0.18);
}

.growth-banner {
  background: #e5ebf3;
  padding: 28px 0 30px;
}

.growth-banner .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.growth-banner .physician-connect-grid {
  --physician-banner-height: clamp(240px, 17vw, 276px);
}

.growth-banner .physician-connect-copy {
  background: #0699B2;
  padding-top: clamp(22px, 2.6vw, 36px);
  padding-bottom: clamp(22px, 2.6vw, 36px);
  padding-left: clamp(60px, 9vw, 210px);
  padding-right: clamp(22px, 3vw, 56px);
}

.growth-banner .physician-connect-copy::before {
  content: "";
  position: absolute;
  left: clamp(10px, 1.4vw, 22px);
  top: clamp(18px, 2vw, 34px);
  width: 96px;
  height: 96px;
  margin: 0;
  border-radius: 10px;
  background-image: radial-gradient(rgba(108, 103, 103, 0.62) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.75;
}

.growth-banner .growth-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(235, 248, 255, 0.94);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  z-index: 1;
}

.growth-banner .growth-kicker i {
  font-size: 13px;
}

.growth-banner .physician-connect-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(19px, 1.7vw, 29px);
  line-height: 1.05;
  position: relative;
  z-index: 1;
}

.growth-banner .physician-connect-copy p:not(.physician-connect-kicker) {
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1.4;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.growth-banner .growth-points {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.growth-banner .growth-points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(227, 246, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  color: #f4fcff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
}

.growth-banner .growth-points i {
  font-size: 12px;
}

.growth-banner .physician-connect-media::before {
  background: linear-gradient(90deg, rgba(17, 35, 66, 0.52), rgba(17, 35, 66, 0.26));
}

.growth-banner .physician-connect-contact {
  left: 0;
  right: 0;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.growth-banner .physician-connect-contact span {
  width: clamp(56px, 4vw, 78px);
  height: clamp(56px, 4vw, 78px);
  font-size: clamp(22px, 2.1vw, 32px);
}

.growth-banner .physician-connect-contact a {
  font-size: clamp(16px, 1.45vw, 24px);
  line-height: 1.12;
  word-break: normal;
}

.clinic-map-section .map-box {
  border-radius: 0;
  box-shadow: none;
}

.clinic-map-section .map-box iframe {
  display: block;
  min-height: 460px;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 44px 0;
    min-height: 610px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .contact-connect-grid,
  .contact-support-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-card iframe {
    min-height: 320px;
  }

  .about-us-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .health-featured-card {
    grid-template-columns: 1fr;
  }

  .health-featured-media {
    min-height: 280px;
  }

  .health-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .health-reminder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-featured-post {
    grid-template-columns: 1fr;
  }

  .blog-layout-grid {
    grid-template-columns: 1fr;
  }

  .blog-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card img {
    height: auto;
    object-fit: contain;
    background: #eef2f5;
  }

  .blog-tips-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .diabetes-care-main {
    grid-template-columns: 1fr;
  }

  .diabetes-care-image-wrap {
    min-height: 320px;
  }

  .diabetes-treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diabetes-pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-pillars-section h2 {
    font-size: clamp(22px, 2.9vw, 30px);
  }

  .profile-card {
    padding: 20px;
  }

  .section.profile-highlights-section .section-head.profile-highlights-head h2 {
    white-space: normal;
    margin-left: 0;
  }

  .about-us-image-wrap {
    max-width: 450px;
    margin: 0 auto;
  }

  .clinic-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .clinic-gallery-section .container {
    width: min(940px, 92%);
  }

  .gallery-card {
    height: 190px;
  }

  .why-choose-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-choose-head {
    margin-bottom: 24px;
  }

  .why-choose-head h2 {
    font-size: clamp(28px, 4.2vw, 36px);
  }

  .why-choose-media {
    min-height: 420px;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .specialisation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speciality-clinics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speciality-clinic-card {
    min-height: 176px;
    padding: 20px 18px;
  }

  .speciality-clinic-content {
    max-width: 52%;
  }

  .speciality-clinic-card h3 {
    font-size: clamp(15px, 1.8vw, 21px);
  }

  .speciality-clinic-card p {
    font-size: 13.5px;
  }

  .speciality-clinic-card img {
    width: 44%;
    height: 66%;
    right: 8px;
    bottom: 8px;
  }

  .clinic-map-section .map-box iframe {
    min-height: 380px;
  }

  .physician-connect-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .physician-connect-grid > div {
    height: auto;
  }

  .physician-connect-copy p:not(.physician-connect-kicker) {
    font-size: 16px;
  }

  .physician-connect-media img {
    min-height: 260px;
  }

  .business-growth-section .physician-connect-contact {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .growth-banner {
    padding: 20px 0 18px;
  }

  .growth-banner .physician-connect-copy::before {
    left: 24px;
    top: 24px;
    width: 72px;
    height: 72px;
    background-size: 12px 12px;
  }

  .growth-banner .physician-connect-copy h2 {
    font-size: clamp(18px, 2.5vw, 28px);
  }

  .growth-banner .physician-connect-copy p:not(.physician-connect-kicker) {
    font-size: clamp(12px, 1.3vw, 16px);
  }

  .growth-banner .growth-points {
    gap: 6px;
  }

  .growth-banner .growth-points li {
    font-size: 11px;
    padding: 5px 9px;
  }

  .growth-banner .physician-connect-contact a {
    font-size: clamp(14px, 1.8vw, 20px);
  }

  .growth-banner .physician-connect-contact {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 24px);
    justify-content: center;
    text-align: center;
    padding: 0;
  }

  .review-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .review-card blockquote {
    min-height: 132px;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 8px;
    padding: 8px 0 10px;
  }

  .contact-strip,
  .social-strip {
    width: 100%;
    justify-content: center;
  }

  .contact-strip a {
    justify-content: center;
    text-align: center;
  }

  .contact-strip {
    gap: 8px 14px;
  }

  .social-strip {
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e2ebf1;
    box-shadow: var(--shadow);
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav li > a {
    padding: 12px 18px;
    border-bottom: 1px solid #eef4f8;
  }

  .main-nav li > a.nav-appointment-btn {
    margin: 10px 18px 14px;
    text-align: center;
    border-bottom: 0;
    padding: 12px 16px;
  }

  .has-dropdown {
    display: block;
  }

  .dropdown-toggle {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 34px;
  }

  .main-nav .dropdown {
    position: static;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    padding: 0;
    display: none;
  }

  .main-nav .has-dropdown.open > .dropdown {
    display: block;
  }

  .main-nav .dropdown a {
    padding: 10px 30px;
    border-bottom: 1px solid #eef4f8;
    background: #f9fcff;
  }

  .hero-slider,
  .hero-content {
    min-height: 700px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 140px;
  }

  .floating-quick-actions {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .floating-action-btn {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .contact-strip {
    justify-content: center;
    row-gap: 6px;
  }

  .slider-controls {
    right: 16px;
    bottom: 16px;
  }

  .review-card {
    flex: 0 0 100%;
    padding: 18px 16px;
  }

  .review-card blockquote {
    min-height: 0;
    font-size: 15px;
  }

  .reviews-score h3 {
    font-size: 36px;
  }

  .google-wordmark {
    font-size: 28px;
  }

  .google-reviews-label {
    font-size: 13px;
  }

  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .health-blog-grid,
  .health-reminder-grid {
    grid-template-columns: 1fr;
  }

  .blog-feed {
    grid-template-columns: 1fr;
  }

  .blog-featured-post {
    padding: 14px;
    gap: 14px;
  }

  .blog-featured-image {
    min-height: 220px;
  }

  .blog-card img {
    height: auto;
    object-fit: contain;
    background: #eef2f5;
  }

  .health-featured-content {
    padding: 22px 16px;
  }

  .health-featured-media {
    min-height: 230px;
  }

  .health-tips-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .diabetes-treatment-grid,
  .diabetes-pathway-grid {
    grid-template-columns: 1fr;
  }

  .diabetes-care-content {
    padding: 22px 16px;
  }

  .diabetes-care-point-grid {
    grid-template-columns: 1fr;
  }

  .diabetes-care-image-wrap {
    min-height: 260px;
  }

  .specialisation-grid {
    grid-template-columns: 1fr;
  }

  .profile-highlights-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .profile-card h3 {
    font-size: 20px;
  }

  .profile-list li {
    flex-direction: column;
    gap: 8px;
  }

  .contact-details-card,
  .contact-map-card,
  .contact-form-panel,
  .clinic-hours-panel {
    padding: 20px 16px;
  }

  .contact-appointment-form {
    grid-template-columns: 1fr;
  }

  .contact-map-card iframe {
    min-height: 260px;
  }

  .clinic-hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .clinic-hours-list span:last-child {
    white-space: normal;
  }

  .about-pillar-card {
    padding: 20px 16px;
  }

  .about-pillars-section h2 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .about-pillar-point h3 {
    font-size: 18px;
  }

  .clinic-gallery-section {
    padding: 36px 0 32px;
  }

  .clinic-gallery-head {
    margin-bottom: 16px;
  }

  .clinic-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-card,
  .gallery-card-tall,
  .gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card {
    height: 150px;
    border-radius: 14px;
  }

  .gallery-card::after {
    width: 30px;
    height: 30px;
    font-size: 12px;
    right: 10px;
    bottom: 10px;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-dialog,
  .gallery-lightbox-image {
    max-height: 82vh;
  }

  .gallery-lightbox-close {
    width: 34px;
    height: 34px;
    font-size: 24px;
    top: 8px;
    right: 8px;
  }

  .why-choose-section {
    padding: 56px 0 52px;
  }

  .why-choose-head {
    margin-bottom: 18px;
  }

  .why-choose-media {
    min-height: 340px;
    border-radius: 18px;
  }

  .why-choose-badge {
    font-size: 12px;
    padding: 8px 10px;
    gap: 6px;
  }

  .why-choose-head h2 {
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-choose-card {
    padding: 14px;
  }

  .why-choose-card h3 {
    font-size: 19px;
  }

  .speciality-clinics-strip {
    padding: 34px 0 24px;
  }

  .speciality-clinics-head {
    margin-bottom: 16px;
  }

  .speciality-clinics-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .speciality-clinic-card {
    min-height: 164px;
    padding: 16px 14px;
  }

  .speciality-clinic-content {
    max-width: 54%;
  }

  .speciality-clinic-card h3 {
    font-size: clamp(14px, 4.8vw, 20px);
  }

  .speciality-clinic-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .speciality-clinic-card img {
    width: 42%;
    height: 64%;
    right: 6px;
    bottom: 7px;
  }

  .specialisation-media {
    height: 210px;
  }

  .specialisation-actions {
    grid-template-columns: 1fr;
  }

  .clinic-map-section .map-box iframe {
    min-height: 300px;
  }

  .physician-connect-copy {
    padding: 24px 20px;
  }

  .physician-connect-copy h2 {
    font-size: 30px;
  }

  .physician-connect-contact {
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .physician-connect-contact span {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .physician-connect-contact a {
    font-size: clamp(16px, 5vw, 22px);
  }

  .business-growth-section .physician-connect-copy::before {
    width: 58px;
    height: 10px;
    margin-bottom: 12px;
  }

  .growth-banner {
    padding: 12px 0 10px;
  }

  .growth-banner .physician-connect-copy::before {
    display: none;
  }

  .growth-banner .physician-connect-copy {
    padding-left: 16px;
    padding-right: 16px;
  }

  .growth-banner .physician-connect-copy h2 {
    font-size: clamp(16px, 5.6vw, 22px);
  }

  .growth-banner .physician-connect-copy p:not(.physician-connect-kicker) {
    font-size: 12px;
    line-height: 1.4;
  }

  .growth-banner .growth-points {
    margin-top: 8px;
    gap: 5px;
  }

  .growth-banner .growth-points li {
    font-size: 10px;
    padding: 5px 8px;
  }

  .growth-banner .physician-connect-contact span {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .growth-banner .physician-connect-contact a {
    font-size: clamp(12px, 3.6vw, 16px);
    word-break: normal;
    text-align: center;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .growth-banner .physician-connect-media {
    height: 110px;
    min-height: 110px;
  }

  .growth-banner .physician-connect-media img {
    height: 100%;
    min-height: 0;
  }

  .growth-banner .physician-connect-contact {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 0 8px;
  }

  .about-us-image-wrap {
    max-width: 100%;
    margin: 0 auto;
  }

  .appointment-modal-card {
    padding: 18px;
  }

  .appointment-modal-head h2 {
    font-size: 22px;
  }

  .hero-form-card {
    padding: 20px;
  }

  .section,
  .content-block {
    padding: 54px 0;
  }
}
