:root {
  --abb-navy: #151a52;
  --abb-navy-dark: #0e123c;
  --abb-orange: #f4711f;
  --abb-orange-dark: #d95e10;
  --abb-ink: #1b1d2b;
  --abb-muted: #6b7080;
  --abb-line: #e8e9f0;
  --abb-bg-soft: #f6f7fb;
}

html {
  overflow-x: hidden;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--abb-ink);
  margin: 0;
}
.abb-brand-font {
  font-family: "Poppins", sans-serif;
}

/* ============ TOPBAR ============ */
.abb-topbar {
  background: var(--abb-navy-dark);
  color: #c9cbe0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 3px solid var(--abb-orange);
}
.abb-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.abb-topbar__info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.abb-topbar__info a {
  color: #c9cbe0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease;
}
.abb-topbar__info a:hover {
  color: #fff;
}
.abb-topbar__info i {
  color: var(--abb-orange);
  font-size: 0.9rem;
}
.abb-topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.abb-topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 500;
}
.abb-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #33d17a;
  position: relative;
  flex-shrink: 0;
}
.abb-pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #33d17a;
  animation: abbPulse 1.8s ease-out infinite;
}
@keyframes abbPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
.abb-topbar__social {
  display: flex;
  gap: 10px;
}
.abb-topbar__social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #c9cbe0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.abb-topbar__social a:hover {
  background: var(--abb-orange);
  color: #fff;
}

/* ============ HEADER ============ */
.abb-header {
  background: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(21, 26, 82, 0.06);
  transition:
    padding 0.25s ease,
    box-shadow 0.25s ease;
}
/* Keep header/topbar content on one consistent, centered width
   regardless of Bootstrap's own container CSS finishing loading */
.abb-header .container,
.abb-topbar .container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
/* Close (X) button belongs to the mobile slide-in drawer only —
   hidden by default, switched on inside the mobile media query below */
.abb-nav-close {
  display: none;
}
.abb-header.abb-header--scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 22px rgba(21, 26, 82, 0.12);
}
.abb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.abb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.abb-logo img {
  height: 75px;
  width: auto;
  transition: height 0.25s ease;
}
.abb-header--scrolled .abb-logo img {
  height: 70px;
}
.abb-logo__text {
  line-height: 1.1;
}
.abb-logo__name {
  display: block;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--abb-navy);
  letter-spacing: 0.2px;
}
.abb-logo__name span {
  color: var(--abb-orange);
}
.abb-logo__tag {
  display: block;
  font-size: 0.68rem;
  color: var(--abb-muted);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---- Primary nav ---- */
.abb-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.abb-nav > li {
  position: relative;
}
.abb-nav > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  color: var(--abb-ink);
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.abb-nav > li > a i.abb-caret {
  font-size: 0.62rem;
  color: var(--abb-muted);
  transition: transform 0.2s ease;
}
.abb-nav > li:hover > a,
.abb-nav > li.abb-active > a {
  color: var(--abb-orange);
}
.abb-nav > li:hover > a i.abb-caret {
  transform: rotate(180deg);
  color: var(--abb-orange);
}

/* Level 2 dropdown */
.abb-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(21, 26, 82, 0.16);
  border-top: 3px solid var(--abb-orange);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 1001;
}
.abb-nav > li:hover > .abb-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.abb-dropdown li {
  position: relative;
}
.abb-dropdown li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 18px;
  color: var(--abb-ink);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}
.abb-dropdown li > a:hover {
  background: var(--abb-bg-soft);
  color: var(--abb-orange);
  padding-left: 22px;
}
.abb-dropdown li > a i.abb-caret-sub {
  font-size: 0.6rem;
  color: var(--abb-muted);
}

/* Level 3 flyout submenu */
.abb-submenu {
  position: absolute;
  top: -9px;
  left: 100%;
  min-width: 210px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(21, 26, 82, 0.16);
  border-top: 3px solid var(--abb-navy);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.abb-dropdown li:hover > .abb-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.abb-submenu li > a {
  padding: 9px 16px;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ---- Right side actions ---- */
.abb-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.abb-call {
  display: flex;
  align-items: center;
  gap: 10px;
}
.abb-call__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--abb-bg-soft);
  color: var(--abb-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.abb-call__text {
  line-height: 1.2;
}
.abb-call__label {
  display: block;
  font-size: 0.72rem;
  color: var(--abb-muted);
  font-weight: 500;
}
.abb-call__number {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--abb-navy);
}
.abb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--abb-orange);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.abb-cta:hover {
  background: var(--abb-orange-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile toggle */
.abb-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--abb-line);
  background: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--abb-navy);
  flex-shrink: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .abb-call {
    display: none;
  }
  .abb-toggle {
    display: flex;
    margin-left: auto;
  }
  .abb-header__inner {
    justify-content: flex-start;
  }

  .abb-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 86vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 70px 0 20px;
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
  }
  .abb-nav.abb-nav--open {
    right: 0;
  }

  .abb-nav > li {
    width: 100%;
  }
  .abb-nav > li > a {
    padding: 14px 22px;
    justify-content: space-between;
    border-bottom: 1px solid var(--abb-line);
  }
  .abb-dropdown,
  .abb-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    width: 100%;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
    background: var(--abb-bg-soft);
  }
  .abb-dropdown.abb-open,
  .abb-submenu.abb-open {
    max-height: 800px;
    padding: 6px 0;
  }
  .abb-dropdown li > a,
  .abb-submenu li > a {
    padding-left: 34px;
  }
  .abb-submenu li > a {
    padding-left: 50px;
  }

  .abb-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 18, 60, 0.5);
    z-index: 999;
  }
  .abb-nav-overlay.abb-show {
    display: block;
  }

  .abb-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--abb-bg-soft);
    border: none;
    color: var(--abb-navy);
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  /* Topbar: keep only the phone number + social icons */
  .abb-topbar__info a:not(.abb-phone-link) {
    display: none;
  }
  .abb-topbar__badge {
    display: none;
  }
  .abb-topbar__inner {
    justify-content: space-between;
  }
  .abb-topbar__right {
    gap: 0;
  }

  /* Header: keep only the logo + hamburger, drop the CTA button */
  .abb-header__actions .abb-cta {
    display: none;
  }
  .abb-header__inner {
    gap: 0px;
  }
}

@media (max-width: 575.98px) {
  .abb-topbar__info a span.abb-hide-xs {
    display: none;
  }
  .abb-logo__tag {
    display: none;
  }
  .abb-logo img {
    height: 50px;
  }
  .abb-topbar {
    font-size: 0.78rem;
  }
  .abb-topbar__social a {
    width: 26px;
    height: 26px;
  }
}

/* ============ SERVICES / SPECIALTIES SECTION ============ */
.abb-services {
  background: #fff;
}
.abb-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 350px;
  padding: 36px 40px;
  text-decoration: none;
  background-color: var(--abb-navy-dark);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  overflow: hidden;
  isolation: isolate;
}
.abb-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0) 65%
  );
  z-index: -1;
}
.abb-service-card__accent {
  position: absolute;
  top: 24px;
  left: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}
.abb-service-card--orange::before {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.08) 45%,
    rgba(0, 0, 0, 0) 65%
  );
}
.abb-service-card__title {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 12px;
  max-width: 85%;
}
.abb-service-card__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 85%;
}
.abb-service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.abb-service-card__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--abb-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 2px dashed rgba(21, 26, 82, 0.35);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.abb-service-card--orange .abb-service-card__icon {
  color: var(--abb-orange-dark);
  border-color: rgba(217, 94, 16, 0.35);
}
.abb-service-card:hover .abb-service-card__icon {
  background: var(--abb-orange);
  color: #fff;
  border-color: transparent;
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .abb-service-card {
    background-size: auto 75%;
  }
}

@media (max-width: 767.98px) {
  .abb-service-card {
    height: 300px;
    padding: 28px 26px;
    background-position: right -10px center;
    background-size: auto 60%;
  }
  .abb-service-card__title {
    font-size: 1.15rem;
  }
}

/* ============ ABOUT SECTION ============ */
.abb-about {
  position: relative;
  background: var(--abb-bg-soft);
  padding: 100px 0;
  overflow: hidden;
}

/* decorative dot-grid + soft color blobs, pure CSS, no images */
.abb-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(var(--abb-navy) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.08;
}
.abb-about::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 113, 31, 0.16) 0%,
    rgba(244, 113, 31, 0) 70%
  );
}
.abb-about__blob {
  position: absolute;
  top: 60px;
  right: 6%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 26, 82, 0.1) 0%,
    rgba(21, 26, 82, 0) 70%
  );
  pointer-events: none;
}

.abb-about__inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.abb-about__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.abb-about__badge span {
  width: 26px;
  height: 8px;
  border-radius: 4px;
  background: var(--abb-orange);
  display: inline-block;
}
.abb-about__badge p {
  margin: 0;
  color: var(--abb-orange-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.abb-about__title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--abb-navy-dark);
  margin: 0 0 40px;
  max-width: 640px;
}
.abb-about__title span {
  color: var(--abb-orange);
}

/* --- floated media collage + wrapped content --- */
.abb-about__flow::after {
  content: "";
  display: table;
  clear: both;
}

.abb-about__media {
  float: right;
  width: 44%;
  margin: 6px 0 40px 50px;
  position: relative;
}
.abb-about__media::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 88%;
  height: 88%;
  border: 2px dashed rgba(244, 113, 31, 0.45);
  border-radius: 18px;
  z-index: 0;
}
.abb-about__media-frame {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 26px 55px rgba(21, 26, 82, 0.2);
}
.abb-about__media-frame img {
  width: 100%;
  display: block;
}
.abb-about__media-sub {
  position: absolute;
  z-index: 2;
  left: -38px;
  bottom: -34px;
  width: 42%;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 18px 34px rgba(21, 26, 82, 0.22);
  transform: rotate(-4deg);
}
.abb-about__media-sub img {
  width: 100%;
  display: block;
}
.abb-about__media-badge {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: -20px;
  background: var(--abb-navy-dark);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(14, 18, 60, 0.3);
}
.abb-about__media-badge i {
  color: var(--abb-orange);
  font-size: 1.3rem;
}
.abb-about__media-badge p {
  margin: 0;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.3;
}

/* floating medical accent icons */
.abb-about__float {
  position: absolute;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 14px 28px rgba(21, 26, 82, 0.18);
  animation: abbFloatY 3.2s ease-in-out infinite;
}
.abb-about__float--1 {
  top: -24px;
  left: 14%;
  color: var(--abb-orange);
  animation-delay: 0s;
}
.abb-about__float--2 {
  top: 38%;
  right: -20px;
  color: var(--abb-navy);
  animation-delay: 0.6s;
  width: 46px;
  height: 46px;
  font-size: 1.05rem;
}
@keyframes abbFloatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* --- dynamic content zone: single parent class styles raw tags --- */
.abb-about-desc {
  color: var(--abb-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.abb-about-desc p {
  margin: 0 0 28px;
}
.abb-about-desc strong {
  color: var(--abb-navy-dark);
  font-weight: 700;
}
.abb-about-desc a {
  color:#fff;
  font-weight: 600;
  /* text-decoration: underline; */
  /* text-underline-offset: 3px; */
}
.abb-about-desc ul {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.abb-about-desc ul li {
  position: relative;
  padding: 0 0 20px 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--abb-line);
}
.abb-about-desc ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.abb-about-desc ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(244, 113, 31, 0.12);
  color: var(--abb-orange);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abb-about-desc ul li strong {
  display: block;
  font-family: "Poppins", sans-serif;
  color: var(--abb-navy-dark);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.abb-about__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}
.abb-about__btn {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 30px;
  border-radius: 27px;
  background: var(--abb-navy-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.abb-about__btn:hover {
  background: var(--abb-orange);
  color: #fff;
}
.abb-about__btn-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--abb-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.abb-about__btn-icon:hover {
  background: var(--abb-navy-dark);
  transform: translate(3px, -3px);
}

@media (max-width: 991.98px) {
  .abb-about__media {
    width: 46%;
    margin-left: 34px;
  }
  .abb-about__media-sub {
    width: 46%;
    left: -24px;
  }
}

@media (max-width: 767.98px) {
  .abb-about {
    padding: 64px 0;
  }
  .abb-about__title {
    font-size: 1.7rem;
  }
  .abb-about__media {
    float: none;
    width: 88%;
    max-width: 360px;
    margin: 0 auto 70px;
    display: block;
  }
  .abb-about__media::before {
    display: none;
  }
  .abb-about__float {
    display: none;
  }
  .abb-about__info {
    grid-template-columns: 1fr;
  }
}

/* ============ STATS / FUNFACT BAR ============ */
.abb-stats {
  background-color: var(--abb-navy);
  background-image: url("https://madies.vercel.app/assets/img/bg/funfact-bg.png");
  background-repeat: repeat;
  background-position: center;
  padding: 75px 0;
}
.abb-stats__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.abb-stats__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.abb-stats__item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 200px;
}
.abb-stats__icon {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px dashed #fff;
  padding: 6px;
}
.abb-stats__icon span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--abb-navy-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.abb-stats__number {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  margin: 0 0 6px;
}
.abb-stats__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .abb-stats__grid {
    justify-content: flex-start;
  }
  .abb-stats__item {
    flex: 1 1 45%;
  }
}
@media (max-width: 575.98px) {
  .abb-stats {
    padding: 44px 0;
  }
  .abb-stats__item {
    flex: 1 1 100%;
  }
  .abb-stats__icon {
    width: 64px;
    height: 64px;
  }
  .abb-stats__number {
    font-size: 1.7rem;
  }
}

/* ============ PRODUCTS SECTION ============ */
.abb-products {
  background: var(--abb-bg-soft);
  padding: 115px 0;
}
.abb-products__inner {
  padding: 0px;
}

/* ---- left intro col ---- */
.abb-products__intro {
  position: relative;
  height: 100%;
  background: var(--abb-navy-dark);
  border-radius: 20px;
  padding: 46px 38px;
  color: #fff;
  overflow: hidden;
}
.abb-products__intro::after {
  content: "";
  position: absolute;
  bottom: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 113, 31, 0.22) 0%,
    rgba(244, 113, 31, 0) 70%
  );
}
.abb-products__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.abb-products__badge span {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: var(--abb-orange);
  display: inline-block;
}
.abb-products__badge p {
  margin: 0;
  color: var(--abb-orange);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.abb-products__icon {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.abb-products__icon img {
  /* width:46px; */
  height: 250px;
  /* filter:brightness(0) invert(1); */
}
.abb-products__title {
  position: relative;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1.25;
  margin: 0 0 18px;
}
.abb-products__title span {
  color: var(--abb-orange);
}
.abb-products__desc {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 32px;
}
.abb-products__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 26px;
  background: var(--abb-orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.abb-products__btn:hover {
  background: var(--abb-orange-dark);
  color: #fff;
}

/* ---- right carousel col ---- */
.abb-products__carousel-col {
  height: 100%;
  display: flex;
  align-items: center;
}
.abb-product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(21, 26, 82, 0.08);
  overflow: hidden;
  margin: 6px;
  display: block;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.abb-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(21, 26, 82, 0.14);
}
.abb-product-card__media {
  position: relative;
  height: 250px;
  background: var(--abb-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.abb-product-card__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.abb-product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--abb-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.abb-product-card__body {
  padding: 20px 22px 24px;
}
.abb-product-card__name {
  margin: 0 0 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--abb-navy-dark);
}
.abb-product-card__cat {
  margin: 0 0 16px;
  color: var(--abb-muted);
  font-size: 0.85rem;
}
.abb-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--abb-orange-dark);
  font-weight: 700;
  font-size: 0.85rem;
}
.abb-product-card__link i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}
.abb-product-card:hover .abb-product-card__link i {
  transform: translateX(4px);
}

/* owl nav/dots restyle */
.abb-products .owl-theme .owl-dots .owl-dot span {
  background: var(--abb-line);
  width: 9px;
  height: 9px;
  margin: 5px;
}
.abb-products .owl-theme .owl-dots .owl-dot.active span {
  background: var(--abb-orange);
}
.abb-products .owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  top: -70px;
  right: 0;
}
.abb-products .owl-theme .owl-nav [class*="owl-"] {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--abb-navy-dark);
  box-shadow: 0 8px 18px rgba(21, 26, 82, 0.12);
  font-size: 1.2rem;
  line-height: 40px;
  margin: 0 0 0 10px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.abb-products .owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--abb-orange);
  color: #fff;
}

@media (max-width: 991.98px) {
  .abb-products__intro {
    margin-bottom: 34px;
  }
  .abb-products .owl-theme .owl-nav {
    position: static;
    margin-top: 24px;
    text-align: center;
  }
  .abb-products .owl-theme .owl-nav [class*="owl-"] {
    margin: 0 6px;
  }
}

/* ============ WHY CHOOSE US ============ */
.abb-why {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("https://madies.vercel.app/assets/img/bg/medical-quality-service-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.abb-why::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background-image: radial-gradient(var(--abb-orange) 1.8px, transparent 1.8px);
  background-size: 20px 20px;
  opacity: 0.07;
}
.abb-why__blob {
  position: absolute;
  top: -90px;
  left: -90px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 26, 82, 0.08) 0%,
    rgba(21, 26, 82, 0) 70%
  );
  pointer-events: none;
}

.abb-why__inner {
  position: relative;
  z-index: 1;
  padding: 0px;
}

.abb-why__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.abb-why__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.abb-why__badge span {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: var(--abb-orange);
  display: inline-block;
}
.abb-why__badge p {
  margin: 0;
  color: var(--abb-orange-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.abb-why__title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 14px;
}
.abb-why__title span {
  color: var(--abb-orange);
}
.abb-why__subtitle {
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ---- bento grid, positioned with named areas (no nth-child guessing) ---- */
.abb-why__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: minmax(210px, auto) minmax(210px, auto);
  grid-template-areas:
    "main sub  c1"
    "main c2   c3";
  gap: 22px;
}
.abb-why__grid > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.abb-why__grid.abb-inview > * {
  opacity: 1;
  transform: translateY(0);
}
.abb-why__grid.abb-inview .abb-why__media--main {
  transition-delay: 0.05s;
}
.abb-why__grid.abb-inview .abb-why__media--sub {
  transition-delay: 0.15s;
}
.abb-why__grid.abb-inview .abb-why__card--1 {
  transition-delay: 0.25s;
}
.abb-why__grid.abb-inview .abb-why__card--2 {
  transition-delay: 0.35s;
}
.abb-why__grid.abb-inview .abb-why__card--3 {
  transition-delay: 0.45s;
}

/* image tiles */
.abb-why__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: block;
}
.abb-why__media--main {
  grid-area: main;
}
.abb-why__media--sub {
  grid-area: sub;
}
.abb-why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.abb-why__media:hover img {
  transform: scale(1.14);
}
.abb-why__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 18, 60, 0) 45%,
    rgba(14, 18, 60, 0.82) 100%
  );
}
.abb-why__media-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  transform: translateY(10px);
  opacity: 0.9;
  transition: transform 0.3s ease;
}
.abb-why__media:hover .abb-why__media-caption {
  transform: translateY(0);
  opacity: 1;
}
.abb-why__media-caption small {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}

/* ---- flip cards ---- */
.abb-why__card {
  position: relative;
  min-height: 210px;
  perspective: 1400px;
}
.abb-why__card--1 {
  grid-area: c1;
}
.abb-why__card--2 {
  grid-area: c2;
}
.abb-why__card--3 {
  grid-area: c3;
}

.abb-why__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.abb-why__card:hover .abb-why__card-inner {
  transform: rotateY(180deg);
}

.abb-why__card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.abb-why__card-face--front {
  background-size: cover;
  border: 1px solid var(--abb-line);
}
.abb-why__card-face--back {
  background: var(--abb-navy-dark);
  color: #fff;
  transform: rotateY(180deg);
}
.abb-why__card--2 .abb-why__card-face--back {
  background: var(--abb-orange);
}

.abb-why__card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--abb-navy-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.abb-why__card--2 .abb-why__card-icon,
.abb-why__card--3 .abb-why__card-icon {
  background: var(--abb-orange);
}

.abb-why__card-title {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
}
.abb-why__card-desc {
  margin: 0;
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1.6;
}
.abb-why__card-face--back .abb-why__card-title {
  color: #fff;
}
.abb-why__card-face--back .abb-why__card-desc {
  color: rgba(255, 255, 255, 0.85);
}
.abb-why__card-face--back i.abb-why__card-tick {
  font-size: 1.4rem;
  margin-bottom: 14px;
  opacity: 0.9;
}

/* ---- bottom highlight strip ---- */
.abb-why__strip {
  margin-top: 26px;
  border-radius: 18px;
  background: var(--abb-navy-dark);
  padding: 26px 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease 0.5s,
    transform 0.6s ease 0.5s;
}
.abb-why__strip.abb-inview {
  opacity: 1;
  transform: translateY(0);
}
.abb-why__chip {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.abb-why__chip i {
  color: var(--abb-orange);
  font-size: 1.15rem;
}
.abb-why__chip p {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width: 991.98px) {
  .abb-why__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(220px, auto) minmax(200px, auto) minmax(
        200px,
        auto
      );
    grid-template-areas:
      "main sub"
      "main c1"
      "c2   c3";
  }
}

@media (max-width: 575.98px) {
  .abb-why {
    padding: 64px 0;
  }
  .abb-why__title {
    font-size: 1.6rem;
  }
  .abb-why__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas:
      "main"
      "sub"
      "c1"
      "c2"
      "c3";
  }
  .abb-why__media {
    height: 220px;
  }
  .abb-why__card {
    min-height: 190px;
  }
  .abb-why__strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============ SECTION SHELL ============ */
.abb-tf {
  background: var(--abb-bg-soft);
  padding: 100px 0;
}
.abb-tf__inner {
  padding: 0px;
}
.abb-tf__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.abb-tf__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.abb-tf__badge span {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: var(--abb-orange);
  display: inline-block;
}
.abb-tf__badge p {
  margin: 0;
  color: var(--abb-orange-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.abb-tf__title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.25;
  color: var(--abb-navy-dark);
  margin: 0 0 14px;
}
.abb-tf__title span {
  color: var(--abb-orange);
}
.abb-tf__subtitle {
  margin: 0;
  color: var(--abb-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.abb-tf__col-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
}
.abb-tf__col-title i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--abb-navy-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.abb-tf__col-title p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--abb-navy-dark);
}

/* ============ TESTIMONIALS: vertical auto-scrolling marquee ============ */
.abb-testi-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.abb-testi {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  min-height: 520px;
}
.abb-testi__viewport {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.abb-testi__track {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: abbTestiScroll linear infinite;
  animation-duration: 22s;
}
.abb-testi.is-paused .abb-testi__track {
  animation-play-state: paused;
}
@keyframes abbTestiScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.abb-testi-slide {
  display: flex;
  width: 100%;
  flex-shrink: 0;
  background: #fff;
  border-radius: 18px;
  /* box-shadow: 0 16px 40px rgba(21, 26, 82, 0.1); */
  padding: 28px 30px 24px;
  flex-direction: column;
  justify-content: center;
}

.abb-testi-slide__quote {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(244, 113, 31, 0.12);
  color: var(--abb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 14px;
}
.abb-testi-slide__stars {
  color: var(--abb-orange);
  font-size: 0.8rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.abb-testi-slide__text {
  margin: 0 0 16px;
  color: var(--abb-ink);
  font-size: 0.94rem;
  line-height: 1.6;
}
.abb-testi-slide__person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--abb-line);
}
.abb-testi-slide__person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.abb-testi-slide__name {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--abb-navy-dark);
}
.abb-testi-slide__role {
  margin: 0;
  color: var(--abb-muted);
  font-size: 0.78rem;
}

/* ============ FAQ ACCORDION ============ */
.abb-faq {
  height: 100%;
}
.abb-faq__item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--abb-line);
  margin-bottom: 14px;
  overflow: hidden;
}
.abb-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--abb-navy-dark);
}
.abb-faq__q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--abb-bg-soft);
  color: var(--abb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}
.abb-faq__q[aria-expanded="true"] .abb-faq__q-icon {
  transform: rotate(45deg);
  background: var(--abb-orange);
  color: #fff;
}
.abb-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.abb-faq__a-inner {
  padding: 0 22px 20px;
  color: var(--abb-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.abb-faq__item.abb-open .abb-faq__a {
  max-height: 260px;
}

@media (max-width: 991.98px) {
  .abb-testi {
    margin-bottom: 40px;
    min-height: 420px;
  }
}
@media (max-width: 575.98px) {
  .abb-tf {
    padding: 64px 0;
  }
  .abb-tf__title {
    font-size: 1.6rem;
  }
  .abb-testi {
    min-height: 360px;
  }
  .abb-testi-slide {
    padding: 22px 22px 18px;
  }
}

/* ============ CTA: "enquiry slip" contact section ============ */
.aabt-enq {
  background: #f4711f4f;
  padding: 100px 0;
}
.aabt-enq__shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0 6%;
}

/* ---- left: dark info panel ---- */
.aabt-enq__info {
  background: linear-gradient(
    155deg,
    var(--abb-navy) 0%,
    var(--abb-navy-dark) 100%
  );
  border-radius: 26px;
  padding: 56px 44px;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.aabt-enq__info::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 113, 31, 0.16) 0%,
    transparent 70%
  );
}
.aabt-enq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.aabt-enq__eyebrow span {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: var(--abb-orange);
  display: inline-block;
}
.aabt-enq__eyebrow p {
  margin: 0;
  color: #ffb98a;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.aabt-enq__title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 14px;
}
.aabt-enq__title span {
  color: var(--abb-orange);
}
.aabt-enq__subtitle {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 38ch;
}

.aabt-enq__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.aabt-enq__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.aabt-enq__row-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--abb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.aabt-enq__row-label {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.aabt-enq__row-value {
  margin: 0;
  font-weight: 600;
  font-size: 0.94rem;
}
.aabt-enq__row-value a {
  color: #fff;
  text-decoration: none;
}
.aabt-enq__row-value a:hover {
  color: var(--abb-orange);
}

.aabt-enq__map {
  margin-top: auto;
  position: relative;
  height: 150px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.aabt-enq__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(92%) hue-rotate(180deg) saturate(1.4) brightness(0.94);
}
.aabt-enq__map-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 18, 60, 0.85);
  backdrop-filter: blur(4px);
  font-size: 0.74rem;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
}
.aabt-enq__map-tag i {
  color: var(--abb-orange);
}

/* ---- right: prescription-pad enquiry slip ---- */
.aabt-enq__pad-wrap {
  display: flex;
  align-items: center;
  padding: 26px 0;
}
.aabt-enq__pad {
  position: relative;
  width: 100%;
  background: #fffaf3;
  border-radius: 18px;
  padding: 38px 38px 32px;
  /* transform:rotate(-1.3deg); */
  box-shadow: 0 26px 55px rgba(14, 18, 60, 0.2);
}
.aabt-enq__pad::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9px;
  height: 18px;
  background:
    linear-gradient(135deg, #fffaf3 25%, transparent 25.5%) 0 0/18px 18px
      repeat-x,
    linear-gradient(-135deg, #fffaf3 25%, transparent 25.5%) 0 0/18px 18px
      repeat-x;
}
.aabt-enq__pad-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1.5px dashed rgba(21, 26, 82, 0.16);
}
.aabt-enq__pad-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(244, 113, 31, 0.14);
  color: var(--abb-orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.aabt-enq__pad-head h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--abb-navy-dark);
}
.aabt-enq__pad-head p {
  margin: 2px 0 0;
  color: var(--abb-muted);
  font-size: 0.82rem;
}

.aabt-enq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
  margin-top: 24px;
}
.aabt-enq__field {
  display: flex;
  flex-direction: column;
}
.aabt-enq__field--full {
  grid-column: 1 / -1;
}
.aabt-enq__field label {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--abb-muted);
  margin-bottom: 8px;
}
.aabt-enq__field input,
.aabt-enq__field select,
.aabt-enq__field textarea {
  border: none;
  border-bottom: 1.5px solid rgba(21, 26, 82, 0.18);
  background: transparent;
  padding: 6px 2px 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
  color: var(--abb-ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.aabt-enq__field input::placeholder,
.aabt-enq__field textarea::placeholder {
  color: #b7bad0;
}
.aabt-enq__field input:focus,
.aabt-enq__field select:focus,
.aabt-enq__field textarea:focus {
  border-bottom-color: var(--abb-orange);
}
.aabt-enq__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23f4711f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
  cursor: pointer;
}
.aabt-enq__field textarea {
  resize: none;
  min-height: 66px;
  line-height: 1.6;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 27px,
    rgba(21, 26, 82, 0.1) 28px
  );
}

.aabt-enq__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
}
.aabt-enq__foot-note {
  margin: 0;
  font-size: 0.76rem;
  color: var(--abb-muted);
  max-width: 22ch;
  line-height: 1.5;
}
.aabt-enq__stamp {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border: 2px dashed var(--abb-orange);
  border-radius: 999px;
  background: transparent;
  color: var(--abb-orange-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transform: rotate(-4deg);
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    border-style 0.25s ease;
}
.aabt-enq__stamp:hover {
  background: var(--abb-orange);
  border-style: solid;
  color: #fff;
  transform: rotate(0deg) scale(1.03);
}

@media (max-width: 991.98px) {
  .aabt-enq__shell {
    grid-template-columns: 1fr;
    gap: 26px 0;
  }
  .aabt-enq__info {
    padding: 44px 34px;
  }
  .aabt-enq__pad-wrap {
    padding: 0;
  }
  .aabt-enq__pad {
    transform: rotate(0);
  }
}
@media (max-width: 575.98px) {
  .aabt-enq {
    padding: 64px 0;
  }
  .aabt-enq__title {
    font-size: 1.6rem;
  }
  .aabt-enq__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .aabt-enq__pad {
    padding: 30px 24px 26px;
  }
  .aabt-enq__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .aabt-enq__stamp {
    justify-content: center;
    transform: rotate(0);
  }
  .aabt-enq__foot-note {
    max-width: none;
    text-align: center;
  }
}

/* ============ Footer: standalone ============ */
.aabt-ftr {
  position: relative;
  background: linear-gradient(
    155deg,
    var(--abb-navy) 0%,
    var(--abb-navy-dark) 100%
  );
  color: rgba(255, 255, 255, 0.72);
  padding: 30px 0;
  overflow: hidden;
}

/* --- signature: vitals / pulse line seam at the very top --- */
.aabt-ftr__pulse {
  display: block;
  width: 100%;
  height: 46px;
}
.aabt-ftr__pulse path {
  fill: none;
  stroke: var(--abb-orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}
.aabt-ftr__pulse circle {
  fill: var(--abb-orange);
}
.aabt-ftr__pulse-dot {
  animation: aabt-travel 7s linear infinite;
  offset-path: path(
    "M0,32 L120,32 L142,32 L156,6 L172,58 L188,10 L202,32 L232,32 L252,32 L268,14 L282,48 L296,32 L1200,32"
  );
}
@keyframes aabt-travel {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .aabt-ftr__pulse-dot {
    animation: none;
    opacity: 0;
  }
}

.aabt-ftr::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 113, 31, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.aabt-ftr__shell {
  padding: 35px 0px 0;
  position: relative;
}

/* --- brand block --- */
.aabt-ftr__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.aabt-ftr__mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(244, 113, 31, 0.14);
  border: 1px solid rgba(244, 113, 31, 0.3);
  color: var(--abb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.aabt-ftr__wordmark {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  line-height: 1.2;
  color: #fff;
}
.aabt-ftr__wordmark small {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 3px;
}
.aabt-ftr__desc {
  margin: 0 0 22px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 34ch;
}

.aabt-ftr__social {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.aabt-ftr__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.aabt-ftr__social a:hover {
  background: var(--abb-orange);
  border-color: var(--abb-orange);
  color: #fff;
  transform: translateY(-2px);
}

/* --- link columns --- */
.aabt-ftr__col-title {
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--abb-orange);
  margin: 0 0 20px;
}
.aabt-ftr__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.aabt-ftr__links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.aabt-ftr__links a i {
  font-size: 0.62rem;
  color: var(--abb-orange);
}
.aabt-ftr__links a:hover {
  color: #fff;
  gap: 12px;
}

/* --- reach us --- */
.aabt-ftr__reach {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aabt-ftr__reach li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.aabt-ftr__reach-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--abb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  margin-top: 1px;
}
.aabt-ftr__reach p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}
.aabt-ftr__reach a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}
.aabt-ftr__reach a:hover {
  color: #fff;
}

/* --- certification strip --- */
.aabt-ftr__certs {
  margin-top: 44px;
  padding: 22px 26px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.aabt-ftr__cert {
  display: flex;
  align-items: center;
  gap: 10px;
}
.aabt-ftr__cert i {
  font-size: 1.05rem;
  color: var(--abb-orange);
}
.aabt-ftr__cert-text p {
  margin: 0;
  font-weight: 600;
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.3;
}
.aabt-ftr__cert-text span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --- bottom bar --- */
.aabt-ftr__bottom {
  margin-top: 30px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.aabt-ftr__bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.aabt-ftr__bottom a{
  text-decoration: none;
  color: var(--abb-orange);
}

.aabt-ftr__bottom .aabt-ftr__rx {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
}
.aabt-ftr__bottom .aabt-ftr__rx i {
  color: var(--abb-orange);
}

@media (max-width: 767.98px) {
  .aabt-ftr__shell {
    padding-top: 6px;
  }
  .aabt-ftr__certs {
    justify-content: flex-start;
  }
  .aabt-ftr__bottom {
    justify-content: center;
    text-align: center;
  }
}

.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59, 130, 246, 0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255, 255, 255, 0.65);
  --phero-sep: rgba(255, 255, 255, 0.4);

  font-family: "DM Sans", sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 60, 0.82) 0%,
    rgba(29, 78, 216, 0.55) 100%
  );
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--phero-blue),
    #60a5fa,
    var(--phero-blue)
  );
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition:
    color 0.18s ease,
    background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--phero-blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============ Mission & Vision (standalone) ============ */
.aabt-mv {
  background: var(--abb-bg-soft);
  padding: 100px 0;
}
.aabt-mv__shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.aabt-mv__head {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 52px;
}
.aabt-mv__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.aabt-mv__eyebrow span {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: var(--abb-orange);
  display: inline-block;
}
.aabt-mv__eyebrow p {
  margin: 0;
  color: var(--abb-orange-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.aabt-mv__head h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--abb-navy);
}
.aabt-mv__head h2 span {
  color: var(--abb-orange);
}
.aabt-mv__head p {
  margin: 0;
  color: var(--abb-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.aabt-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* ---- shared card scaffolding ---- */
.aabt-mv__card {
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.aabt-mv__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.aabt-mv__tag {
  margin: 0 0 10px;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.aabt-mv__card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 14px;
}
.aabt-mv__card p.aabt-mv__text {
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0 0 26px;
}
.aabt-mv__pillars {
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aabt-mv__pillars li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
}
.aabt-mv__pillars i {
  font-size: 0.8rem;
}

/* ---- mission: dark navy panel ---- */
.aabt-mv__card--mission {
  background: linear-gradient(
    155deg,
    var(--abb-navy) 0%,
    var(--abb-navy-dark) 100%
  );
  color: rgba(255, 255, 255, 0.7);
}
.aabt-mv__card--mission::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 113, 31, 0.16) 0%,
    transparent 70%
  );
}
.aabt-mv__card--mission::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}
.aabt-mv__card--mission .aabt-mv__icon {
  background: rgba(244, 113, 31, 0.16);
  border: 1px solid rgba(244, 113, 31, 0.32);
  color: var(--abb-orange);
}
.aabt-mv__card--mission .aabt-mv__tag {
  color: #ffb98a;
}
.aabt-mv__card--mission h3 {
  color: #fff;
}
.aabt-mv__card--mission .aabt-mv__pillars {
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
}
.aabt-mv__card--mission .aabt-mv__pillars li {
  color: rgba(255, 255, 255, 0.82);
}
.aabt-mv__card--mission .aabt-mv__pillars i {
  color: var(--abb-orange);
}

/* ---- vision: paper / prescription-pad panel ---- */
.aabt-mv__card--vision {
  background: #fffaf3;
  border: 1px solid var(--abb-line);
  box-shadow: 0 26px 55px rgba(14, 18, 60, 0.08);
}
.aabt-mv__card--vision::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--abb-orange) 0 14px,
    transparent 14px 26px
  );
  opacity: 0.55;
}
.aabt-mv__card--vision .aabt-mv__icon {
  background: rgba(244, 113, 31, 0.12);
  color: var(--abb-orange-dark);
  border: 1px solid rgba(244, 113, 31, 0.22);
}
.aabt-mv__card--vision .aabt-mv__tag {
  color: var(--abb-orange-dark);
}
.aabt-mv__card--vision h3 {
  color: var(--abb-navy-dark);
}
.aabt-mv__card--vision .aabt-mv__text {
  color: var(--abb-muted);
}
.aabt-mv__card--vision .aabt-mv__pillars {
  border-top: 1.5px dashed rgba(21, 26, 82, 0.16);
}
.aabt-mv__card--vision .aabt-mv__pillars li {
  color: var(--abb-ink);
}
.aabt-mv__card--vision .aabt-mv__pillars i {
  color: var(--abb-orange-dark);
}

/* horizon graphic signature for vision card */
.aabt-mv__horizon {
  width: 100%;
  height: 34px;
  margin-bottom: 24px;
}
.aabt-mv__horizon path {
  fill: none;
  stroke: rgba(21, 26, 82, 0.18);
  stroke-width: 1.5;
  stroke-dasharray: 1 7;
  stroke-linecap: round;
}
.aabt-mv__horizon circle {
  fill: var(--abb-orange);
}

@media (max-width: 860px) {
  .aabt-mv__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .aabt-mv {
    padding: 64px 0;
  }
  .aabt-mv__head h2 {
    font-size: 1.6rem;
  }
  .aabt-mv__card {
    padding: 34px 26px;
  }
}


.sitemap-title {
  color: #2b2a28;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sitemap-card {
  background-color: white;
  border: 2px solid var(--abb-orange);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: #2b2a28;
}

.sitemap-card:hover {
  background-color: var(--abb-orange);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
  text-decoration: none;
}

.card-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.sitemap-card:hover .card-description {
  opacity: 1;
}

.category-section {
  margin-bottom: 40px;
}

.category-header {
  color: var(--abb-orange);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--abb-orange);
}

.main-links {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .sitemap-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .category-header {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .sitemap-card {
    padding: 15px;
  }

  .card-label {
    font-size: 1rem;
  }
}
