@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap");

/* ── Variables ── */
:root {
  --green: #89b555;
  --green-dk: #2d6235;
  --green-lt: #eaf4ec;
  --navy: #1a3a5c;
  --navy2: #0f2a47;
  --blue: #2563a8;
  --blue-lt: #e8f0fb;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray: #6b7a8d;
  --gray-lt: #e8edf3;
  --text: #2d3748;
  --radius: 5px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
  --shadow2: 0 6px 32px rgba(0, 0, 0, 0.14);
  --trans: all 0.25s ease;
  --e-global-color-6eb087b: #1a3a5c; /* Dark navy blue */
  --e-global-color-c4e1d4f: #6d86b8; /* Green */
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
  color: var(--navy);
}
h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
}
p {
  font-size: 0.96rem;
  color: #4a5568;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--navy);
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: var(--radius);
}
.skip-link:focus {
  top: 6px;
}

/* ── Accessibility Panel ── */
#accessibility-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  font-family: Arial, sans-serif;
}
#acc-toggle {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
#acc-menu {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  display: none;
}
#acc-menu h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
}
#acc-menu button {
  margin: 5px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
  border-radius: 4px;
}
#acc-menu button:hover {
  background: var(--green);
  color: #fff;
}

/* High Contrast Mode */
.high-contrast {
  background: #000 !important;
  color: #fff !important;
}
.high-contrast * {
  background: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
.high-contrast a {
  color: #ffff00 !important;
}
.high-contrast button {
  background: #fff !important;
  color: #000 !important;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 70px 0;
}
.section--gray {
  background: var(--off-white);
}
.section--navy {
  background: var(--navy2);
}
.section--green {
  background: var(--green);
}

/* ── Labels / Headings ── */
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
  display: block;
}
.section-heading {
  margin-bottom: 12px;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 36px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
}
.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-green:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy2);
  border-color: var(--navy2);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
}

/* =====================================================
   HEADER / TOP BAR
   ===================================================== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-top {
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-lt);
}
.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top__logo img {
  height: 60px;
  width: auto;
}
.header-top__contacts {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-top__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--navy);
  font-weight: 500;
}
.header-top__contact svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}
.header-top__contact a {
  color: var(--navy);
  transition: var(--trans);
}
.header-top__contact a:hover {
  color: var(--green);
}
.header-top__contact .sep {
  color: var(--gray-lt);
  font-size: 1.4rem;
  line-height: 1;
}

/* ── Navbar ── */
.navbar {
  /* background: var(--navy);
} */

  .navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
  }

  /* Desktop styles */
  @media (min-width: 961px) {
    .nav__menu {
      display: flex;
      align-items: center;
      width: 100%;
    }

    .nav__list {
      display: flex;
      align-items: stretch;
      margin: 0;
      padding: 0;
      flex: 1;
    }

    .nav__book {
      margin-left: 0;
    }
  }

  .nav__item {
    position: relative;
  }
  .nav__item:hover .nav__dropdown {
    display: block;
    animation: dropIn 0.18s ease;
  }

  .nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 17px 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0c5d91;
    letter-spacing: 0.04em;
    transition: var(--trans);
    border-bottom: 3px solid transparent;
  }
  .nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav__link:hover,
  .nav__link.active {
    color: #89b555;
    background: rgba(255, 255, 255, 0.08);
    /* border-bottom-color: var(--green); */
    font-weight: 100;
  }
}
.nav__link svg {
  width: 12px;
  height: 12px;
}

/* Dropdown */
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow2);
  border-top: 3px solid var(--green);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 300;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--gray-lt);
  transition: var(--trans);
}
.nav__dropdown a:last-child {
  border-bottom: none;
}
.nav__dropdown a::before {
  content: none;
}
.nav__dropdown a:hover {
  background: var(--green-lt);
  color: var(--green);
  padding-left: 24px;
}

.nav__book .btn {
  border-radius: 0;
  padding: 18px 24px;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

/* Mobile burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}

@media (max-width: 960px) {
  .nav__burger {
    display: flex;
  }
  .nav__menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 290px;
    z-index: 400;
    padding: 64px 0 32px;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
  }
  .nav__menu.open {
    display: block;
  }
  .nav__list {
    flex-direction: column;
  }
  .nav__link {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-left: none;
  }
  .nav__dropdown {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
  }
  .nav__dropdown a {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.07);
    padding-left: 36px;
  }
  .nav__dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  .nav__book {
    margin: 16px 24px 0;
  }
  .nav__book .btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius);
  }
  .nav__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 399;
  }
  .nav__overlay.open {
    display: block;
  }
  .header-top__contacts {
    display: none;
  }
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero {
  position: relative;
  overflow: hidden;
  height: 560px;
  min-height: 480px;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 1;
}
.hero__slide.active {
  opacity: 1;
  z-index: 2;
}
.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 28, 55, 0.78) 0%,
    rgba(10, 28, 55, 0.45) 55%,
    rgba(10, 28, 55, 0.1) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 580px;
}
.hero__label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero__dot {
  width: 32px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--trans);
}
.hero__dot.active {
  background: var(--green);
  width: 48px;
}
.hero__arrows {
  position: absolute;
  bottom: 20px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero__arrow {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  font-size: 1.1rem;
}
.hero__arrow:hover {
  background: var(--green);
  border-color: var(--green);
}

/* =====================================================
   WELCOME / INTRO SECTION
   ===================================================== */
.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.welcome__img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.welcome__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.welcome__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-lt);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.welcome__list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.welcome__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text);
}
.welcome__item::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.welcome__item strong {
  color: var(--navy);
}

/* =====================================================
   RECOVER / FEATURES CARDS
   ===================================================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  cursor: default;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow2);
}
.feature-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.feature-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 28, 55, 0.88), transparent);
  padding: 36px 16px 16px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services__head {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.services__head__left {
  flex: 1;
}
.services__head__right {
  flex: 0 0 220px;
  background: var(--navy);
  border-radius: 8px;
  padding: 24px;
}
.services__head__right .label {
  color: var(--green);
}
.services__head__right .emerg-num {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.services__head__right .emerg-num svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--gray-lt);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  border-bottom-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow2);
}
.svc-card__icon {
  width: 48px;
  height: 48px;
  background: var(--green-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.svc-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}
.svc-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.svc-card p {
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 18px;
}
.svc-card .btn {
  align-self: flex-start;
  padding: 8px 18px;
  font-size: 0.78rem;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: var(--green);
  padding: 52px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner__text .label {
  color: rgba(255, 255, 255, 0.75);
}
.cta-banner__text h2 {
  color: #fff;
  font-size: 1.7rem;
}
.cta-banner__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-phone {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-phone svg {
  width: 20px;
  height: 20px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.testi-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  border-left: 4px solid var(--green);
}
.testi-card::before {
  content: "\201C";
  font-size: 3.5rem;
  color: var(--green-lt);
  font-family: Georgia, serif;
  position: absolute;
  top: 12px;
  left: 16px;
  line-height: 1;
}
.testi-card__text {
  font-size: 0.92rem;
  font-style: italic;
  color: #4a5568;
  padding-top: 18px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.testi-card__name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

/* =====================================================
   WHY TRUST
   ===================================================== */
.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.trust__img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.trust__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.trust__list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust__item {
  display: flex;
  gap: 14px;
}
.trust__icon {
  width: 38px;
  height: 38px;
  background: var(--green-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust__icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}
.trust__item strong {
  display: block;
  color: var(--navy);
  font-size: 0.93rem;
  margin-bottom: 2px;
}
.trust__item span {
  font-size: 0.87rem;
  color: var(--gray);
}

/* =====================================================
   CONTACT MINI BAR
   ===================================================== */
.contact-bar {
  background: var(--navy2);
  border-radius: 8px;
  padding: 28px 36px;
  display: flex;
  gap: 0;
  margin-top: 56px;
}
.contact-bar__item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-bar__item:last-child {
  border-right: none;
}
.contact-bar__item h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.contact-bar__item a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--trans);
}
.contact-bar__item a:hover {
  color: var(--green);
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--e-global-color-6eb087b);
  opacity: 0.3;
  transition:
    background 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
  z-index: 1;
}
.page-hero h1,
.page-hero p,
.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  text-shadow: 0 2px 4px rgba(37, 36, 36, 0.5);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 50vh;
}
.page-hero__content h1 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 56px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  max-width: 640px;
}
.page-hero__content {
  flex: 1;
  text-align: left;
}
.page-hero__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 90%;
}
.page-hero__cta {
  margin-top: 8px;
}

/* Article hero with gradient background */
.article-hero {
  background-image: linear-gradient(
    70deg,
    var(--e-global-color-6eb087b) 0%,
    var(--e-global-color-c4e1d4f) 64%
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Optional: Add overlay if needed */
.article-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Ensure content stays above overlay */
.article-hero .container {
  position: relative;
  z-index: 2;
}

/* Center the content vertically */
.article-hero .article-hero__inner {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Title styling */
.article-hero h1 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* READ MORE Button Styles */
.art-card__readmore {
  margin-top: 16px;
}

.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  transition: var(--trans);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.btn-readmore:hover {
  color: var(--green-dk);
  gap: 10px;
  border-bottom-color: var(--green);
}

/* Alternative button style (if you want a proper button) */
.btn-readmore-alt {
  display: inline-block;
  padding: 8px 20px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: var(--trans);
}

.btn-readmore-alt:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.page-hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  max-height: 400px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--trans);
}
.breadcrumb a:hover {
  color: var(--green);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* =====================================================
   INSURANCE PAGE
   ===================================================== */
.ins__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.ins-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--trans);
  border-top: 4px solid var(--gray-lt);
}
.ins-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
  border-top-color: var(--green);
}
.ins-card img {
  height: 52px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.ins-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.ins-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* FAQ */
.faq__item {
  border-bottom: 1px solid var(--gray-lt);
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--trans);
}
.faq__q:hover {
  color: var(--green);
}
.faq__q svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq__q.open svg {
  transform: rotate(45deg);
}
.faq__a {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0 0 16px;
  display: none;
}
.faq__a.open {
  display: block;
}

/* =====================================================
   ARTICLES
   ===================================================== */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}
.art-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.art-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
}
.art-card__img {
  height: 192px;
  overflow: hidden;
}
.art-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.art-card:hover .art-card__img img {
  transform: scale(1.05);
}
.art-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.art-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 7px;
}
.art-card__title {
  font-size: 0.97rem;
  margin-bottom: 9px;
  line-height: 1.4;
}
.art-card__title a {
  color: var(--navy);
  transition: var(--trans);
}
.art-card__title a:hover {
  color: var(--green);
}
.art-card__exc {
  font-size: 0.85rem;
  color: var(--gray);
  flex: 1;
  margin-bottom: 14px;
}
.art-card__date {
  font-size: 0.77rem;
  color: var(--gray);
}

/* =====================================================
   BLOG POST
   ===================================================== */
.post__wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.post__hero {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 30px;
  max-height: 420px;
  object-fit: cover;
}
.post__meta {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.post__body {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #374151;
}
.post__body h2 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
  padding-top: 8px;
  border-top: 2px solid var(--gray-lt);
}
.post__body h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--green);
}
.post__body h4 {
  font-size: 0.97rem;
  margin: 18px 0 6px;
}
.post__body p {
  margin-bottom: 16px;
}
.post__body ul,
.post__body ol {
  margin: 0 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.post__body ul {
  list-style: disc;
}
.post__body ol {
  list-style: decimal;
}
.post__body a {
  color: var(--green);
  text-decoration: underline;
}
.post__body strong {
  color: var(--navy);
}
.post__sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-box {
  background: var(--off-white);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 22px;
}
.sidebar-box h4 {
  font-size: 0.88rem;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-lt);
  color: var(--navy);
}
.rel-post {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.rel-post img {
  width: 66px;
  height: 52px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}
.rel-post__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  transition: var(--trans);
}
.rel-post:hover .rel-post__title {
  color: var(--green);
}
.rel-post__date {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 3px;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--green-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}
.ci-item h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 3px;
  font-family: "Montserrat", sans-serif;
}
.ci-item a,
.ci-item p {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
}
.ci-item a:hover {
  color: var(--green);
}
.contact__form {
  background: var(--off-white);
  border-radius: 8px;
  padding: 36px;
}
.contact__form h3 {
  margin-bottom: 22px;
}
.fg {
  margin-bottom: 16px;
}
.fg label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: "Open Sans", sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: var(--trans);
}
.fg input:focus,
.fg textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(58, 125, 68, 0.1);
}
.fg textarea {
  resize: vertical;
  min-height: 110px;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.about__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.mvv-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-lt);
  margin-bottom: 24px;
}
.mvv-tab {
  padding: 11px 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--trans);
}
.mvv-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}
.mvv-panel {
  display: none;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.75;
}
.mvv-panel.active {
  display: block;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.why-item::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =====================================================
   SERVICE DETAIL PAGES
   ===================================================== */
.svc-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 56px;
}
.svc-intro img {
  border-radius: 8px;
  box-shadow: var(--shadow2);
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.standout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 28px;
}
.standout-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
}
.standout-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 7px;
  flex-shrink: 0;
}
.standout-item strong {
  color: var(--navy);
}
.cardio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
}
.cardio-item {
  background: var(--white);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gray-lt);
  transition: var(--trans);
}
.cardio-item:hover {
  border-top-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow2);
}
.cardio-item h3 {
  font-size: 0.95rem;
  margin-bottom: 7px;
}
.cardio-item p {
  font-size: 0.85rem;
  color: var(--gray);
}
.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.mini-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--trans);
}
.mini-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}
.mini-card img {
  width: 68px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.mini-card h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.mini-card p {
  font-size: 0.83rem;
  color: var(--gray);
}
.vein-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.vein-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gray-lt);
  transition: var(--trans);
}
.vein-card:hover {
  border-left-color: var(--green);
  transform: translateX(3px);
  box-shadow: var(--shadow2);
}
.vein-card h3 {
  font-size: 0.97rem;
  margin-bottom: 8px;
}
.vein-card p {
  font-size: 0.86rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.vein-card .btn {
  padding: 7px 16px;
  font-size: 0.76rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--navy2);
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 44px;
}
.footer__brand img {
  height: 52px;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.87rem;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__soc {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.footer__soc:hover {
  background: var(--green);
}
.footer__soc svg {
  width: 15px;
  height: 15px;
  color: #fff;
}
.footer__col h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 16px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col ul a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--trans);
}
.footer__col ul a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer__col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col address a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: var(--trans);
}
.footer__col address a:hover {
  color: #fff;
}
.footer__col address svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green);
}
.footer__hours {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  line-height: 1.7;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: var(--trans);
}
.footer__bottom a:hover {
  color: #fff;
}

/* =====================================================
   PRIVACY
   ===================================================== */
.privacy-content {
  max-width: 820px;
}
.privacy-content h2 {
  font-size: 1.3rem;
  margin: 32px 0 10px;
}
.privacy-content h3 {
  font-size: 1.05rem;
  margin: 22px 0 7px;
}
.privacy-content p,
.privacy-content li {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 10px;
}
.privacy-content ul {
  margin-left: 20px;
  list-style: disc;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .services__head {
    flex-direction: column;
  }
  .services__head__right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
  .page-hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .page-hero__image {
    margin-top: 1rem;
  }

  .welcome__grid,
  .trust__grid,
  .svc-intro,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .services__grid,
  .testimonials__grid,
  .ins__grid,
  .articles__grid,
  .vein-cards,
  .cardio-grid,
  .mini-cards,
  .standout,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .post__wrap {
    grid-template-columns: 1fr;
  }
  .post__sidebar {
    position: static;
  }
  .contact-bar {
    flex-direction: column;
    gap: 20px;
  }
  .contact-bar__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0 16px;
  }
  .contact-bar__item:last-child {
    border-bottom: none;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .hero {
    height: 460px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    height: 400px;
  }
  .hero__title {
    font-size: 1.6rem;
  }
  .header-top__logo img {
    height: 46px;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
}

/* use to curve the bottom edge of the hero section */
.page-hero {
  border-bottom-left-radius: 50% 40px;
  border-bottom-right-radius: 50% 40px;
  overflow: hidden;
}
.page-hero .page-hero__inner {
  position: relative;
  z-index: 2;
}

.nav__dropdown a {
  white-space: nowrap;
}
