/* Global page foundation */
body {
  margin: 0;
  color: #0f2f57;
  background-color: #ffffff;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

/* Sticky white header with subtle premium depth */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 82, 160, 0.08);
}

/* Main Bootstrap navbar sizing and spacing */
.doctor-navbar {
  min-height: 86px;
  padding: 0;
  background-color: #ffffff;
}

/* Brand area with circular initials logo */
.doctor-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: 32px;
  color: #0f2f57;
  text-decoration: none;
}

/* Circular blue NG logo */
.doctor-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #0d8de3;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

/* Doctor name typography */
.doctor-name {
  color: #0f2f57;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

/* Navigation link alignment */
.doctor-menu {
  align-items: center;
  gap: 8px;
}

/* Clean menu link styling */
.doctor-menu .nav-link {
  position: relative;
  padding: 30px 16px 28px;
  color: #315f8f;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  transition: color 0.25s ease;
}

/* Link hover state */
.doctor-menu .nav-link:hover,
.doctor-menu .nav-link:focus {
  color: #0d8de3;
}

/* Active Home underline indicator */
.doctor-menu .nav-link.active {
  color: #0d8de3;
}

.doctor-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 22px;
  height: 3px;
  border-radius: 999px;
  background-color: #0d8de3;
}

/* Appointment call-to-action button */
.appointment-btn {
  padding: 15px 25px;
  border: 0;
  border-radius: 10px;
  background-color: #0d8de3;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(13, 141, 227, 0.18);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* CTA hover interaction */
.appointment-btn:hover,
.appointment-btn:focus {
  background-color: #0677c4;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(13, 141, 227, 0.26);
  transform: translateY(-1px);
}

/* Mobile menu button polish */
.doctor-toggler {
  border-color: rgba(13, 141, 227, 0.25);
  padding: 8px 10px;
}

.doctor-toggler:focus {
  box-shadow: 0 0 0 4px rgba(13, 141, 227, 0.14);
}

/* Responsive navbar layout */
@media (max-width: 991.98px) {
  .doctor-navbar {
    min-height: 80px;
    padding: 14px 0;
  }

  .navbar-collapse {
    padding: 18px 0 8px;
    background-color: #ffffff;
  }

  .doctor-menu {
    align-items: flex-start;
    gap: 0;
  }

  .doctor-menu .nav-link {
    display: inline-block;
    padding: 12px 0;
  }

  .doctor-menu .nav-link.active::after {
    left: 0;
    right: auto;
    bottom: 6px;
    width: 36px;
  }

  .appointment-btn {
    width: 100%;
    margin-top: 8px;
    text-align: center;
  }
}

/* Small screen brand adjustments */
@media (max-width: 420px) {
  .doctor-logo {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .doctor-name {
    font-size: 17px;
  }
}

/* Booking page font reset */
.booking-page {
  min-height: 100vh;
  color: #12365f;
  background-color: #f5f5f5;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

/* Full width appointment banner section */
.booking-banner {
  width: 100%;
  padding: 96px 20px;
  background-color: #f5f5f5;
}

/* Responsive two-column booking layout */
.booking-container {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 1fr);
  align-items: center;
  gap: 72px;
  width: min(1140px, 100%);
  margin: 0 auto;
}

/* Left profile column */
.doctor-profile-card {
  text-align: center;
}

/* Green circular frame around profile image */
.doctor-photo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 214px;
  height: 214px;
  margin-bottom: 28px;
  border: 7px solid #24a46f;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 18px 42px rgba(18, 54, 95, 0.12);
}

/* Doctor profile photo */
.doctor-photo {
  width: 188px;
  height: 188px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

/* Doctor profile name */
.profile-name {
  margin: 0 0 8px;
  color: #12365f;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: capitalize;
}

/* Doctor specialty text */
.profile-subtitle {
  margin: 0 0 18px;
  color: #0d8de3;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}

/* Qualification paragraph */
.profile-qualification {
  max-width: 430px;
  margin: 0 auto;
  color: #496988;
  font-size: 16px;
  line-height: 1.75;
}

/* Right booking content column */
.booking-content {
  position: relative;
}

/* Small heading label */
.booking-eyebrow {
  margin: 0 0 12px;
  color: #24a46f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Main booking heading */
.booking-title {
  max-width: 620px;
  margin: 0 0 34px;
  color: #12365f;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

/* Subtle green abstract background circle */
.booking-content::before {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -34px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: rgba(36, 164, 111, 0.13);
}

/* White appointment card */
.appointment-card {
  position: relative;
  z-index: 1;
  max-width: 560px;
  border-radius: 28px;
  background-color: #ffffff;
  box-shadow: 0 24px 60px rgba(18, 54, 95, 0.12);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

/* Soft card lift on hover */
.appointment-card:hover {
  box-shadow: 0 30px 76px rgba(18, 54, 95, 0.16);
  transform: translateY(-5px);
}

/* Appointment card inner spacing */
.appointment-card-content {
  padding: 38px;
}

/* Card title */
.appointment-card-title {
  margin: 0 0 12px;
  color: #12365f;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}

/* Small description below card title */
.appointment-description {
  margin: 0 0 26px;
  color: #5c7894;
  font-size: 16px;
  line-height: 1.65;
}

/* Blue clinic appointment CTA */
.booking-cta,
.submit-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border: 0;
  border-radius: 14px;
  background-color: #0d8de3;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(13, 141, 227, 0.22);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* Button hover animation */
.booking-cta:hover,
.booking-cta:focus,
.submit-booking-btn:hover,
.submit-booking-btn:focus {
  background-color: #0677c4;
  box-shadow: 0 20px 38px rgba(13, 141, 227, 0.3);
  transform: translateY(-2px);
}

/* Appointment card divider line */
.appointment-divider {
  margin: 30px 0 18px;
  border: 0;
  border-top: 1px solid rgba(18, 54, 95, 0.12);
}

/* No booking fee label */
.booking-fee-text {
  margin: 0;
  color: #24a46f;
  font-size: 15px;
  font-weight: 800;
}

/* Hidden form area revealed through JavaScript */
.appointment-form-section {
  padding: 0 20px 96px;
  background-color: #f5f5f5;
}

/* Centered form wrapper */
.form-container {
  width: min(820px, 100%);
  margin: 0 auto;
}

/* Appointment details form card */
.appointment-form {
  padding: 36px;
  border-radius: 26px;
  background-color: #ffffff;
  box-shadow: 0 18px 48px rgba(18, 54, 95, 0.1);
}

.appointment-form h2 {
  margin: 0 0 8px;
  color: #12365f;
  font-size: 30px;
  font-weight: 800;
}

.appointment-form p {
  margin: 0 0 26px;
  color: #5c7894;
}

/* Responsive form field grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

/* Form labels and inputs */
.appointment-form label {
  display: grid;
  gap: 8px;
  color: #12365f;
  font-size: 14px;
  font-weight: 700;
}

.appointment-form input,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 54, 95, 0.16);
  border-radius: 14px;
  padding: 15px 16px;
  color: #12365f;
  font: inherit;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.appointment-form textarea {
  resize: vertical;
}

.appointment-form label:last-child {
  grid-column: 1 / -1;
}

.appointment-form input:focus,
.appointment-form textarea:focus {
  border-color: #0d8de3;
  box-shadow: 0 0 0 4px rgba(13, 141, 227, 0.12);
}

/* Tablet and mobile booking layout */
@media (max-width: 900px) {
  .booking-banner {
    padding: 72px 18px;
  }

  .booking-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .booking-title,
  .appointment-card {
    margin-right: auto;
    margin-left: auto;
  }

  .booking-content::before {
    right: 50%;
    transform: translateX(50%);
  }
}

/* Small mobile refinements */
@media (max-width: 560px) {
  .booking-banner {
    padding: 54px 16px;
  }

  .doctor-photo-wrap {
    width: 180px;
    height: 180px;
  }

  .doctor-photo {
    width: 156px;
    height: 156px;
  }

  .appointment-card-content,
  .appointment-form {
    padding: 26px;
  }

  .booking-cta,
  .submit-booking-btn {
    width: 100%;
  }

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

/* Treatments section wrapper */
.treatments-section {
  padding: 104px 0;
  background-color: #f5f5f5;
}

/* Treatments breadcrumb container */
.treatments-breadcrumb {
  margin-bottom: 42px;
}

/* Breadcrumb list alignment */
.treatments-breadcrumb .breadcrumb {
  align-items: center;
  gap: 8px;
}

/* Breadcrumb link styling */
.treatments-breadcrumb .breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0d8de3;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* Breadcrumb hover state */
.treatments-breadcrumb .breadcrumb-item a:hover,
.treatments-breadcrumb .breadcrumb-item a:focus {
  color: #0677c4;
}

/* Breadcrumb active item */
.treatments-breadcrumb .breadcrumb-item.active {
  color: #5c7894;
  font-size: 14px;
  font-weight: 600;
}

/* Breadcrumb divider color */
.treatments-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #9bb0c4;
}

/* Small section label */
.treatments-eyebrow {
  margin: 0 0 10px;
  color: #24a46f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Treatments section heading */
.treatments-title {
  margin: 0 0 16px;
  color: #12365f;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

/* Treatments intro paragraph */
.treatments-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  color: #5c7894;
  font-size: 16px;
  line-height: 1.8;
}

/* Treatment cards grid spacing */
.treatments-grid {
  align-items: stretch;
}

/* Individual treatment service card */
.treatment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 270px;
  padding: 36px 24px;
  border-radius: 28px;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 48px rgba(18, 54, 95, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Treatment card hover lift */
.treatment-card:hover {
  box-shadow: 0 28px 70px rgba(18, 54, 95, 0.16);
  transform: translateY(-7px);
}

/* Circular green icon background */
.treatment-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border-radius: 50%;
  background-color: rgba(36, 164, 111, 0.12);
  color: #24a46f;
  font-size: 34px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Icon animation on card hover */
.treatment-card:hover .treatment-icon-wrap {
  background-color: #24a46f;
  color: #ffffff;
  transform: scale(1.08);
}

/* Treatment card title */
.treatment-card-title {
  margin: 0 0 12px;
  color: #12365f;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

/* Treatment card subtitle text */
.treatment-card-text {
  margin: 0;
  color: #5c7894;
  font-size: 15px;
  line-height: 1.65;
}

/* Tablet treatment section spacing */
@media (max-width: 991.98px) {
  .treatments-section {
    padding: 78px 0;
  }

  .treatments-breadcrumb {
    margin-bottom: 34px;
  }

  .treatments-intro {
    margin-bottom: 38px;
  }
}

/* Mobile treatment section refinements */
@media (max-width: 575.98px) {
  .treatments-section {
    padding: 58px 0;
  }

  .treatments-breadcrumb {
    margin-bottom: 28px;
  }

  .treatments-breadcrumb .breadcrumb {
    justify-content: center;
  }

  .treatment-card {
    min-height: auto;
    padding: 32px 22px;
    border-radius: 24px;
  }
}

/* About Me section wrapper */
.about-doctor-section {
  padding: 104px 0;
  background-color: #ffffff;
}

/* Left About Me content block */
.about-doctor-content {
  max-width: 570px;
}

/* About Me main heading */
.about-doctor-title {
  margin: 0 0 24px;
  color: #12365f;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

/* Doctor description paragraph */
.about-doctor-text {
  margin: 0 0 28px;
  color: #5c7894;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}

/* Inline Read more and category badge row */
.about-doctor-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

/* Read more text link */
.about-read-link {
  color: #0d8de3;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* Read more hover state */
.about-read-link:hover,
.about-read-link:focus {
  color: #0677c4;
}

/* Blue treatment center category badge */
.about-category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background-color: rgba(13, 141, 227, 0.1);
  color: #0d8de3;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

/* Category badge hover animation */
.about-category-badge:hover,
.about-category-badge:focus {
  background-color: #0d8de3;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Blue Book Appointment button */
.about-appointment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 14px;
  background-color: #0d8de3;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(13, 141, 227, 0.2);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* Appointment button hover animation */
.about-appointment-btn:hover,
.about-appointment-btn:focus {
  background-color: #0677c4;
  color: #ffffff;
  box-shadow: 0 20px 38px rgba(13, 141, 227, 0.3);
  transform: translateY(-2px);
}

/* Right rounded doctor image frame */
.about-doctor-image-wrap {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background-color: #f5f5f5;
  box-shadow: 0 26px 70px rgba(18, 54, 95, 0.14);
}

/* Responsive doctor consultation image */
.about-doctor-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* Tablet spacing for About Me section */
@media (max-width: 991.98px) {
  .about-doctor-section {
    padding: 78px 0;
  }

  .about-doctor-content {
    max-width: 100%;
    text-align: center;
  }

  .about-doctor-meta {
    justify-content: center;
  }
}

/* Mobile spacing for About Me section */
@media (max-width: 575.98px) {
  .about-doctor-section {
    padding: 58px 0;
  }

  .about-doctor-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .about-category-badge,
  .about-appointment-btn {
    width: 100%;
  }

  .about-doctor-image-wrap {
    border-radius: 22px;
  }
}

/* Google Reviews testimonial section wrapper */
.google-reviews-section {
  padding: 104px 0;
  background-color: #eaf8f1;
}

/* Small trust label above the reviews heading */
.reviews-eyebrow {
  margin: 0 0 10px;
  color: #24a46f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Main reviews section heading */
.reviews-section-title {
  margin: 0 0 42px;
  color: #12365f;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

/* Bootstrap carousel spacing wrapper */
.reviews-carousel {
  position: relative;
  padding: 0 54px 58px;
}

/* Smooth carousel transition timing */
.reviews-carousel .carousel-item {
  transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

/* Centered white Google review card */
.google-review-card {
  width: 100%;
  min-height: 500px;
  padding: 54px 58px;
  border-radius: 34px;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0 28px 80px rgba(18, 54, 95, 0.13);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Premium hover lift for review card */
.google-review-card:hover {
  box-shadow: 0 34px 90px rgba(18, 54, 95, 0.18);
  transform: translateY(-6px);
}

/* Google Reviews logo text group */
.google-review-logo {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

/* Google logo color accents */
.google-blue {
  color: #4285f4;
}

.google-red {
  color: #ea4335;
}

.google-yellow {
  color: #fbbc05;
}

.google-green {
  color: #34a853;
}

/* Reviews word beside Google logo */
.google-review-word {
  margin-left: 8px;
  color: #12365f;
  font-size: 18px;
  font-weight: 700;
}

/* Circular blue reviewer avatar */
.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  background-color: #0d8de3;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(13, 141, 227, 0.24);
}

/* Reviewer name typography */
.reviewer-name {
  margin: 0 0 6px;
  color: #12365f;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

/* Reviewer subtitle metadata */
.reviewer-subtitle {
  margin: 0 0 14px;
  color: #7890a8;
  font-size: 14px;
  font-weight: 500;
}

/* Golden star rating row */
.review-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 24px;
  color: #f5b301;
  font-size: 22px;
  line-height: 1;
}

/* Centered testimonial copy */
.review-text {
  max-width: 690px;
  margin: 0 auto;
  color: #45637f;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.85;
}

/* Minimal carousel indicator dots */
.reviews-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.reviews-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(13, 141, 227, 0.35);
  opacity: 1;
}

.reviews-indicators .active {
  width: 28px;
  border-radius: 999px;
  background-color: #0d8de3;
}

/* Minimal review carousel arrow buttons */
.reviews-control {
  top: 50%;
  bottom: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 54, 95, 0.12);
  opacity: 1;
  transform: translateY(-50%);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* Previous arrow alignment */
.reviews-control-prev {
  left: 0;
}

/* Next arrow alignment */
.reviews-control-next {
  right: 0;
}

/* Carousel arrow icon styling */
.reviews-control-icon {
  color: #0d8de3;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

/* Review arrow hover effect */
.reviews-control:hover,
.reviews-control:focus {
  background-color: #0d8de3;
  box-shadow: 0 16px 34px rgba(13, 141, 227, 0.24);
  transform: translateY(-50%) scale(1.04);
}

.reviews-control:hover .reviews-control-icon,
.reviews-control:focus .reviews-control-icon {
  color: #ffffff;
}

/* Tablet reviews layout adjustments */
@media (max-width: 991.98px) {
  .google-reviews-section {
    padding: 78px 0;
  }

  .reviews-carousel {
    padding-right: 46px;
    padding-left: 46px;
  }

  .google-review-card {
    min-height: 470px;
    padding: 46px 38px;
  }
}

/* Mobile reviews layout adjustments */
@media (max-width: 575.98px) {
  .google-reviews-section {
    padding: 58px 0;
  }

  .reviews-section-title {
    margin-bottom: 30px;
  }

  .reviews-carousel {
    padding: 0 0 50px;
  }

  .google-review-card {
    min-height: auto;
    padding: 36px 24px;
    border-radius: 26px;
  }

  .google-review-logo {
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-size: 24px;
  }

  .google-review-word {
    font-size: 16px;
  }

  .review-text {
    font-size: 16px;
    line-height: 1.75;
  }

  .reviews-control {
    display: none;
  }
}

/* My Clinic section wrapper */
.clinic-section {
  padding: 104px 0;
  background-color: #f5f5f5;
}

/* Main white clinic card */
.clinic-card {
  overflow: hidden;
  border-radius: 32px;
  background-color: #ffffff;
  box-shadow: 0 28px 80px rgba(18, 54, 95, 0.12);
}

/* Left clinic location content panel */
.clinic-location-panel {
  height: 100%;
  padding: 48px;
}

/* Right OPD hours content panel with desktop divider */
.clinic-hours-panel {
  height: 100%;
  padding: 48px;
  border-left: 1px solid rgba(18, 54, 95, 0.12);
}

/* Main clinic section title */
.clinic-title {
  margin: 0 0 8px;
  color: #12365f;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

/* Clinic number subtitle */
.clinic-subtitle {
  margin: 0 0 28px;
  color: #0d8de3;
  font-size: 18px;
  font-weight: 700;
}

/* Responsive Google Map frame */
.clinic-map-wrap {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  border: 1px solid rgba(18, 54, 95, 0.1);
  border-radius: 22px;
  background-color: #eef6fb;
}

/* Google Map iframe sizing */
.clinic-map {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Clinic address styling */
.clinic-address {
  margin: 0 0 26px;
  color: #45637f;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}

/* Clinic action button row */
.clinic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Blue outline buttons for location and calling */
.clinic-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid #0d8de3;
  border-radius: 12px;
  background-color: #ffffff;
  color: #0d8de3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

/* Clinic button hover interaction */
.clinic-outline-btn:hover,
.clinic-outline-btn:focus {
  background-color: #0d8de3;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(13, 141, 227, 0.22);
  transform: translateY(-2px);
}

/* OPD hours heading */
.clinic-hours-title {
  margin: 0 0 30px;
  color: #12365f;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

/* OPD schedule list reset */
.clinic-hours-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Individual OPD day row with separator */
.clinic-hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(18, 54, 95, 0.1);
  color: #12365f;
}

/* Remove separator after last OPD row */
.clinic-hours-item:last-child {
  border-bottom: 0;
}

/* Day label typography */
.clinic-hours-item span {
  color: #45637f;
  font-size: 16px;
  font-weight: 600;
}

/* Timing typography */
.clinic-hours-item strong {
  color: #12365f;
  font-size: 16px;
  font-weight: 800;
  text-align: right;
}

/* Closed day color treatment */
.clinic-hours-item.is-closed strong {
  color: #d83434;
}

/* Tablet clinic section spacing */
@media (max-width: 991.98px) {
  .clinic-section {
    padding: 78px 0;
  }

  .clinic-location-panel,
  .clinic-hours-panel {
    padding: 38px;
  }

  .clinic-hours-panel {
    border-top: 1px solid rgba(18, 54, 95, 0.12);
    border-left: 0;
  }
}

/* Mobile clinic section layout */
@media (max-width: 575.98px) {
  .clinic-section {
    padding: 58px 0;
  }

  .clinic-card {
    border-radius: 24px;
  }

  .clinic-location-panel,
  .clinic-hours-panel {
    padding: 26px;
  }

  .clinic-map-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .clinic-actions {
    flex-direction: column;
  }

  .clinic-outline-btn {
    width: 100%;
  }

  .clinic-hours-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .clinic-hours-item strong {
    text-align: left;
  }
}

/* Footer section wrapper */
.footer-section {
  padding: 78px 0;
  background-color: #12365f;
  color: #ffffff;
}

/* Footer column heading */
.footer-title {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

/* Footer heading underline accent */
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background-color: #0d8de3;
}

/* Footer contact row */
.footer-contact {
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

/* Footer contact icons */
.footer-contact i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background-color: rgba(13, 141, 227, 0.16);
  color: #8ed0ff;
  font-size: 15px;
}

/* Footer contact text */
.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

/* Footer links list reset */
.footer-links {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Footer link typography and transition */
.footer-links a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Footer link hover state */
.footer-links a:hover,
.footer-links a:focus {
  color: #8ed0ff;
  transform: translateX(4px);
}

/* Tablet footer spacing */
@media (max-width: 991.98px) {
  .footer-section {
    padding: 64px 0;
  }
}

/* Mobile footer layout */
@media (max-width: 575.98px) {
  .footer-section {
    padding: 52px 0;
  }

  .footer-title {
    margin-bottom: 22px;
    font-size: 20px;
  }
}
