/* Base & Layout */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  font-family: 'Jost', system-ui, sans-serif;
  color: #1f2a30;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #1a5f7a;
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: #1a5f7a;
}

::selection {
  background: #7fb3a3;
  color: #0d2b3e;
}

.site-wrapper {
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background: #ffffff;
}

/* Topbar */
.topbar {
  background: #0d2b3e;
  color: #a9c4d1;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 40px;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.topbar-sep {
  color: #365b73;
}

.topbar-phone {
  color: #7fb3a3;
}

a.topbar-phone:hover {
    color: #fff;
}

/* Header & Navigation */
.header-bar {
  background: #12455a;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 92px;
}

.logo-img {
  height: 70px;
  width: auto;
  mix-blend-mode: screen;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  padding: 34px 0 33px;
  border-bottom: 2px solid transparent;
  color: #c3d6e0;
  transition: color 0.15s, border-color 0.15s;
}

.nav-item:hover,
.nav-item.active {
  color: #ffffff;
}

.nav-item.active {
  border-bottom-color: #7fb3a3;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn-outline {
  border: 1px solid #4d7d94;
  color: #dbe8ee;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: #7fb3a3;
  color: #ffffff;
}

.btn-solid {
  background: #7fb3a3;
  color: #0d2b3e;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  display: inline-block;
}

.btn-solid:hover {
  background: #95c4b5;
}

.btn-hero-solid {
  background: #7fb3a3;
  color: #0d2b3e;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 34px;
  display: inline-block;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-hero-solid:hover {
  background: #95c4b5;
}

.btn-hero-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 34px;
  display: inline-block;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-hero-outline:hover {
  border-color: #7fb3a3;
  color: #7fb3a3;
}

/* Dropdown Menu */
.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #0d2b3e;
  border-top: 1px solid #1e4560;
  padding: 30px 40px 34px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.mega-menu-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 44px;
}

.mega-menu-grid a {
  font-size: 13.5px;
  color: #a9c4d1;
  font-weight: 300;
  padding: 9px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: block;
}

.mega-menu-grid a:hover {
  color: #7fb3a3;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: clamp(500px, 75vh, 800px);
  height: auto;
  background: #0d2b3e;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #16394d 0 14px, #12303f 14px 28px);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 43, 62, 0.94) 0%, rgba(13, 43, 62, 0.72) 48%, rgba(13, 43, 62, 0.35) 100%);
}

.hero-placeholder-label {
  position: absolute;
  right: 36px;
  bottom: 28px;
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.42);
}

.hero-content {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 40px;
  min-height: clamp(500px, 75vh, 800px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-subtitle {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7fb3a3;
  margin-bottom: 26px;
}

.hero-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: 74px;
  line-height: 1.06;
  color: #ffffff;
  margin: 0 0 24px;
  max-width: 15ch;
  text-wrap: balance;
}

.hero-title em {
  font-style: italic;
  color: #7fb3a3;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #c3d6e0;
  max-width: 46ch;
  font-weight: 300;
  margin: 0 0 38px;
}

.hero-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* Page Banners */
.page-banner {
  background: #12455a;
  padding: 70px 40px;
}

.page-banner-dark {
  position: relative;
  background: #0d2b3e;
  padding: 96px 40px;
}

.page-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.banner-crumb {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7fb3a3;
  margin-bottom: 16px;
}

.banner-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: 58px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.banner-desc {
  font-size: 16.5px;
  line-height: 1.75;
  color: #a9c4d1;
  font-weight: 300;
  max-width: 54ch;
  margin: 18px 0 0;
}

/* Feature Highlights Bar */
.highlights-bar {
  background: #eef3f5;
  padding: 44px 40px;
}

.highlights-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid #d5e0e5;
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-title {
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #12455a;
  font-weight: 500;
  margin-bottom: 15px;
}

.highlight-desc {
  font-size: 15px;
  color: #5f7480;
  font-weight: 300;
}

/* Sections & Content Containers */
.section-white {
  background: #ffffff;
  padding: 110px 40px;
}

.section-gray {
  background: #eef3f5;
  padding: 100px 40px;
}

.content-container {
  max-width: 1280px;
  margin: 0 auto;
}

.content-container-wide {
  max-width: 1280px;
  margin: 0 auto;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.section-subtitle {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7fb3a3;
  margin-bottom: 22px;
}

.section-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: 46px;
  line-height: 1.16;
  color: #0d2b3e;
  margin: 0 0 26px;
}

.body-p {
  font-size: 16px;
  line-height: 1.85;
  color: #5f7480;
  font-weight: 300;
  margin: 0 0 20px;
}

.text-link {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #12455a;
  border-bottom: 1px solid #7fb3a3;
  padding-bottom: 6px;
  cursor: pointer;
}

/* Image Placeholders */
.img-box {
  background: repeating-linear-gradient(135deg, #e8eff2 0 12px, #dde8ec 12px 24px);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.img-box-label {
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: #7d949e;
}

/* Procedure Cards */
.procedure-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.procedure-card-featured {
  background: #12455a;
  padding: 56px 46px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.15s;
}

.procedure-card-featured:hover {
  background: #0d2b3e;
}

.card-tag {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7fb3a3;
}

.card-featured-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 44px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 12px;
}

.card-featured-desc {
  font-size: 14.5px;
  color: #a9c4d1;
  font-weight: 300;
  max-width: 38ch;
}

.procedure-subgrid {
  display: grid;
  gap: 14px;
}

.procedure-card-row {
  background: #ffffff;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  border-left: 3px solid #7fb3a3;
  transition: background 0.15s;
}

.procedure-card-row:hover {
  background: #f7fafb;
}

.procedure-grid-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.procedure-card-col {
  background: #ffffff;
  padding: 30px 28px;
  cursor: pointer;
  transition: background 0.15s;
}

.procedure-card-col:hover {
  background: #f7fafb;
}

.card-title {
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #12455a;
  font-weight: 500;
  margin-bottom: 6px;
}

.card-desc {
  font-size: 16px;
  color: #5f7480;
  font-weight: 300;
  line-height: 1.6;
}

.provide_personalized_section .procedure-card-col {
  background: #eef3f5;
}

.provide_personalized_section .procedure-card-col:hover {
  background: #ebebeb;
}

.personalized-card {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.personalized-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.personalized-arrow {
  margin-top: 15px;
  font-size: 20px;
  color: #7fb3a3;
  transition: transform 0.3s ease;
}

.personalized-card:hover .personalized-arrow {
  transform: translateX(5px);
}

/* Doctor Cards */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.doctor-card {
  cursor: pointer;
}

.doctor-card-img {
  height: 330px;
}

.doctor-card-info {
  background: #12455a;
  padding: 22px 20px;
  text-align: center;
}

.doctor-name {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 7px;
}

.doctor-role {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: #7fb3a3;
}

/* Zigzag Layout Section */
.zigzag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.zigzag-grid:last-child {
  margin-bottom: 0;
}

.zigzag-grid-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.zigzag-grid-reverse:last-child {
  margin-bottom: 0;
}

.zigzag-grid-reverse .zigzag-image {
  order: -1;
}

.zigzag-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 32px;
  color: #12455a;
  margin-bottom: 15px;
  font-weight: 400;
}

/* Callout Bar */
.callout-bar {
  background: #12455a;
  padding: 74px 40px;
  cursor: pointer;
}

.callout-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.callout-heading {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: 40px;
  color: #ffffff;
}

/* Layout Split for Subpages & Forms */
.subpage-layout {
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 70px;
}

.subpage-layout-wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 40px;
}

.doctor-page-layout {
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 70px;
}

.lede-text {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 300;
  color: #0d2b3e;
  margin: 0 0 34px;
}

/* Form Styling */
.contact-form-box {
  background: #ffffff;
  padding: 44px 40px;
}

.homepage_two_col_blk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: #0d2b3e;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5f7480;
  margin-bottom: 7px;
  display: block;
}

.form-input {
  width: 100%;
  height: 44px;
  border: 1px solid #d5e0e5;
  background: #fbfcfd;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
}

.form-textarea {
  width: 100%;
  height: 88px;
  border: 1px solid #d5e0e5;
  background: #fbfcfd;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
}

.btn-submit {
  width: 100%;
  background: #12455a;
  color: #ffffff;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-submit:hover {
  background: #0d2b3e;
}

.homepage_contact_form_sec .contact_form_content_box_blk a {
  color: #fff !important;
}

.homepage_contact_form_sec .contact_form_content_box_blk a:hover {
  color: #7fb3a3 !important;
}

/* Sidebar Emergency Widget */
.sidebar-box {
  background: #0d2b3e;
  padding: 34px 30px;
  margin-bottom: 20px;
}

.sidebar-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 12px;
}

.sidebar-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #a9c4d1;
  font-weight: 300;
  margin: 0 0 22px;
}

.sidebar-btn {
  display: block;
  background: #7fb3a3;
  color: #0d2b3e;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px;
  transition: background 0.15s;
}

.sidebar-btn:hover {
  background: #95c4b5;
}

/* Grid Listing Pages */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e2eaee;
  border: 1px solid #e2eaee;
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #e2eaee;
  border: 1px solid #e2eaee;
  margin-bottom: 70px;
}

.grid-card {
  background: #ffffff;
  padding: 38px 32px;
  cursor: pointer;
  min-height: 170px;
  transition: background 0.15s;
  display: block;
}

.grid-card:hover {
  background: #eef3f5;
}

.card-num {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: #7fb3a3;
  margin-bottom: 16px;
}

/* Office Locations Cards */
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.office-card {
  border: 1px solid #e2eaee;
}

.office-card-body {
  padding: 38px 34px;
}

.office-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: #0d2b3e;
  margin-bottom: 20px;
}

.office-address {
  font-size: 15.5px;
  line-height: 1.9;
  color: #5f7480;
  font-weight: 300;
  margin-bottom: 24px;
}

.office-details {
  display: grid;
  gap: 9px;
  font-size: 14px;
  color: #12455a;
  margin-bottom: 28px;
}

/* Footer */
.footer-wrap {
  background: #0d2b3e;
  padding: 80px 40px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-grid img.logo-img {
  filter: brightness(50);
}

.footer-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7fb3a3;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 14.5px;
  line-height: 1.9;
  color: #fff;
  font-weight: 300;
}

.footer-text a {
  color: #fff;
}

.footer-nav {
  display: grid;
  gap: 11px;
  font-size: 14.5px;
}

.footer-nav a {
  color: #fff;
  font-weight: 300;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #1e4560;
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: #fff;
}

.footer-bottom a {
  color: #fff;
}

/* Subpage Content & Utilities */
.subpage-block {
  margin-bottom: 26px;
}

.subpage-block-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  color: #0d2b3e;
  margin: 0 0 14px;
}

.sidebar-card {
  border: 1px solid #e2eaee;
  padding: 30px 26px;
}

.sidebar-card-text {
  font-size: 14px;
  margin-bottom: 14px;
}

.list-box {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  border-left: 2px solid #7fb3a3;
  padding-left: 22px;
}

.page-banner a.hover_txt_flip:hover {
  color: #fff;
}

a.hover_txt_flip {
  color: #7fb3a3;
  transition: 0.5s;
}


a.hover_txt_flip:hover {
  color: #12455a;
  transition: 0.5s;
}

/* Mobile & Responsive Additions */
.mobile-menu-btn {
  display: none;
}

.mobile-nav-link a {
  color: #1f2a30;
}



@media only screen and (min-width: 1301px) and (max-width: 1400px) {
  .nav-links {
    gap: 25px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .provide_personalized_section .procedure-grid-bottom {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .provide_personalized_section .procedure-grid-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1300px) {

  .topbar,
  .nav-links,
  .nav-actions,
  .mega-menu {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    margin-left: auto;
  }

  .mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    margin: 6px 0;
    transition: 0.3s;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-item:nth-child(2) {
    border-right: none;
  }

  .highlight-item {
    padding: 20px;
    border-bottom: 1px solid #d5e0e5;
  }

  .welcome-grid,
  .subpage-layout,
  .doctor-page-layout,
  .office-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .procedure-grid-top,
  .procedure-grid-bottom {
    grid-template-columns: 1fr;
  }

  .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {

  .header-bar {
    padding: 0 20px;
  }

  .footer-wrap {
    padding: 50px 20px 0;
  }

  .footer-grid {
    padding-bottom: 40px;
  }

  .subpage-layout {
    padding: 50px 20px;
  }

  .zigzag-grid,
  .zigzag-grid-reverse,
  .highlights-grid,
  .doctor-grid,
  .footer-grid,
  .welcome-grid,
  .office-grid,
  .procedure-grid-bottom,
  .grid-3col,
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .zigzag-grid-reverse .zigzag-image {
    order: 0;
  }

  .highlight-item {
    border-right: none;
  }

  .highlight-item {
    border-right: none;
  }

  .hero-title {
    font-size: 48px;
  }

  .banner-title {
    font-size: 38px;
  }

  .section-title,
  .card-featured-title {
    font-size: 32px;
  }

  .hero-section {
    min-height: 0;
    height: 100%;
    /* padding: 300px 0 0 0; */
    /* Creates space for the image at the top */
    background-size: 100% 300px !important;
    background-position: top center !important;
  }

  /* .hero-bg-overlay,
  .hero-bg-pattern {
    top: 300px;
  } */

  .hero-content {
    min-height: 0;
    padding: 50px 20px;
  }

  .section-white,
  .section-gray,
  .page-banner,
  .page-banner-dark,
  .callout-bar {
    padding: 60px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section {
    background-image: unset !important;
  }

  .responsive_banner_img_blk,
  .responsive_banner_img_blk img {
    width: 100%;
    height: 100%;
  }

  .responsive_banner_img_blk {
    position: relative;
  }

  .responsive_banner_img_blk:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 43, 62, 9.94) 0%, rgba(13, 43, 62, 0.02) 0%, rgba(13, 43, 62, 0.35) 100%);
    top: 0;
    left: 0;
  }

  .zigzag-grid,
  .zigzag-grid-reverse {
    gap: 40px !important;
  }

  .zigzag-grid .zigzag-content,
  .zigzag-grid-reverse .zigzag-content {
    order: 1;
  }

  .zigzag-grid .zigzag-title,
  .zigzag-grid-reverse .zigzag-content .zigzag-title {
    margin-top: 0 !important;
  }

  .homepage_two_col_blk {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .homepage_contact_form_sec .content-container.welcome-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }

  .contact-form-box,
  .contact_form_content_box_blk {
    width: 100%;
  }

  .contact_form_content_box_blk h2 {
    font-size: 40px !important;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {

  .zigzag-grid .zigzag-image .img-box,
  .zigzag-grid-reverse .zigzag-image .img-box {
    height: 250px !important;
  }
}

@media only screen and (min-width: 768px) {
  .responsive_banner_img_blk {
    display: none;
  }
}

/* Mobile Drawer Menu */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 315px;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

.mobile-menu-drawer.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.mobile-menu-overlay.open {
  display: block;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eeeeee;
}

.mobile-menu-logo {
  height: 100%;
  width: 210px;
  /* mix-blend-mode: screen; */
}

.mobile-menu-close {
  background: #f0f0f0;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  color: #333;
}

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: #1f2a30;
  font-weight: 500;
  font-size: 15px;
}

.mobile-nav-link.has-children {
  cursor: pointer;
}

.mobile-nav-arrow {
  transition: transform 0.2s;
  font-size: 12px;
}

.mobile-nav-item.open .mobile-nav-arrow {
  transform: rotate(180deg);
}

.mobile-sub-menu {
  display: none;
  background: #f9f9f9;
  padding: 10px 24px 20px;
}

.mobile-nav-item.open .mobile-sub-menu {
  display: block;
}

.mobile-sub-link {
  display: block;
  padding: 10px 0;
  color: #5f7480;
  font-size: 15px;
}

.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid #eeeeee;
  background: #ffffff;
  text-align: center;
}

.mobile-btn-book {
  display: block;
  background: #1a5f7a;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: none;
  transition: background 0.2s;
}

.mobile-btn-book:hover {
  background: #7fb3a3;
  color: #ffffff;
}

.mobile-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f2a30;
  font-weight: 600;
  font-size: 16px;
}

.mobile-phone-link svg {
  fill: #1a5f7a;
  width: 16px;
  height: 16px;
}

.styled-list {
  padding-left: 22px;
  margin: 18px 0 24px;
}

.styled-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #5f7480;
  font-weight: 300;
  margin-bottom: 10px;
}