/* =========================================================
   MAXBLISS MODERN HEADER
========================================================= */

:root {
  --mx-blue: #0759c9;
  --mx-dark: #082b55;
  --mx-text: #193858;
  --mx-muted: #6f8197;
  --mx-light: #f5f9ff;
  --mx-border: #e4edf7;
  --mx-white: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

/* =========================================================
   FIXED NAVBAR DROPDOWN + MEGA MENU
   =========================================================  */
.mx-mobile-menu {
  right: -390px;
  transition: right 0.4s ease;
}

.mx-mobile-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}


.mx-header {
  position: relative !important;
  z-index: 99999 !important;
  isolation: isolate;
}

.phone-toogle {
  color: #023470;
  background-color: white;
  border: 1px solid #023470;
  border-radius: 4px;
  font-size: 23px;
  display: none;
}

.mx-logo-bar-main {


  z-index: 100000 !important;
}

.mx-navbar {
  position: relative !important;
  top: auto !important;
  z-index: 100001 !important;
}

/* Navigation item */
.mx-nav-item {
  position: relative !important;
  z-index: 100002 !important;
}

/* =========================
   NORMAL DROPDOWN
   ========================= */

.mx-dropdown {
  position: absolute !important;

  top: 100% !important;
  left: 50% !important;
  width: 260px !important;

  margin: 0 !important;
  padding: 8px 0 !important;

  transform: translateX(-50%) translateY(8px) !important;

  background: #ffffff !important;

  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  z-index: 999999 !important;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease !important;
}

/* Show dropdown */
.mx-nav-item:hover>.mx-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* Dropdown links */
.mx-dropdown a {
  display: flex !important;
  align-items: start !important;
  justify-content: left !important;
  width: 100% !important;

  padding: 11px 18px !important;

  color: #1f2937 !important;
  background: #ffffff !important;

  text-decoration: none !important;

  font-size: 14px !important;
  line-height: 1.4 !important;

  transition:
    background 0.2s ease,
    color 0.2s ease !important;
}

.mx-dropdown a:hover {
  background: #f5f8ff !important;
  color: #1e50bd !important;
}


/* =========================================================
   SERVICES MEGA MENU
   ========================================================= */

.mx-services-item {
  position: static !important;
}

/* Mega menu container */
.mx-mega-menu {
  position: absolute !important;

  top: 100% !important;
  left: 24px !important;
  right: 24px !important;

  width: auto !important;

  padding-top: 8px !important;

  margin: 0 !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  transform: translateY(8px) !important;

  z-index: 999999 !important;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease !important;
}

/* Show mega menu */
.mx-services-item:hover>.mx-mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;

  transform: translateY(0) !important;
}

/* Mega menu box */
.mx-mega-inner {
  position: relative !important;

  width: 100% !important;

  background: #ffffff !important;

  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16) !important;

  overflow: hidden !important;

  z-index: 1000000 !important;
}


/* =========================================================
   HERO MUST STAY BELOW NAV DROPDOWN
   ========================================================= */

.mx-hero-carousel {
  position: relative !important;
  z-index: 1 !important;

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

  .mx-dropdown {
    position: absolute !important;
    left: 0 !important;
    transform: translateY(8px) !important;
    width: 240px !important;
  }

  .mx-nav-item:hover>.mx-dropdown {
    transform: translateY(0) !important;
  }

  .mx-mega-menu {
    left: 10px !important;
    right: 10px !important;
  }
}

/* =========================================================
   TOPBAR
========================================================= */

.mx-topbar {

  background: #023470;
  background: linear-gradient(336deg, rgba(2, 52, 112, 1) 0%, rgba(0, 17, 54, 1) 100%);
  color: #fff;
  font-size: 13px;
}

.mx-topbar-inner {
  width: min(1440px, calc(100% - 48px));
  margin: auto;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.mx-top-left,
.mx-top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mx-info {
  display: flex;
  align-items: center;
  gap: 8px;

  white-space: nowrap;
}

.mx-info-icon {
  width: 25px;
  height: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #8fc6ff;
}

.mx-info-icon i {
  font-size: 17px;
}

.mx-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .22);
}

.mx-top-phone {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;

  transition: .25s ease;
}

.mx-top-phone:hover {
  color: #9dccff;
}

.mx-top-phone i {
  color: #8fc6ff;
  font-size: 19px;
}

.mx-social {
  width: 26px;
  height: 26px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  transition: .25s ease;
}

.mx-social:hover {

  color: #9dccff;
}

.mx-emergency {
  height: 29px;

  padding: 0 13px;

  display: flex;
  align-items: center;
  gap: 7px;

  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;

  color: #fff;
  text-decoration: none;

  transition: .25s ease;
}

.mx-emergency:hover {
  background: #fff;
  color: var(--mx-dark);
}

.mx-emergency-dot {
  width: 7px;
  height: 7px;

  display: inline-block;

  border-radius: 50%;
  background: #ff6262;

  box-shadow: 0 0 0 4px rgba(255, 98, 98, .12);
}


/* =========================================================
   NAV WRAPPER
========================================================= */


.mx-navbar {
  width: min(1440px, 100%);
  margin: auto;

  height: 66px;
  padding: 0 0px 0 20px;
  border-top: 1px solid #ecf4fd;

  background: rgba(255, 255, 255, .96);
  display: flex;
  align-items: center;
  transition: .3s ease;
}



/* =========================================================
   LOGO
========================================================= */

.mx-logo {
  display: flex;
  align-items: center;

  text-decoration: none;

  min-width: 275px;
}

.mx-logo img {
  max-width: 265px;
  max-height: 70px;

  object-fit: contain;
}

.mx-logo-fallback {
  width: 46px;
  height: 46px;

  border-radius: 14px;

  background: var(--mx-blue);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 25px;
}

.mx-logo-text {
  margin-left: 11px;

  display: flex;
  flex-direction: column;
}

.mx-logo-text strong {
  font-family: Georgia, serif;

  color: var(--mx-dark);
  font-size: 24px;

  letter-spacing: 1px;
}

.mx-logo-text small {
  margin-top: -2px;

  color: var(--mx-blue);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 1.5px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.mx-navigation {
  height: 45px;

  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 4px;
}

.mx-nav-item {
  position: relative;
  height: 76px;

  display: flex;
  align-items: center;
}

.mx-nav-link {
  height: 45px;

  padding: 0 16px;

  display: flex;
  align-items: center;
  gap: 5px;

  color: var(--mx-text);
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  border-radius: 12px;

  position: relative;

  transition: .25s ease;
}

.mx-nav-link i {
  font-size: 15px;
  transition: .25s ease;
}

.mx-nav-link:hover,
.mx-nav-link.active {
  color: var(--mx-blue);
}

.mx-nav-link:hover i {
  transform: rotate(180deg);
}

.mx-nav-link.active::after {
  content: "";

  position: absolute;

  left: 13px;
  right: 13px;
  bottom: -1px;

  height: 3px;

  border-radius: 10px;

  background: var(--mx-blue);
}




.mx-nav-item:hover .mx-dropdown {
  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%) translateY(0);
}


/* =========================================================
   ABOUT DROPDOWN
========================================================= */

.mx-dropdown-title {
  display: flex;
  align-items: center;
  gap: 11px;

  padding: 8px 8px 13px;

  border-bottom: 1px solid var(--mx-border);

  margin-bottom: 5px;
}

.mx-mini-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #edf6ff;

  color: var(--mx-blue);

  font-size: 19px;
}

.mx-dropdown-title strong {
  display: block;

  color: var(--mx-dark);
  font-size: 14px;
}

.mx-dropdown-title small {
  display: block;

  margin-top: 3px;

  color: var(--mx-muted);
  font-size: 11px;
}

.mx-about-menu>a {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: left;
  align-items: flex-start;
  padding: 12px;

  text-decoration: none;

  border-radius: 12px;

  transition: .2s ease;
}

.mx-about-menu>a:hover {
  background: #f5f9ff;
}

.mx-about-menu>a span {
  color: var(--mx-text);
  font-size: 13px;
  font-weight: 600;
}

.mx-about-menu>a small {
  margin-top: 3px;

  color: var(--mx-muted);
  font-size: 11px;
}


/* =========================================================
   MEGA MENU
========================================================= */

.mx-services-item {
  position: static;
}

.mx-mega-menu {
  position: absolute;

  top: calc(100% - 3px);
  left: 24px;
  right: 24px;

  padding-top: 10px;

  opacity: 0;
  visibility: hidden;

  transform: translateY(12px);

  transition: .25s ease;
}

.mx-services-item:hover .mx-mega-menu {
  opacity: 1;
  visibility: visible;
  z-index: 999999 !important;
  transform: translateY(0);
}

.mx-mega-inner {
  overflow: hidden;

  display: grid;
  grid-template-columns: 270px 1fr;

  background: #fff;

  border: 1px solid var(--mx-border);

  border-radius: 22px;

  box-shadow:
    0 30px 80px rgba(15, 59, 106, .18);
}


/* FEATURE */

.mx-mega-feature {
  padding: 30px;

  background:
    radial-gradient(circle at top right,
      rgba(53, 142, 255, .17),
      transparent 55%),
    #f2f8ff;

  border-right: 1px solid var(--mx-border);
}

.mx-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 10px;

  background: #fff;

  border: 1px solid #dcecff;

  border-radius: 50px;

  color: var(--mx-blue);

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: .6px;
}

.mx-mega-feature h3 {
  margin: 22px 0 10px;

  color: var(--mx-dark);

  font-size: 27px;
  line-height: 1.15;

  letter-spacing: -.6px;
}

.mx-mega-feature h3 span {
  display: block;
  color: var(--mx-blue);
}

.mx-mega-feature p {
  margin: 0;

  color: var(--mx-muted);

  font-size: 12px;
  line-height: 1.7;
}

.mx-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 22px;

  color: var(--mx-blue);
  text-decoration: none;

  font-size: 12px;
  font-weight: 700;
}

.mx-feature-link i {
  transition: .2s ease;
}

.mx-feature-link:hover i {
  transform: translate(3px, -3px);
}


/* MEGA CONTENT */

.mx-mega-content {
  padding: 25px;

  display: grid;
  grid-template-columns: 1fr 1fr 220px;

  gap: 25px;
}

.mx-service-column {
  min-width: 0;
}

.mx-column-heading {
  display: flex;
  align-items: center;
  gap: 10px;

  padding-bottom: 13px;

  margin-bottom: 5px;

  border-bottom: 1px solid var(--mx-border);
}

.mx-column-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  font-size: 18px;
}

.mx-column-icon.skin {
  background: #eaf5ff;
  color: #0873dc;
}

.mx-column-icon.specialist {
  background: #edf8f3;
  color: #15805c;
}

.mx-column-heading strong {
  display: block;

  color: var(--mx-dark);

  font-size: 13px;
}

.mx-column-heading small {
  display: block;

  margin-top: 2px;

  color: var(--mx-muted);

  font-size: 10px;
}

.mx-service-link {
  min-height: 35px;

  padding: 7px 8px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--mx-text);
  text-decoration: none;

  border-radius: 8px;

  font-size: 11.5px;

  transition: .2s ease;
}

.mx-service-link:hover {
  padding-left: 12px;

  background: #f4f8fd;

  color: var(--mx-blue);
}

.mx-service-link i {
  opacity: 0;

  font-size: 14px;

  transition: .2s ease;
}

.mx-service-link:hover i {
  opacity: 1;
}


/* MEGA ACTION */

.mx-mega-action {
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #082b55;

  border-radius: 17px;

  color: #fff;
}

.mx-action-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;

  border-radius: 12px;

  background: rgba(255, 255, 255, .12);

  font-size: 19px;
}

.mx-mega-action strong {
  font-size: 15px;
}

.mx-mega-action p {
  margin: 7px 0 15px;

  color: rgba(255, 255, 255, .67);

  font-size: 11px;
  line-height: 1.6;
}

.mx-action-btn {
  min-height: 37px;

  padding: 0 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #fff;

  border-radius: 9px;

  color: var(--mx-dark);
  text-decoration: none;

  font-size: 10.5px;
  font-weight: 700;

  transition: .2s ease;
}

.mx-action-btn:hover {
  background: #eaf5ff;
}


/* =========================================================
   DOCTORS DROPDOWN
========================================================= */

.mx-doctor-menu {
  width: 360px;
}

.mx-doctor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 7px 8px 13px;

  border-bottom: 1px solid var(--mx-border);
}

.mx-doctor-header strong {
  display: block;

  color: var(--mx-dark);
  font-size: 14px;
}

.mx-doctor-header small {
  display: block;

  margin-top: 3px;

  color: var(--mx-muted);
  font-size: 10px;
}

.mx-doctor-header>a {
  color: var(--mx-blue);
  text-decoration: none;

  font-size: 10px;
  font-weight: 700;
}

.mx-doctor-item {
  padding: 10px;

  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;

  border-radius: 12px;

  transition: .2s ease;
}

.mx-doctor-item:hover {
  background: #f5f9ff;
}

.mx-doctor-avatar {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #edf5ff;

  color: var(--mx-blue);
}

.mx-doctor-avatar img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.mx-doctor-item>div:nth-child(2) {
  flex: 1;
}

.mx-doctor-item strong {
  display: block;

  color: var(--mx-text);

  font-size: 12px;
}

.mx-doctor-item small {
  display: block;

  margin-top: 2px;

  color: var(--mx-muted);

  font-size: 10px;
}

.mx-doctor-item>i {
  color: #a2b0c0;

  font-size: 14px;
}


/* =========================================================
   RIGHT ACTIONS
========================================================= */

.mx-nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mx-call-btn {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--mx-border);

  border-radius: 13px;

  color: var(--mx-dark);
  text-decoration: none;

  transition: .25s ease;
}

.mx-call-btn:hover {
  background: #edf6ff;
  color: var(--mx-blue);
  border-color: #cce3fa;
}

.mx-appointment {
  min-height: 44px;

  padding: 0 17px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: var(--mx-blue);

  border-radius: 13px;

  color: #fff;
  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  box-shadow:
    0 9px 22px rgba(7, 89, 201, .22);

  transition: .25s ease;
}

.mx-appointment:hover {
  background: var(--mx-dark);

  transform: translateY(-2px);
}

.mx-appointment i {
  font-size: 16px;

  transition: .2s ease;
}

.mx-appointment:hover i {
  transform: translate(2px, -2px);
}

.mx-menu-btn {
  display: none;

  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 13px;

  background: #edf6ff;

  color: var(--mx-dark);

  font-size: 21px;
}


/* =========================================================
   MOBILE
========================================================= */

.mx-mobile-overlay {
  position: fixed;
  inset: 0;

  z-index: 10000;

  background: rgba(3, 22, 43, .48);

  opacity: 0;
  visibility: hidden;

  transition: .3s ease;

  backdrop-filter: blur(4px);
}

.mx-mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mx-mobile-menu {
  position: fixed;

  z-index: 1000000001;

  top: 0;
  right: 0;

  width: min(390px, 92vw);
  height: 100vh;

  overflow-y: auto;

  background: #fff;

  transform: translateX(105%);

  transition: transform .35s cubic-bezier(.4, 0, .2, 1);

  box-shadow:
    -20px 0 60px rgba(0, 0, 0, .16);
}

.mx-mobile-menu.show {
  transform: translateX(0);
}

body.mx-menu-open {
  overflow: hidden;
}

.mx-mobile-header {
  min-height: 82px;

  padding: 15px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--mx-border);
}

.mx-mobile-logo img {
  max-width: 210px;
  max-height: 50px;
}

.mx-mobile-logo strong {
  color: var(--mx-dark);

  font-family: Georgia, serif;

  font-size: 23px;
}

.mx-mobile-close {
  width: 42px;
  height: 42px;

  border: 0;

  border-radius: 12px;

  background: #f3f7fc;

  color: var(--mx-dark);

  font-size: 20px;
}

.mx-mobile-content {
  padding: 18px;
}

.mx-mobile-content>a,
.mx-mobile-dropdown>button {
  width: 100%;

  min-height: 53px;

  padding: 0 13px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 0;

  border-radius: 13px;

  background: transparent;

  color: var(--mx-text);

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: .2s ease;
}

.mx-mobile-content>a:hover,
.mx-mobile-content>a.active,
.mx-mobile-dropdown.open>button {
  background: #f0f7ff;
  color: var(--mx-blue);
}

.mx-mobile-content>a span,
.mx-mobile-dropdown>button span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mx-mobile-content>a span i,
.mx-mobile-dropdown>button span i {
  width: 27px;
  height: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: #f2f6fb;

  color: var(--mx-blue);
}

.mx-mobile-dropdown {
  margin: 2px 0;
}

.mx-mobile-dropdown>button {
  cursor: pointer;
}

.mx-mobile-dropdown>button>i {
  transition: .25s ease;
}

.mx-mobile-dropdown.open>button>i {
  transform: rotate(180deg);
}

.mx-mobile-submenu {
  max-height: 0;

  overflow: hidden;

  padding-left: 25px;

  transition: max-height .3s ease;
}

.mx-mobile-dropdown.open .mx-mobile-submenu {
  max-height: 600px;

  padding-bottom: 8px;
}

.mx-mobile-submenu a {
  display: block;

  padding: 9px 12px;

  color: var(--mx-muted);

  text-decoration: none;

  font-size: 12px;

  border-left: 1px solid #dce8f4;
}

.mx-mobile-submenu a:hover {
  color: var(--mx-blue);
}

.mx-mobile-submenu .mx-view-all {
  color: var(--mx-blue);
  font-weight: 700;
}

.mx-mobile-footer {
  margin: 10px 18px 25px;
  padding: 17px;

  background: #082b55;

  border-radius: 18px;

  color: #fff;
}

.mx-mobile-emergency {
  display: flex;
  align-items: center;
  gap: 10px;

  padding-bottom: 14px;

  margin-bottom: 14px;

  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mx-mobile-emergency small,
.mx-mobile-emergency strong {
  display: block;
}

.mx-mobile-emergency small {
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
}

.mx-mobile-emergency strong {
  margin-top: 3px;
  font-size: 12px;
}

.mx-mobile-call {
  min-height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: 1px solid rgba(255, 255, 255, .2);

  border-radius: 10px;

  color: #fff;
  text-decoration: none;

  font-size: 12px;
}

.mx-mobile-appointment {
  min-height: 43px;

  margin-top: 9px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #fff;

  border-radius: 10px;

  color: var(--mx-dark);
  text-decoration: none;

  font-size: 12px;
  font-weight: 700;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1250px) {

  .mx-logo {
    min-width: 220px;
  }

  .mx-logo img {
    max-width: 210px;
  }

  .mx-nav-link {
    padding: 0 9px;
    font-size: 13px;
  }

  .mx-appointment {
    padding: 0 13px;
  }

}


@media (max-width: 1100px) {

  .mx-top-left .mx-divider,
  .mx-top-left .mx-info:nth-child(4) {
    display: none;
  }

  .mx-navigation {
    gap: 0;
  }

  .mx-nav-link {
    padding: 0 7px;
    font-size: 12px;
  }

  .mx-call-btn {
    display: none;
  }

}


@media (max-width: 991px) {

  .mx-topbar {
    display: none;
  }

  .mx-nav-wrap {
    padding: 10px 12px 0;
  }

  .mx-navbar {
    min-height: 67px;

    padding: 0 12px 0 16px;

    border-radius: 18px;
  }

  .mx-logo {
    min-width: auto;
    flex: 1;
  }


  .mx-navigation {
    display: none;
  }

  .mx-appointment {
    display: none;
  }

  .mx-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

}


@media (max-width: 575px) {

  .mx-nav-wrap {
    padding: 8px 9px 0;
  }

  .mx-navbar {
    min-height: 62px;

    border-radius: 16px;
  }

  .mx-logo img {
    max-width: 190px;
    height: 70px !important;
  }

  .mx-menu-btn {
    width: 40px;
    height: 40px;
  }

}


/* =====================================================
   MAXBLISS - MAIN LOGO / SEARCH / CTA BAR
===================================================== */

.mx-logo-bar-main {
  width: 100%;
  min-height: 80px;
  position: sticky;
  top: 0;
  margin: 0 auto;
  z-index: 1000000000 !important;
  padding: 7px 50px;

  display: grid;

  grid-template-columns: 280px minmax(300px, 560px) auto;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  background: #ffffff;
}


/* =====================================================
   LOGO
===================================================== */

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

.mx-logo-link {
  display: inline-flex;
  align-items: center;

  text-decoration: none;

  color: #082b55;
}

.mx-logo-image {
  display: block;

  width: auto;
  max-width: 260px;
  max-height: 66px;

  object-fit: contain;
}


/* FALLBACK LOGO */

.mx-logo-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 15px;

  background: #0759c9;

  color: #ffffff;

  font-size: 25px;

  box-shadow:
    0 8px 20px rgba(7, 89, 201, .20);
}

.mx-logo-content {
  margin-left: 12px;

  display: flex;
  flex-direction: column;
}

.mx-logo-content strong {
  color: #082b55;

  font-family: Georgia, serif;

  font-size: 25px;
  line-height: 1;

  letter-spacing: 1px;
}

.mx-logo-content span {
  margin-top: 6px;

  color: #0759c9;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 1.5px;
}


/* =====================================================
   SEARCH
===================================================== */

.mx-search {
  width: 100%;
}

.mx-search-box {
  height: 48px;

  width: 100%;

  display: flex;
  align-items: center;

  padding: 0 14px;

  background: #f7faff;

  border: 1px solid #e2ebf5;

  border-radius: 15px;

  transition:
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.mx-search-box:hover {
  background: #ffffff;

  border-color: #cbdced;
}

.mx-search-box:focus-within {
  background: #ffffff;

  border-color: #0759c9;

  box-shadow:
    0 0 0 4px rgba(7, 89, 201, .07);
}

.mx-search-box>i {
  margin-right: 10px;

  color: #6d829a;

  font-size: 19px;
}

.mx-search-box input {
  width: 100%;

  height: 100%;

  padding: 0;

  border: 0;
  outline: 0;

  background: transparent;

  color: #193858;

  font-family: inherit;

  font-size: 13px;
}

.mx-search-box input::placeholder {
  color: #8b9caf;
}

.mx-search-shortcut {
  flex-shrink: 0;

  padding: 5px 8px;

  border: 1px solid #dce6f1;

  border-radius: 7px;

  background: #ffffff;

  color: #8798aa;

  font-size: 10px;
  font-weight: 600;

  line-height: 1;
}


/* =====================================================
   CTA AREA
===================================================== */

.mx-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 10px;
}


/* =====================================================
   CALL ACTION
===================================================== */

.mx-call-action {
  min-height: 50px;

  padding: 5px 12px 5px 6px;

  display: flex;
  align-items: center;

  gap: 9px;

  border: 1px solid #e3ebf4;

  border-radius: 14px;

  background: #ffffff;

  color: #193858;

  text-decoration: none;

  transition: .25s ease;
}

.mx-call-action:hover {
  border-color: #cbdff4;

  background: #f5f9ff;
}

.mx-call-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 11px;

  background: #edf6ff;

  color: #0759c9;

  font-size: 17px;
}

.mx-call-content {
  display: flex;
  flex-direction: column;

  line-height: 1.2;
}

.mx-call-content small {
  color: #7a8b9e;

  font-size: 9px;
}

.mx-call-content strong {
  margin-top: 3px;

  color: #193858;

  font-size: 11px;

  white-space: nowrap;
}


/* =====================================================
   APPOINTMENT BUTTON
===================================================== */

.mx-appointment-action {
  min-height: 50px;

  padding: 0 15px 0 7px;

  display: flex;
  align-items: center;

  gap: 9px;

  background: #023470;
  background: linear-gradient(336deg, rgba(2, 52, 112, 1) 0%, rgba(0, 17, 54, 1) 100%);

  border-radius: 14px;

  color: #ffffff;

  text-decoration: none;

  font-size: 15px !important;
  font-weight: 700;

  box-shadow:
    0 9px 22px rgba(7, 89, 201, .18);

  transition:
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}



.mx-appointment-icon {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(255, 255, 255, .13);

  font-size: 16px;
}

.mx-cta-arrow {
  margin-left: 3px;

  font-size: 16px;

  transition: transform .25s ease;
}

.mx-appointment-action:hover .mx-cta-arrow {
  transform: translate(3px, -3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1200px) {

  .mx-logo-bar-main {
    width: calc(100% - 35px);

    grid-template-columns:
      235px minmax(250px, 1fr) auto;

    gap: 18px;
  }

  .mx-logo-image {
    max-width: 220px;
  }

  .mx-call-content {
    display: none;
  }

  .mx-call-action {
    padding: 5px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .mx-logo-bar-main {
    width: calc(100% - 0px);
    min-height: 70px;
    padding: 5px 4px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mx-logo {
    flex: 1;

    min-width: 0;
  }

  .mx-logo-image {
    max-width: 190px;
    max-height: 48px;
  }

  .mx-search {
    display: none;
  }

  .mx-cta {
    gap: 7px;
  }

  .mx-call-action {
    width: 42px;
    height: 42px;

    min-height: 42px;

    padding: 0;

    justify-content: center;

    border-radius: 12px;
  }

  .mx-call-icon {
    width: 100%;
    height: 100%;

    border-radius: 11px;
  }

  .mx-appointment-action {
    width: 42px;
    height: 42px;

    min-height: 42px;

    padding: 0;

    justify-content: center;

    border-radius: 12px;
  }

  .mx-appointment-action>span:not(.mx-appointment-icon) {
    display: none;
  }

  .mx-appointment-icon {
    width: 100%;
    height: 100%;

    background: transparent;

    border-radius: 11px;
  }

  .mx-cta-arrow {
    display: none;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

  .mx-logo-bar-main {
    width: calc(100% - 18px);

    min-height: 64px;
  }

  .mx-logo-image {
    max-width: 170px;
  }

  .mx-call-action,
  .mx-appointment-action {
    width: 39px;
    height: 39px;

    min-height: 39px;
  }

}




/* =====================================================
   MAXBLISS HERO
   30% CONTENT / 70% IMAGE
===================================================== */

.mx-hero-carousel {
  position: relative;
  z-index: 1;
  width: 100%;

  overflow: hidden;

  background: #f5f9fd;
}


/* =====================================================
   SLIDE
===================================================== */

.mx-hero-slide {
  width: 100%;

  min-height: 590px;

  display: grid;

  grid-template-columns: 30% 70%;

  position: absolute;

  inset: 0;

  opacity: 0;
  visibility: hidden;

  transform: translateX(25px);

  transition:
    opacity .6s ease,
    transform .7s ease,
    visibility .6s ease;
}

.mx-hero-slide.active {
  position: relative;

  opacity: 1;
  visibility: visible;

  transform: translateX(0);
}


/* =====================================================
   LEFT 30% CONTENT
===================================================== */

.mx-hero-content {
  position: relative;

  z-index: 3;

  min-height: 590px;

  padding: 40px 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #023470;
  background: linear-gradient(336deg, rgba(2, 52, 112, 1) 0%, rgba(0, 17, 54, 1) 100%);
}


/* small tag */

.mx-hero-tag {
  width: fit-content;

  margin-bottom: 18px;

  padding: 7px 11px;

  display: flex;
  align-items: center;

  gap: 6px;

  border: 1px solid #d9e8f5;

  border-radius: 30px;

  background: #fff;

  color: #0759c9;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .8px;
}

.mx-hero-tag i {
  font-size: 13px;
}


/* heading */

.mx-hero-content h2 {
  max-width: 430px;

  margin: 0;

  color: white;

  font-family: Georgia, serif;

  font-size: 3.4rem;

  line-height: 1.05;

  letter-spacing: -1.5px;
}

.mx-hero-content h1 span {
  display: block;

  color: #0759c9;
}


/* paragraph */

.mx-hero-content p {
  max-width: 430px;

  margin:
    20px 0 25px;

  color: #cce5ff;

  font-size: 16px;

  line-height: 1.5;
}


/* =====================================================
   ACTIONS
===================================================== */

.mx-hero-actions {
  display: flex;
  align-items: center;

  gap: 9px;

  flex-wrap: wrap;
}

.mx-hero-primary,
.mx-hero-secondary {
  min-height: 45px;

  padding: 0 14px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  border-radius: 10px;

  text-decoration: none;

  font-size: 16px;
  font-weight: 700;

  transition: .25s ease;
}


/* primary */

.mx-hero-primary {
  background: white;

  color: #0759c9;

  box-shadow:
    0 9px 22px rgba(7, 89, 201, .18);
}

.mx-hero-primary:hover {
  background: #082b55;

  color: #fff;

  transform: translateY(-2px);
}

.mx-hero-primary i {
  font-size: 19px;

  transition: .2s ease;
}

.mx-hero-primary:hover i {
  transform: translate(2px, -2px);
}


/* secondary */

.mx-hero-secondary {
  border: 1px solid #d8e4ef;

  background: #fff;

  color: #29445f;
}

.mx-hero-secondary:hover {
  border-color: #0759c9;

  color: #0759c9;

  background: #f8fbff;
}


/* =====================================================
   TRUST STATS
===================================================== */

.mx-hero-trust {
  margin-top: 32px;

  display: flex;
  align-items: center;

  gap: 17px;
}

.mx-trust-item {
  display: flex;
  flex-direction: column;
}

.mx-trust-item strong {
  color: #082b55;

  font-size: 18px;

  line-height: 1;
}

.mx-trust-item span {
  margin-top: 5px;

  color: #8494a5;

  font-size: 9px;
}

.mx-trust-line {
  width: 1px;
  height: 30px;

  background: #d8e3ed;
}


/* =====================================================
   RIGHT 70% IMAGE
===================================================== */

.mx-hero-image {
  position: relative;

  min-height: 590px;

  overflow: hidden;

  background: #dce8f2;
}

.mx-hero-image img {
  width: 100%;
  height: 100%;

  position: absolute;
  inset: 0;

  object-fit: cover;

  object-position: center;

  transition:
    transform 1.2s ease;
}

.mx-hero-slide.active .mx-hero-image img {
  transform: scale(1.02);
}


/* image overlay */

.mx-image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(245, 249, 253, .45) 0%,
      rgba(245, 249, 253, .05) 16%,
      rgba(8, 43, 85, 0) 55%,
      rgba(8, 43, 85, .12) 100%);
}


/* =====================================================
   FLOATING IMAGE BADGE
===================================================== */

.mx-image-badge {
  position: absolute;

  right: 35px;
  bottom: 35px;

  min-width: 215px;

  padding: 10px 14px;

  display: flex;
  align-items: center;

  gap: 10px;

  border: 1px solid rgba(255, 255, 255, .5);

  border-radius: 14px;

  background: rgba(255, 255, 255, .9);

  box-shadow:
    0 15px 40px rgba(8, 43, 85, .18);

  backdrop-filter: blur(12px);
}

.mx-badge-icon {
  width: 39px;
  height: 39px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 11px;

  background: #eaf4ff;

  color: #0759c9;

  font-size: 18px;
}

.mx-image-badge span:last-child {
  display: flex;
  flex-direction: column;
}

.mx-image-badge small {
  color: #8292a3;

  font-size: 8px;
}

.mx-image-badge strong {
  margin-top: 3px;

  color: #082b55;

  font-size: 10px;
}


/* =====================================================
   CAROUSEL CONTROLS
===================================================== */

.mx-hero-controls {
  position: absolute;

  z-index: 10;

  right: 7%;

  bottom: 80px;

  display: flex;
  align-items: center;

  gap: 8px;
}

.mx-hero-prev,
.mx-hero-next {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, .8);

  border-radius: 50%;

  background: rgba(255, 255, 255, .9);

  color: #082b55;

  cursor: pointer;

  transition: .25s ease;
}

.mx-hero-prev:hover,
.mx-hero-next:hover {
  background: #0759c9;

  border-color: #0759c9;

  color: #fff;
}

.mx-hero-dots {
  display: flex;

  gap: 5px;
}

.mx-hero-dots button {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;

  border-radius: 10px;

  background: #b8c8d8;

  cursor: pointer;

  transition: .3s ease;
}

.mx-hero-dots button.active {
  width: 22px;

  background: #0759c9;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

  .mx-hero-slide {
    grid-template-columns: 38% 62%;
  }

  .mx-hero-content {
    padding-left: 30px;
    padding-right: 25px;
  }

  .mx-hero-content h1 {
    font-size: 38px;
  }

  .mx-hero-content p {
    font-size: 12px;
  }

  .mx-hero-controls {
    left: 38%;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .mx-hero-slide {
    min-height: auto;
    display: flex;
    flex-direction: column-reverse;
  }


  /* CONTENT FIRST */

  .mx-hero-content {
    min-height: auto;

    padding:
      70px 20px 72px;

    order: 1;
  }


  .mx-hero-tag {
    margin-bottom: 14px;

    font-size: 8px;
  }


  .mx-hero-content h1 {
    max-width: 100%;

    font-size: 37px;

    line-height: 1.08;
  }


  .mx-hero-content p {
    max-width: 100%;

    margin:
      15px 0 20px;

    font-size: 16px;

    line-height: 1.5;
  }


  /* BUTTONS */

  .mx-hero-actions {
    width: 100%;

    gap: 7px;
  }

  .mx-hero-primary,
  .mx-hero-secondary {
    min-height: 43px;

    padding: 0 12px;

    font-size: 15px;
  }


  /* STATS */

  .mx-hero-trust {
    margin-top: 23px;
  }


  /* IMAGE */

  .mx-hero-image {
    order: 2;

    min-height: 300px;

    height: 300px;
  }


  .mx-image-badge {
    right: 15px;
    bottom: 15px;

    min-width: 190px;

    padding: 8px 10px;
  }


  /* CONTROLS */

  .mx-hero-controls {
    left: auto;
    right: 15px;

    bottom: 15px;
  }

  .mx-hero-prev,
  .mx-hero-next {
    width: 34px;
    height: 34px;
  }

}


/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 430px) {

  .mx-hero-content {
    padding:
      32px 16px 90px;
  }

  .mx-hero-content h1 {
    font-size: 31px;
  }

  .mx-hero-content p {
    font-size: 11px;
  }

  .mx-hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .mx-hero-primary,
  .mx-hero-secondary {
    width: 100%;

    justify-content: center;
  }

  .mx-hero-image {
    height: 255px;
    min-height: 255px;
  }

  .mx-image-badge {
    display: none;
  }

}


/* =========================================
   APPOINTMENT BOOKING SECTION
========================================= */

.booking-section {

  position: relative;
  margin-top: -50px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  z-index: 30;
  width: 100%;
  max-width: 1340px;
}

.booking-card {
  background: #ffffff;
  border: 1px solid #e2e5e9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* =========================================
   BOOKING TABS
========================================= */

.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
}

.booking-tab {
  flex: 1;
  min-width: 200px;
  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 16px 24px;

  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;

  color: #667085;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition: all 0.2s ease;
}

.booking-tab .material-symbols-outlined {
  font-size: 21px;
}

.booking-tab:hover {
  color: #123c69;
  background: #f1f4f7;
}

.booking-tab.active {
  color: #ffffff !important;
  background: #123c69 !important;
  border-bottom-color: #ffffff;
}




/* =========================================
   FORM
========================================= */

.booking-form {
  display: grid;
  grid-template-columns:
    repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.booking-field {
  min-width: 0;
}

.booking-field label {
  display: block;

  margin-bottom: 7px;

  color: #123c69;

  font-size: 14px;
  font-weight: 600;
}


/* =========================================
   SELECT
========================================= */

.select-wrapper {
  position: relative;
}

.field-icon {
  position: absolute;
  left: 12px;
  top: 50%;

  transform: translateY(-50%);

  color: #667085;

  font-size: 20px;

  pointer-events: none;

  z-index: 2;
}

.select-wrapper select {
  width: 100%;
  height: 44px;

  padding: 0 35px 0 40px;

  appearance: none;
  -webkit-appearance: none;

  background-color: #ffffff;

  border: 1px solid #d8dde3;
  border-radius: 8px;

  color: #1d2939;

  font-size: 13px;

  outline: none;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.select-wrapper::after {
  content: "expand_more";

  position: absolute;

  right: 10px;
  top: 50%;

  transform: translateY(-50%);

  font-family: "Material Symbols Outlined";

  font-size: 20px;

  color: #667085;

  pointer-events: none;
}

.select-wrapper select:focus {
  border-color: #123c69;

  box-shadow:
    0 0 0 3px rgba(18, 60, 105, 0.10);
}


/* =========================================
   DATE INPUT
========================================= */

.booking-input {
  width: 100%;
  height: 44px;

  padding: 0 12px;

  background: #ffffff;

  border: 1px solid #d8dde3;
  border-radius: 8px;

  color: #1d2939;

  font-size: 13px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.booking-input:focus {
  border-color: #123c69;

  box-shadow:
    0 0 0 3px rgba(18, 60, 105, 0.10);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.booking-submit {
  display: flex;
  align-items: flex-end;
}

.availability-btn {
  width: 100%;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 18px;

  border: 0;
  border-radius: 8px;

  background: #123c69;
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  box-shadow:
    0 4px 10px rgba(18, 60, 105, 0.18);

  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.availability-btn:hover {
  background: #0d2f53;

  box-shadow:
    0 6px 15px rgba(18, 60, 105, 0.25);
}

.availability-btn:active {
  transform: scale(0.99);
}

.availability-btn .material-symbols-outlined {
  font-size: 20px;
}


/* =========================================
   INFORMATION BAR
========================================= */

.booking-info-bar {
  margin-top: 20px;
  padding-top: 16px;

  border-top: 1px solid #e5e7eb;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  color: #667085;

  font-size: 12px;
}

.booking-info-left {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 18px;
}

.booking-info-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  white-space: nowrap;
}

.booking-info-item .material-symbols-outlined {
  font-size: 16px;
}

.booking-info-item.highlight {
  color: #123c69;
  font-weight: 600;
}

.helpline {
  white-space: nowrap;
}

.helpline a {
  color: #123c69;

  font-weight: 700;

  text-decoration: none;

  margin-left: 3px;
}

.helpline a:hover {
  text-decoration: underline;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .booking-form {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .booking-submit {
    align-items: flex-end;
  }

  .booking-info-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-info-left {
    width: 100%;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .booking-section {
    margin-top: -25px;
    padding: 0 16px;
  }

  .booking-card {
    border-radius: 13px;
  }

  .booking-tabs {
    flex-direction: column;
  }

  .booking-tab {
    width: 100%;
    min-width: auto;
    min-height: 55px;

    padding: 13px 15px;

    font-size: 14px;
  }

  .booking-content {
    padding: 22px 18px;
  }

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

  .booking-info-bar {
    margin-top: 20px;
  }

  .booking-info-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .booking-info-item {
    white-space: normal;
  }

  .location-info {
    display: none;
  }

  .helpline {
    width: 100%;
    padding-top: 5px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .booking-section {
    padding: 0 12px;
  }

  .booking-content {
    padding: 18px 14px;
  }

  .booking-tab {
    justify-content: flex-start;
    padding-left: 18px;
  }

}

/* =====================================================
   DROPDOWN ABOVE HERO CAROUSEL
===================================================== */




.booking-section {
  position: relative;
  z-index: 30;
  margin: -60px auto 15px;
}

.booking-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}


/* ================================
   TABS
================================ */

.booking-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f5f8fc;
  border-bottom: 1px solid #e5e7eb;
}



.booking-tab {
  position: relative;
  min-height: 68px;
  padding: 14px 20px;
  border: 0;
  background: transparent;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
}

.booking-tab:hover {
  color: #1e50bd;
  background: #fff;
}

.booking-tab.active {
  color: #1e50bd;
  background: #fff;
}

.booking-tab.active::after {
  content: "";
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 0;
  height: 3px;
  background: #00ccff;
  border-radius: 3px 3px 0 0;
}

.booking-card {

    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* =========================================
   TABS
========================================= */
.booking-tabs {
    display: flex;
    flex-wrap: wrap;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}



.booking-tab .material-symbols-outlined {
    font-size: 1.25rem;
}


.booking-form-panel {
    display: none;
}

.booking-form-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}

.input-wrapper,
.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 1.25rem;
    pointer-events: none;
    z-index: 1;
}

.select-arrow {
    position: absolute;
    right: 14px;
    color: #94a3b8;
    font-size: 1.25rem;
    pointer-events: none;
}



/* Error state */
.booking-input.error,
.select-wrapper select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
}



.availability-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.availability-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.availability-btn:active:not(:disabled) {
    transform: translateY(0);
}

.availability-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.availability-btn .btn-icon {
    font-size: 1.25rem;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================================
   TOAST NOTIFICATIONS
========================================= */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
    border-left: 4px solid;
    min-width: 300px;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: #10b981;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #475569;
}

.toast.hiding {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100%); }
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
    .booking-tabs {
        flex-direction: column;
    }

    .booking-tab {
        min-width: 100%;
        justify-content: flex-start;
        padding: 0.875rem 1rem;
    }

    .booking-tab.active::after {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0;
        right: auto;
    }

    .booking-content {
        padding: 1.25rem;
    }

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

    .toast-container {
        left: 10px;
        right: 10px;
        top: 10px;
        max-width: none;
    }

    .toast {
        min-width: auto;
    }
}

/* ================================
   CONTENT
================================ */

.booking-content {
  padding: 15px;
}

.booking-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.booking-heading h3 {
  margin: 0 0 5px;
  color: #172033;
  font-size: 20px;
  font-weight: 700;
}

.booking-heading p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
}


/* ================================
   STATUS
================================ */

.booking-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 30px;
  background: #f0fdf4;
  color: #15803d;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}


/* ================================
   FORM PANEL
================================ */

.booking-form-panel {
  display: none;
}

.booking-form-panel.active {
  display: block;
}


/* ================================
   FORM
================================ */

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}

.booking-field {
  min-width: 0;
}

.booking-field label {
  display: block;
  margin-bottom: 7px;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
}


/* ================================
   INPUT / SELECT
================================ */

.select-wrapper,
.input-wrapper {
  position: relative;
  width: 100%;
}

.booking-form select,
.booking-input {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 42px;
  border: 1px solid #d9e0e8;
  border-radius: 9px;
  outline: none;
  background: #fff;
  color: #1e293b;
  font-family: inherit;
  font-size: 13px;
  transition: .2s ease;
}

.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.booking-form select:focus,
.booking-input:focus {
  border-color: #1e50bd;
  box-shadow: 0 0 0 3px rgba(30, 80, 189, .08);
}

.booking-input::placeholder {
  color: #94a3b8;
}


/* ================================
   ICONS
================================ */

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 19px;
  pointer-events: none;
  z-index: 2;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 20px;
  pointer-events: none;
}


/* ================================
   SUBMIT
================================ */

.booking-submit {
  height: 48px;
}

.availability-btn {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 9px;
  padding: 0 18px;
  background: #1e50bd;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
}

.availability-btn:hover {
  background: #173f96;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30, 80, 189, .20);
}


/* ================================
   INFO BAR
================================ */

.booking-info-bar {
  margin-top: 22px;
  padding: 10px 0px;
  border-top: 1px solid #edf0f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.booking-info-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.booking-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 11px;
}

.booking-info-item .material-symbols-outlined {
  color: #1e50bd;
  font-size: 17px;
}

.booking-info-item.highlight {
  color: #15803d;
  font-weight: 600;
}

.booking-info-item.highlight .material-symbols-outlined {
  color: #16a34a;
}

.helpline {
  flex-shrink: 0;
  color: #64748b;
  font-size: 11px;
}

.helpline a {
  margin-left: 5px;
  color: #1e50bd;
  font-weight: 700;
  text-decoration: none;
}


/* ================================
   TABLET
================================ */

@media (max-width: 1100px) {

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

  .booking-submit {
    grid-column: span 2;
  }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

  .booking-section {
    width: calc(100% - 24px);
    margin-top: -35px;
  }

  .booking-tabs {
    grid-template-columns: 1fr;
  }

  .booking-tab {
    min-height: 54px;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .booking-tab.active::after {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    width: 3px;
    height: auto;
    border-radius: 0;
  }

  .booking-content {
    padding: 18px;
  }

  .booking-heading {
    display: block;
  }

  .booking-status {
    margin-top: 12px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .booking-submit {
    grid-column: auto;
  }

  .booking-info-bar {
    display: block;
  }

  .booking-info-left {
    display: block;
  }

  .booking-info-item {
    display: flex;
    margin-bottom: 10px;
  }

  .helpline {
    padding-top: 10px;
    border-top: 1px solid #edf0f4;
  }

}


@media (max-width: 480px) {

  .booking-section {
    width: calc(100% - 16px);
  }

  .booking-content {
    padding: 15px;
  }

  .booking-heading h3 {
    font-size: 18px;
  }

}





/* =========================================================
   MAXBLISS ACHIEVEMENTS
   Glassmorphism Horizontal Stats
========================================================= */

.mx-achievements {
  position: relative;
  width: 100%;
  padding: 18px 20px;

  max-width: 1340px;
  margin: auto;
  margin-bottom: 40px;
}


/* =========================================================
   CONTAINER
========================================================= */

.mx-achievements-container {
  margin: 0 auto;
  padding: 10px 0px;
  border: 1px solid rgba(30, 80, 189, 0.10);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


/* =========================================================
   GRID
========================================================= */

.mx-achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}


/* =========================================================
   SINGLE ITEM
========================================================= */

.mx-achievement-item {
  min-height: 92px;

  padding: 12px 32px;

  display: flex;
  align-items: center;
  gap: 24px;

  position: relative;
}


/* Vertical divider */

.mx-achievement-item:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 18px;
  bottom: 18px;

  width: 1px;

  background: rgba(30, 80, 189, 0.10);
}


/* =========================================================
   ICON BOX
========================================================= */

.mx-achievement-icon {
  width: 74px;
  height: 74px;

  flex: 0 0 74px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.68));

  border: 1px solid rgba(255, 255, 255, 0.90);

  box-shadow:
    0 7px 20px rgba(30, 80, 189, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.mx-achievement-icon i {
  color: #0c315b;

  font-size: 31px;

  line-height: 1;
}


/* Hover */

.mx-achievement-item:hover .mx-achievement-icon {
  transform: translateY(-3px);

  box-shadow:
    0 12px 28px rgba(30, 80, 189, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* =========================================================
   CONTENT
========================================================= */

.mx-achievement-content {
  min-width: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}


.mx-achievement-content strong {
  display: block;

  margin: 0 0 2px;

  color: #092e55;

  font-size: 30px;
  line-height: 1.1;

  font-weight: 700;

  letter-spacing: -0.5px;
}


.mx-achievement-content span {
  display: block;

  color: #535967;

  font-size: 16px;
  line-height: 1.3;

  font-weight: 400;

  white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .mx-achievements-container {
    width: min(100% - 40px, 1000px);
  }

  .mx-achievement-item {
    padding: 12px 18px;
    gap: 16px;
  }

  .mx-achievement-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    border-radius: 16px;
  }

  .mx-achievement-icon i {
    font-size: 27px;
  }

  .mx-achievement-content strong {
    font-size: 25px;
  }

  .mx-achievement-content span {
    font-size: 14px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .mx-achievements {
    padding: 12px 0;
    margin-bottom: 10px;
  }

  .mx-achievements-container {
    width: calc(100% - 24px);

    padding: 10px;

    border-radius: 18px;
  }

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

  .mx-achievement-item {
    min-height: 88px;

    padding: 12px;

    gap: 12px;
  }


  /* Remove vertical divider */

  .mx-achievement-item:not(:last-child)::after {
    display: none;
  }


  /* Horizontal divider */

  .mx-achievement-item:nth-child(1),
  .mx-achievement-item:nth-child(2) {
    border-bottom: 1px solid rgba(30, 80, 189, 0.09);
  }


  /* Vertical divider between columns */

  .mx-achievement-item:nth-child(odd) {
    border-right: 1px solid rgba(30, 80, 189, 0.09);
  }


  .mx-achievement-icon {
    width: 52px;
    height: 52px;

    flex-basis: 52px;

    border-radius: 14px;
  }

  .mx-achievement-icon i {
    font-size: 23px;
  }


  .mx-achievement-content strong {
    font-size: 22px;
  }

  .mx-achievement-content span {
    font-size: 12px;

    line-height: 1.35;

    white-space: normal;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .mx-achievements-container {
    width: calc(100% - 16px);
    padding: 7px;
  }

  .mx-achievement-item {
    min-height: 82px;
    padding: 10px;
    gap: 9px;
  }

  .mx-achievement-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 12px;
  }

  .mx-achievement-icon i {
    font-size: 20px;
  }

  .mx-achievement-content strong {
    font-size: 20px;
  }

  .mx-achievement-content span {
    font-size: 11px;
  }

}

/* =========================================================
   MAXBLISS SPECIALTIES SECTION
   Glassmorphism Healthcare Design
========================================================= */

.mx-specialties-section {
  position: relative;
  width: 100%;
  padding: 0px 0 70px ;
  background: #ffffff;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.mx-specialties-container {
  width: min(1400px, calc(100% - 100px));
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.mx-specialties-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 42px;
}


.mx-specialties-heading {
  max-width: 720px;
}


/* =========================================================
   EYEBROW
========================================================= */

.mx-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 10px;

  color: #1e50bd;

  font-size: 13px;
  line-height: 1.4;

  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1px;
}


.mx-section-eyebrow .material-symbols-outlined {
  font-size: 19px;
}


/* =========================================================
   TITLE
========================================================= */

.mx-section-title {
  margin: 0;

  color: #092e55;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;

  font-weight: 700;

  letter-spacing: -0.8px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.mx-section-description {
  max-width: 650px;

  margin: 12px 0 0;

  color: #687180;

  font-size: 16px;
  line-height: 1.65;

  font-weight: 400;
}


/* =========================================================
   BOOK CONSULTATION LINK
========================================================= */

.mx-specialties-book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  flex-shrink: 0;

  padding: 12px 0;

  color: #1e50bd;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.2s ease,
    gap 0.2s ease;
}


.mx-specialties-book-link .material-symbols-outlined {
  font-size: 19px;

  transition: transform 0.2s ease;
}


.mx-specialties-book-link:hover {
  color: #123f9a;
}


.mx-specialties-book-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}


/* =========================================================
   SPECIALTIES GRID
========================================================= */

.mx-specialties-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 20px;
}


/* =========================================================
   SPECIALTY CARD
========================================================= */

.mx-specialty-card {
  position: relative;

  min-height: 280px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 25px;

  overflow: hidden;

  border: 1px solid rgba(30, 80, 189, 0.10);

  border-radius: 20px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.90),
      rgba(245, 248, 255, 0.72));

  box-shadow:
    0 8px 25px rgba(30, 80, 189, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* Glass shine */

.mx-specialty-card::before {
  content: "";

  position: absolute;

  top: -90px;
  right: -80px;

  width: 190px;
  height: 190px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.45);

  filter: blur(10px);

  pointer-events: none;
}


/* Hover */

.mx-specialty-card:hover {
  transform: translateY(-5px);

  border-color: rgba(30, 80, 189, 0.18);

  box-shadow:
    0 18px 42px rgba(30, 80, 189, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* =========================================================
   CARD MAIN
========================================================= */

.mx-specialty-main {
  position: relative;
  z-index: 1;
}


/* =========================================================
   ICON
========================================================= */

.mx-specialty-icon {
  width: 55px;
  height: 55px;

  margin-bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background:
    linear-gradient(145deg,
      rgba(235, 241, 255, 0.95),
      rgba(247, 249, 255, 0.75));

  border: 1px solid rgba(30, 80, 189, 0.08);

  color: #1e50bd;

  box-shadow:
    0 5px 15px rgba(30, 80, 189, 0.05);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}


.mx-specialty-icon .material-symbols-outlined {
  font-size: 27px;
}


.mx-specialty-card:hover .mx-specialty-icon {
  background: #1e50bd;
  color: #ffffff;

  transform: translateY(-2px);
}


/* =========================================================
   CARD TITLE
========================================================= */

.mx-specialty-title {
  margin: 0 0 9px;

  color: #0b3158;

  font-size: 20px;
  line-height: 1.3;

  font-weight: 700;

  letter-spacing: -0.2px;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.mx-specialty-description {
  margin: 0;

  color: #687180;

  font-size: 14px;
  line-height: 1.65;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.mx-specialty-footer {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin-top: 25px;
  padding-top: 15px;

  border-top: 1px solid rgba(30, 80, 189, 0.09);
}


/* =========================================================
   FOOTER LABEL
========================================================= */

.mx-specialty-label {
  color: #737b88;

  font-size: 12px;
  line-height: 1.4;

  font-weight: 600;
}


/* =========================================================
   CONSULT LINK
========================================================= */

.mx-specialty-consult {
  display: inline-flex;
  align-items: center;
  gap: 2px;

  flex-shrink: 0;

  color: #1e50bd;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  transition: color 0.2s ease;
}


.mx-specialty-consult .material-symbols-outlined {
  font-size: 17px;

  transition: transform 0.2s ease;
}


.mx-specialty-consult:hover {
  color: #123f9a;
}


.mx-specialty-consult:hover .material-symbols-outlined {
  transform: translateX(3px);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

  .mx-specialties-container {
    width: min(100% - 50px, 1000px);
  }


  .mx-specialties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .mx-specialty-card {
    min-height: 270px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

  .mx-specialties-section {
    padding: 55px 0;
  }


  .mx-specialties-container {
    width: calc(100% - 32px);
  }


  .mx-specialties-header {
    align-items: flex-start;
    flex-direction: column;

    gap: 18px;

    margin-bottom: 30px;
  }


  .mx-specialties-book-link {
    padding: 0;
  }


  .mx-specialties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;
  }


  .mx-specialty-card {
    min-height: auto;

    padding: 22px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

  .mx-specialties-section {
    padding: 40px 0;
  }


  .mx-specialties-container {
    width: calc(100% - 24px);
  }


  .mx-section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.7px;
  }


  .mx-section-title {
    font-size: 28px;
  }


  .mx-section-description {
    font-size: 14px;
    line-height: 1.6;
  }


  .mx-specialty-card {
    padding: 20px;

    border-radius: 17px;
  }


  .mx-specialty-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 17px;
  }


  .mx-specialty-title {
    font-size: 18px;
  }


  .mx-specialty-description {
    font-size: 13px;
  }


  .mx-specialty-label {
    font-size: 11px;
  }


  .mx-specialty-consult {
    font-size: 12px;
  }

}





/* =========================================================
   MAXBLISS CLINIC FOOTER
========================================================= */

.mx-footer {
  position: relative;
  width: 100%;
  background: #0b263b;
  color: #ffffff;
  overflow: hidden;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.mx-footer-container {
  width: min(100% - 48px, 1340px);
  margin: 0 auto;
}


/* =========================================================
   EMERGENCY / TOP CTA
========================================================= */

.mx-footer-emergency {
  position: relative;
  background:
    linear-gradient(135deg,
      #102d44 0%,
      #162f46 50%,
      #10283d 100%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.mx-emergency-content {

  display: grid;

  grid-template-columns:
    72px minmax(0, 1fr) auto;

  align-items: center;

  gap: 22px;

  padding: 22px 0px;
}


/* =========================================================
   EMERGENCY ICON
========================================================= */

.mx-emergency-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: rgba(190, 28, 28, 0.18);

  border: 1px solid rgba(220, 38, 38, 0.55);

  color: #ef2d32;

  flex-shrink: 0;
}


.mx-emergency-icon .material-symbols-outlined {
  font-size: 38px;
  font-weight: 500;
}


/* =========================================================
   EMERGENCY TEXT
========================================================= */

.mx-emergency-text {
  min-width: 0;
}


.mx-emergency-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;

  color: #0873dc;

  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.3px;
}


.mx-emergency-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #e1242b;

  flex-shrink: 0;
}


.mx-emergency-text h2 {
  margin: 0 0 6px;

  color: #ffffff;

  font-size: clamp(25px, 1.3vw, 34px);

  line-height: 1.2;

  font-weight: 500;

  letter-spacing: -0.6px;
}


.mx-emergency-text p {
  max-width: 760px;

  margin: 0;

  color: #c7d6e7;

  font-size: 15px;

  line-height: 1.55;
}


/* =========================================================
   EMERGENCY ACTIONS
========================================================= */

.mx-emergency-actions {
  display: flex;
  align-items: center;

  gap: 18px;

  flex-shrink: 0;
}


.mx-emergency-btn {


  padding: 14px 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  border-radius: 7px;

  text-decoration: none;

  font-size: 16px;
  font-weight: 700;

  white-space: nowrap;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


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


/* Call */

.mx-emergency-call {
  color: #ffffff;

  background: #d51f24;

  border: 1px solid #d51f24;

  box-shadow:
    0 10px 25px rgba(213, 31, 36, 0.18);
}


.mx-emergency-call:hover {
  background: #bd171c;
  color: #ffffff;
}


/* Location */

.mx-emergency-location {
  color: #ffffff;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.14);
}


.mx-emergency-location:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}


.mx-emergency-btn .material-symbols-outlined {
  font-size: 23px;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.mx-footer-main {
  background: #0b263b;

  padding: 76px 0 28px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.mx-footer-grid {
  display: grid;

  grid-template-columns:
    minmax(340px, 2fr) minmax(150px, 1fr) minmax(170px, 1fr) minmax(270px, 1.25fr);

  gap: 55px;
}


/* =========================================================
   BRAND
========================================================= */

.mx-footer-about {
  min-width: 0;
}


.mx-footer-brand {
  display: inline-flex;
  align-items: center;
  background-color: white;
  padding: 5px;
  border-radius: 10px;
  gap: 15px;

  color: #ffffff;

  text-decoration: none;

  margin-bottom: 22px;
}


.mx-footer-brand img {
  max-width: 230px;
  max-height: 88px;

  width: auto;
  height: auto;

  object-fit: contain;
}


/* Fallback logo */

.mx-footer-brand-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 5px;

  background: #024167;

  color: #ffffff;
}


.mx-footer-brand-icon .material-symbols-outlined {
  font-size: 27px;
}


.mx-footer-brand-name {
  color: #ffffff;

  font-size: 32px;

  line-height: 1.15;

  font-weight: 700;

  letter-spacing: -1px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.mx-footer-description {
  max-width: 570px;

  margin: 0 0 30px;

  color: #758da5;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================================
   ADDRESS
========================================================= */

.mx-footer-address {
  display: flex;
  align-items: flex-start;

  gap: 13px;

  max-width: 580px;

  color: #c3d2e2;

  font-size: 14px;

  line-height: 1.6;

  font-weight: 600;
}


.mx-footer-address .material-symbols-outlined {
  flex-shrink: 0;

  color: white;

  font-size: 23px;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.mx-footer-column {
  min-width: 0;
}


.mx-footer-column h3 {
  margin: 0 0 22px;

  color: #ffffff;

  font-size: 18px;

  line-height: 1.3;

  font-weight: 700;
}


.mx-footer-links {
  display: flex;

  flex-direction: column;

  gap: 12px;
}


.mx-footer-links a {
  display: inline-block;

  width: fit-content;

  color: #687f97;

  text-decoration: none;

  font-size: 17px;

  line-height: 1.4;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}


.mx-footer-links a:hover {
  color: white;

  transform: translateX(3px);
}


/* =========================================================
   HELP COLUMN
========================================================= */

.mx-footer-help p {
  margin: 0 0 18px;

  color: #71869c;

  font-size: 16px;

  line-height: 1.55;
}


/* Phone */

.mx-footer-phone {
  display: block;

  margin-bottom: 16px;

  color: white;

  text-decoration: none;

  font-size: 16px;

  line-height: 1.5;

  font-weight: 700;

  transition: color 0.2s ease;
}


.mx-footer-phone:hover {
  color: #ffffff;
}


/* Email */

.mx-footer-email {
  display: block;

  margin-bottom: 22px;

  color: #ffffff;

  text-decoration: none;

  font-size: 15px;

  line-height: 1.5;

  font-weight: 600;

  transition: color 0.2s ease;
}


.mx-footer-email:hover {
  color: #65e1da;
}


/* Timing */

.mx-footer-timing {
  display: flex;

  flex-wrap: wrap;

  gap: 5px;

  color: #657d94;

  font-size: 16px;

  line-height: 1.5;
}


/* =========================================================
   DIVIDER
========================================================= */

.mx-footer-divider {
  width: 100%;

  height: 1px;

  margin: 48px 0 0;

  background: rgba(255, 255, 255, 0.10);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.mx-footer-bottom {
  min-height: 80px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.04);
}


.mx-footer-bottom p {
  margin: 0;

  color: #61788f;

  font-size: 15px;

  line-height: 1.5;
}


.mx-footer-bottom-right {
  display: flex;

  align-items: center;

  gap: 22px;
}


.mx-footer-bottom-right a {
  color: #91a5b8;

  text-decoration: none;

  font-size: 14px;

  transition: color 0.2s ease;
}


.mx-footer-bottom-right a:hover {
  color: #65e1da;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

  .mx-emergency-content {
    grid-template-columns:
      65px minmax(0, 1fr);

    align-items: start;
  }


  .mx-emergency-actions {
    grid-column: 2;

    margin-top: 8px;
  }


  .mx-footer-grid {
    grid-template-columns:
      1.6fr 1fr 1fr;

    gap: 45px;
  }


  .mx-footer-help {
    grid-column: span 3;
  }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {

  .mx-footer-container {
    width: min(100% - 32px, 600px);
  }


  /* Emergency */

  .mx-emergency-content {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    padding: 35px 0;
  }


  .mx-emergency-icon {
    width: 58px;
    height: 58px;

    border-radius: 14px;
  }


  .mx-emergency-icon .material-symbols-outlined {
    font-size: 30px;
  }


  .mx-emergency-label {
    font-size: 12px;
  }


  .mx-emergency-text h2 {
    font-size: 26px;

    letter-spacing: -0.3px;
  }


  .mx-emergency-text p {
    font-size: 15px;

    line-height: 1.55;
  }


  .mx-emergency-actions {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 5px;
  }


  .mx-emergency-btn {
    width: 100%;

    min-height: 58px;

    padding: 0 18px;

    font-size: 15px;
  }


  /* Main footer */

  .mx-footer-main {
    padding: 55px 0 20px;
  }


  .mx-footer-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 38px;
  }


  .mx-footer-help {
    grid-column: auto;
  }


  .mx-footer-brand-name {
    font-size: 25px;
  }


  .mx-footer-brand img {
    max-width: 210px;
  }


  .mx-footer-description {
    font-size: 15px;

    line-height: 1.65;

    margin-bottom: 24px;
  }


  .mx-footer-address {
    font-size: 13px;
  }


  .mx-footer-column h3 {
    font-size: 17px;

    margin-bottom: 16px;
  }


  .mx-footer-links {
    gap: 10px;
  }


  .mx-footer-links a {
    font-size: 15px;
  }


  .mx-footer-help p {
    font-size: 15px;
  }


  .mx-footer-divider {
    margin-top: 38px;
  }


  .mx-footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding: 22px 0;

    gap: 15px;
  }


  .mx-footer-bottom p {
    font-size: 13px;
  }


  .mx-footer-bottom-right {
    flex-wrap: wrap;

    gap: 12px 20px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .mx-footer-container {
    width: min(100% - 24px, 600px);
  }


  .mx-emergency-text h2 {
    font-size: 23px;
  }


  .mx-emergency-text p {
    font-size: 14px;
  }


  .mx-footer-main {
    padding-top: 45px;
  }


  .mx-footer-brand-name {
    font-size: 22px;
  }


  .mx-footer-brand img {
    max-width: 190px;
  }

}




/* =========================================================
   CONTACT PAGE
========================================================= */

.clinic-contact-page {
  width: 100%;
  padding: 70px 0px;
  background: #e1f3ff;

  color: #092f54;
}


.clinic-contact-container {
  width: min(1360px, 100%);
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.clinic-contact-header {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}


.clinic-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 8px 15px;

  border: 1px solid rgba(30, 80, 189, 0.14);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.65);

  color: #1e50bd;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
}


.clinic-eyebrow-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #20c997;

  box-shadow: 0 0 0 5px rgba(32, 201, 151, 0.10);
}


.clinic-contact-header h1 {

  color: #092f54;

  font-size: 36px;
  line-height: 1.05;
  font-weight: 750;
}


.clinic-contact-header p {
  max-width: 680px;
  margin: 0 auto;

  color: #687b91;

  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   CONTACT GRID
========================================================= */

.clinic-contact-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;

  margin-bottom: 70px;
}


/* =========================================================
   GLASS CONTACT CARD
========================================================= */

.clinic-contact-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 270px;

  padding: 27px;

  text-decoration: none;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.66));

  border: 1px solid rgba(30, 80, 189, 0.12);

  border-radius: 22px;

  box-shadow:
    0 12px 40px rgba(8, 47, 84, 0.06);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  overflow: hidden;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}


.clinic-contact-card::before {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  right: -55px;
  top: -55px;

  border-radius: 50%;

  background: rgba(30, 80, 189, 0.06);

  pointer-events: none;
}


.clinic-contact-card:hover {
  transform: translateY(-6px);

  border-color: rgba(30, 80, 189, 0.25);

  box-shadow:
    0 22px 55px rgba(8, 47, 84, 0.12);
}


.clinic-contact-icon {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  border-radius: 15px;

  background: rgba(30, 80, 189, 0.08);

  color: #1e50bd;

  font-size: 25px;

  border: 1px solid rgba(30, 80, 189, 0.10);
}


.clinic-contact-card-accent .clinic-contact-icon {
  background: rgba(25, 185, 135, 0.10);
  color: #159d77;
}


.clinic-contact-label {
  display: block;

  margin-bottom: 7px;

  color: #8190a1;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
}


.clinic-contact-card h3 {
  margin: 0 0 8px;

  color: #092f54;

  font-size: 21px;
  line-height: 1.2;
}


.clinic-contact-value {
  min-height: 44px;

  margin: 0;

  color: #63778d;

  font-size: 14px;
  line-height: 1.6;

  word-break: break-word;
}


.clinic-email-value {
  font-size: 13px;
}


.clinic-contact-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin-top: auto;
  padding-top: 22px;

  color: #1e50bd;

  font-size: 13px;
  font-weight: 750;
}


.clinic-contact-action i {
  transition: transform .2s ease;
}


.clinic-contact-card:hover .clinic-contact-action i {
  transform: translate(3px, -3px);
}


/* =========================================================
   MAIN CTA
========================================================= */

.clinic-consultation-banner {
  position: relative;

  min-height: 500px;

  display: flex;
  align-items: center;

  padding: 70px 7%;

  border-radius: 42px;

  overflow: hidden;

  background:
    radial-gradient(circle at 78% 30%,
      rgba(35, 106, 198, 0.20),
      transparent 28%),
    linear-gradient(120deg,
      #062f55 0%,
      #062b4e 50%,
      #031f3c 100%);

  box-shadow:
    0 30px 80px rgba(3, 35, 65, 0.18);
}


.clinic-cta-content {
  position: relative;

  z-index: 5;

  max-width: 780px;
}


.clinic-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 15px;

  background: rgba(18, 91, 153, 0.45);

  border: 1px solid rgba(92, 174, 255, 0.16);

  border-radius: 999px;

  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}


.clinic-cta-status-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #27d6a0;

  box-shadow:
    0 0 0 5px rgba(39, 214, 160, 0.08);
}


.clinic-cta-content h2 {
  max-width: 850px;

  margin: 30px 0 20px;

  color: #ffffff;

  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.02;


  font-weight: 600;
}


.clinic-cta-content p {
  max-width: 780px;

  margin: 0;

  color: #aec3dc;

  font-size: 18px;
  line-height: 1.7;
}


.clinic-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-top: 38px;
}


.clinic-cta-primary,
.clinic-cta-secondary {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 27px;

  border-radius: 999px;

  text-decoration: none;

  font-size: 15px;
  font-weight: 750;

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}


.clinic-cta-primary {
  background: #ffffff;

  color: #092f54;

  border: 1px solid #ffffff;
}


.clinic-cta-secondary {
  background: rgba(255, 255, 255, 0.02);

  color: #ffffff;

  border: 1px solid rgba(194, 218, 243, 0.48);
}


.clinic-cta-primary:hover,
.clinic-cta-secondary:hover {
  transform: translateY(-3px);
}


.clinic-cta-primary:hover {
  background: #f4f8fc;
}


.clinic-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.7);
}


.clinic-cta-actions i {
  font-size: 20px;
}


/* =========================================================
   CTA DECORATION
========================================================= */

.clinic-cta-decoration {
  position: absolute;

  right: 4%;
  top: 50%;

  width: 430px;
  height: 430px;

  transform: translateY(-50%);

  pointer-events: none;
}


.clinic-cta-circle {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(142, 193, 238, 0.12);
}


.clinic-cta-circle-one {
  width: 410px;
  height: 410px;

  right: 0;
  top: 0;
}


.clinic-cta-circle-two {
  width: 280px;
  height: 280px;

  right: 65px;
  top: 65px;

  background: rgba(53, 116, 175, 0.05);
}


.clinic-cta-medical-icon {
  position: absolute;

  width: 120px;
  height: 120px;

  right: 145px;
  top: 145px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 35px;

  color: rgba(255, 255, 255, 0.85);

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-size: 54px;
}


/* CTA Glow */

.clinic-cta-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(70px);

  pointer-events: none;
}


.clinic-cta-glow-one {
  width: 220px;
  height: 220px;

  right: 18%;
  top: -100px;

  background: rgba(38, 128, 218, 0.15);
}


.clinic-cta-glow-two {
  width: 180px;
  height: 180px;

  left: 30%;
  bottom: -120px;

  background: rgba(17, 191, 164, 0.10);
}


/* =========================================================
   INFO BAR
========================================================= */

.clinic-contact-info-bar {
  display: grid;

  grid-template-columns:
    1fr auto 1fr auto 1fr;

  align-items: center;

  margin-top: 25px;

  padding: 28px 32px;

  background:
    rgba(255, 255, 255, 0.72);

  border:
    1px solid rgba(30, 80, 189, 0.10);

  border-radius: 22px;

  box-shadow:
    0 15px 45px rgba(8, 47, 84, 0.05);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


.clinic-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}


.clinic-info-icon {
  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: rgba(30, 80, 189, 0.07);

  color: #1e50bd;

  font-size: 20px;
}


.clinic-info-item strong {
  display: block;

  margin-bottom: 3px;

  color: #092f54;

  font-size: 13px;
}


.clinic-info-item span {
  display: block;

  color: #718399;

  font-size: 12px;
  line-height: 1.5;
}


.clinic-info-divider {
  width: 1px;
  height: 42px;

  margin: 0 25px;

  background: rgba(30, 80, 189, 0.10);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

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


  .clinic-cta-decoration {
    opacity: .45;
    right: -90px;
  }


  .clinic-cta-content {
    max-width: 680px;
  }


  .clinic-contact-info-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  .clinic-info-divider {
    width: 100%;
    height: 1px;

    margin: 0;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .clinic-contact-page {
    padding: 40px 10px 40px;
  }


  .clinic-contact-header {
    margin-bottom: 35px;
  }


  .clinic-contact-header h1 {
    font-size: 42px;

    letter-spacing: -1.5px;
  }


  .clinic-contact-header p {
    font-size: 15px;
  }


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

    gap: 14px;

    margin-bottom: 45px;
  }


  .clinic-contact-card {
    min-height: 230px;

    padding: 22px;
  }


  .clinic-consultation-banner {
    min-height: auto;

    padding: 30px 20px;

    border-radius: 28px;
  }


  .clinic-cta-content h2 {
    margin-top: 24px;

    font-size: 43px;

    letter-spacing: -1.7px;
  }


  .clinic-cta-content p {
    font-size: 15px;
  }


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

    align-items: stretch;

    gap: 10px;

    margin-top: 30px;
  }


  .clinic-cta-primary,
  .clinic-cta-secondary {
    width: 100%;
  }


  .clinic-cta-decoration {
    width: 280px;
    height: 280px;

    right: -150px;

    top: 30%;

    opacity: .18;
  }


  .clinic-cta-circle-one {
    width: 280px;
    height: 280px;
  }


  .clinic-cta-circle-two {
    width: 190px;
    height: 190px;

    right: 45px;
    top: 45px;
  }


  .clinic-cta-medical-icon {
    width: 80px;
    height: 80px;

    right: 100px;
    top: 100px;

    font-size: 35px;
  }


  .clinic-contact-info-bar {
    padding: 22px;
  }


  .clinic-info-item {
    align-items: flex-start;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .clinic-contact-header h1 {
    font-size: 36px;
  }


  .clinic-cta-content h2 {
    font-size: 37px;
  }


  .clinic-contact-card {
    min-height: 215px;
  }

}



/* =========================================================
   GOOGLE REVIEW SECTION
========================================================= */

.google-review-section {
  padding: 70px 0px;
  width: 100%;

}


/* =========================================================
   HEADER
========================================================= */

.google-review-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}


.google-review-heading {
  max-width: 720px;
}


.google-review-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 12px;

  color: #5f6b7a;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1.2px;
}


.google-logo-small {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 25px;
  height: 25px;

  border-radius: 7px;

  background: #ffffff;

  color: #4285f4;

  font-size: 15px;
  font-weight: 800;

  box-shadow:
    0 3px 12px rgba(20, 50, 90, 0.08);
}


.google-review-heading h2 {
  margin: 0 0 12px;

  color: #082F55;

  font-size: 40px;

  line-height: 1.08;

  letter-spacing: -1.8px;

  font-weight: 750;
}

.owl-item {

  padding: 20px 0px;
}

.google-review-heading h2 span {
  color: #2967ad;
}

.google-review-heading p {
  max-width: 650px;

  margin: 0;

  color: #708096;

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================================
   RATING SUMMARY
========================================================= */

.google-rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;

  min-width: 265px;

  padding: 17px 20px;

  background: rgba(255, 255, 255, 0.75);

  border: 1px solid rgba(30, 80, 189, 0.10);

  border-radius: 17px;

  box-shadow:
    0 12px 35px rgba(8, 47, 84, 0.06);

  backdrop-filter: blur(14px);
}


.google-rating-logo {
  width: 47px;
  height: 47px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: #ffffff;

  color: #4285f4;

  font-size: 25px;
  font-weight: 800;

  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.08);
}


.google-rating-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.google-rating-top {
  display: flex;
  align-items: center;
  gap: 9px;
}


.google-rating-top strong {
  color: #173b61;

  font-size: 13px;
}


.google-rating-content>span {
  color: #8290a0;

  font-size: 11px;
}


.google-rating-stars {
  color: #fbbc04;

  font-size: 12px;

  letter-spacing: 1px;
}


/* =========================================================
   REVIEW CARD
========================================================= */

.google-review-card {
  position: relative;

  min-height: 325px;

  padding: 25px;

  background: #ffffff;

  border: 1px solid #e4e9ef;

  border-radius: 18px;

  box-shadow:
    0 7px 25px rgba(18, 53, 84, 0.055);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}


.google-review-card:hover {
  transform: translateY(-5px);

  border-color: #d5deea;

  box-shadow:
    0 18px 45px rgba(18, 53, 84, 0.11);
}


/* =========================================================
   CARD TOP
========================================================= */

.google-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 22px;
}


.google-review-source {
  display: flex;
  align-items: center;
  gap: 10px;
}


.google-g-icon,
.google-mini-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  color: #4285f4;

  font-weight: 800;

  box-shadow:
    0 3px 12px rgba(0, 0, 0, 0.08);
}


.google-g-icon {
  width: 40px;
  height: 40px;

  border: 1px solid #edf0f4;

  border-radius: 11px;

  font-size: 20px;
}


.google-review-source div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}


.google-review-source strong {
  color: #173b61;

  font-size: 14px;
}


.google-review-source span {
  color: #929daa;

  font-size: 11px;
}


.google-review-google-icon {
  color: #8b98a7;

  font-size: 20px;
}


/* =========================================================
   STARS
========================================================= */

.google-review-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  margin-bottom: 18px;
}


.google-stars {
  display: flex;
  gap: 2px;
}


.google-stars i {
  color: #d9dee5;

  font-size: 17px;
}


.google-stars i.active {
  color: #fbbc04;
}


.google-review-verified {
  padding: 5px 8px;

  border-radius: 6px;

  background: #f3f8f5;

  color: #218653;

  font-size: 9px;

  font-weight: 700;

  white-space: nowrap;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.google-review-text {
  min-height: 105px;

  color: #465a70;

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================================
   AUTHOR
========================================================= */

.google-review-author {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-top: 23px;

  padding-top: 18px;

  border-top: 1px solid #edf0f3;
}


.google-review-author img {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  border-radius: 50%;

  object-fit: cover;
}


.google-review-author-info {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 3px;
}


.google-review-author-info strong {
  color: #173b61;

  font-size: 13px;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}


.google-review-author-info span {
  color: #8b97a5;

  font-size: 11px;
}


.google-review-check {
  margin-left: auto;

  width: 25px;
  height: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eaf7ef;

  color: #219653;

  font-size: 13px;
}


/* =========================================================
   OWL NAVIGATION
========================================================= */




.google-review-carousel .owl-nav {
  display: flex;

  gap: 9px;

  margin-top: 5px;
}


.google-review-carousel .owl-nav button {
  width: 42px;
  height: 42px;

  display: inline-flex !important;

  align-items: center;
  justify-content: center;

  margin: 0 !important;

  border: 1px solid #dce3eb !important;

  border-radius: 50% !important;

  background: #ffffff !important;

  color: #173b61 !important;

  transition: all .2s ease;
}


.google-review-carousel .owl-nav button:hover {
  background: #173b61 !important;

  border-color: #173b61 !important;

  color: #ffffff !important;
}


.google-review-carousel .owl-dots {
  margin-top: 20px;
  display: none;
}


.google-review-carousel .owl-dot span {
  width: 7px !important;
  height: 7px !important;

  margin: 5px !important;

  background: #d4dce5 !important;
}


.google-review-carousel .owl-dot.active span {
  width: 22px !important;

  border-radius: 10px !important;

  background: #4285f4 !important;
}


/* =========================================================
   FOOTER GOOGLE BAR
========================================================= */

.google-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 20px;

  padding: 20px 23px;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(30, 80, 189, 0.10);

  border-radius: 17px;

  backdrop-filter: blur(14px);
}


.google-review-footer-left {
  display: flex;
  align-items: center;

  gap: 12px;
}


.google-mini-logo {
  width: 40px;
  height: 40px;

  border-radius: 10px;

  font-size: 19px;
}


.google-review-footer-left strong {
  display: block;

  color: #173b61;

  font-size: 13px;
}


.google-review-footer-left span {
  display: block;

  margin-top: 3px;

  color: #8996a5;

  font-size: 11px;
}


.google-review-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 11px 17px;

  border: 1px solid #d8e0e8;

  border-radius: 10px;

  background: #ffffff;

  color: #173b61;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  transition: all .2s ease;
}


.google-review-button:hover {
  background: #173b61;

  border-color: #173b61;

  color: #ffffff;
}


.google-review-button i {
  font-size: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .google-review-header {
    align-items: flex-start;

    flex-direction: column;
  }

  .google-rating-summary {
    min-width: auto;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .google-review-section {
    padding: 65px 15px;
  }


  .google-review-header {
    gap: 25px;

    margin-bottom: 30px;
  }


  .google-review-heading h2 {
    font-size: 36px;

    letter-spacing: -1.2px;
  }


  .google-review-heading p {
    font-size: 14px;
  }


  .google-rating-summary {
    width: 100%;
  }


  .google-review-card {
    min-height: 315px;

    padding: 22px;
  }


  .google-review-footer {
    align-items: flex-start;

    flex-direction: column;
  }


  .google-review-button {
    width: 100%;

    justify-content: center;
  }

}


/* =========================================================
   FAQ SECTION
========================================================= */
.clinic-faq-section {
  position: relative;
  background:
    #e1f3ff;
  padding: 70px 0;
}

.clinic-faq-container {
  margin: 0 auto;
  width: min(1400px, calc(100% - 100px));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;

  overflow: visible !important;
}

.clinic-faq-intro {
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 110px !important;
  align-self: start !important;
  height: fit-content !important;
  z-index: 10;
}

.clinic-faq-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;

  border: 1px solid rgba(30, 80, 189, 0.14);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #031f3c;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.clinic-faq-label i {
  font-size: 17px;
}


.clinic-faq-intro h2 {
  margin: 20px 0 18px;

  color: #082F55;

  font-size: 40px;
  line-height: 1.08;
  font-weight: 700;

  letter-spacing: -0.035em;
}

.clinic-faq-intro h2 span {
  display: block;
  color: #2967AD;
}


.clinic-faq-intro>p {
  max-width: 520px;

  margin: 0;

  color: #12426A;

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================================
   PRIVACY NOTE
========================================================= */

.clinic-faq-note {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 30px;
  padding: 17px;

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.58);

  box-shadow:
    0 10px 35px rgba(16, 42, 67, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.clinic-faq-note-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(30, 80, 189, 0.09);
  color: #12426A;
  ;

  font-size: 20px;
}

.clinic-faq-note strong {
  display: block;

  margin-bottom: 3px;

  color: #102a43;

  font-size: 14px;
}

.clinic-faq-note span {
  display: block;

  color: #7b8794;

  font-size: 12px;
  line-height: 1.5;
}


/* =========================================================
   CTA
========================================================= */

.clinic-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 28px;

  padding: 13px 20px;

  border-radius: 12px;

  background: #12426A;
  ;
  color: #fff;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  box-shadow: 0 10px 25px rgba(30, 80, 189, 0.18);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.clinic-faq-cta i {
  font-size: 18px;
}

.clinic-faq-cta:hover {
  color: #fff;
  background: #17439e;

  transform: translateY(-2px);

  box-shadow: 0 15px 30px rgba(30, 80, 189, 0.24);
}


/* =========================================================
   FAQ LIST
========================================================= */

.clinic-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


/* =========================================================
   FAQ CARD - GLASSMORPHISM
========================================================= */

.clinic-faq-item {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.62);

  box-shadow:
    0 8px 30px rgba(16, 42, 67, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.clinic-faq-item:hover {
  border-color: rgba(30, 80, 189, 0.16);

  box-shadow:
    0 14px 38px rgba(16, 42, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* =========================================================
   QUESTION
========================================================= */

.clinic-faq-question {
  margin: 0;
}

.clinic-faq-button {
  width: 100%;

  display: grid;
  grid-template-columns: 42px 1fr 40px;

  align-items: center;
  gap: 15px;

  padding: 14px 22px;

  border: 0;
  outline: none;

  background: transparent;

  color: #102a43;

  text-align: left;

  cursor: pointer;
}


/* Remove bootstrap default */
.clinic-faq-button:focus {
  box-shadow: none;
  outline: none;
}


/* =========================================================
   NUMBER
========================================================= */

.clinic-faq-number {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: rgba(30, 80, 189, 0.07);

  color: #12426A;
  ;

  font-size: 12px;
  font-weight: 700;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}


/* =========================================================
   QUESTION TEXT
========================================================= */

.clinic-faq-question-text {
  padding-right: 10px;

  color: #102a43;

  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;

  transition: color 0.25s ease;
}


/* =========================================================
   TOGGLE
========================================================= */

.clinic-faq-toggle {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(30, 80, 189, 0.13);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.65);

  color: #12426A;
  ;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.clinic-faq-toggle i {
  font-size: 19px;
  transition: transform 0.3s ease;
}


/* Open state */

.clinic-faq-button:not(.collapsed) .clinic-faq-number {
  background: #12426A;
  ;
  color: #fff;
}

.clinic-faq-button:not(.collapsed) .clinic-faq-question-text {
  color: #12426A;
  ;
}

.clinic-faq-button:not(.collapsed) .clinic-faq-toggle {
  background: #12426A;
  ;
  color: #fff;

  transform: rotate(45deg);
}


/* =========================================================
   ANSWER
========================================================= */

.clinic-faq-answer {
  padding: 0 78px 25px 78px;

  color: #667085;

  font-size: 14px;
  line-height: 1.8;
}

.clinic-faq-answer p {
  margin-bottom: 10px;
}

.clinic-faq-answer p:last-child {
  margin-bottom: 0;
}

.clinic-faq-answer a {
  color: #1e50bd;
  font-weight: 600;
  text-decoration: none;
}

.clinic-faq-answer a:hover {
  text-decoration: underline;
}


/* =========================================================
   BOOTSTRAP COLLAPSE TRANSITION
========================================================= */

.clinic-faq-item .collapsing {
  transition: height 0.3s ease;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .clinic-faq-section {
    padding: 80px 20px;
  }

  .clinic-faq-container {
    grid-template-columns: 1fr;
    gap: 45px;


  }

  .clinic-faq-intro {
    position: relative;
    top: auto;
  }

  .clinic-faq-intro h2 {
    font-size: 40px;
  }
}


@media (max-width: 767px) {

  .clinic-faq-section {
    padding: 40px 0px;
  }

  .clinic-faq-intro h2 {
    font-size: 34px;
  }

  .clinic-faq-intro>p {
    font-size: 14px;
    line-height: 1.7;
  }

  .clinic-faq-button {
    grid-template-columns: 34px 1fr 34px;
    gap: 11px;

    padding: 17px 15px;
  }

  .clinic-faq-number {
    width: 34px;
    height: 34px;
  }

  .clinic-faq-toggle {
    width: 34px;
    height: 34px;
  }

  .clinic-faq-question-text {
    font-size: 14px;
  }

  .clinic-faq-answer {
    padding: 0 15px 20px 60px;

    font-size: 13px;
    line-height: 1.7;
  }

  .clinic-faq-note {
    align-items: flex-start;
  }

  .clinic-faq-cta {
    width: 100%;
    justify-content: center;
  }
}


@media (max-width: 480px) {

  .clinic-faq-intro h2 {
    font-size: 29px;
  }

  .clinic-faq-label {
    font-size: 10px;
  }

  .clinic-faq-button {
    grid-template-columns: 30px 1fr 32px;
    gap: 9px;
  }

  .clinic-faq-number {
    width: 30px;
    height: 30px;

    font-size: 10px;
  }

  .clinic-faq-toggle {
    width: 32px;
    height: 32px;
  }

  .clinic-faq-question-text {
    font-size: 13px;
  }

  .clinic-faq-answer {
    padding-left: 48px;
  }
}

/* =========================================================
   HOME DOCTORS SECTION
========================================================= */

.home-doctors-section {
  width: 100%;
  padding: 70px 0px;
  background: #ffffff;
}

.home-doctors-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0px;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.home-doctors-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.home-doctors-title {
  max-width: 720px;
}

.home-doctors-label {
  display: block;
  margin-bottom: 10px;
  color: #2867ad;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.home-doctors-title h2 {
  margin: 0;
  color: #092f55;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
}

.home-doctors-view-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #092f55;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.home-doctors-view-all i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.home-doctors-view-all:hover {
  color: #2867ad;
}

.home-doctors-view-all:hover i {
  transform: translateX(4px);
}


/* =========================================================
   DOCTORS GRID
========================================================= */

.home-doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}


/* =========================================================
   DOCTOR CARD
========================================================= */

.doctor-profile-card {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e4e6eb;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(15, 48, 80, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.doctor-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(15, 48, 80, 0.12);
}


/* =========================================================
   DOCTOR IMAGE
========================================================= */

.doctor-profile-photo {
  position: relative;
  display: block;
  width: 100%;
  height: 280px !important;
  overflow: hidden;
  background: #eef3f7;
}

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

.doctor-profile-card:hover .doctor-profile-photo img {
  transform: scale(1.025);
}


/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.doctor-experience-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 38px;
  padding: 0 16px;

  background: rgba(255, 255, 255, 0.96);
  color: #092f55;

  border-radius: 30px;

  font-size: 14px;
  line-height: 1;
  font-weight: 700;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   CARD BODY
========================================================= */

.doctor-profile-body {
  display: flex;
  flex-direction: column;

  padding: 10px;
}


/* =========================================================
   SPECIALITY
========================================================= */

.doctor-speciality {
  display: block;
  margin-bottom: 10px;

  color: #2867ad;

  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}


/* =========================================================
   DOCTOR NAME
========================================================= */

.doctor-profile-body h3 {
  margin: 0 0 10px;
  color: #092f55;
  font-size: 23px !important;
  line-height: 1.15;
  font-weight: 500;
}


/* =========================================================
   QUALIFICATION
========================================================= */

.doctor-qualification {
  margin: 0;


  color: #5e646c;

  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}


/* =========================================================
   LOCATION
========================================================= */

.doctor-location {
  display: flex;
  align-items: center;
  color: #5d636b;
  font-size: 14px;
  line-height: 1.4;
}

.doctor-location i {
  flex: 0 0 auto;
  color: #2867ad;
  font-size: 17px;
}


/* =========================================================
   CARD ACTIONS
========================================================= */

.doctor-card-actions {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 12px;

  margin-top: auto;
  padding-top: 25px;
}


/* Profile Button */

.doctor-profile-btn,
.doctor-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;

  border-radius: 7px;

  font-size: 15px;
  font-weight: 500;

  text-decoration: none;

  transition: all 0.25s ease;
}


/* Profile */

.doctor-profile-btn {
  color: #092f55;
  background: #ffffff;
  border: 1px solid #d8dce2;
}

.doctor-profile-btn:hover {
  color: #092f55;
  background: #f5f7fa;
  border-color: #bfc6ce;
}


/* Book Slot */

.doctor-book-btn {
  color: #ffffff;
  background: #062f55;
  border: 1px solid #062f55;
}

.doctor-book-btn:hover {
  color: #ffffff;
  background: #0b426f;
  border-color: #0b426f;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1500px) {

  .home-doctors-wrap {
    padding: 0 28px;
  }

  .home-doctors-grid {
    gap: 26px;
  }



  .doctor-profile-body {
    padding: 10px 16px;
  }

  .doctor-profile-body h3 {
    font-size: 23px;
  }

  .doctor-qualification {
    font-size: 14px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .home-doctors-section {
    padding: 65px 0;
  }

  .home-doctors-head {
    align-items: flex-start;
  }

  .home-doctors-title h2 {
    font-size: 32px;
  }

  .home-doctors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .doctor-profile-photo {
    height: 360px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .home-doctors-section {
    padding: 40px 0;
  }

  .home-doctors-wrap {
    padding: 0 16px;
  }

  .home-doctors-head {
    display: block;
    margin-bottom: 25px;
  }

  .home-doctors-title {
    max-width: 100%;
  }

  .home-doctors-label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .home-doctors-title h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .home-doctors-view-all {
    margin-top: 15px;
  }

  .home-doctors-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .doctor-profile-card {
    border-radius: 22px;
  }

  .doctor-profile-photo {
    height: 350px;
  }

  .doctor-experience-badge {
    top: 14px;
    right: 14px;
    min-height: 35px;
    padding: 0 13px;
    font-size: 13px;
  }

  .doctor-profile-body {

    padding: 23px 22px 22px;
  }

  .doctor-speciality {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .doctor-profile-body h3 {
    font-size: 25px;
  }

  .doctor-qualification {
    font-size: 15px;
    min-height: auto;
  }

  .doctor-location {
    margin-top: 18px;
    font-size: 15px;
  }

  .doctor-card-actions {
    gap: 10px;
    padding-top: 22px;
  }

  .doctor-profile-btn,
  .doctor-book-btn {
    min-height: 52px;
    border-radius: 13px;
    font-size: 16px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .doctor-profile-photo {
    height: 310px;
  }

  .doctor-profile-body {
    padding: 20px 18px;
  }

  .doctor-profile-body h3 {
    font-size: 23px;
  }

  .doctor-card-actions {
    grid-template-columns: 1fr 1.1fr;
  }

}

/* =========================================================
   HOME SERVICES SECTION
========================================================= */

.home-service-section {
  position: relative;
  width: 100%;
  padding: 70px 0 50px;
  background: #e1f3ff;
}

.home-service-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.home-service-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
  padding: 0 0px;
}

.home-service-heading {
  max-width: 760px;
}

.home-service-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 12px;

  color: #2867ad;

  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;

  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-service-label i {
  font-size: 15px;
}

.home-service-heading h2 {
  margin: 0;

  color: #092f55;

  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
}

.home-service-heading h2 span {
  display: inline;
  color: #2867ad;
}

.home-service-heading p {
  max-width: 690px;

  margin: 16px 0 0;

  color: #69717a;

  font-size: 16px;
  line-height: 1.65;
}


/* =========================================================
   VIEW ALL
========================================================= */

.home-service-view-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding-bottom: 5px;

  color: #092f55;

  font-size: 15px;
  font-weight: 600;

  text-decoration: none;
  white-space: nowrap;

  transition: all 0.25s ease;
}

.home-service-view-all i {
  font-size: 13px;

  transition: transform 0.25s ease;
}

.home-service-view-all:hover {
  color: #2867ad;
}

.home-service-view-all:hover i {
  transform: translateX(4px);
}


/* =========================================================
   SERVICE GRID
========================================================= */

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.home-service-card {
  display: block;

  min-width: 0;

  text-decoration: none;

  border-radius: 30px;

  outline: none;

}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.home-service-image {
  position: relative;

  width: 100%;
  height: 300px;

  overflow: visible;

  border-radius: 30px;

  background: #092f55;

  isolation: isolate;
}


/* Actual Image */

.home-service-image img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 30px;

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}


/* =========================================================
   IMAGE GRADIENT
========================================================= */

.home-service-gradient {
  position: absolute;
  inset: 0;

  z-index: 1;

  border-radius: 30px;

  background:
    linear-gradient(to top,
      rgba(3, 24, 52, 0.92) 0%,
      rgba(3, 24, 52, 0.55) 28%,
      rgba(3, 24, 52, 0.08) 65%,
      rgba(3, 24, 52, 0) 100%);

  pointer-events: none;
}


/* =========================================================
   HOVER IMAGE
========================================================= */


/* =========================================================
   SERVICE CONTENT
========================================================= */

.home-service-content {
  position: absolute;
  left: 28px;
  right: 65px;
  bottom: 40px;
  z-index: 3;
}

.home-service-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.3px;
}


/* =========================================================
   ARROW BUTTON
========================================================= */

.home-service-arrow {
  position: absolute;

  right: -16px;
  bottom: -10px;

  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 72px;
  height: 72px;

  color: #ffffff;

  background: #062f55;

  border: 4px solid #ffffff;
  border-radius: 50%;

  box-sizing: content-box;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.home-service-arrow i {
  font-size: 39px;
  font-weight: 400;
  transform: rotate(35deg);

  transition: transform 0.3s ease;
}

.home-service-card:hover .home-service-arrow {
  transform: translateY(-3px);
}

.home-service-card:hover .home-service-arrow i {
  transform: rotate(400deg);
}


/* =========================================================
   TABLET - LARGE
========================================================= */

@media (max-width: 1250px) {

  .home-service-wrap {
    padding: 0 24px;
  }

  .home-service-head {
    padding: 0;
  }

  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .home-service-image {
    height: 330px;
  }

  .home-service-content {
    left: 40px;
    bottom: 38px;
  }

  .home-service-content h3 {
    font-size: 29px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .home-service-section {
    padding: 70px 0;
  }

  .home-service-head {
    align-items: flex-start;
    flex-direction: column;

    gap: 20px;
    margin-bottom: 32px;
  }

  .home-service-heading h2 {
    font-size: 34px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .home-service-section {
    padding: 40px 0;
  }

  .home-service-wrap {
    padding: 0 16px;
  }

  .home-service-head {
    margin-bottom: 28px;
  }

  .home-service-label {
    font-size: 12px;
  }

  .home-service-heading h2 {
    font-size: 36px;
    line-height: 1.25;
  }

  .home-service-heading h2 span {
    display: block;
  }

  .home-service-heading p {
    margin-top: 13px;
    font-size: 15px;
    line-height: 1.6;
  }

  .home-service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .home-service-image {
    height: 300px;
    border-radius: 24px;
  }

  .home-service-image img,
  .home-service-gradient {
    border-radius: 24px;
  }

  .home-service-content {
    left: 28px;
    right: 75px;
    bottom: 35px;
  }

  .home-service-content h3 {
    font-size: 27px;
    line-height: 1.15;
  }

  .home-service-arrow {
    right: 25px;
    bottom: -16px;

    width: 62px;
    height: 62px;

    border-width: 8px;
  }

  .home-service-arrow i {
    font-size: 17px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .home-service-image {
    height: 275px;
  }

  .home-service-content {
    left: 23px;
    bottom: 31px;
  }

  .home-service-content h3 {
    font-size: 24px;
  }

  .home-service-arrow {
    right: 21px;
  }

}


/* =========================================================
   MAXBLISS - WHY CHOOSE SECTION
========================================================= */

.maxbliss-why-section {
  position: relative;
  width: 100%;
  overflow: hidden;

  padding: 70px 0px;

  background: #09263d;
}

.google {
  width: 30px !important;
}

.maxbliss-why-wrap {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;
  padding: 0 10px;
}


/* =========================================================
   HEADER
========================================================= */

.maxbliss-why-header {
  max-width: 900px;

  margin: 0 auto 88px;

  text-align: center;
}


/* Small Label */

.maxbliss-why-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-bottom: 22px;

  color: #4285f4;

  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;

  letter-spacing: 1px;
  text-transform: uppercase;
}

.maxbliss-why-label i {
  font-size: 18px;

}


/* Main Heading */

.maxbliss-why-header h2 {
  margin: 0;

  color: #ffffff;

  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;

  letter-spacing: -0.8px;
}


/* Description */

.maxbliss-why-header p {
  max-width: 850px;

  margin: 18px auto 0;

  color: #c9d8e8;

  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}


/* =========================================================
   FEATURES GRID
========================================================= */

.maxbliss-why-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  width: 100%;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.maxbliss-why-item {
  position: relative;

  min-height: 240px;

  padding: 10px 34px 10px 35px;
}


/* Vertical Separator */

.maxbliss-why-item:not(:first-child) {
  border-left: 3px solid #4285f4;
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.maxbliss-why-content {
  max-width: 310px;
}


/* Feature Heading */

.maxbliss-why-content h3 {
  margin: 0 0 10px;

  color: white;

  font-size: 32px;
  line-height: 1.18;
  font-weight: 600;

  letter-spacing: -0.4px;
}


/* Feature Highlight */

.maxbliss-why-content span {
  display: block;

  margin-bottom: 13px;

  color: #4285f4;


  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}


/* Feature Description */

.maxbliss-why-content p {
  margin: 0;

  color: #c4d5e7;

  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
}


/* =========================================================
   DESKTOP REFINEMENT
========================================================= */

@media (max-width: 1400px) {

  .maxbliss-why-wrap {
    max-width: 1300px;
  }

  .maxbliss-why-header {
    margin-bottom: 70px;
  }

  .maxbliss-why-content h3 {
    font-size: 29px;
  }

  .maxbliss-why-content span {
    font-size: 17px;
  }

  .maxbliss-why-content p {
    font-size: 16px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .maxbliss-why-section {
    padding: 70px 0 70px;
  }

  .maxbliss-why-header {
    margin-bottom: 55px;
  }

  .maxbliss-why-header h2 {
    font-size: 38px;
  }

  .maxbliss-why-header p {
    font-size: 18px;
  }

  .maxbliss-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 45px;
  }

  .maxbliss-why-item {
    min-height: 200px;
  }

  .maxbliss-why-item:nth-child(3) {
    border-left: 0;
  }

  .maxbliss-why-item:nth-child(3),
  .maxbliss-why-item:nth-child(4) {
    padding-top: 25px;
    border-top: 2px solid rgba(99, 230, 220, 0.45);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .maxbliss-why-section {
    padding: 40px 0 40px;
  }

  .maxbliss-why-wrap {
    padding: 0 20px;
  }

  .maxbliss-why-header {
    margin-bottom: 45px;
  }

  .maxbliss-why-label {
    margin-bottom: 15px;

    font-size: 13px;
    letter-spacing: 0.8px;
  }

  .maxbliss-why-label i {
    font-size: 15px;
  }

  .maxbliss-why-header h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .maxbliss-why-header p {
    margin-top: 14px;

    font-size: 16px;
    line-height: 1.55;
  }


  /* One column */

  .maxbliss-why-grid {
    display: block;
  }


  /* Mobile separator */

  .maxbliss-why-item {
    min-height: auto;

    padding: 0 0 28px 22px;

    border-left: 3px solid #63e6dc;
  }

  .maxbliss-why-item:not(:first-child) {
    padding-top: 28px;

    border-left: 3px solid #63e6dc;
    border-top: 0;
  }


  .maxbliss-why-content {
    max-width: 100%;
  }

  .maxbliss-why-content h3 {
    margin-bottom: 8px;

    font-size: 25px;
  }

  .maxbliss-why-content span {
    margin-bottom: 9px;

    font-size: 15px;
  }

  .maxbliss-why-content p {
    font-size: 15px;
    line-height: 1.55;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .maxbliss-why-wrap {
    padding: 0 17px;
  }

  .maxbliss-why-header h2 {
    font-size: 27px;
  }

  .maxbliss-why-header p {
    font-size: 15px;
  }

  .maxbliss-why-content h3 {
    font-size: 23px;
  }

}


/* =========================================================
   MAXBLISS CONTACT PAGE
   Theme: Navy + White + Healthcare Blue
========================================================= */

.maxbliss-contact-page {
  background: #f6f9fd;
  padding: 70px 0 50px;
  color: #173657;
}


/* =========================================================
   COMMON
========================================================= */

.maxbliss-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0969d7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.maxbliss-section-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: #0969d7;
  display: inline-block;
}

.maxbliss-contact-page h1,
.maxbliss-contact-page h2,
.maxbliss-contact-page h3,
.maxbliss-contact-page p {
  margin-top: 0;
}


/* =========================================================
   INTRO
========================================================= */

.maxbliss-contact-intro {
  max-width: 820px;
  margin: 0 auto 45px;
  text-align: center;
}

.maxbliss-contact-intro h1 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  color: #082d59;
  margin-bottom: 18px;
}

.maxbliss-contact-intro h1 span {
  color: #0969d7;
}

.maxbliss-contact-intro p {
  max-width: 700px;
  margin: auto;
  color: #65788e;
  font-size: 16px;
  line-height: 1.25;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.maxbliss-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.maxbliss-contact-info-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 23px;
  background: #ffffff;
  border: 1px solid #dce7f2;
  border-radius: 14px;
  text-decoration: none;
  transition: all .25s ease;
  overflow: hidden;
}

.maxbliss-contact-info-card:hover {
  border-color: #0969d7;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(8, 45, 89, .09);
}

.maxbliss-info-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf4ff;
  color: #0969d7;
  border-radius: 12px;
  font-size: 23px;
}

.maxbliss-info-content {
  min-width: 0;
  padding-right: 20px;
}

.maxbliss-info-content span,
.maxbliss-info-content small {
  display: block;
}

.maxbliss-info-content span {
  font-size: 12px;
  color: #72859b;
  font-weight: 600;
  margin-bottom: 5px;
}

.maxbliss-info-content strong {
  display: block;
  color: #12385f;
  font-size: 15px;
  line-height: 1.45;
}

.maxbliss-info-content small {
  color: #8293a5;
  font-size: 12px;
  margin-top: 3px;
}

.maxbliss-info-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #7c91a7;
}


/* =========================================================
   MAIN CONTACT
========================================================= */

.maxbliss-contact-main {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}


/* =========================================================
   LOCATION CARD
========================================================= */

.maxbliss-location-card,
.maxbliss-form-card {
  background: #ffffff;
  border: 1px solid #dce7f2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(8, 45, 89, .05);
}

.maxbliss-card-heading {
  padding: 30px 32px 22px;
}

.maxbliss-card-heading h2 {
  color: #082d59;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 10px;
}

.maxbliss-card-heading p {
  color: #71849a;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}


/* =========================================================
   MAP
========================================================= */

.maxbliss-map-wrapper {
  padding: 0 22px;
}

.maxbliss-map-wrapper iframe {
  width: 100%;
  display: block;
  border-radius: 12px;
  filter: saturate(.85);
}


/* =========================================================
   ADDRESS + TIMING
========================================================= */

.maxbliss-address-box,
.maxbliss-timing-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 18px 22px 0;
  padding: 17px;
  background: #f5f9fd;
  border: 1px solid #e1ebf4;
  border-radius: 12px;
}

.maxbliss-timing-box {
  margin-bottom: 22px;
}

.maxbliss-address-icon,
.maxbliss-timing-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #ffffff;
  color: #0969d7;
  font-size: 20px;
}

.maxbliss-address-box span,
.maxbliss-timing-box span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #7a8da1;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.maxbliss-address-box strong,
.maxbliss-timing-box strong {
  display: block;
  color: #163b60;
  font-size: 14px;
  line-height: 1.5;
}


/* =========================================================
   FORM
========================================================= */

.maxbliss-form-card {
  padding-bottom: 30px;
}

.maxbliss-form-card .maxbliss-card-heading {
  background: #082d59;
}

.maxbliss-form-card .maxbliss-card-heading h2 {
  color: #ffffff;
}

.maxbliss-form-card .maxbliss-card-heading p {
  color: #c5d5e7;
}

.maxbliss-form-card .maxbliss-section-label {
  color: #8fc7ff;
}

.maxbliss-form-card .maxbliss-section-label::before {
  background: #8fc7ff;
}

.maxbliss-contact-form {
  padding: 26px 30px 0;
}

.maxbliss-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.maxbliss-full-width {
  grid-column: 1 / -1;
}

.maxbliss-form-group label {
  display: block;
  color: #294866;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.maxbliss-form-group label em {
  color: #0969d7;
  font-style: normal;
}

.maxbliss-input-wrapper,
.maxbliss-textarea-wrapper {
  position: relative;
}

.maxbliss-input-wrapper>i,
.maxbliss-textarea-wrapper>i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7890a8;
  font-size: 18px;
  pointer-events: none;
}

.maxbliss-textarea-wrapper>i {
  top: 19px;
  transform: none;
}

.maxbliss-input-wrapper input,
.maxbliss-input-wrapper select,
.maxbliss-textarea-wrapper textarea {
  width: 100%;
  border: 1px solid #d7e3ef;
  background: #f9fbfd;
  color: #183b5d;
  border-radius: 9px;
  outline: none;
  font-size: 14px;
  transition: all .2s ease;
}

.maxbliss-input-wrapper input,
.maxbliss-input-wrapper select {
  height: 48px;
  padding: 0 15px 0 45px;
}

.maxbliss-textarea-wrapper textarea {
  min-height: 125px;
  padding: 15px 15px 15px 45px;
  resize: vertical;
}

.maxbliss-input-wrapper input:focus,
.maxbliss-input-wrapper select:focus,
.maxbliss-textarea-wrapper textarea:focus {
  border-color: #0969d7;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(9, 105, 215, .08);
}

.maxbliss-input-wrapper select {
  appearance: auto;
}

.maxbliss-field-error {
  display: block;
  color: #d93636;
  font-size: 11px;
  margin-top: 5px;
}


/* =========================================================
   ALERTS
========================================================= */

.maxbliss-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 30px 0;
  padding: 13px 15px;
  border-radius: 9px;
  font-size: 13px;
}

.maxbliss-alert-success {
  background: #edf9f1;
  border: 1px solid #c9ead4;
  color: #267443;
}

.maxbliss-alert-error {
  background: #fff2f2;
  border: 1px solid #f0cccc;
  color: #b43636;
}


/* =========================================================
   SUBMIT
========================================================= */

.maxbliss-submit-btn {
  width: 100%;
  height: 54px;
  margin-top: 24px;
  border: 0;
  border-radius: 9px;
  background: #082d59;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
}

.maxbliss-submit-btn:hover {
  background: #0969d7;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(9, 105, 215, .2);
}

.maxbliss-submit-btn i {
  font-size: 19px;
}

.maxbliss-form-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: #8797a8;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.maxbliss-form-note i {
  color: #0969d7;
  font-size: 16px;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.maxbliss-about-contact {
  margin-top: 55px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  background: #ffffff;
  border: 1px solid #dce7f2;
  border-radius: 18px;
}

.maxbliss-about-content h2 {
  max-width: 650px;
  color: #082d59;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 18px;
}

.maxbliss-about-content h2 span {
  color: #0969d7;
}

.maxbliss-about-content p {
  max-width: 750px;
  color: #687d93;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.maxbliss-mission-content {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: #082d59;
  border-radius: 14px;
  align-self: center;
}

.maxbliss-mission-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  color: #8fc7ff;
  font-size: 24px;
}

.maxbliss-mission-content span {
  color: #8fc7ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.maxbliss-mission-content p {
  color: #d4e1ef;
  font-size: 14px;
  line-height: 1.7;
  margin: 7px 0 0;
}


/* =========================================================
   SPECIALTIES
========================================================= */

.maxbliss-specialties-section {
  padding-top: 60px;
}

.maxbliss-specialties-heading {
  text-align: center;
  margin-bottom: 32px;
}

.maxbliss-specialties-heading h2 {
  color: #082d59;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 0;
}

.maxbliss-specialties-heading h2 span {
  color: #0969d7;
}

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

.maxbliss-specialty-card {
  background: #ffffff;
  border: 1px solid #dce7f2;
  border-radius: 14px;
  padding: 25px;
  transition: all .25s ease;
}

.maxbliss-specialty-card:hover {
  transform: translateY(-4px);
  border-color: #b8d8f7;
  box-shadow: 0 12px 30px rgba(8, 45, 89, .08);
}

.maxbliss-specialty-card>i {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #eaf4ff;
  color: #0969d7;
  font-size: 23px;
  margin-bottom: 18px;
}

.maxbliss-specialty-card h3 {
  color: #153a5e;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 750;
  margin-bottom: 8px;
}

.maxbliss-specialty-card p {
  color: #71849a;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 0;
}


/* =========================================================
   CTA
========================================================= */

.maxbliss-contact-cta {
  margin-top: 55px;
  padding: 30px 35px;
  background: #082d59;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.maxbliss-contact-cta>div:first-child span {
  display: block;
  color: #8fc7ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}

.maxbliss-contact-cta h2 {
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 0;
}

.maxbliss-cta-actions {
  display: flex;
  gap: 10px;
}

.maxbliss-cta-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #ffffff;
  color: #082d59;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.maxbliss-cta-actions a:hover {
  background: #0969d7;
  color: #ffffff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .maxbliss-contact-page {
    padding: 55px 0 70px;
  }

  .maxbliss-contact-intro h1 {
    font-size: 40px;
  }

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

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

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

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

}


@media (max-width: 767px) {

  .maxbliss-contact-page {
    padding: 40px 0 55px;
  }

  .maxbliss-contact-intro {
    margin-bottom: 30px;
  }

  .maxbliss-contact-intro h1 {
    font-size: 32px;
  }

  .maxbliss-contact-intro p {
    font-size: 14px;
  }

  .maxbliss-contact-info-card {
    padding: 18px;
  }

  .maxbliss-card-heading {
    padding: 25px 20px 20px;
  }

  .maxbliss-card-heading h2 {
    font-size: 24px;
  }

  .maxbliss-map-wrapper {
    padding: 0 15px;
  }

  .maxbliss-map-wrapper iframe {
    height: 350px;
  }

  .maxbliss-address-box,
  .maxbliss-timing-box {
    margin-left: 15px;
    margin-right: 15px;
  }

  .maxbliss-contact-form {
    padding: 22px 20px 0;
  }

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

  .maxbliss-full-width {
    grid-column: auto;
  }

  .maxbliss-alert {
    margin-left: 20px;
    margin-right: 20px;
  }

  .maxbliss-about-contact {
    margin-top: 35px;
    padding: 25px 20px;
    gap: 25px;
  }

  .maxbliss-about-content h2 {
    font-size: 27px;
  }

  .maxbliss-mission-content {
    padding: 22px;
  }

  .maxbliss-specialties-section {
    padding-top: 45px;
  }

  .maxbliss-specialties-heading h2 {
    font-size: 28px;
  }

  .maxbliss-specialties-grid {
    grid-template-columns: 1fr;
  }

  .maxbliss-contact-cta {
    margin-top: 40px;
    padding: 25px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .maxbliss-contact-cta h2 {
    font-size: 23px;
  }

  .maxbliss-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .maxbliss-cta-actions a {
    justify-content: center;
    width: 100%;
  }

}


@media (max-width: 480px) {

  .maxbliss-contact-intro h1 {
    font-size: 28px;
  }

  .maxbliss-info-content strong {
    font-size: 14px;
  }

  .maxbliss-info-arrow {
    right: 14px;
    top: 15px;
  }

}

/* =========================================================
   MAXBLISS BREADCRUMB
========================================================= */

.maxbliss-breadcrumb {
  position: relative;
  min-height: 245px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


/* Dark navy overlay */

.maxbliss-breadcrumb .breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(4, 32, 65, .94) 0%,
      rgba(6, 48, 91, .82) 55%,
      rgba(7, 69, 123, .70) 100%);
}


/* Decorative pattern */

.maxbliss-breadcrumb .breadcrumb-pattern {
  position: absolute;
  inset: 0;
  opacity: .15;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 30%,
      rgba(255, 255, 255, .45) 1px,
      transparent 1px),
    radial-gradient(circle at 85% 70%,
      rgba(255, 255, 255, .35) 1px,
      transparent 1px);
  background-size: 45px 45px, 60px 60px;
}


/* Content */

.maxbliss-breadcrumb .container {
  position: relative;
  z-index: 2;
}

.maxbliss-breadcrumb .breadcrumb-content {
  padding: 48px 0;
}


/* Subtitle */

.maxbliss-breadcrumb .breadcrumb-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #9dd0ff;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .07em;
  text-transform: uppercase;

  margin-bottom: 10px;
}

.maxbliss-breadcrumb .breadcrumb-subtitle::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #72baff;
  display: inline-block;
}


/* Heading */

.maxbliss-breadcrumb h1 {
  margin: 0 0 16px;

  color: #ffffff;

  font-size: 44px;
  line-height: 1.15;

  font-weight: 800;

  letter-spacing: -.02em;
}


/* Navigation */

.maxbliss-breadcrumb .breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  font-size: 14px;
}


/* Home link */

.maxbliss-breadcrumb .breadcrumb-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #ffffff;

  text-decoration: none;
  font-weight: 600;

  transition: color .2s ease;
}

.maxbliss-breadcrumb .breadcrumb-nav a:hover {
  color: #9dd0ff;
}

.maxbliss-breadcrumb .breadcrumb-nav a i {
  font-size: 17px;
}


/* Divider */

.maxbliss-breadcrumb .breadcrumb-nav .divider {
  color: rgba(255, 255, 255, .55);
  font-size: 15px;
}


/* Current page */

.maxbliss-breadcrumb .breadcrumb-nav span {
  color: #9dd0ff;
  font-weight: 600;
}


/* =========================================================
   DECORATIVE HEALTHCARE ELEMENT
========================================================= */

.maxbliss-breadcrumb::after {
  content: "";
  position: absolute;

  right: -100px;
  bottom: -150px;

  width: 360px;
  height: 360px;

  border: 1px solid rgba(157, 208, 255, .20);
  border-radius: 50%;

  box-shadow:
    0 0 0 35px rgba(157, 208, 255, .04),
    0 0 0 70px rgba(157, 208, 255, .03);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

  .maxbliss-breadcrumb {
    min-height: 200px;
  }

  .maxbliss-breadcrumb .breadcrumb-content {
    padding: 38px 0;
  }

  .maxbliss-breadcrumb .breadcrumb-subtitle {
    font-size: 11px;
  }

  .maxbliss-breadcrumb h1 {
    font-size: 32px;
    margin-bottom: 13px;
  }

  .maxbliss-breadcrumb .breadcrumb-nav {
    font-size: 13px;
    gap: 7px;
  }

}


@media (max-width: 480px) {

  .maxbliss-breadcrumb {
    min-height: 175px;
  }

  .maxbliss-breadcrumb .breadcrumb-content {
    padding: 32px 0;
  }

  .maxbliss-breadcrumb h1 {
    font-size: 28px;
  }

  .maxbliss-breadcrumb .breadcrumb-subtitle {
    font-size: 10px;
  }

}

/* =====================================================
   MAXBLISS BLOGS
===================================================== */

.maxbliss-blogs-page {
  background: #f6f9fd;
  padding: 70px 0 80px;
}

.maxbliss-blogs-page .blog-page-head {
  margin-bottom: 40px;
}

.maxbliss-blogs-page .blog-page-copy {
  max-width: 760px;
}

.maxbliss-blogs-page .blog-page-copy h1 {
  color: #082d59;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 15px;
}

.maxbliss-blogs-page .blog-page-copy h1::first-line {
  color: #082d59;
}

.maxbliss-blogs-page .blog-page-copy p {
  color: #71849a;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}


/* BLOG LAYOUT */

.maxbliss-blogs-page .blog-page-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.maxbliss-blogs-page .blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}


/* BLOG CARD */

.maxbliss-blogs-page .blog-list-card {
  background: #fff;
  border: 1px solid #dce7f2;
  border-radius: 14px;
  overflow: hidden;
  transition: .25s ease;
}

.maxbliss-blogs-page .blog-list-card:hover {
  transform: translateY(-4px);
  border-color: #b8d8f7;
  box-shadow: 0 12px 30px rgba(8, 45, 89, .08);
}


/* IMAGE */

.maxbliss-blogs-page .blog-list-image {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
}

.maxbliss-blogs-page .blog-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.maxbliss-blogs-page .blog-list-card:hover .blog-list-image img {
  transform: scale(1.04);
}

.maxbliss-blogs-page .blog-list-image span {
  position: absolute;
  left: 15px;
  bottom: 15px;
  padding: 6px 10px;
  background: #0969d7;
  color: #fff;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}


/* CONTENT */

.maxbliss-blogs-page .blog-list-content {
  padding: 22px;
}

.maxbliss-blogs-page .blog-list-meta {
  display: flex;
  gap: 15px;
  color: #8193a6;
  font-size: 11px;
  margin-bottom: 10px;
}

.maxbliss-blogs-page .blog-list-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.maxbliss-blogs-page .blog-list-meta i {
  color: #0969d7;
  font-size: 15px;
}

.maxbliss-blogs-page .blog-list-content h2 {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 9px;
}

.maxbliss-blogs-page .blog-list-content h2 a {
  color: #12385f;
  text-decoration: none;
}

.maxbliss-blogs-page .blog-list-content h2 a:hover {
  color: #0969d7;
}

.maxbliss-blogs-page .blog-list-content p {
  color: #71849a;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 17px;
}


/* READ BUTTON */

.maxbliss-blogs-page .blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0969d7;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.maxbliss-blogs-page .blog-read-btn i {
  font-size: 17px;
  transition: transform .2s ease;
}

.maxbliss-blogs-page .blog-read-btn:hover i {
  transform: translate(3px, -3px);
}


/* SIDEBAR */

.maxbliss-blogs-page .blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.maxbliss-blogs-page .blog-sidebar-panel {
  background: #fff;
  border: 1px solid #dce7f2;
  border-radius: 14px;
  padding: 25px;
}

.maxbliss-blogs-page .blog-category-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.maxbliss-blogs-page .blog-category-list span {
  padding: 10px 12px;
  background: #f5f9fd;
  border-radius: 7px;
  color: #45627d;
  font-size: 13px;
  font-weight: 600;
}


/* DARK CTA */

.maxbliss-blogs-page .blog-sidebar-panel.is-dark {
  background: #082d59;
  border-color: #082d59;
}

.maxbliss-blogs-page .blog-sidebar-panel.is-dark>span {
  display: block;
  color: #8fc7ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.maxbliss-blogs-page .blog-sidebar-panel.is-dark strong {
  display: block;
  color: #fff;
  font-size: 21px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.maxbliss-blogs-page .blog-sidebar-panel.is-dark p {
  color: #c7d8e9;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.maxbliss-blogs-page .blog-sidebar-panel.is-dark a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  background: #fff;
  color: #082d59;
  border-radius: 7px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.maxbliss-blogs-page .blog-sidebar-panel.is-dark a:hover {
  background: #0969d7;
  color: #fff;
}


/* EMPTY */

.maxbliss-blogs-page .blog-empty {
  grid-column: 1 / -1;
  min-height: 250px;
  background: #fff;
  border: 1px solid #dce7f2;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.maxbliss-blogs-page .blog-empty i {
  color: #0969d7;
  font-size: 42px;
  margin-bottom: 12px;
}

.maxbliss-blogs-page .blog-empty strong {
  color: #12385f;
  font-size: 18px;
}

.maxbliss-blogs-page .blog-empty span {
  color: #71849a;
  font-size: 13px;
  margin-top: 5px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

  .maxbliss-blogs-page .blog-page-body {
    grid-template-columns: 1fr;
  }

  .maxbliss-blogs-page .blog-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 767px) {

  .maxbliss-blogs-page {
    padding: 45px 0 60px;
  }

  .maxbliss-blogs-page .blog-page-copy h1 {
    font-size: 32px;
  }

  .maxbliss-blogs-page .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .maxbliss-blogs-page .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .maxbliss-blogs-page .blog-list-image {
    height: 210px;
  }

}


/* =====================================================
   MAXBLISS BLOG DETAIL
===================================================== */

.maxbliss-blog-detail {
  background: #f6f9fd;
  padding: 55px 0 50px;
}

.maxbliss-blog-detail .blog-detail-wrap {
  max-width: 1380px;
  margin: auto;
}


/* HERO */

.maxbliss-blog-detail .blog-detail-hero {
  display: grid;
  grid-template-columns: 1fr 460px;
  background: #082d59;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
}

.maxbliss-blog-detail .blog-detail-hero-copy {
  padding: 48px;
  align-self: center;
}

.maxbliss-blog-detail .blog-pill {
  display: inline-block;
  padding: 6px 11px;
  background: rgba(255, 255, 255, .1);
  color: #9dd0ff;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 15px;
}

.maxbliss-blog-detail .blog-detail-hero h1 {
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 15px;
}

.maxbliss-blog-detail .blog-detail-hero-copy>p {
  color: #c7d8e9;
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 20px;
}


/* META */

.maxbliss-blog-detail .blog-detail-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.maxbliss-blog-detail .blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d7e5f2;
  font-size: 12px;
}

.maxbliss-blog-detail .blog-detail-meta i {
  color: #8fc7ff;
  font-size: 16px;
}


/* HERO IMAGE */

.maxbliss-blog-detail .blog-detail-hero-image {
  min-height: 360px;
}

.maxbliss-blog-detail .blog-detail-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}


/* CONTENT */

.maxbliss-blog-detail .blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}

.maxbliss-blog-detail .blog-detail-main {
  background: #fff;
  border: 1px solid #dce7f2;
  border-radius: 16px;
  padding: 38px;
}

.maxbliss-blog-detail .blog-detail-copy {
  color: #526b83;
  font-size: 15px;
  line-height: 1.85;
}

.maxbliss-blog-detail .blog-detail-copy h2,
.maxbliss-blog-detail .blog-detail-copy h3 {
  color: #082d59;
  line-height: 1.35;
  margin-top: 30px;
  margin-bottom: 12px;
}

.maxbliss-blog-detail .blog-detail-copy h2 {
  font-size: 27px;
}

.maxbliss-blog-detail .blog-detail-copy h3 {
  font-size: 21px;
}

.maxbliss-blog-detail .blog-detail-copy a {
  color: #0969d7;
}

.maxbliss-blog-detail .blog-detail-copy img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


/* SIDEBAR */

.maxbliss-blog-detail .blog-side-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.maxbliss-blog-detail .blog-side-box {
  background: #fff;
  border: 1px solid #dce7f2;
  border-radius: 14px;
  padding: 23px;
}

.maxbliss-blog-detail .blog-side-box h3 {
  color: #082d59;
  font-size: 18px;
  margin: 0 0 17px;
}


/* CONTACT BOX */

.maxbliss-blog-detail .blog-contact-box {
  background: #eef6ff;
  border-color: #cfe4f8;
}

.maxbliss-blog-detail .blog-contact-box>strong {
  display: block;
  color: #082d59;
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 9px;
}

.maxbliss-blog-detail .blog-contact-box>p {
  color: #667d94;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 17px;
}

.maxbliss-blog-detail .blog-contact-box>a,
.maxbliss-blog-detail .blog-side-box.is-dark>a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 7px;
  background: #082d59;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}


/* RELATED */

.maxbliss-blog-detail .blog-related-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.maxbliss-blog-detail .blog-related-list a {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.maxbliss-blog-detail .blog-related-list img {
  width: 70px;
  height: 58px;
  flex: 0 0 70px;
  object-fit: cover;
  border-radius: 7px;
}

.maxbliss-blog-detail .blog-related-list span {
  color: #31516f;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.maxbliss-blog-detail .blog-related-list a:hover span {
  color: #0969d7;
}


/* TAGS */

.maxbliss-blog-detail .blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.maxbliss-blog-detail .blog-tag-list a,
.maxbliss-blog-detail .blog-tag-list span {
  display: inline-block;
  padding: 7px 10px;
  background: #f3f7fb;
  color: #49647d;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.maxbliss-blog-detail .blog-tag-list a:hover {
  background: #e5f1ff;
  color: #0969d7;
}


/* DARK CTA */

.maxbliss-blog-detail .blog-side-box.is-dark {
  background: #082d59;
  border-color: #082d59;
}

.maxbliss-blog-detail .blog-side-box.is-dark .section-label {
  color: #8fc7ff;
}

.maxbliss-blog-detail .blog-side-box.is-dark strong {
  display: block;
  color: #fff;
  font-size: 19px;
  line-height: 1.4;
  margin-bottom: 9px;
}

.maxbliss-blog-detail .blog-side-box.is-dark p {
  color: #c7d8e9;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 17px;
}

.maxbliss-blog-detail .blog-side-box.is-dark>a {
  background: #fff;
  color: #082d59;
}


/* RESPONSIVE */

@media (max-width: 991px) {

  .maxbliss-blog-detail .blog-detail-hero {
    grid-template-columns: 1fr;
  }

  .maxbliss-blog-detail .blog-detail-hero-image {
    max-height: 350px;
  }

  .maxbliss-blog-detail .blog-detail-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 767px) {

  .maxbliss-blog-detail {
    padding: 35px 0 55px;
  }

  .maxbliss-blog-detail .blog-detail-hero-copy {
    padding: 30px 22px;
  }

  .maxbliss-blog-detail .blog-detail-hero h1 {
    font-size: 29px;
  }

  .maxbliss-blog-detail .blog-detail-hero-copy>p {
    font-size: 13px;
  }

  .maxbliss-blog-detail .blog-detail-hero-image,
  .maxbliss-blog-detail .blog-detail-hero-image img {
    min-height: 240px;
    height: 240px;
  }

  .maxbliss-blog-detail .blog-detail-main {
    padding: 25px 20px;
  }

  .maxbliss-blog-detail .blog-detail-copy {
    font-size: 14px;
  }

  .maxbliss-blog-detail .blog-side-box {
    padding: 20px;
  }

}


/* =========================================================
       MAXBLISS PATIENT REVIEWS
    ========================================================= */

.reviews-page {
  padding: 80px 0;
  background: #f6f9fd;
}

.reviews-page-wrap {
  max-width: 1320px;
  margin: 0 auto;
}


/* =========================================================
       HERO
    ========================================================= */

.reviews-page-hero {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 35px;
}

.reviews-page-copy {
  padding: 48px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e4ebf3;
}

.reviews-page-copy>span {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 30px;
  background: #eaf3ff;
  color: #0969d7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 18px;
}

.reviews-page-copy h2 {
  margin: 0 0 16px;
  color: #082d59;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.reviews-page-copy p {
  max-width: 720px;
  margin: 0 0 28px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

.reviews-page-copy>a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 10px;
  background: #0969d7;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: .25s ease;
}

.reviews-page-copy>a:hover {
  background: #082d59;
  color: #ffffff;
  transform: translateY(-2px);
}


/* =========================================================
       RATING PANEL
    ========================================================= */

.reviews-score-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 25px;
  border-radius: 24px;
  background: #082d59;
  color: #ffffff;
  min-height: 100%;
}

.reviews-score-panel>span {
  font-size: 14px;
  opacity: .8;
  margin-bottom: 8px;
}

.reviews-score-panel strong {
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 12px;
}

.reviews-score-panel>div {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.reviews-score-panel i {
  font-size: 20px;
  color: rgba(255, 255, 255, .3);
}

.reviews-score-panel i.is-active {
  color: #f5b700;
}

.reviews-score-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}


/* =========================================================
       FEATURED REVIEW
    ========================================================= */

.reviews-featured-card {
  position: relative;
  padding: 42px;
  margin-bottom: 35px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e4ebf3;
  overflow: hidden;
}

.reviews-featured-card>i {
  position: absolute;
  top: 28px;
  right: 35px;
  font-size: 70px;
  color: #eaf3ff;
}

.reviews-featured-card blockquote {
  position: relative;
  max-width: 1000px;
  margin: 0 0 28px;
  color: #173b61;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 500;
}


/* =========================================================
       CARD FOOTER
    ========================================================= */

.reviews-card-footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.reviews-card-footer img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8eef7;
}

.reviews-card-footer>div:not(.reviews-stars) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.reviews-card-footer strong {
  color: #173b61;
  font-size: 14px;
}

.reviews-card-footer span {
  color: #8a99aa;
  font-size: 12px;
}


/* =========================================================
       STARS
    ========================================================= */

.reviews-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.reviews-stars i {
  color: #d9e0e8;
  font-size: 17px;
}

.reviews-stars i.is-active {
  color: #f5b700;
}

.reviews-featured-card .reviews-stars {
  margin-left: auto;
}


/* =========================================================
       REVIEW GRID
    ========================================================= */

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

.reviews-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e4ebf3;
  transition: .25s ease;
}

.reviews-card:hover {
  transform: translateY(-4px);
  border-color: #cbdced;
  box-shadow: 0 14px 35px rgba(8, 45, 89, .08);
}

.reviews-card>p {
  flex: 1;
  margin: 18px 0 25px;
  color: #596b7d;
  font-size: 15px;
  line-height: 1.75;
}

.reviews-card .reviews-card-footer {
  padding-top: 18px;
  border-top: 1px solid #edf1f5;
}


/* =========================================================
       EMPTY STATE
    ========================================================= */

.reviews-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e4ebf3;
}

.reviews-empty i {
  margin-bottom: 12px;
  font-size: 40px;
  color: #0969d7;
}

.reviews-empty strong {
  color: #173b61;
  margin-bottom: 5px;
}

.reviews-empty span {
  color: #8492a2;
  font-size: 14px;
}


/* =========================================================
       BOTTOM CTA
    ========================================================= */

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 35px;
  padding: 35px 40px;
  border-radius: 22px;
  background: #eaf3ff;
  border: 1px solid #d7e8fa;
}

.reviews-cta>div>span {
  display: block;
  margin-bottom: 7px;
  color: #0969d7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.reviews-cta h2 {
  max-width: 700px;
  margin: 0;
  color: #082d59;
  font-size: 25px;
  line-height: 1.4;
}

.reviews-cta>a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 10px;
  background: #0969d7;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: .25s ease;
}

.reviews-cta>a:hover {
  background: #082d59;
  color: #ffffff;
}


/* =========================================================
       TABLET
    ========================================================= */

@media (max-width: 991px) {

  .reviews-page {
    padding: 60px 0;
  }

  .reviews-page-hero {
    grid-template-columns: 1fr;
  }

  .reviews-score-panel {
    min-height: 240px;
  }

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

  .reviews-page-copy h2 {
    font-size: 34px;
  }

}


/* =========================================================
       MOBILE
    ========================================================= */

@media (max-width: 767px) {

  .reviews-page {
    padding: 45px 0;
  }

  .reviews-page-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .reviews-page-copy {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .reviews-page-copy h2 {
    font-size: 28px;
  }

  .reviews-page-copy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .reviews-score-panel {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .reviews-score-panel strong {
    font-size: 48px;
  }

  .reviews-featured-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .reviews-featured-card blockquote {
    font-size: 17px;
    line-height: 1.65;
  }

  .reviews-featured-card>i {
    top: 20px;
    right: 20px;
    font-size: 50px;
  }

  .reviews-featured-card .reviews-card-footer {
    flex-wrap: wrap;
  }

  .reviews-featured-card .reviews-stars {
    width: 100%;
    margin-left: 61px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-card {
    min-height: auto;
    padding: 23px;
  }

  .reviews-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .reviews-cta h2 {
    font-size: 21px;
  }

  .reviews-cta>a {
    width: 100%;
  }

}

/* =========================================================
   MAXBLISS GALLERY
========================================================= */

.gallery-section {
  padding: 80px 0;
  background: #f6f9fd;
}

.gallery-section .container {
  max-width: 1320px;
}


/* =========================================================
   GALLERY HEADER
========================================================= */

.gallery-section .home-service-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.gallery-section .home-service-head>div {
  flex: 1;
}

.gallery-section .home-service-head span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: #0969d7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.gallery-section .home-service-head h2 {
  margin: 0;
  color: #082d59;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
}

.gallery-section .home-service-head p {
  max-width: 560px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}


/* =========================================================
   GALLERY GRID
========================================================= */

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


/* =========================================================
   GALLERY ITEM
========================================================= */

.gallery-item {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e1e9f2;
  text-decoration: none;
}

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


/* =========================================================
   OVERLAY
========================================================= */

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 45, 89, .68);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.gallery-overlay i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #0969d7;
  font-size: 22px;
  transform: scale(.7);
  transition: transform .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.gallery-empty {
  padding: 70px 20px !important;
  border: 1px solid #e1e9f2;
  border-radius: 20px;
  background: #ffffff;
}

.gallery-empty i {
  color: #0969d7;
}

.gallery-empty h4 {
  color: #082d59;
  font-weight: 700;
}

.gallery-empty p {
  max-width: 500px;
  margin: 10px auto 0;
  color: #64748b;
  line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

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

  .gallery-item {
    height: 260px;
  }

}


@media (max-width: 991px) {

  .gallery-section {
    padding: 60px 0;
  }

  .gallery-section .home-service-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .gallery-section .home-service-head h2 {
    font-size: 34px;
  }

  .gallery-section .home-service-head p {
    max-width: 700px;
  }

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

  .gallery-item {
    height: 270px;
  }

}



.bliss-doctors-page {
  padding: 70px 0;
  background: #f8fafc;
}

.bliss-doctors-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.bliss-doctors-heading {
  max-width: 780px;
}

.bliss-section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1e50bd;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.bliss-doctors-heading h1 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 750;
  color: #172033;
}

.bliss-doctors-heading p {
  margin: 0;
  max-width: 700px;
  color: #667085;
  line-height: 1.75;
  font-size: 15px;
}

.bliss-call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px;
  border: 1px solid #e4e9f0;
  background: #fff;
  border-radius: 12px;
  color: #172033;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(20, 35, 60, .05);
}

.bliss-call-btn>i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eef4ff;
  color: #1e50bd;
  font-size: 19px;
}

.bliss-call-btn span {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 700;
}

.bliss-call-btn small {
  color: #8a94a6;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 2px;
}

/* =========================================================
FILTER BAR
========================================================= */

.bliss-doctors-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px;
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(20, 35, 60, .04);
}

.bliss-filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bliss-filter-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #596579;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.bliss-filter-group label i {
  color: #1e50bd;
  font-size: 17px;
}

.bliss-doctor-filter,
.bliss-doctor-sort {
  min-width: 190px;
  height: 42px;
  padding: 0 35px 0 13px;
  border: 1px solid #dfe5ec;
  border-radius: 9px;
  background: #fff;
  color: #253047;
  font-size: 13px;
  outline: none;
  cursor: pointer;
}

.bliss-doctor-filter:focus,
.bliss-doctor-sort:focus {
  border-color: #1e50bd;
}

.bliss-doctor-result-count {
  margin-left: auto;
  color: #7a8496;
  font-size: 13px;
}

.bliss-doctor-result-count span {
  color: #172033;
  font-weight: 750;
}

/* =========================================================
DOCTOR GRID
========================================================= */

.bliss-doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* =========================================================
HORIZONTAL DOCTOR CARD
========================================================= */

.bliss-doctor-card {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.bliss-doctor-card:hover {
  transform: translateY(-3px);
  border-color: #d8e1f2;
  box-shadow: 0 16px 40px rgba(20, 35, 60, .09);
}

/* =========================================================
IMAGE
========================================================= */

.bliss-doctor-image {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #eef2f7;
}

.bliss-doctor-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.bliss-doctor-card:hover .bliss-doctor-image img {
  transform: scale(1.035);
}

.bliss-profile-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .94);
  color: #1e50bd;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
}

/* =========================================================
CONTENT
========================================================= */

.bliss-doctor-content {
  min-width: 0;
  padding: 20px;
}

.bliss-doctor-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf0f4;
}

.bliss-doctor-department {
  display: block;
  margin-bottom: 5px;
  color: #1e50bd;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.bliss-doctor-top h2 {
  margin: 0 0 4px;
  color: #172033;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 750;
}

.bliss-doctor-speciality {
  margin: 0;
  color: #687386;
  font-size: 12px;
  line-height: 1.5;
}

.bliss-doctor-arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e9f0;
  border-radius: 8px;
  color: #1e50bd;
  font-size: 17px;
}

/* =========================================================
INFORMATION ROWS
========================================================= */

.bliss-doctor-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
}

.bliss-info-icon {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f5ff;
  color: #1e50bd;
  border-radius: 8px;
  font-size: 15px;
}

.bliss-doctor-info-row div {
  min-width: 0;
}

.bliss-doctor-info-row small {
  display: block;
  margin-bottom: 2px;
  color: #8a94a6;
  font-size: 10px;
}

.bliss-doctor-info-row strong {
  display: block;
  overflow: hidden;
  color: #344054;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
TAGS
========================================================= */

.bliss-doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
}

.bliss-doctor-tags span {
  display: inline-flex;
  padding: 5px 8px;
  background: #f7f9fc;
  border: 1px solid #e8edf3;
  border-radius: 6px;
  color: #5d687b;
  font-size: 10px;
  font-weight: 600;
}

/* =========================================================
ACTIONS
========================================================= */

.bliss-doctor-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
}

.bliss-profile-link,
.bliss-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 37px;
  padding: 8px 11px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: all .2s ease;
}

.bliss-profile-link {
  flex: 1;
  border: 1px solid #dfe5ec;
  color: #344054;
  background: #fff;
}

.bliss-profile-link:hover {
  border-color: #1e50bd;
  color: #1e50bd;
}

.bliss-book-link {
  flex: 1;
  background: #1e50bd;
  border: 1px solid #1e50bd;
  color: #fff;
}

.bliss-book-link:hover {
  background: #163f96;
  color: #fff;
}

/* =========================================================
EMPTY STATES
========================================================= */

.bliss-doctor-empty,
.bliss-no-filter-result {
  grid-column: 1 / -1;
  text-align: center;
  padding: 55px 20px;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
}

.bliss-empty-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  border-radius: 50%;
  color: #1e50bd;
  font-size: 25px;
}

.bliss-no-filter-result>i {
  display: block;
  margin-bottom: 12px;
  color: #98a2b3;
  font-size: 35px;
}

.bliss-doctor-empty h3,
.bliss-no-filter-result h3 {
  margin: 0 0 7px;
  color: #172033;
  font-size: 19px;
}

.bliss-doctor-empty p,
.bliss-no-filter-result p {
  max-width: 480px;
  margin: 0 auto;
  color: #7a8496;
  font-size: 13px;
  line-height: 1.7;
}

.bliss-doctor-empty a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 10px 17px;
  background: #1e50bd;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

/* =========================================================
BOTTOM CTA
========================================================= */

.bliss-doctors-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
}

.bliss-cta-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  color: #1e50bd;
  border-radius: 10px;
  font-size: 21px;
}

.bliss-cta-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bliss-cta-content span {
  color: #7a8496;
  font-size: 11px;
}

.bliss-cta-content strong {
  color: #263248;
  font-size: 14px;
}

.bliss-doctors-cta>a {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  background: #1e50bd;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 1199px) {

  .bliss-doctors-grid {
    grid-template-columns: 1fr;
  }

  .bliss-doctor-card {
    grid-template-columns: 210px minmax(0, 1fr);
  }

}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .bliss-doctors-page {
    padding: 45px 0;
  }

  .bliss-doctors-header {
    display: block;
    margin-bottom: 25px;
  }

  .bliss-doctors-heading h1 {
    font-size: 29px;
  }

  .bliss-doctors-heading p {
    font-size: 14px;
  }

  .bliss-doctors-header-action {
    margin-top: 18px;
  }

  .bliss-call-btn {
    width: 100%;
  }


  .bliss-doctors-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
  }

  .bliss-filter-group {
    display: block;
  }

  .bliss-filter-group label {
    margin-bottom: 6px;
  }

  .bliss-doctor-filter,
  .bliss-doctor-sort {
    width: 100%;
    min-width: 0;
  }

  .bliss-doctor-result-count {
    grid-column: 1 / -1;
    margin-left: 0;
    padding-top: 2px;
  }


  .bliss-doctors-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bliss-doctor-card {
    grid-template-columns: 125px minmax(0, 1fr);
    border-radius: 13px;
  }

  .bliss-doctor-image img {
    min-height: 100%;
    height: 100%;
  }

  .bliss-profile-badge {
    left: 7px;
    bottom: 7px;
    padding: 5px 7px;
    font-size: 9px;
  }

  .bliss-doctor-content {
    padding: 14px;
  }

  .bliss-doctor-top h2 {
    font-size: 17px;
  }

  .bliss-doctor-speciality {
    font-size: 11px;
  }

  .bliss-doctor-arrow {
    width: 27px;
    height: 27px;
    font-size: 14px;
  }

  .bliss-doctor-info-row {
    margin-top: 10px;
  }

  .bliss-info-icon {
    width: 27px;
    height: 27px;
    font-size: 13px;
  }

  .bliss-doctor-info-row strong {
    font-size: 10px;
  }

  .bliss-doctor-tags {
    display: none;
  }

  .bliss-doctor-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 13px;
  }

  .bliss-profile-link,
  .bliss-book-link {
    min-height: 34px;
    font-size: 10px;
  }

  .bliss-doctors-cta {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .bliss-doctors-cta>a {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

}

@media (max-width: 430px) {


  .bliss-doctor-card {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .bliss-doctor-content {
    padding: 12px;
  }

  .bliss-doctor-top h2 {
    font-size: 15px;
  }

  .bliss-doctor-department {
    font-size: 8px;
  }

  .bliss-doctor-info-row small {
    font-size: 9px;
  }

  .bliss-doctor-info-row strong {
    font-size: 9px;
  }


}




/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

  .gallery-section {
    padding: 45px 0;
  }

  .gallery-section .home-service-head {
    margin-bottom: 25px;
  }

  .gallery-section .home-service-head span {
    font-size: 12px;
  }

  .gallery-section .home-service-head h2 {
    font-size: 28px;
  }

  .gallery-section .home-service-head p {
    font-size: 14px;
    line-height: 1.7;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item {
    height: 250px;
    border-radius: 15px;
  }

  .gallery-overlay i {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .mx-navbar {
    display: none;
  }

  .booking-section {
    margin-top: 20px !important;
    padding: 0px !important;

  }

  .booking-card {
    border-radius: 7px;
    box-shadow: none !important;
  }

  .mx-achievements-container {
    box-shadow: none !important;
  }


  .home-service-arrow {
    right: 0px;
    bottom: -16px;
    width: 62px;
    height: 62px;
    border-width: 8px;
  }

  .clinic-faq-container {

    width: min(1400px, calc(100% - 25px));

  }

  .clinic-faq-intro {
    position: unset !important;
  }

  .google-review-section {
    padding: 40px 10px;
  }

  .mx-logo img {
    max-width: 190px;
    height: 70px !important;
  }

  .phone-toogle {
    display: block;
  }

}


/* =========================================
   TESTS PAGE
========================================= */

.tests-section {
    padding: 70px 0;
    background: #f7faff;
}


/* =========================================
   HEADER
========================================= */

.tests-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 32px;
}

.tests-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #0759c9;
    font-size: 14px;
    font-weight: 700;
}

.tests-eyebrow i {
    font-size: 16px;
}

.tests-title {
    margin: 0;
    color: #082b55;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 750;
}

.tests-header-description {
    max-width: 520px;
    margin: 0;
    color: #66758a;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.tests-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 35px;
    border: 1px solid #e3ebf5;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.tests-highlights > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 65px;
    border-right: 1px solid #e8eef5;
    color: #425a73;
    font-size: 13px;
    font-weight: 700;
}

.tests-highlights > div:last-child {
    border-right: 0;
}

.tests-highlights i {
    color: #0759c9;
    font-size: 19px;
}


/* =========================================
   CATEGORY NAV
========================================= */

.test-category-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.test-category-nav a {
    padding: 9px 15px;
    border: 1px solid #dce6f1;
    border-radius: 30px;
    background: #fff;
    color: #536b83;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.test-category-nav a:hover {
    border-color: #0759c9;
    background: #0759c9;
    color: #fff;
}


/* =========================================
   CATEGORY
========================================= */

.test-category-block {
    margin-bottom: 55px;
    scroll-margin-top: 100px;
}

.test-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.section-label {
    display: inline-block;
    margin-bottom: 5px;
    color: #0759c9;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.test-category-head h2 {
    margin: 0;
    color: #082b55;
    font-size: 26px;
    font-weight: 750;
}


/* =========================================
   TEST GRID
========================================= */

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


/* =========================================
   TEST CARD
========================================= */

.test-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    padding: 22px;
    border: 1px solid #e5edf7;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 24px rgba(8, 43, 85, .05);
    text-decoration: none;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.test-card:hover {
    transform: translateY(-4px);
    border-color: #cfe0f7;
    box-shadow: 0 14px 35px rgba(8, 43, 85, .10);
}


/* =========================================
   CARD TOP
========================================= */

.test-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.test-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: #edf5ff;
    color: #0759c9;
    font-size: 22px;
}

.test-category {
    max-width: 58%;
    padding: 6px 10px;
    border-radius: 20px;
    background: #f1f6fc;
    color: #56708d;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================
   CONTENT
========================================= */

.test-card-content {
    flex: 1;
}

.test-name {
    margin: 0 0 9px;
    color: #082b55;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.test-description {
    min-height: 46px;
    margin: 0 0 18px;
    color: #718096;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================
   META
========================================= */

.test-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.test-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border-radius: 7px;
    background: #f7f9fc;
    color: #63748a;
    font-size: 10px;
    font-weight: 600;
}

.test-meta-item i {
    color: #0759c9;
    font-size: 12px;
}


/* =========================================
   FOOTER
========================================= */

.test-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 17px;
    border-top: 1px solid #edf1f6;
}

.test-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.test-current-price {
    color: #082b55;
    font-size: 20px;
    font-weight: 800;
}

.test-old-price {
    color: #9aa7b5;
    font-size: 12px;
    text-decoration: line-through;
}

.test-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 13px;
    border-radius: 7px;
    background: #0759c9;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    transition: .25s ease;
}

.test-card:hover .test-book-btn {
    background: #082b55;
}

.test-book-btn i {
    font-size: 11px;
}


/* =========================================
   EMPTY
========================================= */

.tests-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    border: 1px dashed #d6e2f0;
    border-radius: 14px;
    background: #fff;
    text-align: center;
}

.tests-empty-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #edf5ff;
    color: #0759c9;
    font-size: 23px;
}

.tests-empty strong {
    margin-bottom: 5px;
    color: #082b55;
    font-size: 18px;
}

.tests-empty span {
    color: #718096;
    font-size: 13px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .tests-section {
        padding: 65px 0;
    }

    .tests-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .tests-title {
        font-size: 32px;
    }

    .tests-header-description {
        max-width: 700px;
    }

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


@media (max-width: 767px) {

    .tests-section {
        padding: 50px 0;
    }

    .tests-title {
        font-size: 28px;
    }

    .tests-header-description {
        font-size: 14px;
    }

    .tests-highlights {
        grid-template-columns: 1fr;
    }

    .tests-highlights > div {
        justify-content: flex-start;
        padding: 0 18px;
        border-right: 0;
        border-bottom: 1px solid #e8eef5;
    }

    .tests-highlights > div:last-child {
        border-bottom: 0;
    }

    .tests-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .test-category-head h2 {
        font-size: 23px;
    }

    .test-card {
        padding: 18px;
    }

}


@media (max-width: 480px) {

    .tests-title {
        font-size: 25px;
    }

    .test-card-footer {
        align-items: flex-end;
    }

    .test-current-price {
        font-size: 18px;
    }

    .test-book-btn {
        padding: 9px 11px;
    }

}



/* =========================================================
   BASE
========================================================= */

.test-detail-page {
    padding: 25px 0 90px;
    background: #fff;
    color: #1f2937;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.test-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
    color: #697586;
    font-size: 14px;
}

.test-breadcrumb a {
    color: #697586;
    text-decoration: none;
}

.test-breadcrumb a:hover {
    color: #0759c9;
}

.test-breadcrumb i {
    color: #9ba6b4;
    font-size: 17px;
}

.test-breadcrumb span {
    color: #0759c9;
    font-weight: 600;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.test-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 36px;
    align-items: start;
}

.test-detail-main {
    min-width: 0;
}


/* =========================================================
   IMAGE
========================================================= */

.test-detail-image {
    width: 100%;
    height: 300px;
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 12px;
    background: #f4f7fb;
}

.test-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   HEADING
========================================================= */

.test-detail-category {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 30px;
    background: #edf5ff;
    color: #0759c9;
    font-size: 12px;
    font-weight: 700;
}

.test-detail-heading h1 {
    margin: 0;
    color: #191c22;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 750;
    letter-spacing: -.8px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.test-detail-description {
    margin-top: 27px;
    padding-bottom: 28px;
    border-bottom: 1px dashed #dfe5ec;
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

.test-detail-description p {
    margin: 0 0 14px;
}

.test-detail-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   INFO GRID
========================================================= */

.test-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.test-info-box {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border: 1px solid #e4e9ef;
    border-radius: 10px;
    background: #fff;
}

.test-info-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 9px;
    background: #edf5ff;
    color: #0759c9;
    font-size: 19px;
}

.test-info-box span {
    display: block;
    margin-bottom: 3px;
    color: #8994a3;
    font-size: 11px;
}

.test-info-box strong {
    display: block;
    color: #25364b;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   CONTENT SECTION
========================================================= */

.test-content-section {
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px dashed #dfe5ec;
}

.test-section-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.test-section-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: #edf5ff;
    color: #0759c9;
    font-size: 19px;
}

.test-section-heading span:not(.test-section-icon) {
    display: block;
    margin-bottom: 3px;
    color: #0759c9;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.test-section-heading h2 {
    margin: 0;
    color: #22252b;
    font-size: 25px;
    font-weight: 700;
}


/* =========================================================
   PREPARATION
========================================================= */

.test-preparation-box {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 19px;
    border: 1px solid #dce8f6;
    border-radius: 10px;
    background: #f7faff;
    color: #526477;
    font-size: 14px;
    line-height: 1.7;
}

.test-preparation-box > i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #0759c9;
    font-size: 19px;
}


/* =========================================================
   FAQ
========================================================= */

.test-faq-list {
    border: 1px solid #dfe5eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.test-faq-item {
    border-bottom: 1px solid #dfe5eb;
}

.test-faq-item:last-child {
    border-bottom: 0;
}

.test-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 0;
    background: #fff;
    color: #252a31;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.test-faq-question:hover {
    background: #f8fafc;
}

.test-faq-question i {
    flex-shrink: 0;
    color: #9aa5b1;
    font-size: 19px;
    transition: transform .25s ease;
}

.test-faq-question.active i {
    transform: rotate(180deg);
    color: #0759c9;
}

.test-faq-answer {
    padding: 0 20px 19px;
    color: #697586;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SIDEBAR
========================================================= */

.test-detail-sidebar {
    position: sticky;
    top: 100px;
}

.test-book-card {
    padding: 28px;
    border: 1px solid #d9e0e7;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(20, 35, 55, .05);
}

.sidebar-test-category {
    display: inline-block;
    margin-bottom: 12px;
    color: #0759c9;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.test-book-card h2 {
    margin: 0 0 20px;
    color: #20242a;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 750;
}


/* =========================================================
   PRICE
========================================================= */

.sidebar-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 17px;
    border-bottom: 1px solid #edf0f3;
}

.sidebar-price strong {
    color: #34383e;
    font-size: 27px;
    font-weight: 800;
}

.sidebar-price del {
    color: #9aa3ad;
    font-size: 14px;
}

.sidebar-price span {
    padding: 4px 7px;
    border-radius: 5px;
    background: #eaf8ef;
    color: #16834b;
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   SIDEBAR META
========================================================= */

.sidebar-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    color: #667085;
    font-size: 13px;
}

.sidebar-meta i {
    color: #0759c9;
    font-size: 17px;
}

.sidebar-meta strong {
    color: #344054;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.test-action-btn {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 11px;
    padding: 12px 18px;
    border: 1px solid #0759c9;
    border-radius: 7px;
    background: #fff;
    color: #0759c9;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.test-action-btn:hover {
    color: #fff;
    background: #0759c9;
}

.test-call-btn i {
    font-size: 18px;
}

.test-whatsapp-btn {
    border-color: #20b85a;
    color: #149447;
}

.test-whatsapp-btn:hover {
    border-color: #20b85a;
    background: #20b85a;
    color: #fff;
}

.test-book-btn {
    border-color: #0759c9;
    background: #0759c9;
    color: #fff;
}

.test-book-btn:hover {
    border-color: #082b55;
    background: #082b55;
    color: #fff;
}


/* =========================================================
   SIDEBAR NOTE
========================================================= */

.sidebar-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 18px;
    color: #8994a3;
    font-size: 11px;
    line-height: 1.5;
}

.sidebar-note i {
    margin-top: 1px;
    color: #0759c9;
}


/* =========================================================
   SUPPORT
========================================================= */

.test-support-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 15px;
    padding: 18px;
    border: 1px solid #e3e9f0;
    border-radius: 11px;
    background: #f8fafc;
}

.test-support-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 9px;
    background: #edf5ff;
    color: #0759c9;
}

.test-support-card strong {
    display: block;
    margin-bottom: 4px;
    color: #25364b;
    font-size: 14px;
}

.test-support-card p {
    margin: 0 0 8px;
    color: #7a8796;
    font-size: 11px;
    line-height: 1.5;
}

.test-support-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #0759c9;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   RELATED TESTS
========================================================= */

.related-tests-section {
    margin-top: 75px;
    padding-top: 45px;
    border-top: 1px solid #e7ebef;
}

.related-tests-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.related-tests-heading > div > span {
    display: block;
    margin-bottom: 5px;
    color: #0759c9;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.related-tests-heading h2 {
    margin: 0;
    color: #20242a;
    font-size: 28px;
}

.related-tests-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0759c9;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   RELATED GRID
========================================================= */

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

.related-test-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 19px;
    border: 1px solid #e1e7ee;
    border-radius: 11px;
    background: #fff;
    text-decoration: none;
    transition: .25s ease;
}

.related-test-card:hover {
    transform: translateY(-3px);
    border-color: #c9daf0;
    box-shadow: 0 10px 25px rgba(20, 40, 70, .08);
}

.related-test-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 17px;
}

.related-test-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #edf5ff;
    color: #0759c9;
}

.related-test-top span {
    max-width: 60%;
    padding: 5px 8px;
    border-radius: 15px;
    background: #f3f6f9;
    color: #64748b;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-test-card h3 {
    margin: 0 0 8px;
    color: #263445;
    font-size: 16px;
    line-height: 1.4;
}

.related-test-card p {
    min-height: 39px;
    margin: 0 0 18px;
    color: #7a8796;
    font-size: 11px;
    line-height: 1.55;
}

.related-test-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 13px;
    border-top: 1px solid #edf0f3;
}

.related-test-footer strong {
    color: #25364b;
    font-size: 16px;
}

.related-test-footer del {
    margin-left: 4px;
    color: #a1aab4;
    font-size: 9px;
}

.related-test-footer > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #0759c9;
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.test-floating-actions {
    position: fixed;
    right: 18px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.test-floating-actions a {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .18);
    transition: .25s ease;
}

.test-floating-actions a:hover {
    transform: translateY(-3px);
}

.floating-top {
    background: #12c9a0;
}

.floating-whatsapp {
    background: #20c866;
}

.floating-call {
    background: #087df5;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .test-detail-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 25px;
    }

    .test-detail-heading h1 {
        font-size: 40px;
    }

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

}


@media (max-width: 991px) {

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

    .test-detail-sidebar {
        position: static;
    }

    .test-book-card {
        max-width: 650px;
    }

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

}


@media (max-width: 767px) {

    .test-detail-page {
        padding: 18px 0 60px;
    }

    .test-breadcrumb {
        margin-bottom: 22px;
        font-size: 12px;
    }

    .test-detail-image {
        height: 220px;
    }

    .test-detail-heading h1 {
        font-size: 31px;
        letter-spacing: -.3px;
    }

    .test-detail-description {
        margin-top: 20px;
        padding-bottom: 22px;
        font-size: 15px;
    }

    .test-info-grid {
        grid-template-columns: 1fr;
    }

    .test-content-section {
        margin-top: 35px;
        padding-top: 25px;
    }

    .test-section-heading h2 {
        font-size: 21px;
    }

    .test-book-card {
        padding: 22px;
    }

    .test-book-card h2 {
        font-size: 21px;
    }

    .related-tests-section {
        margin-top: 55px;
        padding-top: 35px;
    }

    .related-tests-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .related-tests-heading h2 {
        font-size: 24px;
    }

    .related-tests-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .test-detail-heading h1 {
        font-size: 27px;
    }

    .test-floating-actions {
        right: 13px;
        bottom: 15px;
        gap: 9px;
    }

    .test-floating-actions a {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

}




/* =========================================================
   MAXBLISS SERVICES PAGE
========================================================= */

.services-page-section {
    width: 100%;
    padding: 55px 0 20px;
    background: #fff;
}

.services-page-wrap {
    max-width: 1400px;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.services-page-head {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 55px;
    align-items: end;
    margin-bottom: 30px;
}

.services-page-head > div > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #0759c9;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.services-page-head h2 {
    max-width: 720px;
    margin: 0;
    color: #082b55;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.services-page-head p {
    margin: 0;
    color: #657589;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   SERVICE HIGHLIGHTS
========================================================= */

.services-page-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 35px;
}

.services-page-highlights > div {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 68px;
    padding: 14px 18px;
    border: 1px solid #e2eaf2;
    border-radius: 8px;
    background: #f8fbfe;
    transition: .25s ease;
}

.services-page-highlights > div:hover {
    border-color: #c8d9eb;
    background: #f4f9fd;
    transform: translateY(-2px);
}

.services-page-highlights i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 7px;
    background: #eaf3ff;
    color: #0759c9;
    font-size: 20px;
}

.services-page-highlights span {
    color: #26384d;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   CATEGORY NAVIGATION
========================================================= */

.service-category-nav {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    padding: 15px 0;
    margin-bottom: 42px;
    border-top: 1px solid #edf1f5;
    border-bottom: 1px solid #edf1f5;
}

.service-category-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 37px;
    padding: 0 15px;
    border: 1px solid #dce5ee;
    border-radius: 5px;
    background: #fff;
    color: #345675;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.service-category-nav a:hover {
    border-color: #0759c9;
    background: #f3f8fd;
    color: #0759c9;
}


/* =========================================================
   CATEGORY BLOCK
========================================================= */

.service-category-block {
    margin-bottom: 58px;
    scroll-margin-top: 100px;
}

.service-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.service-category-head h2 {
    margin: 0;
    color: #172b43;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.service-category-head .section-label {
    order: 2;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 7px 11px;
    border-radius: 5px;
    background: #eef5fc;
    color: #0759c9;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e0e7ee;
    border-radius: 9px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 3px 16px rgba(23, 54, 84, .045);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #cad9e8;
    box-shadow: 0 14px 32px rgba(23, 54, 84, .10);
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {
    position: relative;
    width: 100%;
    height: 205px;
    overflow: hidden;
    background: #edf4fa;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 70px;
    background: linear-gradient(
        to top,
        rgba(0, 27, 58, .35),
        transparent
    );
    pointer-events: none;
}

.service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.045);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    position: absolute;
    left: 16px;
    bottom: 15px;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 47px;
    height: 47px;

    border: 3px solid #fff;
    border-radius: 7px;

    background: #0759c9;
    color: #fff;

    box-shadow: 0 5px 14px rgba(0, 0, 0, .15);
}

.service-icon i {
    font-size: 21px;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-card-content {
    padding: 20px 18px 7px;
}

.service-card-content h3,
.service-card > h3 {
    margin: 0;
    color: #172333;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.service-card-content p {
    margin: 9px 0 0;
    color: #718096;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   SERVICE BUTTON
========================================================= */

.service-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin: auto 18px 18px;
    padding-top: 15px;

    border-top: 1px solid #edf0f3;

    color: #0759c9;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.service-btn i {
    font-size: 16px;
    transition: transform .25s ease;
}

.service-card:hover .service-btn i {
    transform: translateX(4px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.service-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 280px;
    padding: 35px;

    border: 1px dashed #cbd8e5;
    border-radius: 9px;

    background: #f9fbfd;
    text-align: center;
}

.service-empty > i {
    margin-bottom: 14px;
    color: #0759c9;
    font-size: 40px;
}

.service-empty strong {
    margin-bottom: 7px;
    color: #26384d;
    font-size: 18px;
    font-weight: 700;
}

.service-empty span {
    color: #7b8794;
    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .services-page-section {
        padding: 45px 0 65px;
    }

    .services-page-head {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-page-head h2 {
        font-size: 32px;
    }

    .home-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .services-page-section {
        padding: 35px 0 55px;
    }

    .services-page-head {
        gap: 12px;
        margin-bottom: 24px;
    }

    .services-page-head > div > span {
        font-size: 11px;
    }

    .services-page-head h2 {
        font-size: 27px;
        line-height: 1.25;
    }

    .services-page-head p {
        font-size: 13px;
        line-height: 1.7;
    }


    /* Highlights */

    .services-page-highlights {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-bottom: 28px;
    }

    .services-page-highlights > div {
        min-height: 57px;
        padding: 10px 13px;
    }

    .services-page-highlights i {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 18px;
    }


    /* Category Navigation */

    .service-category-nav {
        gap: 7px;
        margin-bottom: 32px;
    }

    .service-category-nav a {
        min-height: 34px;
        padding: 0 11px;
        font-size: 11px;
    }


    /* Category */

    .service-category-block {
        margin-bottom: 42px;
    }

    .service-category-head {
        margin-bottom: 17px;
    }

    .service-category-head h2 {
        font-size: 21px;
    }

    .service-category-head .section-label {
        padding: 6px 9px;
        font-size: 10px;
    }


    /* Cards */

    .home-service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-image {
        height: 190px;
    }

    .service-card-content {
        padding: 17px 16px 7px;
    }

    .service-card-content h3,
    .service-card > h3 {
        font-size: 16px;
    }

    .service-card-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .service-icon {
        left: 14px;
        bottom: 13px;
        width: 44px;
        height: 44px;
    }

    .service-btn {
        margin: auto 16px 16px;
        padding-top: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .services-page-head h2 {
        font-size: 24px;
    }

    .service-category-head h2 {
        font-size: 19px;
    }

    .service-image {
        height: 175px;
    }

}



/* =========================================================
   MAXBLISS SERVICE DETAIL PAGE
========================================================= */

.service-detail-page {
    position: relative;
    padding: 55px 0 80px;
    background: #f7fafd;
    overflow: hidden;
}

.service-detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 340px;
    background: linear-gradient(
        135deg,
        #eef6ff 0%,
        #f8fbff 55%,
        #ffffff 100%
    );
    z-index: 0;
}

.service-detail-wrap {
    position: relative;
    z-index: 1;
}


/* =========================================================
   HERO
========================================================= */

.service-detail-hero {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 45px;
    align-items: center;

    padding: 42px;

    border: 1px solid #e0e9f2;
    border-radius: 14px;

    background: #fff;

    box-shadow: 0 12px 40px rgba(27, 67, 105, .08);
}

.service-detail-hero-copy {
    min-width: 0;
}

.service-detail-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 14px;
    padding: 7px 11px;

    border-radius: 5px;

    background: #edf5ff;
    color: #0759c9;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: .5px;
    text-transform: uppercase;
}

.service-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-bottom: 18px;

    border-radius: 9px;

    background: #0759c9;
    color: #fff;

    box-shadow: 0 8px 20px rgba(7, 89, 201, .18);
}

.service-detail-icon i {
    font-size: 26px;
}

.service-detail-hero h1 {
    max-width: 700px;

    margin: 0;

    color: #082b55;

    font-size: 42px;
    line-height: 1.18;
    font-weight: 700;
}

.service-detail-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 25px;
}

.service-detail-primary,
.service-detail-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 44px;

    padding: 0 17px;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all .25s ease;
}

.service-detail-primary {
    background: #0759c9;
    color: #fff;
}

.service-detail-primary:hover {
    background: #064da9;
    color: #fff;

    transform: translateY(-2px);
}

.service-detail-secondary {
    border: 1px solid #d7e2ec;

    background: #fff;
    color: #244b70;
}

.service-detail-secondary:hover {
    border-color: #0759c9;

    background: #f3f8fd;
    color: #0759c9;
}

.service-detail-primary i,
.service-detail-secondary i {
    font-size: 17px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.service-detail-hero-media {
    position: relative;

    height: 355px;

    overflow: hidden;

    border-radius: 11px;

    background: #edf4fa;
}

.service-detail-hero-media::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(4, 40, 78, .22),
        transparent 45%
    );

    pointer-events: none;
}

.service-detail-hero-media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}

.service-detail-hero-media:hover img {
    transform: scale(1.025);
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.service-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 25px;

    margin-top: 28px;
}

.service-detail-main {
    min-width: 0;
}

.service-detail-side {
    min-width: 0;
}


/* =========================================================
   CONTENT CARDS
========================================================= */

.service-detail-card {
    padding: 30px;

    margin-bottom: 22px;

    border: 1px solid #e0e7ee;
    border-radius: 10px;

    background: #fff;

    box-shadow:
        0 4px 18px rgba(23, 54, 84, .04);
}

.service-section-label {
    display: inline-block;

    margin-bottom: 8px;

    color: #0759c9;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: .7px;
    text-transform: uppercase;
}

.service-detail-card h2 {
    margin: 0 0 16px;

    color: #172b43;

    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
}

.service-detail-overview > div,
.service-detail-overview > p {
    color: #68788a;

    font-size: 14px;
    line-height: 1.85;
}

.service-detail-overview > div p {
    margin-bottom: 12px;
}

.service-detail-overview > div p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   BENEFITS
========================================================= */

.service-benefit-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.service-benefit-grid article {
    padding: 19px;

    border: 1px solid #e5ebf1;
    border-radius: 8px;

    background: #f9fbfd;
}

.service-benefit-grid article > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    margin-bottom: 13px;

    border-radius: 6px;

    background: #eaf3ff;
    color: #0759c9;

    font-size: 20px;
}

.service-benefit-grid h3 {
    margin: 0 0 7px;

    color: #24364a;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.service-benefit-grid p {
    margin: 0;

    color: #718096;

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   CONDITIONS
========================================================= */

.service-condition-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 11px;
}

.service-condition-grid span {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    padding: 12px 13px;

    border: 1px solid #e5ebf1;
    border-radius: 6px;

    background: #fbfcfd;

    color: #536579;

    font-size: 13px;
    line-height: 1.55;
}

.service-condition-grid i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #0759c9;

    font-size: 16px;
}


/* =========================================================
   PROCESS
========================================================= */

.service-process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.service-process-grid article {
    padding: 20px 15px;

    border: 1px solid #e2e9f0;
    border-radius: 8px;

    background: #f9fbfd;
}

.service-process-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-bottom: 14px;

    border-radius: 5px;

    background: #0759c9;
    color: #fff;

    font-size: 11px;
    font-weight: 700;
}

.service-process-grid h3 {
    margin: 0 0 7px;

    color: #26384d;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.service-process-grid p {
    margin: 0;

    color: #718096;

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   LOCATION
========================================================= */

.service-location-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 19px 20px;

    border: 1px solid #dce8f3;
    border-radius: 9px;

    background: #eef6ff;
}

.service-location-card > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 7px;

    background: #0759c9;
    color: #fff;

    font-size: 20px;
}

.service-location-card > div {
    min-width: 0;
    flex: 1;
}

.service-location-card > div span {
    display: block;

    margin-bottom: 4px;

    color: #60758a;

    font-size: 11px;
    font-weight: 600;
}

.service-location-card strong {
    display: block;

    color: #243b53;

    font-size: 13px;
    line-height: 1.5;
}

.service-location-card > a {
    flex: 0 0 auto;

    color: #0759c9;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.service-location-card > a:hover {
    text-decoration: underline;
}


/* =========================================================
   SERVICE INFO
========================================================= */

.service-info-card {
    padding: 24px;

    margin-bottom: 20px;

    border: 1px solid #e0e7ee;
    border-radius: 10px;

    background: #fff;

    box-shadow:
        0 4px 18px rgba(23, 54, 84, .04);
}

.service-info-card h3 {
    margin: 0 0 18px;

    color: #172b43;

    font-size: 18px;
    font-weight: 700;
}

.service-info-card dl {
    margin: 0;
}

.service-info-card dl > div {
    padding: 13px 0;

    border-bottom: 1px solid #edf1f4;
}

.service-info-card dl > div:first-child {
    padding-top: 0;
}

.service-info-card dl > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.service-info-card dt {
    margin-bottom: 4px;

    color: #8290a0;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .5px;
    text-transform: uppercase;
}

.service-info-card dd {
    margin: 0;

    color: #33485d;

    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   INQUIRY CARD
========================================================= */

.service-inquiry-card {
    padding: 25px;

    margin-bottom: 20px;

    border-radius: 10px;

    background: #0759c9;
    color: #fff;

    box-shadow:
        0 10px 25px rgba(7, 89, 201, .16);
}

.service-inquiry-card > span {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, .78);

    font-size: 11px;
    font-weight: 600;
}

.service-inquiry-card strong {
    display: block;

    margin-bottom: 10px;

    color: #fff;

    font-size: 19px;
    line-height: 1.4;
}

.service-inquiry-card p {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, .82);

    font-size: 12px;
    line-height: 1.7;
}

.service-inquiry-card a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    margin-top: 8px;

    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 5px;

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.service-inquiry-card a:first-of-type {
    background: #fff;
    border-color: #fff;

    color: #0759c9;
}

.service-inquiry-card a:hover {
    background: rgba(255, 255, 255, .1);
}

.service-inquiry-card a:first-of-type:hover {
    background: #f4f8fc;
}


/* =========================================================
   RELATED SERVICES
========================================================= */

.service-related-card {
    padding: 24px;

    border: 1px solid #e0e7ee;
    border-radius: 10px;

    background: #fff;
}

.service-related-card h3 {
    margin: 0 0 14px;

    color: #172b43;

    font-size: 18px;
    font-weight: 700;
}

.service-related-list {
    display: flex;
    flex-direction: column;
}

.service-related-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 13px 0;

    border-bottom: 1px solid #edf1f4;

    color: #40566c;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.service-related-list a:last-child {
    border-bottom: 0;
}

.service-related-list a:hover {
    color: #0759c9;
}

.service-related-list a i {
    color: #9aa9b8;
    font-size: 15px;
}

.service-related-list a:hover i {
    color: #0759c9;
}

.service-related-list > p {
    margin: 0;

    color: #7b8794;

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .service-detail-page {
        padding: 45px 0 65px;
    }

    .service-detail-hero {
        grid-template-columns: 1fr;

        gap: 28px;

        padding: 30px;
    }

    .service-detail-hero-media {
        height: 300px;
    }

    .service-detail-hero h1 {
        font-size: 36px;
    }

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

    .service-detail-side {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 18px;

        align-items: start;
    }

    .service-info-card,
    .service-inquiry-card,
    .service-related-card {
        margin-bottom: 0;
    }

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .service-detail-page {
        padding: 30px 0 50px;
    }

    .service-detail-bg {
        height: 230px;
    }

    .service-detail-hero {
        gap: 22px;

        padding: 20px;

        border-radius: 10px;
    }

    .service-detail-eyebrow {
        margin-bottom: 12px;

        padding: 6px 9px;

        font-size: 10px;
    }

    .service-detail-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 14px;
    }

    .service-detail-icon i {
        font-size: 22px;
    }

    .service-detail-hero h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .service-detail-hero-actions {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;

        margin-top: 20px;
    }

    .service-detail-primary {
        grid-column: 1 / -1;
    }

    .service-detail-primary,
    .service-detail-secondary {
        width: 100%;

        min-height: 42px;

        padding: 0 10px;

        font-size: 11px;
    }

    .service-detail-hero-media {
        height: 220px;

        border-radius: 8px;
    }

    .service-detail-layout {
        gap: 16px;

        margin-top: 18px;
    }

    .service-detail-card {
        padding: 21px 17px;

        margin-bottom: 16px;
    }

    .service-detail-card h2 {
        font-size: 21px;
    }

    .service-detail-overview > div,
    .service-detail-overview > p {
        font-size: 13px;

        line-height: 1.75;
    }

    .service-benefit-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .service-benefit-grid article {
        padding: 15px;
    }

    .service-condition-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .service-condition-grid span {
        font-size: 12px;
    }

    .service-process-grid {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .service-process-grid article {
        padding: 16px;
    }

    .service-location-card {
        align-items: flex-start;

        flex-wrap: wrap;

        padding: 15px;
    }

    .service-location-card > a {
        width: 100%;

        margin-left: 57px;
    }

    .service-detail-side {
        display: flex;

        flex-direction: column;

        gap: 16px;
    }

    .service-info-card,
    .service-inquiry-card,
    .service-related-card {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .service-detail-hero {
        padding: 17px;
    }

    .service-detail-hero h1 {
        font-size: 24px;
    }

    .service-detail-hero-media {
        height: 190px;
    }

    .service-detail-card h2 {
        font-size: 19px;
    }

    .service-inquiry-card strong {
        font-size: 17px;
    }

}
