/* ===============================
   Metrowell Solution Header CSS
   Orange + Gray Theme Only
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #2f2f2f;
  color: #d9d9d9;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Header Shell */
.mws-header-shell {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background:
    linear-gradient(135deg, #3a3a3a 0%, #262626 55%, #444444 100%);
  border-bottom: 1px solid #f28c28;
  box-shadow: 0 14px 35px rgba(242, 140, 40, 0.16);
  transition: 0.35s ease;
}

.mws-header-shell.mws-header-scrolled {
  background:
    linear-gradient(135deg, #262626 0%, #333333 60%, #1f1f1f 100%);
  box-shadow: 0 18px 42px rgba(242, 140, 40, 0.22);
}

/* Metro Route Line */
.mws-header-route-line {
  height: 5px;
  width: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      #f28c28 0px,
      #f28c28 45px,
      #6f6f6f 45px,
      #6f6f6f 58px
    );
  animation: mwsHeaderRouteMove 6s linear infinite;
}

@keyframes mwsHeaderRouteMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 220px 0;
  }
}

/* Navbar */
.mws-header-navbar {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 86px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* Brand */
.mws-header-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #e2e2e2;
  position: relative;
}

@keyframes mwsHeaderBrandShine {
  0% {
    left: -28px;
  }
  45% {
    left: 70px;
  }
  100% {
    left: 70px;
  }
}

/* Logo Image Fix */
.mws-header-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 180px;
  height: 64px;
  text-decoration: none;
  flex-shrink: 0;
}

.mws-header-brand-logo {
  width: 178px;
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
  transition: 0.3s ease;
}

.mws-header-brand:hover .mws-header-brand-logo {
  transform: scale(1.03);
}

/* Tablet */
@media (max-width: 768px) {
  .mws-header-brand {
    min-width: 150px;
    height: 58px;
  }

  .mws-header-brand-logo {
    width: 150px;
    max-height: 52px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .mws-header-brand {
    min-width: 132px;
    height: 54px;
  }

  .mws-header-brand-logo {
    width: 132px;
    max-height: 80px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .mws-header-brand {
    min-width: 118px;
  }

  .mws-header-brand-logo {
    width: 118px;
    max-height: 44px;
  }
}
/* Desktop Menu */
.mws-header-menu {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(108, 108, 108, 0.28);
  border: 1px solid rgba(242, 140, 40, 0.18);
}

.mws-header-menu-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d6d6d6;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
}

.mws-header-menu-link i {
  color: #f28c28;
  font-size: 14px;
  transition: 0.3s ease;
}

.mws-header-menu-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f28c28, #a85d19);
  opacity: 0;
  transform: scale(0.84);
  border-radius: 16px;
  transition: 0.3s ease;
  z-index: -1;
}

.mws-header-menu-link:hover,
.mws-header-menu-active {
  color: #2d2d2d;
  transform: translateY(-2px);
}

.mws-header-menu-link:hover::before,
.mws-header-menu-active::before {
  opacity: 1;
  transform: scale(1);
}

.mws-header-menu-link:hover i,
.mws-header-menu-active i {
  color: #2d2d2d;
}

/* Header Actions */
.mws-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mws-header-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 18px;
  color: #2c2c2c;
  background:
    linear-gradient(135deg, #f28c28 0%, #c96d19 100%);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(242, 140, 40, 0.28);
  position: relative;
  overflow: hidden;
  transition: 0.32s ease;
}

.mws-header-order-btn::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 35px;
  height: 180%;
  background: rgba(215, 215, 215, 0.34);
  transform: rotate(28deg);
  transition: 0.5s ease;
}

.mws-header-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(242, 140, 40, 0.38);
}

.mws-header-order-btn:hover::before {
  left: 120%;
}

.mws-header-toggle-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(242, 140, 40, 0.42);
  border-radius: 16px;
  background: #454545;
  color: #f28c28;
  font-size: 21px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.mws-header-toggle-btn:hover {
  background: #f28c28;
  color: #303030;
  transform: rotate(3deg) scale(1.03);
}

/* Mobile Panel */
.mws-header-mobile-panel {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  animation: mwsHeaderMobileDrop 0.34s ease both;
}

@keyframes mwsHeaderMobileDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mws-header-mobile-panel.mws-header-mobile-open {
  display: flex;
}

.mws-header-mobile-link,
.mws-header-mobile-order {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 16px;
  background: #3e3e3e;
  border: 1px solid rgba(242, 140, 40, 0.2);
  color: #d7d7d7;
  font-size: 15px;
  font-weight: 800;
  transition: 0.3s ease;
}

.mws-header-mobile-link i,
.mws-header-mobile-order i {
  color: #f28c28;
}

.mws-header-mobile-link:hover,
.mws-header-mobile-active {
  background: #f28c28;
  color: #2d2d2d;
  transform: translateX(5px);
}

.mws-header-mobile-link:hover i,
.mws-header-mobile-active i {
  color: #2d2d2d;
}

.mws-header-mobile-order {
  background:
    linear-gradient(135deg, #f28c28 0%, #b9661a 100%);
  color: #2d2d2d;
  justify-content: center;
}

.mws-header-mobile-order i {
  color: #2d2d2d;
}

/* Demo Space */
.mws-header-demo-space {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(242, 140, 40, 0.15), transparent 35%),
    linear-gradient(135deg, #383838, #252525);
}

.mws-header-demo-space h1 {
  color: #f28c28;
  font-size: clamp(40px, 8vw, 90px);
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1020px) {
  .mws-header-menu {
    display: none;
  }

  .mws-header-toggle-btn {
    display: flex;
  }
}

@media (max-width: 640px) {
  .mws-header-navbar {
    min-height: 78px;
    padding: 0 16px;
  }

  .mws-header-brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 20px;
  }

  .mws-header-brand-title {
    font-size: 21px;
  }

  .mws-header-brand-subtitle {
    font-size: 11px;
    letter-spacing: 2.4px;
  }

  .mws-header-order-btn {
    display: none;
  }

  .mws-header-mobile-panel {
    padding: 0 16px 18px;
  }
}

@media (max-width: 390px) {
  .mws-header-brand-title {
    font-size: 19px;
  }

  .mws-header-brand-subtitle {
    font-size: 10px;
  }

  .mws-header-brand {
    gap: 9px;
  }

  .mws-header-toggle-btn {
    width: 46px;
    height: 46px;
  }
}

/* ===============================
   Metrowell Premium Full Width Hero Slider
   Mobile Friendly Version
   Orange + Gray Theme Only
================================= */

.mws-premium-hero-section {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background: #2c2c2c;
}

/* Background Images */
.mws-premium-hero-slide-one {
  background-image: url("../images/slider_1.jpg");
}

.mws-premium-hero-slide-two {
  background-image: url("../images/slider_2.jpg");
}

.mws-premium-hero-slide-three {
  background-image: url("../images/slider_3.jpg");
}

/* Slides */
.mws-premium-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 1.5s ease;
  pointer-events: none;
  filter: grayscale(14%);
}

.mws-premium-hero-slide-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.mws-premium-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(35, 35, 35, 0.96) 0%,
      rgba(48, 48, 48, 0.84) 43%,
      rgba(95, 95, 95, 0.35) 100%
    ),
    linear-gradient(
      135deg,
      rgba(242, 140, 40, 0.28) 0%,
      rgba(70, 70, 70, 0.08) 52%,
      rgba(242, 140, 40, 0.18) 100%
    );
}

/* Metro Effects */
.mws-premium-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.5;
  pointer-events: none;
}

.mws-premium-hero-section::after {
  content: "";
  position: absolute;
  width: 860px;
  height: 860px;
  border-radius: 50%;
  border: 2px solid rgba(242, 140, 40, 0.18);
  right: -310px;
  top: -270px;
  z-index: 6;
  animation: mwsPremiumHeroCircleSpin 22s linear infinite;
  pointer-events: none;
}

@keyframes mwsPremiumHeroCircleSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Layout */
.mws-premium-hero-container {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  min-height: 800px;
  margin: 0 auto;
  padding: 120px 24px 175px;
  display: flex;
  align-items: center;
}

/* Content Card */
.mws-premium-hero-content {
  width: min(100%, 710px);
  padding: 46px 46px 46px 54px;
  border-radius: 34px;
  background: rgba(54, 54, 54, 0.76);
  border: 1px solid rgba(242, 140, 40, 0.4);
  box-shadow:
    0 28px 80px rgba(35, 35, 35, 0.5),
    inset 0 0 30px rgba(242, 140, 40, 0.08);
  position: relative;
  overflow: hidden;
  animation: mwsPremiumHeroContentIn 0.95s ease both;
}

.mws-premium-hero-content::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 100%;
  left: 0;
  top: 0;
  background:
    repeating-linear-gradient(
      180deg,
      #f28c28 0,
      #f28c28 42px,
      #777777 42px,
      #777777 58px
    );
}

.mws-premium-hero-content::after {
  content: "";
  position: absolute;
  width: 165px;
  height: 165px;
  right: -65px;
  bottom: -65px;
  border-radius: 50%;
  border: 18px solid rgba(242, 140, 40, 0.13);
}

@keyframes mwsPremiumHeroContentIn {
  from {
    opacity: 0;
    transform: translateX(-38px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Text */
.mws-premium-hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.16);
  border: 1px solid rgba(242, 140, 40, 0.44);
  color: #e3e3e3;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 24px;
}

.mws-premium-hero-badge i {
  color: #f28c28;
  font-size: 16px;
}

.mws-premium-hero-title {
  color: #eeeeee;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -2.3px;
  font-weight: 900;
  margin-bottom: 22px;
}

.mws-premium-hero-title::first-letter {
  color: #f28c28;
}

.mws-premium-hero-text {
  color: #d2d2d2;
  max-width: 610px;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 34px;
}

/* Buttons */
.mws-premium-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.mws-premium-hero-primary-btn,
.mws-premium-hero-secondary-btn {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 900;
  transition: 0.34s ease;
  position: relative;
  overflow: hidden;
}

.mws-premium-hero-primary-btn {
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.32);
}

.mws-premium-hero-primary-btn::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 170%;
  left: -55px;
  top: -35%;
  background: rgba(205, 205, 205, 0.36);
  transform: rotate(25deg);
  transition: 0.55s ease;
}

.mws-premium-hero-primary-btn:hover::before {
  left: 130%;
}

.mws-premium-hero-primary-btn:hover,
.mws-premium-hero-secondary-btn:hover {
  transform: translateY(-4px);
}

.mws-premium-hero-secondary-btn {
  background: rgba(105, 105, 105, 0.45);
  color: #eeeeee;
  border: 1px solid rgba(242, 140, 40, 0.38);
}

.mws-premium-hero-secondary-btn i {
  color: #f28c28;
}

.mws-premium-hero-secondary-btn:hover {
  background: rgba(242, 140, 40, 0.16);
}

/* Arrows */
.mws-premium-hero-arrows {
  position: absolute;
  right: 34px;
  top: 50%;
  z-index: 18;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mws-premium-hero-arrow-btn {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(242, 140, 40, 0.48);
  background: rgba(55, 55, 55, 0.84);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.mws-premium-hero-arrow-btn:hover {
  background: #f28c28;
  color: #303030;
  transform: translateX(-4px);
}

/* Bottom Tabs */
.mws-premium-hero-tabs {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 20;
  width: min(92%, 1240px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mws-premium-hero-tab {
  min-height: 88px;
  border: 1px solid rgba(242, 140, 40, 0.3);
  border-radius: 22px;
  background: rgba(55, 55, 55, 0.82);
  color: #d8d8d8;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.mws-premium-hero-tab::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  background: #f28c28;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.45s ease;
}

.mws-premium-hero-tab-active::before {
  transform: scaleX(1);
}

.mws-premium-hero-tab:hover,
.mws-premium-hero-tab-active {
  background: rgba(242, 140, 40, 0.18);
  border-color: rgba(242, 140, 40, 0.62);
  transform: translateY(-5px);
}

.mws-premium-hero-tab-number {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.mws-premium-hero-tab-content strong {
  display: block;
  font-size: 15px;
  color: #eeeeee;
  margin-bottom: 4px;
}

.mws-premium-hero-tab-content small {
  display: block;
  font-size: 13px;
  color: #c9c9c9;
}

/* ===============================
   Tablet Responsive
================================= */

@media (max-width: 980px) {
  .mws-premium-hero-section {
    min-height: 820px;
  }

  .mws-premium-hero-slide {
    background-position: center center;
  }

  .mws-premium-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(35, 35, 35, 0.96) 0%,
        rgba(46, 46, 46, 0.86) 55%,
        rgba(70, 70, 70, 0.62) 100%
      ),
      linear-gradient(
        135deg,
        rgba(242, 140, 40, 0.24) 0%,
        rgba(70, 70, 70, 0.1) 55%,
        rgba(242, 140, 40, 0.18) 100%
      );
  }

  .mws-premium-hero-container {
    min-height: 820px;
    padding: 90px 20px 215px;
    justify-content: center;
    text-align: center;
  }

  .mws-premium-hero-content {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: 38px 34px;
  }

  .mws-premium-hero-badge,
  .mws-premium-hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .mws-premium-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .mws-premium-hero-arrows {
    right: 20px;
  }

  .mws-premium-hero-tabs {
    grid-template-columns: 1fr;
    bottom: 24px;
  }

  .mws-premium-hero-tab {
    min-height: 62px;
    border-radius: 18px;
  }
}

/* ===============================
   Mobile Responsive
================================= */

@media (max-width: 620px) {
  .mws-premium-hero-section {
    min-height: 860px;
  }

  .mws-premium-hero-slide {
    background-position: center top;
  }

  .mws-premium-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(35, 35, 35, 0.95) 0%,
        rgba(42, 42, 42, 0.9) 48%,
        rgba(60, 60, 60, 0.72) 100%
      ),
      linear-gradient(
        135deg,
        rgba(242, 140, 40, 0.26) 0%,
        rgba(70, 70, 70, 0.12) 55%,
        rgba(242, 140, 40, 0.2) 100%
      );
  }

  .mws-premium-hero-section::before {
    background-size: 34px 34px;
    opacity: 0.35;
  }

  .mws-premium-hero-section::after {
    width: 420px;
    height: 420px;
    right: -190px;
    top: -150px;
  }

  .mws-premium-hero-container {
    min-height: 860px;
    padding: 68px 16px 255px;
    align-items: flex-start;
    justify-content: center;
  }

  .mws-premium-hero-content {
    width: 100%;
    padding: 28px 20px 28px 26px;
    border-radius: 24px;
    text-align: left;
    background: rgba(50, 50, 50, 0.82);
  }

  .mws-premium-hero-content::before {
    width: 7px;
  }

  .mws-premium-hero-content::after {
    width: 110px;
    height: 110px;
    right: -50px;
    bottom: -50px;
    border-width: 12px;
  }

  .mws-premium-hero-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
    font-size: 12px;
    padding: 10px 12px;
    margin-bottom: 18px;
  }

  .mws-premium-hero-title {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.05;
    letter-spacing: -1.4px;
    margin-bottom: 16px;
  }

  .mws-premium-hero-text {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .mws-premium-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .mws-premium-hero-primary-btn,
  .mws-premium-hero-secondary-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 15px;
    font-size: 14px;
  }

  .mws-premium-hero-arrows {
    top: auto;
    right: 16px;
    bottom: 250px;
    transform: none;
    flex-direction: row;
  }

  .mws-premium-hero-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .mws-premium-hero-tabs {
    width: calc(100% - 32px);
    bottom: 18px;
    gap: 9px;
  }

  .mws-premium-hero-tab {
    min-height: 58px;
    border-radius: 16px;
    padding: 10px 12px;
    gap: 10px;
  }

  .mws-premium-hero-tab-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 12px;
  }

  .mws-premium-hero-tab-content strong {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .mws-premium-hero-tab-content small {
    font-size: 11px;
  }
}

/* ===============================
   Small Mobile Responsive
================================= */

@media (max-width: 420px) {
  .mws-premium-hero-section {
    min-height: 900px;
  }

  .mws-premium-hero-container {
    min-height: 900px;
    padding-top: 56px;
    padding-bottom: 260px;
  }

  .mws-premium-hero-content {
    padding: 24px 18px 24px 24px;
  }

  .mws-premium-hero-title {
    font-size: clamp(31px, 10vw, 40px);
  }

  .mws-premium-hero-text {
    font-size: 14px;
  }

  .mws-premium-hero-arrows {
    bottom: 255px;
  }
}

@media (max-width: 360px) {
  .mws-premium-hero-section {
    min-height: 930px;
  }

  .mws-premium-hero-container {
    min-height: 930px;
  }

  .mws-premium-hero-tab-content small {
    display: none;
  }
}

/* ======================================================
   METROWELL CLEAN HERO SLIDER FINAL FIX
   New classes to avoid old CSS conflict
   Orange + Gray only
====================================================== */

.mws-cleanhero-section {
  position: relative;
  width: 100%;
  min-height: 680px;
  overflow: hidden;
  background: #2e2e2e;
}

.mws-cleanhero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 1.4s ease;
  z-index: 1;
}

.mws-cleanhero-bg-active {
  opacity: 1;
  transform: scale(1);
}

.mws-cleanhero-bg-one {
  background-image: url("../images/slider_1.jpg");
}

.mws-cleanhero-bg-two {
  background-image: url("../images/slider_2.jpg");
}

.mws-cleanhero-bg-three {
  background-image: url("../images/slider_3.jpg");
}

.mws-cleanhero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(35, 35, 35, 0.96) 0%,
      rgba(45, 45, 45, 0.86) 42%,
      rgba(90, 90, 90, 0.35) 100%
    ),
    linear-gradient(
      135deg,
      rgba(242, 140, 40, 0.24) 0%,
      rgba(80, 80, 80, 0.08) 55%,
      rgba(242, 140, 40, 0.16) 100%
    );
}

.mws-cleanhero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.mws-cleanhero-container {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  min-height: 680px;
  margin: 0 auto;
  padding: 105px 24px 115px;
  display: flex;
  align-items: center;
}

.mws-cleanhero-card {
  width: min(100%, 680px);
  padding: 42px 44px 42px 52px;
  border-radius: 30px;
  background: rgba(50, 50, 50, 0.76);
  border: 1px solid rgba(242, 140, 40, 0.38);
  box-shadow:
    0 26px 70px rgba(35, 35, 35, 0.48),
    inset 0 0 26px rgba(242, 140, 40, 0.08);
  position: relative;
  overflow: hidden;
}

.mws-cleanhero-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background:
    repeating-linear-gradient(
      180deg,
      #f28c28 0,
      #f28c28 38px,
      #777777 38px,
      #777777 52px
    );
}

.mws-cleanhero-content {
  display: none;
  animation: mwsCleanHeroContentFade 0.55s ease both;
}

.mws-cleanhero-content-active {
  display: block;
}

@keyframes mwsCleanHeroContentFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mws-cleanhero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.16);
  border: 1px solid rgba(242, 140, 40, 0.45);
  color: #e4e4e4;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
}

.mws-cleanhero-badge i {
  color: #f28c28;
}

.mws-cleanhero-title {
  color: #eeeeee;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: -2px;
  font-weight: 900;
  margin-bottom: 20px;
}

.mws-cleanhero-title::first-letter {
  color: #f28c28;
}

.mws-cleanhero-text {
  color: #d3d3d3;
  max-width: 590px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.mws-cleanhero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mws-cleanhero-primary-btn,
.mws-cleanhero-secondary-btn {
  min-height: 54px;
  padding: 0 23px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  transition: 0.3s ease;
  overflow: hidden;
  position: relative;
}

.mws-cleanhero-primary-btn {
  background: linear-gradient(135deg, #f28c28 0%, #bb6619 100%);
  color: #303030;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.3);
}

.mws-cleanhero-secondary-btn {
  background: rgba(95, 95, 95, 0.45);
  color: #eeeeee;
  border: 1px solid rgba(242, 140, 40, 0.42);
}

.mws-cleanhero-secondary-btn i {
  color: #f28c28;
}

.mws-cleanhero-primary-btn:hover,
.mws-cleanhero-secondary-btn:hover {
  transform: translateY(-4px);
}

.mws-cleanhero-arrows {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mws-cleanhero-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(242, 140, 40, 0.5);
  background: rgba(55, 55, 55, 0.86);
  color: #f28c28;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.mws-cleanhero-arrow-btn:hover {
  background: #f28c28;
  color: #303030;
}

.mws-cleanhero-tabs {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mws-cleanhero-tab {
  min-height: 66px;
  border-radius: 18px;
  border: 1px solid rgba(242, 140, 40, 0.3);
  background: rgba(50, 50, 50, 0.82);
  color: #e3e3e3;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  transition: 0.3s ease;
  text-align: left;
}

.mws-cleanhero-tab span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.mws-cleanhero-tab strong {
  font-size: 14px;
  color: #eeeeee;
}

.mws-cleanhero-tab-active,
.mws-cleanhero-tab:hover {
  background: rgba(242, 140, 40, 0.18);
  border-color: rgba(242, 140, 40, 0.65);
  transform: translateY(-3px);
}

/* Tablet */
@media (max-width: 991px) {
  .mws-cleanhero-section {
    min-height: 620px;
  }

  .mws-cleanhero-container {
    min-height: 620px;
    padding: 82px 20px 105px;
    justify-content: center;
  }

  .mws-cleanhero-card {
    text-align: center;
    padding: 34px 32px;
  }

  .mws-cleanhero-badge,
  .mws-cleanhero-buttons {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .mws-cleanhero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .mws-cleanhero-arrows {
    right: 18px;
  }

  .mws-cleanhero-tabs {
    bottom: 18px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .mws-cleanhero-section {
    min-height: 540px;
  }

  .mws-cleanhero-bg-slide {
    background-position: 74% top;
  }

  .mws-cleanhero-bg-one {
    background-position: 76% top;
  }

  .mws-cleanhero-bg-two {
    background-position: 70% top;
  }

  .mws-cleanhero-bg-three {
    background-position: 74% top;
  }

  .mws-cleanhero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(35, 35, 35, 0.9) 0%,
        rgba(40, 40, 40, 0.82) 45%,
        rgba(45, 45, 45, 0.74) 100%
      ),
      linear-gradient(
        135deg,
        rgba(242, 140, 40, 0.16) 0%,
        rgba(80, 80, 80, 0.08) 55%,
        rgba(242, 140, 40, 0.14) 100%
      );
  }

  .mws-cleanhero-container {
    min-height: 540px;
    padding: 28px 14px 84px;
    display: block;
  }

  .mws-cleanhero-card {
    width: 100%;
    padding: 18px 16px 18px 22px;
    border-radius: 18px;
    text-align: left;
    background: rgba(45, 45, 45, 0.78);
  }

  .mws-cleanhero-card::before {
    width: 6px;
  }

  .mws-cleanhero-badge {
    width: fit-content;
    max-width: 100%;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 10px;
    margin-bottom: 10px;
  }

  .mws-cleanhero-title {
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.7px;
    margin-bottom: 10px;
  }

  .mws-cleanhero-text {
    font-size: 12.5px;
    line-height: 1.48;
    margin-bottom: 14px;
  }

  .mws-cleanhero-buttons {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .mws-cleanhero-primary-btn,
  .mws-cleanhero-secondary-btn {
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
    font-size: 13px;
    padding: 0 14px;
  }

  .mws-cleanhero-arrows {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 44px;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 10px;
  }

  .mws-cleanhero-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .mws-cleanhero-tabs {
    left: 50%;
    right: auto;
    bottom: 10px;
    width: auto;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }

  .mws-cleanhero-tab {
    width: 12px;
    height: 12px;
    min-height: 12px;
    padding: 0;
    border-radius: 50%;
    background: #8a8a8a;
    border: 0;
  }

  .mws-cleanhero-tab span,
  .mws-cleanhero-tab strong {
    display: none;
  }

  .mws-cleanhero-tab-active {
    width: 32px;
    border-radius: 50px;
    background: #f28c28;
    transform: none;
  }

  .mws-cleanhero-section::before {
    background-size: 30px 30px;
    opacity: 0.25;
  }
}

/* Small Mobile */
@media (max-width: 390px) {
  .mws-cleanhero-section {
    min-height: 515px;
  }

  .mws-cleanhero-container {
    min-height: 515px;
    padding: 22px 12px 78px;
  }

  .mws-cleanhero-title {
    font-size: 22px;
  }

  .mws-cleanhero-text {
    font-size: 12px;
  }

  .mws-cleanhero-primary-btn,
  .mws-cleanhero-secondary-btn {
    min-height: 40px;
    font-size: 12.5px;
  }

  .mws-cleanhero-arrows {
    bottom: 40px;
  }
}

/* ==========================================
   METROWELL CLEAN HERO - REMOVE TAB SPACE
   Use when .mws-cleanhero-tabs is removed
========================================== */

.mws-cleanhero-tabs {
  display: none !important;
}

@media (max-width: 600px) {
  .mws-cleanhero-section {
    min-height: 455px !important;
  }

  .mws-cleanhero-container {
    min-height: 455px !important;
    padding: 22px 14px 62px !important;
  }

  .mws-cleanhero-card {
    padding: 17px 15px 17px 21px !important;
  }

  .mws-cleanhero-arrows {
    bottom: 16px !important;
  }
}

@media (max-width: 390px) {
  .mws-cleanhero-section {
    min-height: 440px !important;
  }

  .mws-cleanhero-container {
    min-height: 440px !important;
    padding: 18px 12px 58px !important;
  }

  .mws-cleanhero-arrows {
    bottom: 14px !important;
  }
}

/* ==========================================
   METROWELL HERO FINAL MOBILE FIX
   Light image + centered popup/card
   Paste at END of style.css
========================================== */

@media (max-width: 600px) {
  .mws-cleanhero-section {
    min-height: 520px !important;
    height: 520px !important;
  }

  .mws-cleanhero-bg-slide {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 72% center !important;
  }

  .mws-cleanhero-bg-one {
    background-position: 74% center !important;
  }

  .mws-cleanhero-bg-two {
    background-position: 68% center !important;
  }

  .mws-cleanhero-bg-three {
    background-position: 72% center !important;
  }

  /* Remove heavy dark image effect on mobile */
  .mws-cleanhero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(45, 45, 45, 0.34) 0%,
        rgba(65, 65, 65, 0.22) 48%,
        rgba(90, 90, 90, 0.12) 100%
      ),
      linear-gradient(
        135deg,
        rgba(242, 140, 40, 0.12) 0%,
        rgba(90, 90, 90, 0.04) 55%,
        rgba(242, 140, 40, 0.10) 100%
      ) !important;
  }

  .mws-cleanhero-container {
    min-height: 520px !important;
    height: 520px !important;
    padding: 20px 14px 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Center popup/card */
  .mws-cleanhero-card {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    padding: 18px 16px 18px 22px !important;
    border-radius: 18px !important;
    background: rgba(45, 45, 45, 0.76) !important;
    border: 1px solid rgba(242, 140, 40, 0.45) !important;
    box-shadow: 0 18px 45px rgba(45, 45, 45, 0.36) !important;
    text-align: left !important;
  }

  .mws-cleanhero-card::before {
    width: 6px !important;
  }

  .mws-cleanhero-badge {
    width: fit-content !important;
    max-width: 100% !important;
    margin-bottom: 10px !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    font-size: 10px !important;
  }

  .mws-cleanhero-title {
    font-size: 23px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.6px !important;
    margin-bottom: 10px !important;
  }

  .mws-cleanhero-text {
    font-size: 12.5px !important;
    line-height: 1.48 !important;
    margin-bottom: 14px !important;
  }

  .mws-cleanhero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 9px !important;
  }

  .mws-cleanhero-primary-btn,
  .mws-cleanhero-secondary-btn {
    width: 100% !important;
    min-height: 42px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    padding: 0 14px !important;
  }

  /* Arrows below centered popup */
  .mws-cleanhero-arrows {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: 18px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
  }

  .mws-cleanhero-arrow-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
    background: rgba(55, 55, 55, 0.72) !important;
  }

  /* Since tabs removed */
  .mws-cleanhero-tabs {
    display: none !important;
  }

  .mws-cleanhero-section::before {
    opacity: 0.15 !important;
    background-size: 30px 30px !important;
  }
}

@media (max-width: 390px) {
  .mws-cleanhero-section {
    min-height: 500px !important;
    height: 500px !important;
  }

  .mws-cleanhero-container {
    min-height: 500px !important;
    height: 500px !important;
    padding: 16px 12px 66px !important;
  }

  .mws-cleanhero-card {
    max-width: 335px !important;
    padding: 16px 14px 16px 20px !important;
  }

  .mws-cleanhero-title {
    font-size: 21px !important;
  }

  .mws-cleanhero-text {
    font-size: 12px !important;
  }

  .mws-cleanhero-primary-btn,
  .mws-cleanhero-secondary-btn {
    min-height: 40px !important;
    font-size: 12.5px !important;
  }

  .mws-cleanhero-arrows {
    bottom: 16px !important;
  }
}

/* ======================================================
   METROWELL TRUST FEATURES SECTION
   Orange + Gray Theme Only
====================================================== */

.mws-trustzone-section {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 140, 40, 0.16), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(120, 120, 120, 0.22), transparent 30%),
    linear-gradient(135deg, #3a3a3a 0%, #292929 50%, #444444 100%);
}

.mws-trustzone-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  pointer-events: none;
}

.mws-trustzone-bg-line {
  position: absolute;
  height: 12px;
  width: 420px;
  border-radius: 50px;
  background:
    repeating-linear-gradient(
      90deg,
      #f28c28 0,
      #f28c28 42px,
      #777777 42px,
      #777777 58px
    );
  opacity: 0.22;
  animation: mwsTrustzoneLineMove 7s linear infinite;
}

.mws-trustzone-bg-line-one {
  left: -130px;
  top: 90px;
  transform: rotate(-18deg);
}

.mws-trustzone-bg-line-two {
  right: -120px;
  bottom: 85px;
  transform: rotate(18deg);
}

@keyframes mwsTrustzoneLineMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 240px 0;
  }
}

.mws-trustzone-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-trustzone-header {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.mws-trustzone-badge {
  width: fit-content;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.15);
  border: 1px solid rgba(242, 140, 40, 0.42);
  color: #e4e4e4;
  font-size: 14px;
  font-weight: 800;
}

.mws-trustzone-badge i {
  color: #f28c28;
}

.mws-trustzone-title {
  color: #eeeeee;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-weight: 900;
  margin-bottom: 18px;
}

.mws-trustzone-title::first-letter {
  color: #f28c28;
}

.mws-trustzone-text {
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

.mws-trustzone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.mws-trustzone-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(74, 74, 74, 0.82), rgba(48, 48, 48, 0.9));
  border: 1px solid rgba(242, 140, 40, 0.22);
  box-shadow:
    0 22px 54px rgba(35, 35, 35, 0.34),
    inset 0 0 22px rgba(242, 140, 40, 0.05);
  overflow: hidden;
  transition: 0.36s ease;
}

.mws-trustzone-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px dashed rgba(242, 140, 40, 0.26);
  opacity: 0;
  transition: 0.36s ease;
}

.mws-trustzone-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -60px;
  bottom: -60px;
  border-radius: 50%;
  border: 18px solid rgba(242, 140, 40, 0.12);
  transition: 0.36s ease;
}

.mws-trustzone-card:hover {
  transform: translateY(-10px);
  border-color: rgba(242, 140, 40, 0.62);
  box-shadow:
    0 28px 70px rgba(35, 35, 35, 0.44),
    0 0 34px rgba(242, 140, 40, 0.16);
}

.mws-trustzone-card:hover::before {
  opacity: 1;
}

.mws-trustzone-card:hover::after {
  transform: scale(1.15);
}

.mws-trustzone-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 28px;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.28);
  position: relative;
  z-index: 2;
}

.mws-trustzone-card-content {
  position: relative;
  z-index: 2;
}

.mws-trustzone-card-number {
  display: inline-block;
  color: #f28c28;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.mws-trustzone-card-content h3 {
  color: #eeeeee;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
  margin-bottom: 14px;
}

.mws-trustzone-card-content p {
  color: #c9c9c9;
  font-size: 15px;
  line-height: 1.68;
}

/* Scroll Reveal */
.mws-trustzone-reveal {
  opacity: 0;
  transform: translateY(34px);
}

.mws-trustzone-reveal.mws-trustzone-reveal-active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.72s ease;
}

.mws-trustzone-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.mws-trustzone-reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.mws-trustzone-reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 1100px) {
  .mws-trustzone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mws-trustzone-card {
    min-height: 270px;
  }
}

@media (max-width: 680px) {
  .mws-trustzone-section {
    padding: 72px 16px;
  }

  .mws-trustzone-header {
    margin-bottom: 36px;
  }

  .mws-trustzone-badge {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    font-size: 12px;
  }

  .mws-trustzone-title {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .mws-trustzone-text {
    font-size: 15px;
  }

  .mws-trustzone-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mws-trustzone-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .mws-trustzone-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .mws-trustzone-card-content h3 {
    font-size: 20px;
  }

  .mws-trustzone-card-content p {
    font-size: 14px;
  }
}

/* ======================================================
   METROWELL MODERN PRODUCT DECK
   Orange + Gray Theme Only
====================================================== */

.mws-productdeck-section {
  position: relative;
  overflow: hidden;
  padding: 105px 24px;
  background:
    radial-gradient(circle at 10% 14%, rgba(242, 140, 40, 0.16), transparent 28%),
    radial-gradient(circle at 90% 88%, rgba(125, 125, 125, 0.24), transparent 32%),
    linear-gradient(135deg, #2f2f2f 0%, #424242 48%, #292929 100%);
}

.mws-productdeck-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.45;
  pointer-events: none;
}

.mws-productdeck-bg-track {
  position: absolute;
  height: 12px;
  width: 470px;
  border-radius: 60px;
  background:
    repeating-linear-gradient(
      90deg,
      #f28c28 0,
      #f28c28 42px,
      #777777 42px,
      #777777 58px
    );
  opacity: 0.22;
  animation: mwsProductdeckTrackMove 7s linear infinite;
}

.mws-productdeck-bg-track-one {
  top: 90px;
  left: -150px;
  transform: rotate(-16deg);
}

.mws-productdeck-bg-track-two {
  right: -140px;
  bottom: 110px;
  transform: rotate(16deg);
}

@keyframes mwsProductdeckTrackMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 260px 0;
  }
}

.mws-productdeck-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-productdeck-header {
  max-width: 840px;
  margin: 0 auto 54px;
  text-align: center;
}

.mws-productdeck-badge {
  width: fit-content;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.15);
  border: 1px solid rgba(242, 140, 40, 0.42);
  color: #e4e4e4;
  font-size: 14px;
  font-weight: 800;
}

.mws-productdeck-badge i {
  color: #f28c28;
}

.mws-productdeck-title {
  color: #eeeeee;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-weight: 900;
  margin-bottom: 18px;
}

.mws-productdeck-title::first-letter {
  color: #f28c28;
}

.mws-productdeck-subtitle {
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto;
}

/* Layout */
.mws-productdeck-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 26px;
  align-items: stretch;
}

/* Selector */
.mws-productdeck-selector {
  display: grid;
  gap: 14px;
}

.mws-productdeck-select-btn {
  width: 100%;
  min-height: 88px;
  border: 1px solid rgba(242, 140, 40, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(82, 82, 82, 0.75), rgba(48, 48, 48, 0.88));
  color: #e5e5e5;
  display: grid;
  grid-template-columns: 42px 52px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: 0.34s ease;
}

.mws-productdeck-select-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 20px;
  background: #f28c28;
  transform: scaleY(0);
  transition: 0.34s ease;
}

.mws-productdeck-select-btn:hover,
.mws-productdeck-select-active {
  border-color: rgba(242, 140, 40, 0.68);
  background: rgba(242, 140, 40, 0.16);
  transform: translateX(6px);
}

.mws-productdeck-select-btn:hover::before,
.mws-productdeck-select-active::before {
  transform: scaleY(1);
}

.mws-productdeck-select-number {
  color: #f28c28;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.mws-productdeck-select-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mws-productdeck-select-text strong {
  display: block;
  color: #eeeeee;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 4px;
}

.mws-productdeck-select-text small {
  display: block;
  color: #c8c8c8;
  font-size: 12px;
  font-weight: 700;
}

/* Spotlight */
.mws-productdeck-spotlight {
  position: relative;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(76, 76, 76, 0.86), rgba(44, 44, 44, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.28);
  box-shadow:
    0 28px 78px rgba(35, 35, 35, 0.44),
    inset 0 0 28px rgba(242, 140, 40, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  min-height: 590px;
}

.mws-productdeck-spotlight::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(242, 140, 40, 0.24);
  border-radius: 26px;
  pointer-events: none;
  z-index: 3;
}

.mws-productdeck-progress {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 18px;
  height: 5px;
  border-radius: 50px;
  background: rgba(120, 120, 120, 0.55);
  z-index: 6;
  overflow: hidden;
}

.mws-productdeck-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: #f28c28;
}

/* Image Panel */
.mws-productdeck-image-panel {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  background: #555555;
}

.mws-productdeck-main-image {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  display: block;
  filter: grayscale(16%);
  transform: scale(1.03);
  transition: opacity 0.4s ease, transform 0.7s ease;
}

.mws-productdeck-main-image.mws-productdeck-image-changing {
  opacity: 0;
  transform: scale(1.1);
}

.mws-productdeck-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(55, 55, 55, 0.04), rgba(45, 45, 45, 0.78)),
    linear-gradient(135deg, rgba(242, 140, 40, 0.16), rgba(90, 90, 90, 0.08));
  z-index: 2;
}

.mws-productdeck-floating-status {
  position: absolute;
  left: 22px;
  top: 42px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 50px;
  background: #f28c28;
  color: #303030;
  font-size: 13px;
  font-weight: 900;
}

.mws-productdeck-floating-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 20px 42px rgba(242, 140, 40, 0.34);
  animation: mwsProductdeckIconFloat 3.8s ease-in-out infinite;
}

@keyframes mwsProductdeckIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

/* Info Panel */
.mws-productdeck-info-panel {
  position: relative;
  z-index: 4;
  padding: 74px 36px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mws-productdeck-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.mws-productdeck-meta-row span {
  padding: 8px 11px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.3);
  color: #e5e5e5;
  font-size: 12px;
  font-weight: 800;
}

.mws-productdeck-info-panel h3 {
  color: #eeeeee;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -1px;
  font-weight: 900;
  margin-bottom: 16px;
}

.mws-productdeck-info-panel h3::first-letter {
  color: #f28c28;
}

.mws-productdeck-info-panel p {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 22px;
}

.mws-productdeck-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.mws-productdeck-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dcdcdc;
  font-size: 14px;
  font-weight: 800;
}

.mws-productdeck-points i {
  color: #f28c28;
}

.mws-productdeck-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mws-productdeck-order-btn,
.mws-productdeck-view-btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  transition: 0.3s ease;
}

.mws-productdeck-order-btn {
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  box-shadow: 0 16px 32px rgba(242, 140, 40, 0.26);
}

.mws-productdeck-view-btn {
  background: rgba(100, 100, 100, 0.42);
  color: #eeeeee;
  border: 1px solid rgba(242, 140, 40, 0.38);
}

.mws-productdeck-view-btn i {
  color: #f28c28;
}

.mws-productdeck-order-btn:hover,
.mws-productdeck-view-btn:hover {
  transform: translateY(-4px);
}

/* Arrows */
.mws-productdeck-arrow-wrap {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 8;
  display: flex;
  gap: 10px;
}

.mws-productdeck-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(242, 140, 40, 0.45);
  background: rgba(55, 55, 55, 0.82);
  color: #f28c28;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-productdeck-arrow-btn:hover {
  background: #f28c28;
  color: #303030;
}

/* Responsive */
@media (max-width: 1100px) {
  .mws-productdeck-layout {
    grid-template-columns: 1fr;
  }

  .mws-productdeck-selector {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 8px;
  }

  .mws-productdeck-select-btn {
    min-width: 285px;
  }
}

@media (max-width: 820px) {
  .mws-productdeck-spotlight {
    grid-template-columns: 1fr;
  }

  .mws-productdeck-image-panel {
    min-height: 300px;
  }

  .mws-productdeck-main-image {
    min-height: 300px;
  }

  .mws-productdeck-info-panel {
    padding: 32px 24px 86px;
  }

  .mws-productdeck-arrow-wrap {
    left: 24px;
    right: auto;
  }
}

@media (max-width: 620px) {
  .mws-productdeck-section {
    padding: 76px 16px;
  }

  .mws-productdeck-header {
    margin-bottom: 36px;
  }

  .mws-productdeck-badge {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    font-size: 12px;
  }

  .mws-productdeck-title {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .mws-productdeck-subtitle {
    font-size: 15px;
  }

  .mws-productdeck-select-btn {
    min-width: 260px;
    min-height: 78px;
    grid-template-columns: 34px 46px 1fr;
    border-radius: 18px;
  }

  .mws-productdeck-select-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 18px;
  }

  .mws-productdeck-spotlight {
    border-radius: 24px;
  }

  .mws-productdeck-spotlight::before {
    inset: 12px;
    border-radius: 18px;
  }

  .mws-productdeck-image-panel {
    min-height: 240px;
  }

  .mws-productdeck-main-image {
    min-height: 240px;
  }

  .mws-productdeck-floating-status {
    top: 34px;
    left: 16px;
    font-size: 11px;
  }

  .mws-productdeck-floating-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 24px;
  }

  .mws-productdeck-info-panel {
    padding: 28px 20px 82px;
  }

  .mws-productdeck-info-panel h3 {
    font-size: 29px;
  }

  .mws-productdeck-info-panel p {
    font-size: 14px;
  }

  .mws-productdeck-actions {
    flex-direction: column;
  }

  .mws-productdeck-order-btn,
  .mws-productdeck-view-btn {
    width: 100%;
  }
}

/* ======================================================
   METROWELL PRODUCT DECK - HIDE SELECTOR BUTTONS MOBILE
====================================================== */

@media (max-width: 768px) {
  .mws-productdeck-selector {
    display: none !important;
  }

  .mws-productdeck-layout {
    display: block !important;
  }

  .mws-productdeck-spotlight {
    width: 100% !important;
  }
}

/* ======================================================
   METROWELL WHY CHOOSE ROUTE SECTION
   Orange + Gray Theme Only
====================================================== */

.mws-whyroute-section {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  background:
    radial-gradient(circle at 14% 16%, rgba(242, 140, 40, 0.15), transparent 28%),
    radial-gradient(circle at 86% 86%, rgba(125, 125, 125, 0.24), transparent 32%),
    linear-gradient(135deg, #3b3b3b 0%, #282828 50%, #454545 100%);
}

.mws-whyroute-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.44;
  pointer-events: none;
}

.mws-whyroute-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(242, 140, 40, 0.14);
  filter: blur(20px);
  pointer-events: none;
}

.mws-whyroute-glow-one {
  left: -160px;
  top: 80px;
}

.mws-whyroute-glow-two {
  right: -170px;
  bottom: 80px;
}

.mws-whyroute-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-whyroute-header {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.mws-whyroute-badge {
  width: fit-content;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.15);
  border: 1px solid rgba(242, 140, 40, 0.42);
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 800;
}

.mws-whyroute-badge i {
  color: #f28c28;
}

.mws-whyroute-title {
  color: #eeeeee;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-weight: 900;
  margin-bottom: 18px;
}

.mws-whyroute-title::first-letter {
  color: #f28c28;
}

.mws-whyroute-subtitle {
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto;
}

/* Main Layout */
.mws-whyroute-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}

/* Metro Route Map */
.mws-whyroute-map {
  position: relative;
  min-height: 610px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(44, 44, 44, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.28);
  box-shadow:
    0 28px 78px rgba(35, 35, 35, 0.44),
    inset 0 0 28px rgba(242, 140, 40, 0.06);
  overflow: hidden;
}

.mws-whyroute-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(242, 140, 40, 0.25);
  border-radius: 28px;
  pointer-events: none;
  z-index: 3;
}

.mws-whyroute-map::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  border: 24px solid rgba(242, 140, 40, 0.11);
}

.mws-whyroute-map-line {
  position: absolute;
  left: 50%;
  top: 70px;
  bottom: 70px;
  width: 14px;
  border-radius: 80px;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(
      180deg,
      #f28c28 0,
      #f28c28 46px,
      #777777 46px,
      #777777 64px
    );
  animation: mwsWhyrouteLineMove 5s linear infinite;
}

@keyframes mwsWhyrouteLineMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 220px;
  }
}

.mws-whyroute-center-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118px;
  height: 118px;
  border-radius: 34px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  z-index: 5;
  box-shadow: 0 24px 52px rgba(242, 140, 40, 0.34);
  animation: mwsWhyrouteBusFloat 3.4s ease-in-out infinite;
}

@keyframes mwsWhyrouteBusFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.mws-whyroute-station {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(55, 55, 55, 0.88);
  border: 1px solid rgba(242, 140, 40, 0.34);
  box-shadow: 0 20px 42px rgba(35, 35, 35, 0.34);
  animation: mwsWhyrouteStationFloat 4s ease-in-out infinite;
}

@keyframes mwsWhyrouteStationFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.mws-whyroute-station-one {
  left: 42px;
  top: 90px;
}

.mws-whyroute-station-two {
  right: 42px;
  top: 265px;
  animation-delay: 0.4s;
}

.mws-whyroute-station-three {
  left: 42px;
  bottom: 90px;
  animation-delay: 0.8s;
}

.mws-whyroute-station-dot {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mws-whyroute-station strong {
  display: block;
  color: #eeeeee;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 3px;
}

.mws-whyroute-station small {
  display: block;
  color: #c9c9c9;
  font-size: 12px;
  font-weight: 700;
}

/* Cards */
.mws-whyroute-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mws-whyroute-card {
  position: relative;
  min-height: 294px;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.82), rgba(46, 46, 46, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.23);
  box-shadow:
    0 24px 62px rgba(35, 35, 35, 0.34),
    inset 0 0 24px rgba(242, 140, 40, 0.05);
  overflow: hidden;
  transition: 0.36s ease;
}

.mws-whyroute-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px dashed rgba(242, 140, 40, 0.22);
  opacity: 0;
  transition: 0.36s ease;
  pointer-events: none;
}

.mws-whyroute-card::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -68px;
  bottom: -68px;
  border-radius: 50%;
  border: 18px solid rgba(242, 140, 40, 0.1);
  transition: 0.36s ease;
}

.mws-whyroute-card:hover {
  transform: translateY(-10px);
  border-color: rgba(242, 140, 40, 0.66);
  box-shadow:
    0 32px 82px rgba(35, 35, 35, 0.48),
    0 0 38px rgba(242, 140, 40, 0.16);
}

.mws-whyroute-card:hover::before {
  opacity: 1;
}

.mws-whyroute-card:hover::after {
  transform: scale(1.16);
}

.mws-whyroute-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 21px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.28);
  position: relative;
  z-index: 2;
}

.mws-whyroute-card-content {
  position: relative;
  z-index: 2;
}

.mws-whyroute-card-content span {
  display: inline-block;
  color: #f28c28;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.mws-whyroute-card-content h3 {
  color: #eeeeee;
  font-size: 22px;
  line-height: 1.23;
  font-weight: 900;
  margin-bottom: 14px;
}

.mws-whyroute-card-content p {
  color: #c9c9c9;
  font-size: 15px;
  line-height: 1.68;
}

/* Reveal Animation */
.mws-whyroute-reveal {
  opacity: 0;
  transform: translateY(38px);
}

.mws-whyroute-reveal.mws-whyroute-reveal-active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.78s ease;
}

.mws-whyroute-card:nth-child(2) {
  transition-delay: 0.08s;
}

.mws-whyroute-card:nth-child(3) {
  transition-delay: 0.16s;
}

.mws-whyroute-card:nth-child(4) {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 1100px) {
  .mws-whyroute-layout {
    grid-template-columns: 1fr;
  }

  .mws-whyroute-map {
    min-height: 480px;
  }

  .mws-whyroute-map-line {
    top: 55px;
    bottom: 55px;
  }

  .mws-whyroute-station-one {
    left: 70px;
    top: 70px;
  }

  .mws-whyroute-station-two {
    right: 70px;
    top: 205px;
  }

  .mws-whyroute-station-three {
    left: 70px;
    bottom: 70px;
  }
}

@media (max-width: 720px) {
  .mws-whyroute-section {
    padding: 76px 16px;
  }

  .mws-whyroute-header {
    margin-bottom: 38px;
  }

  .mws-whyroute-badge {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    font-size: 12px;
  }

  .mws-whyroute-title {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .mws-whyroute-subtitle {
    font-size: 15px;
  }

  .mws-whyroute-map {
    min-height: 420px;
    border-radius: 26px;
  }

  .mws-whyroute-center-icon {
    width: 86px;
    height: 86px;
    border-radius: 26px;
    font-size: 32px;
  }

  .mws-whyroute-map-line {
    width: 10px;
  }

  .mws-whyroute-station {
    padding: 11px;
    border-radius: 16px;
  }

  .mws-whyroute-station-one {
    left: 18px;
    top: 56px;
  }

  .mws-whyroute-station-two {
    right: 18px;
    top: 178px;
  }

  .mws-whyroute-station-three {
    left: 18px;
    bottom: 56px;
  }

  .mws-whyroute-station-dot {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 15px;
  }

  .mws-whyroute-station strong {
    font-size: 13px;
  }

  .mws-whyroute-station small {
    font-size: 11px;
  }

  .mws-whyroute-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mws-whyroute-card {
    min-height: auto;
    padding: 23px;
    border-radius: 24px;
  }

  .mws-whyroute-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .mws-whyroute-card-content h3 {
    font-size: 20px;
  }

  .mws-whyroute-card-content p {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .mws-whyroute-map {
    min-height: 400px;
  }

  .mws-whyroute-station {
    max-width: 170px;
  }
}

/* ======================================================
   METROWELL SIMPLE ORDER PROCESS
   Orange + Gray Theme Only
====================================================== */

.mws-orderflow-section {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 140, 40, 0.15), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(120, 120, 120, 0.24), transparent 32%),
    linear-gradient(135deg, #2e2e2e 0%, #444444 50%, #282828 100%);
}

.mws-orderflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.45;
  pointer-events: none;
}

.mws-orderflow-track {
  position: absolute;
  height: 12px;
  width: 470px;
  border-radius: 60px;
  background:
    repeating-linear-gradient(
      90deg,
      #f28c28 0,
      #f28c28 42px,
      #777777 42px,
      #777777 58px
    );
  opacity: 0.22;
  animation: mwsOrderflowTrackMove 7s linear infinite;
}

.mws-orderflow-track-one {
  top: 100px;
  left: -150px;
  transform: rotate(-16deg);
}

.mws-orderflow-track-two {
  right: -140px;
  bottom: 100px;
  transform: rotate(16deg);
}

@keyframes mwsOrderflowTrackMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 260px 0;
  }
}

.mws-orderflow-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-orderflow-header {
  max-width: 850px;
  margin: 0 auto 64px;
  text-align: center;
}

.mws-orderflow-badge {
  width: fit-content;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.15);
  border: 1px solid rgba(242, 140, 40, 0.42);
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 800;
}

.mws-orderflow-badge i {
  color: #f28c28;
}

.mws-orderflow-title {
  color: #eeeeee;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-weight: 900;
  margin-bottom: 18px;
}

.mws-orderflow-title::first-letter {
  color: #f28c28;
}

.mws-orderflow-subtitle {
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto;
}

/* Process Wrapper */
.mws-orderflow-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mws-orderflow-line {
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 8px;
  border-radius: 50px;
  background:
    repeating-linear-gradient(
      90deg,
      #f28c28 0,
      #f28c28 44px,
      #777777 44px,
      #777777 62px
    );
  opacity: 0.55;
  animation: mwsOrderflowLineMove 6s linear infinite;
}

@keyframes mwsOrderflowLineMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 260px 0;
  }
}

.mws-orderflow-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mws-orderflow-step-marker {
  width: 112px;
  height: 112px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.88), rgba(46, 46, 46, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.5);
  box-shadow:
    0 24px 54px rgba(35, 35, 35, 0.38),
    inset 0 0 20px rgba(242, 140, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #eeeeee;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.mws-orderflow-step-marker::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 160%;
  left: -60px;
  top: -30%;
  background: rgba(242, 140, 40, 0.28);
  transform: rotate(25deg);
  transition: 0.55s ease;
}

.mws-orderflow-step:hover .mws-orderflow-step-marker::before {
  left: 140%;
}

.mws-orderflow-step:hover .mws-orderflow-step-marker {
  transform: translateY(-8px) rotate(-2deg);
  background: #f28c28;
  color: #303030;
}

.mws-orderflow-step-marker span {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #f28c28;
  margin-bottom: 8px;
  transition: 0.35s ease;
}

.mws-orderflow-step-marker i {
  font-size: 30px;
  color: #f28c28;
  transition: 0.35s ease;
}

.mws-orderflow-step:hover .mws-orderflow-step-marker span,
.mws-orderflow-step:hover .mws-orderflow-step-marker i {
  color: #303030;
}

.mws-orderflow-card {
  width: 100%;
  min-height: 280px;
  padding: 28px 24px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.84), rgba(46, 46, 46, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.24);
  box-shadow:
    0 24px 62px rgba(35, 35, 35, 0.34),
    inset 0 0 24px rgba(242, 140, 40, 0.05);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.mws-orderflow-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px dashed rgba(242, 140, 40, 0.22);
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.mws-orderflow-card::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -68px;
  bottom: -68px;
  border-radius: 50%;
  border: 18px solid rgba(242, 140, 40, 0.1);
  transition: 0.35s ease;
}

.mws-orderflow-step:hover .mws-orderflow-card {
  transform: translateY(-8px);
  border-color: rgba(242, 140, 40, 0.66);
  box-shadow:
    0 32px 82px rgba(35, 35, 35, 0.48),
    0 0 38px rgba(242, 140, 40, 0.16);
}

.mws-orderflow-step:hover .mws-orderflow-card::before {
  opacity: 1;
}

.mws-orderflow-step:hover .mws-orderflow-card::after {
  transform: scale(1.16);
}

.mws-orderflow-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.28);
  position: relative;
  z-index: 2;
}

.mws-orderflow-card-content {
  position: relative;
  z-index: 2;
}

.mws-orderflow-card-content h3 {
  color: #eeeeee;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
  margin-bottom: 14px;
}

.mws-orderflow-card-content p {
  color: #c9c9c9;
  font-size: 15px;
  line-height: 1.68;
}

.mws-orderflow-action {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.mws-orderflow-main-btn {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.26);
  transition: 0.3s ease;
}

.mws-orderflow-main-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(242, 140, 40, 0.34);
}

/* Reveal Animation */
.mws-orderflow-reveal {
  opacity: 0;
  transform: translateY(38px);
}

.mws-orderflow-reveal.mws-orderflow-reveal-active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.78s ease;
}

.mws-orderflow-reveal:nth-child(3) {
  transition-delay: 0.08s;
}

.mws-orderflow-reveal:nth-child(4) {
  transition-delay: 0.16s;
}

.mws-orderflow-reveal:nth-child(5) {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 1100px) {
  .mws-orderflow-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .mws-orderflow-line {
    display: none;
  }
}

@media (max-width: 680px) {
  .mws-orderflow-section {
    padding: 76px 16px;
  }

  .mws-orderflow-header {
    margin-bottom: 40px;
  }

  .mws-orderflow-badge {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    font-size: 12px;
  }

  .mws-orderflow-title {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .mws-orderflow-subtitle {
    font-size: 15px;
  }

  .mws-orderflow-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mws-orderflow-step {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: stretch;
    gap: 14px;
  }

  .mws-orderflow-step-marker {
    width: 82px;
    height: 100%;
    min-height: 170px;
    border-radius: 22px;
    margin-bottom: 0;
  }

  .mws-orderflow-step-marker span {
    font-size: 13px;
  }

  .mws-orderflow-step-marker i {
    font-size: 24px;
  }

  .mws-orderflow-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .mws-orderflow-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    font-size: 21px;
    margin-bottom: 18px;
  }

  .mws-orderflow-card-content h3 {
    font-size: 20px;
  }

  .mws-orderflow-card-content p {
    font-size: 14px;
  }

  .mws-orderflow-action {
    margin-top: 34px;
  }

  .mws-orderflow-main-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .mws-orderflow-step {
    grid-template-columns: 72px 1fr;
  }

  .mws-orderflow-step-marker {
    width: 72px;
    min-height: 170px;
  }
}

/* ======================================================
   METROWELL SMALL CTA BANNER
   Orange + Gray Theme Only
====================================================== */

.mws-minicta-section {
  position: relative;
  overflow: hidden;
  padding: 70px 24px;
  background:
    radial-gradient(circle at 14% 20%, rgba(242, 140, 40, 0.15), transparent 28%),
    linear-gradient(135deg, #2f2f2f 0%, #404040 50%, #292929 100%);
}

.mws-minicta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.42;
  pointer-events: none;
}

.mws-minicta-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mws-minicta-card {
  position: relative;
  overflow: hidden;
  min-height: 165px;
  padding: 28px 32px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(43, 43, 43, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.36);
  box-shadow:
    0 24px 66px rgba(35, 35, 35, 0.42),
    inset 0 0 26px rgba(242, 140, 40, 0.07);
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 24px;
}

.mws-minicta-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 23px;
  border: 1px dashed rgba(242, 140, 40, 0.24);
  pointer-events: none;
}

.mws-minicta-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  bottom: -90px;
  border-radius: 50%;
  border: 22px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-minicta-icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.3);
  position: relative;
  z-index: 2;
  animation: mwsMinictaIconFloat 3.5s ease-in-out infinite;
}

@keyframes mwsMinictaIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-7px) rotate(3deg);
  }
}

.mws-minicta-content {
  position: relative;
  z-index: 2;
}

.mws-minicta-badge {
  display: inline-block;
  color: #f28c28;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mws-minicta-title {
  color: #eeeeee;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
  margin-bottom: 8px;
}

.mws-minicta-title::first-letter {
  color: #f28c28;
}

.mws-minicta-text {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.65;
  max-width: 650px;
  margin: 0;
}

.mws-minicta-btn {
  position: relative;
  z-index: 2;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.28);
  transition: 0.32s ease;
  white-space: nowrap;
  overflow: hidden;
}

.mws-minicta-btn::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 170%;
  left: -55px;
  top: -35%;
  background: rgba(200, 200, 200, 0.34);
  transform: rotate(25deg);
  transition: 0.55s ease;
}

.mws-minicta-btn:hover::before {
  left: 130%;
}

.mws-minicta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(242, 140, 40, 0.36);
}

/* Reveal Animation */
.mws-minicta-reveal {
  opacity: 0;
  transform: translateY(36px);
}

.mws-minicta-reveal.mws-minicta-reveal-active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

/* Responsive */
@media (max-width: 820px) {
  .mws-minicta-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .mws-minicta-icon {
    margin: 0 auto;
  }

  .mws-minicta-btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .mws-minicta-section {
    padding: 56px 16px;
  }

  .mws-minicta-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .mws-minicta-card::before {
    inset: 10px;
    border-radius: 18px;
  }

  .mws-minicta-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 25px;
  }

  .mws-minicta-title {
    font-size: 26px;
  }

  .mws-minicta-text {
    font-size: 14px;
  }

  .mws-minicta-btn {
    min-height: 52px;
    border-radius: 15px;
  }
}

/* ======================================================
   METROWELL BEAUTIFUL FOOTER
   Orange + Gray Theme Only
====================================================== */

.mws-footerhub-section {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 24px;
  background:
    radial-gradient(circle at 14% 18%, rgba(242, 140, 40, 0.16), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(125, 125, 125, 0.22), transparent 32%),
    linear-gradient(135deg, #2a2a2a 0%, #3f3f3f 48%, #242424 100%);
}

.mws-footerhub-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.42;
  pointer-events: none;
}

.mws-footerhub-route {
  position: absolute;
  height: 12px;
  width: 470px;
  border-radius: 60px;
  background:
    repeating-linear-gradient(
      90deg,
      #f28c28 0,
      #f28c28 42px,
      #777777 42px,
      #777777 58px
    );
  opacity: 0.22;
  animation: mwsFooterhubRouteMove 7s linear infinite;
}

.mws-footerhub-route-one {
  top: 72px;
  left: -160px;
  transform: rotate(-16deg);
}

.mws-footerhub-route-two {
  right: -150px;
  bottom: 92px;
  transform: rotate(16deg);
}

@keyframes mwsFooterhubRouteMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 260px 0;
  }
}

.mws-footerhub-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

/* Top CTA */
.mws-footerhub-top-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 42px;
  padding: 30px 34px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.36);
  box-shadow:
    0 24px 66px rgba(35, 35, 35, 0.42),
    inset 0 0 26px rgba(242, 140, 40, 0.07);
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 22px;
}

.mws-footerhub-top-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px dashed rgba(242, 140, 40, 0.24);
  pointer-events: none;
}

.mws-footerhub-top-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  bottom: -90px;
  border-radius: 50%;
  border: 22px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-footerhub-top-icon {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.3);
  animation: mwsFooterhubIconFloat 3.5s ease-in-out infinite;
}

@keyframes mwsFooterhubIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-7px) rotate(3deg);
  }
}

.mws-footerhub-top-content {
  position: relative;
  z-index: 2;
}

.mws-footerhub-top-content span {
  display: inline-block;
  color: #f28c28;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.mws-footerhub-top-content h2 {
  color: #eeeeee;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
  margin-bottom: 8px;
}

.mws-footerhub-top-content h2::first-letter {
  color: #f28c28;
}

.mws-footerhub-top-content p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.62;
  margin: 0;
}

.mws-footerhub-top-btn {
  position: relative;
  z-index: 2;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 17px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.32s ease;
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.28);
}

.mws-footerhub-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(242, 140, 40, 0.36);
}

/* Main Footer */
.mws-footerhub-main {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(72, 72, 72, 0.78), rgba(38, 38, 38, 0.94));
  border: 1px solid rgba(242, 140, 40, 0.24);
  box-shadow:
    0 24px 66px rgba(35, 35, 35, 0.34),
    inset 0 0 26px rgba(242, 140, 40, 0.05);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.95fr 1.25fr;
  gap: 34px;
}

.mws-footerhub-main::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px dashed rgba(242, 140, 40, 0.18);
  pointer-events: none;
}

.mws-footerhub-brand-col,
.mws-footerhub-link-col,
.mws-footerhub-contact-col {
  position: relative;
  z-index: 2;
}

.mws-footerhub-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.mws-footerhub-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

.mws-footerhub-brand-text {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.72;
  margin: 0 0 18px;
}

.mws-footerhub-mini-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(242, 140, 40, 0.12);
  border: 1px solid rgba(242, 140, 40, 0.28);
  color: #dddddd;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.mws-footerhub-mini-note i {
  color: #f28c28;
  margin-top: 3px;
}

.mws-footerhub-link-col h3,
.mws-footerhub-contact-col h3 {
  color: #eeeeee;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.mws-footerhub-link-col h3::after,
.mws-footerhub-contact-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 4px;
  border-radius: 20px;
  background: #f28c28;
}

.mws-footerhub-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.mws-footerhub-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 800;
  transition: 0.28s ease;
}

.mws-footerhub-link-list a i {
  color: #f28c28;
  font-size: 13px;
  transition: 0.28s ease;
}

.mws-footerhub-link-list a:hover {
  color: #f28c28;
  transform: translateX(6px);
}

.mws-footerhub-contact-list {
  display: grid;
  gap: 12px;
}

.mws-footerhub-contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 17px;
  background: rgba(70, 70, 70, 0.58);
  border: 1px solid rgba(242, 140, 40, 0.18);
  transition: 0.3s ease;
}

.mws-footerhub-contact-item:hover {
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.52);
  transform: translateX(-5px);
}

.mws-footerhub-contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mws-footerhub-contact-text small {
  display: block;
  color: #f28c28;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.mws-footerhub-contact-text strong {
  display: block;
  color: #eeeeee;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
  word-break: break-word;
}

/* Bottom */
.mws-footerhub-bottom {
  margin-top: 24px;
  padding: 18px 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(242, 140, 40, 0.24);
}

.mws-footerhub-bottom p {
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.mws-footerhub-top-scroll {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  border: 1px solid rgba(242, 140, 40, 0.42);
  background: rgba(80, 80, 80, 0.72);
  color: #f28c28;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: 0.3s ease;
}

.mws-footerhub-top-scroll:hover {
  background: #f28c28;
  color: #303030;
  transform: translateY(-4px);
}

/* Reveal */
.mws-footerhub-reveal {
  opacity: 0;
  transform: translateY(34px);
}

.mws-footerhub-reveal.mws-footerhub-reveal-active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

/* Responsive */
@media (max-width: 1100px) {
  .mws-footerhub-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .mws-footerhub-top-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mws-footerhub-top-icon {
    margin: 0 auto;
  }

  .mws-footerhub-top-btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .mws-footerhub-section {
    padding: 62px 16px 22px;
  }

  .mws-footerhub-top-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .mws-footerhub-main {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    border-radius: 26px;
    gap: 30px;
  }

  .mws-footerhub-main::before {
    inset: 10px;
    border-radius: 20px;
  }

  .mws-footerhub-logo {
    width: 165px;
  }

  .mws-footerhub-link-col h3,
  .mws-footerhub-contact-col h3 {
    font-size: 19px;
  }

  .mws-footerhub-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ======================================================
   METROWELL FOOTER MOBILE - QUICK LINKS + PRODUCT INFO SIDE BY SIDE
====================================================== */

@media (max-width: 680px) {
  .mws-footerhub-main {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 26px 18px !important;
  }

  /* Brand column full width */
  .mws-footerhub-brand-col {
    grid-column: 1 / -1 !important;
  }

  /* Quick Links and Product Info stay side by side */
  .mws-footerhub-link-col {
    grid-column: auto !important;
  }

  /* Contact column full width */
  .mws-footerhub-contact-col {
    grid-column: 1 / -1 !important;
  }

  .mws-footerhub-link-col h3,
  .mws-footerhub-contact-col h3 {
    font-size: 17px !important;
    margin-bottom: 16px !important;
  }

  .mws-footerhub-link-list {
    gap: 10px !important;
  }

  .mws-footerhub-link-list a {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 390px) {
  .mws-footerhub-main {
    gap: 24px 14px !important;
    padding: 26px 16px !important;
  }

  .mws-footerhub-link-list a {
    font-size: 12.5px !important;
  }
}

/* ======================================================
   METROWELL FOOTER MOBILE - CENTER LOGO
====================================================== */

@media (max-width: 680px) {
  .mws-footerhub-brand-col {
    text-align: center !important;
  }

  .mws-footerhub-logo-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mws-footerhub-logo {
    margin: 0 auto !important;
    display: block !important;
  }

  .mws-footerhub-brand-text {
    text-align: center !important;
  }

  .mws-footerhub-mini-note {
    justify-content: center !important;
    text-align: center !important;
  }
}

/* ======================================================
   METROWELL ABOUT HERO SECTION
   Orange + Gray Theme Only
====================================================== */

.mws-abouthero-section {
  position: relative;
  overflow: hidden;
  padding: 130px 24px 105px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 140, 40, 0.16), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(125, 125, 125, 0.24), transparent 32%),
    linear-gradient(135deg, #2f2f2f 0%, #424242 48%, #292929 100%);
}

.mws-abouthero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.45;
  pointer-events: none;
}

.mws-abouthero-route {
  position: absolute;
  height: 12px;
  width: 470px;
  border-radius: 60px;
  background:
    repeating-linear-gradient(
      90deg,
      #f28c28 0,
      #f28c28 42px,
      #777777 42px,
      #777777 58px
    );
  opacity: 0.22;
  animation: mwsAboutheroRouteMove 7s linear infinite;
}

.mws-abouthero-route-one {
  top: 96px;
  left: -150px;
  transform: rotate(-16deg);
}

.mws-abouthero-route-two {
  right: -140px;
  bottom: 90px;
  transform: rotate(16deg);
}

@keyframes mwsAboutheroRouteMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 260px 0;
  }
}

.mws-abouthero-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 46px;
  align-items: center;
}

.mws-abouthero-content {
  position: relative;
}

.mws-abouthero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.15);
  border: 1px solid rgba(242, 140, 40, 0.42);
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
}

.mws-abouthero-badge i {
  color: #f28c28;
}

.mws-abouthero-title {
  color: #eeeeee;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.03;
  letter-spacing: -2px;
  font-weight: 900;
  margin-bottom: 22px;
}

.mws-abouthero-title::first-letter {
  color: #f28c28;
}

.mws-abouthero-text {
  color: #cfcfcf;
  max-width: 660px;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.mws-abouthero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mws-abouthero-primary-btn,
.mws-abouthero-secondary-btn {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 900;
  transition: 0.34s ease;
}

.mws-abouthero-primary-btn {
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.3);
}

.mws-abouthero-secondary-btn {
  background: rgba(100, 100, 100, 0.42);
  color: #eeeeee;
  border: 1px solid rgba(242, 140, 40, 0.38);
}

.mws-abouthero-secondary-btn i {
  color: #f28c28;
}

.mws-abouthero-primary-btn:hover,
.mws-abouthero-secondary-btn:hover {
  transform: translateY(-4px);
}

/* Right Visual */
.mws-abouthero-visual {
  position: relative;
}

.mws-abouthero-map-card {
  position: relative;
  min-height: 520px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(44, 44, 44, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.32);
  box-shadow:
    0 30px 82px rgba(35, 35, 35, 0.48),
    inset 0 0 28px rgba(242, 140, 40, 0.06);
  overflow: hidden;
}

.mws-abouthero-map-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(242, 140, 40, 0.25);
  border-radius: 30px;
  pointer-events: none;
  z-index: 2;
}

.mws-abouthero-map-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  border: 24px solid rgba(242, 140, 40, 0.11);
}

.mws-abouthero-map-line {
  position: absolute;
  left: 50%;
  top: 58px;
  bottom: 58px;
  width: 14px;
  border-radius: 80px;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(
      180deg,
      #f28c28 0,
      #f28c28 46px,
      #777777 46px,
      #777777 64px
    );
  animation: mwsAboutheroMapLineMove 5s linear infinite;
}

@keyframes mwsAboutheroMapLineMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 220px;
  }
}

.mws-abouthero-center-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 118px;
  height: 118px;
  border-radius: 34px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  box-shadow: 0 24px 52px rgba(242, 140, 40, 0.34);
  animation: mwsAboutheroCenterFloat 3.4s ease-in-out infinite;
}

@keyframes mwsAboutheroCenterFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.mws-abouthero-station {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(55, 55, 55, 0.88);
  border: 1px solid rgba(242, 140, 40, 0.34);
  box-shadow: 0 20px 42px rgba(35, 35, 35, 0.34);
  animation: mwsAboutheroStationFloat 4s ease-in-out infinite;
}

@keyframes mwsAboutheroStationFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.mws-abouthero-station-one {
  left: 38px;
  top: 72px;
}

.mws-abouthero-station-two {
  right: 38px;
  top: 226px;
  animation-delay: 0.4s;
}

.mws-abouthero-station-three {
  left: 38px;
  bottom: 72px;
  animation-delay: 0.8s;
}

.mws-abouthero-station span {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mws-abouthero-station strong {
  display: block;
  color: #eeeeee;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 3px;
}

.mws-abouthero-station small {
  display: block;
  color: #c9c9c9;
  font-size: 12px;
  font-weight: 700;
}

.mws-abouthero-floating-icon {
  position: absolute;
  z-index: 4;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: rgba(242, 140, 40, 0.16);
  border: 1px solid rgba(242, 140, 40, 0.36);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  animation: mwsAboutheroIconFloat 4s ease-in-out infinite;
}

.mws-abouthero-floating-one {
  right: 54px;
  top: 80px;
}

.mws-abouthero-floating-two {
  left: 56px;
  bottom: 88px;
  animation-delay: 0.7s;
}

@keyframes mwsAboutheroIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

/* Reveal */
.mws-abouthero-reveal {
  opacity: 0;
  transform: translateY(38px);
}

.mws-abouthero-reveal.mws-abouthero-reveal-active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.85s ease;
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-abouthero-container {
    grid-template-columns: 1fr;
  }

  .mws-abouthero-content {
    text-align: center;
  }

  .mws-abouthero-badge,
  .mws-abouthero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .mws-abouthero-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 680px) {
  .mws-abouthero-section {
    padding: 96px 16px 76px;
  }

  .mws-abouthero-badge {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    font-size: 12px;
  }

  .mws-abouthero-title {
    font-size: 34px;
    letter-spacing: -0.9px;
  }

  .mws-abouthero-text {
    font-size: 15px;
  }

  .mws-abouthero-actions {
    flex-direction: column;
  }

  .mws-abouthero-primary-btn,
  .mws-abouthero-secondary-btn {
    width: 100%;
  }

  .mws-abouthero-map-card {
    min-height: 420px;
    border-radius: 26px;
  }

  .mws-abouthero-map-card::before {
    inset: 12px;
    border-radius: 20px;
  }

  .mws-abouthero-center-icon {
    width: 86px;
    height: 86px;
    border-radius: 26px;
    font-size: 32px;
  }

  .mws-abouthero-map-line {
    width: 10px;
    top: 48px;
    bottom: 48px;
  }

  .mws-abouthero-station {
    padding: 11px;
    border-radius: 16px;
  }

  .mws-abouthero-station-one {
    left: 16px;
    top: 54px;
  }

  .mws-abouthero-station-two {
    right: 16px;
    top: 176px;
  }

  .mws-abouthero-station-three {
    left: 16px;
    bottom: 54px;
  }

  .mws-abouthero-station span {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 15px;
  }

  .mws-abouthero-station strong {
    font-size: 13px;
  }

  .mws-abouthero-station small {
    font-size: 11px;
  }

  .mws-abouthero-floating-icon {
    display: none;
  }
}

@media (max-width: 390px) {
  .mws-abouthero-title {
    font-size: 31px;
  }

  .mws-abouthero-map-card {
    min-height: 400px;
  }

  .mws-abouthero-station {
    max-width: 170px;
  }
}

/* ======================================================
   METROWELL COMPACT DME PROFILE OVERVIEW
   Unique Small Medical Design
   Orange + Gray Theme Only
====================================================== */

.mws-dmeprofile-section {
  position: relative;
  overflow: hidden;
  padding: 68px 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 140, 40, 0.12), transparent 28%),
    linear-gradient(135deg, #303030 0%, #424242 52%, #292929 100%);
}

.mws-dmeprofile-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
  pointer-events: none;
}

.mws-dmeprofile-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-dmeprofile-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.3);
  box-shadow:
    0 24px 64px rgba(35, 35, 35, 0.38),
    inset 0 0 24px rgba(242, 140, 40, 0.05);
  display: grid;
  grid-template-columns: 82px 1fr 0.78fr;
  gap: 26px;
  align-items: center;
}

.mws-dmeprofile-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -76px;
  bottom: -82px;
  border-radius: 50%;
  border: 22px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-dmeprofile-label {
  width: 82px;
  min-height: 190px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.28);
  position: relative;
  z-index: 2;
}

.mws-dmeprofile-label i {
  font-size: 28px;
}

.mws-dmeprofile-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
}

.mws-dmeprofile-content,
.mws-dmeprofile-snapshot {
  position: relative;
  z-index: 2;
}

.mws-dmeprofile-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.38);
  color: #e5e5e5;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.mws-dmeprofile-badge i {
  color: #f28c28;
}

.mws-dmeprofile-title {
  color: #eeeeee;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -1.1px;
  font-weight: 900;
  margin-bottom: 14px;
}

.mws-dmeprofile-title::first-letter {
  color: #f28c28;
}

.mws-dmeprofile-text {
  color: #cfcfcf;
  font-size: 15.5px;
  line-height: 1.72;
  max-width: 650px;
  margin: 0;
}

.mws-dmeprofile-snapshot {
  display: grid;
  gap: 11px;
}

.mws-dmeprofile-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 17px;
  background: rgba(70, 70, 70, 0.58);
  border: 1px solid rgba(242, 140, 40, 0.2);
  transition: 0.3s ease;
}

.mws-dmeprofile-row:hover {
  transform: translateX(-6px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.58);
}

.mws-dmeprofile-row > i {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.mws-dmeprofile-row strong {
  display: block;
  color: #eeeeee;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 3px;
}

.mws-dmeprofile-row small {
  display: block;
  color: #cfcfcf;
  font-size: 12px;
  font-weight: 700;
}

/* Medical pulse line */
.mws-dmeprofile-pulse {
  position: absolute;
  left: 122px;
  right: 28px;
  bottom: 20px;
  height: 2px;
  background: rgba(242, 140, 40, 0.18);
  overflow: hidden;
  z-index: 1;
}

.mws-dmeprofile-pulse span {
  position: absolute;
  left: -120px;
  top: 0;
  width: 120px;
  height: 2px;
  background: #f28c28;
  box-shadow: 0 0 18px rgba(242, 140, 40, 0.8);
  animation: mwsDmeprofilePulseMove 2.8s linear infinite;
}

@keyframes mwsDmeprofilePulseMove {
  from {
    left: -120px;
  }

  to {
    left: 100%;
  }
}

/* Chips */
.mws-dmeprofile-chips {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mws-dmeprofile-chip {
  min-height: 58px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(72, 72, 72, 0.68);
  border: 1px solid rgba(242, 140, 40, 0.2);
  color: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: 0.3s ease;
}

.mws-dmeprofile-chip i {
  color: #f28c28;
  font-size: 16px;
}

.mws-dmeprofile-chip:hover {
  transform: translateY(-5px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.58);
}

/* Reveal */
.mws-dmeprofile-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.mws-dmeprofile-reveal.mws-dmeprofile-reveal-active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.78s ease;
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-dmeprofile-card {
    grid-template-columns: 74px 1fr;
  }

  .mws-dmeprofile-snapshot {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .mws-dmeprofile-pulse {
    left: 28px;
  }

  .mws-dmeprofile-chips {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .mws-dmeprofile-section {
    padding: 60px 16px;
  }

  .mws-dmeprofile-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mws-dmeprofile-label {
    width: 100%;
    min-height: 58px;
    border-radius: 18px;
    flex-direction: row;
  }

  .mws-dmeprofile-label span {
    writing-mode: initial;
    transform: none;
    letter-spacing: 2px;
  }

  .mws-dmeprofile-badge {
    width: 100%;
    justify-content: center;
    border-radius: 15px;
    font-size: 12px;
  }

  .mws-dmeprofile-title {
    font-size: 28px;
    letter-spacing: -0.7px;
  }

  .mws-dmeprofile-text {
    font-size: 14.5px;
  }

  .mws-dmeprofile-snapshot {
    grid-template-columns: 1fr;
  }

  .mws-dmeprofile-row {
    grid-template-columns: 42px 1fr;
  }

  .mws-dmeprofile-row > i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 16px;
  }

  .mws-dmeprofile-chips {
    grid-template-columns: 1fr;
  }

  .mws-dmeprofile-chip {
    min-height: 54px;
  }

  .mws-dmeprofile-pulse {
    display: none;
  }
}

/* ======================================================
   METROWELL WHAT WE PROVIDE SECTION
   Modern DME / Medical Style
   Orange + Gray Theme Only
====================================================== */

.mws-providecare-section {
  position: relative;
  overflow: hidden;
  padding: 90px 24px;
  background:
    radial-gradient(circle at 16% 14%, rgba(242, 140, 40, 0.13), transparent 28%),
    radial-gradient(circle at 88% 86%, rgba(125, 125, 125, 0.22), transparent 32%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
}

.mws-providecare-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.34;
  pointer-events: none;
}

.mws-providecare-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-providecare-header {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.mws-providecare-badge {
  width: fit-content;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.4);
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 800;
}

.mws-providecare-badge i {
  color: #f28c28;
}

.mws-providecare-title {
  color: #eeeeee;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 900;
  margin-bottom: 16px;
}

.mws-providecare-title::first-letter {
  color: #f28c28;
}

.mws-providecare-subtitle {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

/* Grid */
.mws-providecare-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.mws-providecare-main-card,
.mws-providecare-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.26);
  box-shadow:
    0 22px 58px rgba(35, 35, 35, 0.34),
    inset 0 0 22px rgba(242, 140, 40, 0.05);
  transition: 0.34s ease;
}

.mws-providecare-main-card::after,
.mws-providecare-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -68px;
  bottom: -70px;
  border-radius: 50%;
  border: 18px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
  transition: 0.34s ease;
}

.mws-providecare-main-card:hover,
.mws-providecare-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 140, 40, 0.62);
  box-shadow:
    0 28px 76px rgba(35, 35, 35, 0.46),
    0 0 34px rgba(242, 140, 40, 0.14);
}

.mws-providecare-main-card:hover::after,
.mws-providecare-card:hover::after {
  transform: scale(1.14);
}

/* Main Card */
.mws-providecare-main-card {
  grid-row: span 2;
  min-height: 420px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mws-providecare-main-icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  margin-bottom: 24px;
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.28);
  animation: mwsProvidecareIconFloat 3.4s ease-in-out infinite;
}

@keyframes mwsProvidecareIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.mws-providecare-main-label {
  color: #f28c28;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mws-providecare-main-card h3 {
  color: #eeeeee;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 900;
  margin-bottom: 16px;
}

.mws-providecare-main-card h3::first-letter {
  color: #f28c28;
}

.mws-providecare-main-card p {
  color: #cfcfcf;
  font-size: 15.5px;
  line-height: 1.72;
  margin-bottom: 24px;
}

.mws-providecare-main-btn {
  width: fit-content;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 900;
  transition: 0.32s ease;
  box-shadow: 0 16px 32px rgba(242, 140, 40, 0.25);
}

.mws-providecare-main-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(242, 140, 40, 0.34);
}

.mws-providecare-main-btn i {
  transition: 0.32s ease;
}

.mws-providecare-main-btn:hover i {
  transform: translateX(4px);
}

/* Small Cards */
.mws-providecare-card {
  min-height: 200px;
  padding: 24px;
}

.mws-providecare-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 20px;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.24);
}

.mws-providecare-card h3 {
  color: #eeeeee;
  font-size: 20px;
  line-height: 1.24;
  font-weight: 900;
  margin-bottom: 12px;
}

.mws-providecare-card p {
  color: #c9c9c9;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Reveal */
.mws-providecare-reveal {
  opacity: 0;
  transform: translateY(32px);
}

.mws-providecare-reveal.mws-providecare-reveal-active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.78s ease;
}

.mws-providecare-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.mws-providecare-reveal:nth-child(3) {
  transition-delay: 0.14s;
}

.mws-providecare-reveal:nth-child(4) {
  transition-delay: 0.2s;
}

.mws-providecare-reveal:nth-child(5) {
  transition-delay: 0.26s;
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-providecare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mws-providecare-main-card {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .mws-providecare-section {
    padding: 72px 16px;
  }

  .mws-providecare-header {
    margin-bottom: 34px;
  }

  .mws-providecare-badge {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    font-size: 12px;
  }

  .mws-providecare-title {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .mws-providecare-subtitle {
    font-size: 15px;
  }

  .mws-providecare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mws-providecare-main-card,
  .mws-providecare-card {
    border-radius: 24px;
  }

  .mws-providecare-main-card {
    padding: 26px 20px;
  }

  .mws-providecare-main-icon {
    width: 66px;
    height: 66px;
    border-radius: 21px;
    font-size: 26px;
  }

  .mws-providecare-main-card h3 {
    font-size: 28px;
  }

  .mws-providecare-main-card p {
    font-size: 14.5px;
  }

  .mws-providecare-main-btn {
    width: 100%;
  }

  .mws-providecare-card {
    min-height: auto;
    padding: 22px;
  }

  .mws-providecare-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    font-size: 20px;
  }

  .mws-providecare-card h3 {
    font-size: 19px;
  }
}

/* ======================================================
   METROWELL DME TRUST FILE SECTION
   Unique Medical Record / Checklist Design
   Orange + Gray Theme Only
====================================================== */

.mws-trustfile-section {
  position: relative;
  overflow: hidden;
  padding: 90px 24px;
  background:
    radial-gradient(circle at 14% 18%, rgba(242, 140, 40, 0.12), transparent 28%),
    radial-gradient(circle at 88% 84%, rgba(125, 125, 125, 0.2), transparent 32%),
    linear-gradient(135deg, #303030 0%, #414141 52%, #292929 100%);
}

.mws-trustfile-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.32;
  pointer-events: none;
}

.mws-trustfile-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

/* Heading */
.mws-trustfile-heading {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.mws-trustfile-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.4);
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.mws-trustfile-badge i {
  color: #f28c28;
}

.mws-trustfile-title {
  color: #eeeeee;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 900;
}

.mws-trustfile-title::first-letter {
  color: #f28c28;
}

.mws-trustfile-subtitle {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

/* Board */
.mws-trustfile-board {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.88), rgba(42, 42, 42, 0.98));
  border: 1px solid rgba(242, 140, 40, 0.32);
  box-shadow:
    0 30px 82px rgba(35, 35, 35, 0.44),
    inset 0 0 28px rgba(242, 140, 40, 0.06);
}

.mws-trustfile-board::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -96px;
  bottom: -96px;
  border-radius: 50%;
  border: 26px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

/* Board Top */
.mws-trustfile-board-top {
  position: relative;
  z-index: 2;
  min-height: 78px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(242, 140, 40, 0.22);
  background: rgba(55, 55, 55, 0.72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mws-trustfile-board-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #eeeeee;
  font-size: 15px;
  font-weight: 900;
}

.mws-trustfile-board-label i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-trustfile-board-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dcdcdc;
  font-size: 13px;
  font-weight: 800;
}

.mws-trustfile-board-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f28c28;
  box-shadow: 0 0 16px rgba(242, 140, 40, 0.9);
}

/* Body */
.mws-trustfile-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
}

/* Checklist */
.mws-trustfile-checklist {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.mws-trustfile-row {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px 1fr 58px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(70, 70, 70, 0.58);
  border: 1px solid rgba(242, 140, 40, 0.2);
  transition: 0.32s ease;
}

.mws-trustfile-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 0 20px 20px 0;
  background: #f28c28;
  transform: scaleY(0);
  transition: 0.32s ease;
}

.mws-trustfile-row:hover {
  transform: translateX(8px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.6);
}

.mws-trustfile-row:hover::before {
  transform: scaleY(1);
}

.mws-trustfile-check {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(242, 140, 40, 0.16);
  border: 1px solid rgba(242, 140, 40, 0.42);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.mws-trustfile-row-content span {
  color: #f28c28;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  display: block;
  margin-bottom: 5px;
}

.mws-trustfile-row-content h3 {
  color: #eeeeee;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 6px;
}

.mws-trustfile-row-content p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.mws-trustfile-row-icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.24);
}

/* Side Panel */
.mws-trustfile-side {
  position: relative;
  padding: 34px;
  border-left: 1px solid rgba(242, 140, 40, 0.22);
  background:
    radial-gradient(circle at 70% 20%, rgba(242, 140, 40, 0.13), transparent 32%),
    rgba(55, 55, 55, 0.48);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mws-trustfile-side-icon {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 24px;
  box-shadow: 0 20px 42px rgba(242, 140, 40, 0.3);
  animation: mwsTrustfileFloat 3.4s ease-in-out infinite;
}

@keyframes mwsTrustfileFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.mws-trustfile-side h3 {
  color: #eeeeee;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
  margin-bottom: 14px;
}

.mws-trustfile-side h3::first-letter {
  color: #f28c28;
}

.mws-trustfile-side p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.mws-trustfile-side-list {
  display: grid;
  gap: 12px;
}

.mws-trustfile-side-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 17px;
  background: rgba(72, 72, 72, 0.62);
  border: 1px solid rgba(242, 140, 40, 0.2);
}

.mws-trustfile-side-list i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(242, 140, 40, 0.16);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-trustfile-side-list span {
  color: #eeeeee;
  font-size: 14px;
  font-weight: 800;
}

/* Reveal */
.mws-trustfile-reveal {
  opacity: 0;
  transform: translateY(32px);
}

.mws-trustfile-reveal.mws-trustfile-reveal-active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-trustfile-heading {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mws-trustfile-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .mws-trustfile-body {
    grid-template-columns: 1fr;
  }

  .mws-trustfile-side {
    border-left: 0;
    border-top: 1px solid rgba(242, 140, 40, 0.22);
  }
}

@media (max-width: 680px) {
  .mws-trustfile-section {
    padding: 72px 16px;
  }

  .mws-trustfile-badge {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    font-size: 12px;
  }

  .mws-trustfile-title {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .mws-trustfile-subtitle {
    font-size: 15px;
  }

  .mws-trustfile-board {
    border-radius: 24px;
  }

  .mws-trustfile-board-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .mws-trustfile-checklist {
    padding: 18px;
  }

  .mws-trustfile-row {
    grid-template-columns: 42px 1fr;
    padding: 15px;
    border-radius: 18px;
  }

  .mws-trustfile-row-icon {
    grid-column: 1 / -1;
    width: 100%;
    height: 44px;
    border-radius: 15px;
  }

  .mws-trustfile-check {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .mws-trustfile-row-content h3 {
    font-size: 17px;
  }

  .mws-trustfile-row-content p {
    font-size: 13px;
  }

  .mws-trustfile-side {
    padding: 24px 18px;
  }

  .mws-trustfile-side-icon {
    width: 66px;
    height: 66px;
    border-radius: 21px;
    font-size: 26px;
  }

  .mws-trustfile-side h3 {
    font-size: 27px;
  }

  .mws-trustfile-side p {
    font-size: 14px;
  }
}

/* ======================================================
   METROWELL SHORT CONTACT HERO
   Compact DME Contact Header
====================================================== */

.mws-contactmicro-section {
  position: relative;
  overflow: hidden;
  padding: 105px 24px 58px;
  background:
    radial-gradient(circle at 16% 24%, rgba(242, 140, 40, 0.13), transparent 28%),
    linear-gradient(135deg, #303030 0%, #414141 52%, #292929 100%);
}

.mws-contactmicro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.34;
  pointer-events: none;
}

.mws-contactmicro-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: 42px;
  border-radius: 50%;
  border: 28px solid rgba(242, 140, 40, 0.09);
  pointer-events: none;
}

.mws-contactmicro-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 290px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 44px;
  align-items: center;
}

.mws-contactmicro-content {
  max-width: 720px;
}

.mws-contactmicro-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.4);
  color: #eeeeee;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.mws-contactmicro-badge i {
  color: #f28c28;
}

.mws-contactmicro-title {
  color: #eeeeee;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  font-weight: 900;
  margin-bottom: 15px;
}

.mws-contactmicro-title::first-letter {
  color: #f28c28;
}

.mws-contactmicro-text {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 24px;
}

.mws-contactmicro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mws-contactmicro-primary-btn,
.mws-contactmicro-secondary-btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  transition: 0.3s ease;
}

.mws-contactmicro-primary-btn {
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  box-shadow: 0 16px 32px rgba(242, 140, 40, 0.28);
}

.mws-contactmicro-secondary-btn {
  background: rgba(80, 80, 80, 0.56);
  color: #eeeeee;
  border: 1px solid rgba(242, 140, 40, 0.32);
}

.mws-contactmicro-secondary-btn i {
  color: #f28c28;
}

.mws-contactmicro-primary-btn:hover,
.mws-contactmicro-secondary-btn:hover {
  transform: translateY(-4px);
}

/* Short Inquiry Flow */
.mws-contactmicro-flow {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.82), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.3);
  box-shadow:
    0 24px 64px rgba(35, 35, 35, 0.38),
    inset 0 0 22px rgba(242, 140, 40, 0.05);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mws-contactmicro-flow::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -62px;
  bottom: -68px;
  border-radius: 50%;
  border: 18px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-contactmicro-flow-line {
  position: absolute;
  left: 44px;
  right: 44px;
  top: 50%;
  height: 2px;
  background: rgba(242, 140, 40, 0.18);
  transform: translateY(-50%);
}

.mws-contactmicro-flow-line::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 0;
  width: 80px;
  height: 2px;
  background: #f28c28;
  box-shadow: 0 0 18px rgba(242, 140, 40, 0.85);
  animation: mwsContactmicroFlowMove 2.8s linear infinite;
}

@keyframes mwsContactmicroFlowMove {
  from {
    left: -80px;
  }

  to {
    left: 100%;
  }
}

.mws-contactmicro-step {
  position: relative;
  z-index: 2;
  min-height: 116px;
  padding: 16px 12px;
  border-radius: 20px;
  background: rgba(55, 55, 55, 0.78);
  border: 1px solid rgba(242, 140, 40, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.mws-contactmicro-step:hover {
  transform: translateY(-6px);
  background: rgba(242, 140, 40, 0.13);
  border-color: rgba(242, 140, 40, 0.6);
}

.mws-contactmicro-step span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}

.mws-contactmicro-step strong {
  color: #eeeeee;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
  .mws-contactmicro-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .mws-contactmicro-content {
    max-width: 100%;
  }

  .mws-contactmicro-badge,
  .mws-contactmicro-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .mws-contactmicro-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 680px) {
  .mws-contactmicro-section {
    padding: 92px 16px 52px;
  }

  .mws-contactmicro-container {
    min-height: auto;
  }

  .mws-contactmicro-badge {
    width: 100%;
    justify-content: center;
    border-radius: 15px;
    font-size: 12px;
  }

  .mws-contactmicro-title {
    font-size: 33px;
    letter-spacing: -0.8px;
  }

  .mws-contactmicro-text {
    font-size: 14.5px;
  }

  .mws-contactmicro-actions {
    flex-direction: column;
  }

  .mws-contactmicro-primary-btn,
  .mws-contactmicro-secondary-btn {
    width: 100%;
  }

  .mws-contactmicro-flow {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 22px;
  }

  .mws-contactmicro-flow-line {
    display: none;
  }

  .mws-contactmicro-step {
    min-height: 70px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px;
  }

  .mws-contactmicro-step span {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* ======================================================
   METROWELL CONTACT INFO LINE CARDS
   Phone + Emails Same Line / Location Second Line
====================================================== */

.mws-contactline-section {
  position: relative;
  overflow: hidden;
  padding: 62px 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 140, 40, 0.11), transparent 28%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
}

.mws-contactline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
  pointer-events: none;
}

.mws-contactline-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-contactline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mws-contactline-card {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.26);
  box-shadow:
    0 18px 46px rgba(35, 35, 35, 0.32),
    inset 0 0 20px rgba(242, 140, 40, 0.05);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 13px;
  align-items: start;
  transition: 0.32s ease;
}

.mws-contactline-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -58px;
  bottom: -62px;
  border-radius: 50%;
  border: 16px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
  transition: 0.32s ease;
}

.mws-contactline-card:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(145deg, rgba(82, 82, 82, 0.92), rgba(44, 44, 44, 0.98));
  border-color: rgba(242, 140, 40, 0.6);
  box-shadow:
    0 24px 68px rgba(35, 35, 35, 0.43),
    0 0 28px rgba(242, 140, 40, 0.12);
}

.mws-contactline-card:hover::after {
  transform: scale(1.12);
}

.mws-contactline-location-card {
  grid-column: 1 / -1;
  min-height: 116px;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
}

.mws-contactline-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 14px 28px rgba(242, 140, 40, 0.25);
}

.mws-contactline-location-card .mws-contactline-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 22px;
}

.mws-contactline-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-right: 88px;
}

.mws-contactline-location-card .mws-contactline-content {
  padding-right: 0;
}

.mws-contactline-content span {
  display: block;
  color: #f28c28;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mws-contactline-content a {
  color: #eeeeee;
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 900;
  text-decoration: none;
  word-break: break-word;
  transition: 0.28s ease;
}

.mws-contactline-location-card .mws-contactline-content a {
  font-size: 17px;
}

.mws-contactline-content a:hover {
  color: #f28c28;
}

.mws-contactline-copy-btn {
  position: absolute;
  z-index: 4;
  right: 14px;
  top: 14px;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 12px;
  border: 1px solid rgba(242, 140, 40, 0.32);
  background: rgba(55, 55, 55, 0.76);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

.mws-contactline-location-card .mws-contactline-copy-btn {
  position: relative;
  right: auto;
  top: auto;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
}

.mws-contactline-copy-btn i {
  color: #f28c28;
  transition: 0.3s ease;
}

.mws-contactline-copy-btn:hover {
  background: #f28c28;
  color: #303030;
  transform: translateY(-3px);
}

.mws-contactline-copy-btn:hover i {
  color: #303030;
}

/* Toast */
.mws-contactline-copy-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 9999;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 50px;
  background: rgba(48, 48, 48, 0.96);
  border: 1px solid rgba(242, 140, 40, 0.4);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(35, 35, 35, 0.42);
  transform: translateX(-50%) translateY(90px);
  opacity: 0;
  pointer-events: none;
  transition: 0.32s ease;
}

.mws-contactline-copy-toast i {
  color: #f28c28;
}

.mws-contactline-copy-toast.mws-contactline-copy-toast-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-contactline-grid {
    grid-template-columns: 1fr;
  }

  .mws-contactline-location-card {
    grid-column: auto;
    grid-template-columns: 52px 1fr;
    min-height: auto;
    align-items: start;
  }

  .mws-contactline-location-card .mws-contactline-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    font-size: 20px;
  }

  .mws-contactline-location-card .mws-contactline-content a {
    font-size: 14.5px;
  }

  .mws-contactline-location-card .mws-contactline-copy-btn {
    position: absolute;
    right: 14px;
    top: 14px;
  }

  .mws-contactline-location-card .mws-contactline-content {
    padding-right: 88px;
  }
}

@media (max-width: 680px) {
  .mws-contactline-section {
    padding: 56px 16px;
  }

  .mws-contactline-card,
  .mws-contactline-location-card {
    min-height: auto;
    padding: 16px;
    border-radius: 20px;
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .mws-contactline-icon,
  .mws-contactline-location-card .mws-contactline-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 18px;
  }

  .mws-contactline-content,
  .mws-contactline-location-card .mws-contactline-content {
    padding-right: 0;
  }

  .mws-contactline-content a,
  .mws-contactline-location-card .mws-contactline-content a {
    font-size: 13.5px;
  }

  .mws-contactline-copy-btn,
  .mws-contactline-location-card .mws-contactline-copy-btn {
    position: relative;
    right: auto;
    top: auto;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
    margin-top: 2px;
  }
}

/* ======================================================
   METROWELL CONTACT FORM SECTION
   Unique DME Intake Form Design
====================================================== */

.mws-contactform-section {
  position: relative;
  overflow: hidden;
  padding: 86px 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(242, 140, 40, 0.12), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(125, 125, 125, 0.2), transparent 32%),
    linear-gradient(135deg, #303030 0%, #414141 52%, #292929 100%);
}

.mws-contactform-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
  pointer-events: none;
}

.mws-contactform-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-contactform-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

/* Form Card */
.mws-contactform-form-card,
.mws-contactform-help-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.28);
  box-shadow:
    0 24px 64px rgba(35, 35, 35, 0.38),
    inset 0 0 24px rgba(242, 140, 40, 0.05);
}

.mws-contactform-form-card {
  padding: 30px;
}

.mws-contactform-form-card::after,
.mws-contactform-help-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -86px;
  bottom: -90px;
  border-radius: 50%;
  border: 22px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-contactform-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.mws-contactform-icon {
  width: 72px;
  height: 72px;
  border-radius: 23px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.3);
  animation: mwsContactformFloat 3.5s ease-in-out infinite;
}

@keyframes mwsContactformFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.mws-contactform-top span {
  color: #f28c28;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.mws-contactform-top h2 {
  color: #eeeeee;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
  margin-top: 5px;
}

/* Form */
.mws-contactform-form {
  position: relative;
  z-index: 2;
}

.mws-contactform-type-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 22px;
}

.mws-contactform-type-btn {
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 17px;
  border: 1px solid rgba(242, 140, 40, 0.24);
  background: rgba(70, 70, 70, 0.6);
  color: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

.mws-contactform-type-btn i {
  color: #f28c28;
  font-size: 16px;
  transition: 0.3s ease;
}

.mws-contactform-type-btn:hover,
.mws-contactform-type-active {
  background: #f28c28;
  color: #303030;
  border-color: #f28c28;
  transform: translateY(-4px);
}

.mws-contactform-type-btn:hover i,
.mws-contactform-type-active i {
  color: #303030;
}

.mws-contactform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mws-contactform-field {
  margin-bottom: 15px;
}

.mws-contactform-field label {
  display: block;
  color: #eeeeee;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.mws-contactform-input-wrap {
  position: relative;
}

.mws-contactform-input-wrap i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #f28c28;
  font-size: 15px;
  pointer-events: none;
}

.mws-contactform-input-wrap input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px 0 44px;
  border-radius: 16px;
  border: 1px solid rgba(242, 140, 40, 0.22);
  background: rgba(58, 58, 58, 0.72);
  color: #eeeeee;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  transition: 0.3s ease;
}

.mws-contactform-input-wrap input::placeholder,
.mws-contactform-textarea-wrap textarea::placeholder {
  color: rgba(230, 230, 230, 0.48);
}

.mws-contactform-input-wrap input:focus,
.mws-contactform-textarea-wrap textarea:focus {
  border-color: rgba(242, 140, 40, 0.72);
  background: rgba(65, 65, 65, 0.82);
  box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.1);
}

.mws-contactform-textarea-wrap {
  position: relative;
}

.mws-contactform-textarea-wrap textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  padding: 16px 18px 42px;
  border-radius: 18px;
  border: 1px solid rgba(242, 140, 40, 0.22);
  background: rgba(58, 58, 58, 0.72);
  color: #eeeeee;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
  outline: none;
  transition: 0.3s ease;
}

.mws-contactform-count {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.13);
  border: 1px solid rgba(242, 140, 40, 0.25);
  color: #dcdcdc;
  font-size: 11px;
  font-weight: 900;
}

.mws-contactform-submit-btn {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.3);
  transition: 0.32s ease;
}

.mws-contactform-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(242, 140, 40, 0.38);
}

.mws-contactform-submit-btn i {
  transition: 0.32s ease;
}

.mws-contactform-submit-btn:hover i {
  transform: translateX(5px);
}

/* Help Card */
.mws-contactform-help-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mws-contactform-help-status {
  position: relative;
  z-index: 2;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.13);
  border: 1px solid rgba(242, 140, 40, 0.34);
  color: #eeeeee;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.mws-contactform-help-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f28c28;
  box-shadow: 0 0 16px rgba(242, 140, 40, 0.9);
}

.mws-contactform-help-card h3 {
  position: relative;
  z-index: 2;
  color: #eeeeee;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -1.1px;
  font-weight: 900;
  margin-bottom: 15px;
}

.mws-contactform-help-card h3::first-letter {
  color: #f28c28;
}

.mws-contactform-help-card p {
  position: relative;
  z-index: 2;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 24px;
}

.mws-contactform-help-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.mws-contactform-help-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(70, 70, 70, 0.58);
  border: 1px solid rgba(242, 140, 40, 0.2);
  transition: 0.3s ease;
}

.mws-contactform-help-item:hover {
  transform: translateX(-6px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.56);
}

.mws-contactform-help-item > i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(242, 140, 40, 0.16);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-contactform-help-item strong {
  display: block;
  color: #eeeeee;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 4px;
}

.mws-contactform-help-item small {
  display: block;
  color: #cfcfcf;
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 700;
}

.mws-contactform-mini-note {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(242, 140, 40, 0.11);
  border: 1px solid rgba(242, 140, 40, 0.28);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.mws-contactform-mini-note i {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: rgba(242, 140, 40, 0.15);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-contactform-mini-note span {
  color: #dcdcdc;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-contactform-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .mws-contactform-section {
    padding: 70px 16px;
  }

  .mws-contactform-form-card,
  .mws-contactform-help-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .mws-contactform-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mws-contactform-icon {
    width: 66px;
    height: 66px;
    border-radius: 21px;
    font-size: 26px;
    margin: 0 auto;
  }

  .mws-contactform-type-box,
  .mws-contactform-grid {
    grid-template-columns: 1fr;
  }

  .mws-contactform-help-status {
    width: 100%;
    justify-content: center;
  }

  .mws-contactform-help-card {
    text-align: left;
  }

  .mws-contactform-help-card h3 {
    font-size: 29px;
  }
}

/* ======================================================
   METROWELL CONTACT MAP SECTION
   Iframe Map / DME Location Design
====================================================== */

.mws-contactmap-section {
  position: relative;
  overflow: hidden;
  padding: 86px 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 140, 40, 0.12), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(125, 125, 125, 0.2), transparent 32%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
}

.mws-contactmap-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
  pointer-events: none;
}

.mws-contactmap-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-contactmap-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}

/* Left Info */
.mws-contactmap-info {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.28);
  box-shadow:
    0 24px 64px rgba(35, 35, 35, 0.38),
    inset 0 0 24px rgba(242, 140, 40, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mws-contactmap-info::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -84px;
  bottom: -88px;
  border-radius: 50%;
  border: 22px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-contactmap-badge {
  position: relative;
  z-index: 2;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.4);
  color: #eeeeee;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.mws-contactmap-badge i {
  color: #f28c28;
}

.mws-contactmap-title {
  position: relative;
  z-index: 2;
  color: #eeeeee;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -1.3px;
  font-weight: 900;
  margin-bottom: 16px;
}

.mws-contactmap-title::first-letter {
  color: #f28c28;
}

.mws-contactmap-text {
  position: relative;
  z-index: 2;
  color: #cfcfcf;
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.mws-contactmap-address-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(70, 70, 70, 0.58);
  border: 1px solid rgba(242, 140, 40, 0.22);
  margin-bottom: 22px;
}

.mws-contactmap-address-icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  box-shadow: 0 14px 30px rgba(242, 140, 40, 0.24);
}

.mws-contactmap-address-box span {
  display: block;
  color: #f28c28;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.mws-contactmap-address-box strong {
  display: block;
  color: #eeeeee;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 900;
}

.mws-contactmap-btn {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 17px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.28);
  transition: 0.32s ease;
}

.mws-contactmap-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(242, 140, 40, 0.36);
}

/* Right Map */
.mws-contactmap-frame-wrap {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.28);
  box-shadow:
    0 24px 64px rgba(35, 35, 35, 0.38),
    inset 0 0 24px rgba(242, 140, 40, 0.05);
  padding: 16px;
}

.mws-contactmap-frame-wrap::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -78px;
  bottom: -82px;
  border-radius: 50%;
  border: 20px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
  z-index: 1;
}

.mws-contactmap-frame-top {
  position: relative;
  z-index: 3;
  min-height: 58px;
  padding: 0 16px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: rgba(55, 55, 55, 0.76);
  border: 1px solid rgba(242, 140, 40, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mws-contactmap-frame-top div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #eeeeee;
  font-size: 14px;
  font-weight: 900;
}

.mws-contactmap-frame-top i {
  color: #f28c28;
}

.mws-contactmap-frame-top small {
  color: #cfcfcf;
  font-size: 12px;
  font-weight: 800;
}

.mws-contactmap-frame {
  position: relative;
  z-index: 3;
  overflow: hidden;
  height: calc(100% - 72px);
  min-height: 430px;
  border-radius: 22px;
  border: 1px solid rgba(242, 140, 40, 0.24);
  background: rgba(50, 50, 50, 0.6);
}

.mws-contactmap-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(18%) contrast(1.05);
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-contactmap-shell {
    grid-template-columns: 1fr;
  }

  .mws-contactmap-frame-wrap {
    min-height: 480px;
  }
}

@media (max-width: 680px) {
  .mws-contactmap-section {
    padding: 70px 16px;
  }

  .mws-contactmap-info,
  .mws-contactmap-frame-wrap {
    border-radius: 24px;
  }

  .mws-contactmap-info {
    padding: 24px 18px;
  }

  .mws-contactmap-badge {
    width: 100%;
    justify-content: center;
    border-radius: 15px;
    font-size: 12px;
  }

  .mws-contactmap-title {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .mws-contactmap-text {
    font-size: 14.5px;
  }

  .mws-contactmap-address-box {
    grid-template-columns: 48px 1fr;
    padding: 14px;
    border-radius: 18px;
  }

  .mws-contactmap-address-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 18px;
  }

  .mws-contactmap-btn {
    width: 100%;
  }

  .mws-contactmap-frame-wrap {
    min-height: 420px;
    padding: 12px;
  }

  .mws-contactmap-frame-top {
    min-height: auto;
    padding: 13px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
  }

  .mws-contactmap-frame {
    height: 340px;
    min-height: 340px;
    border-radius: 18px;
  }
}

/* ======================================================
   METROWELL SHORT ORDER HERO
   DME Request Page Hero
====================================================== */

.mws-orderhero-section {
  position: relative;
  overflow: hidden;
  padding: 108px 24px 58px;
  background:
    radial-gradient(circle at 14% 22%, rgba(242, 140, 40, 0.13), transparent 28%),
    linear-gradient(135deg, #303030 0%, #414141 52%, #292929 100%);
}

.mws-orderhero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.32;
  pointer-events: none;
}

.mws-orderhero-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: 44px;
  border-radius: 50%;
  border: 28px solid rgba(242, 140, 40, 0.09);
  pointer-events: none;
}

.mws-orderhero-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 285px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  align-items: center;
}

.mws-orderhero-content {
  max-width: 760px;
}

.mws-orderhero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.4);
  color: #eeeeee;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.mws-orderhero-badge i {
  color: #f28c28;
}

.mws-orderhero-title {
  color: #eeeeee;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  font-weight: 900;
  margin-bottom: 15px;
}

.mws-orderhero-title::first-letter {
  color: #f28c28;
}

.mws-orderhero-text {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.7;
  max-width: 670px;
  margin-bottom: 24px;
}

.mws-orderhero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mws-orderhero-primary-btn,
.mws-orderhero-secondary-btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s ease;
}

.mws-orderhero-primary-btn {
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  box-shadow: 0 16px 32px rgba(242, 140, 40, 0.28);
}

.mws-orderhero-secondary-btn {
  background: rgba(80, 80, 80, 0.56);
  color: #eeeeee;
  border: 1px solid rgba(242, 140, 40, 0.32);
}

.mws-orderhero-secondary-btn i {
  color: #f28c28;
}

.mws-orderhero-primary-btn:hover,
.mws-orderhero-secondary-btn:hover {
  transform: translateY(-4px);
}

/* Right Mini Panel */
.mws-orderhero-mini-panel {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.84), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.28);
  box-shadow:
    0 22px 58px rgba(35, 35, 35, 0.34),
    inset 0 0 22px rgba(242, 140, 40, 0.05);
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
}

.mws-orderhero-mini-panel::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -62px;
  bottom: -66px;
  border-radius: 50%;
  border: 18px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-orderhero-panel-icon {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  border-radius: 21px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.25);
  animation: mwsOrderheroIconFloat 3.4s ease-in-out infinite;
}

@keyframes mwsOrderheroIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.mws-orderhero-panel-content {
  position: relative;
  z-index: 2;
}

.mws-orderhero-panel-content span {
  display: block;
  color: #f28c28;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.mws-orderhero-panel-content strong {
  display: block;
  color: #eeeeee;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 980px) {
  .mws-orderhero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .mws-orderhero-content {
    max-width: 100%;
  }

  .mws-orderhero-badge,
  .mws-orderhero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .mws-orderhero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .mws-orderhero-mini-panel {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .mws-orderhero-section {
    padding: 92px 16px 52px;
  }

  .mws-orderhero-container {
    min-height: auto;
  }

  .mws-orderhero-badge {
    width: 100%;
    justify-content: center;
    border-radius: 15px;
    font-size: 12px;
  }

  .mws-orderhero-title {
    font-size: 33px;
    letter-spacing: -0.8px;
  }

  .mws-orderhero-text {
    font-size: 14.5px;
  }

  .mws-orderhero-actions {
    flex-direction: column;
  }

  .mws-orderhero-primary-btn,
  .mws-orderhero-secondary-btn {
    width: 100%;
  }

  .mws-orderhero-mini-panel {
    grid-template-columns: 56px 1fr;
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .mws-orderhero-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 22px;
  }

  .mws-orderhero-panel-content strong {
    font-size: 15px;
  }
}

/* ======================================================
   METROWELL COMPACT PAIRED DME ORDER FORM
====================================================== */

.mws-dmepairorder-section {
  position: relative;
  overflow: hidden;
  padding: 78px 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(242, 140, 40, 0.12), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(125, 125, 125, 0.18), transparent 32%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
}

.mws-dmepairorder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
  pointer-events: none;
}

.mws-dmepairorder-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-dmepairorder-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.28);
  box-shadow:
    0 24px 64px rgba(35, 35, 35, 0.38),
    inset 0 0 24px rgba(242, 140, 40, 0.05);
}

.mws-dmepairorder-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -94px;
  bottom: -96px;
  border-radius: 50%;
  border: 24px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-dmepairorder-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 15px;
  align-items: center;
  margin-bottom: 22px;
}

.mws-dmepairorder-top-icon {
  width: 66px;
  height: 66px;
  border-radius: 21px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.28);
}

.mws-dmepairorder-top span {
  color: #f28c28;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.mws-dmepairorder-top h2 {
  color: #eeeeee;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
  margin-top: 4px;
}

.mws-dmepairorder-form {
  position: relative;
  z-index: 2;
}

.mws-dmepairorder-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.mws-dmepairorder-box {
  position: relative;
  overflow: hidden;
  padding: 17px;
  border-radius: 24px;
  background: rgba(58, 58, 58, 0.45);
  border: 1px solid rgba(242, 140, 40, 0.2);
}

.mws-dmepairorder-box::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -60px;
  bottom: -64px;
  border-radius: 50%;
  border: 17px solid rgba(242, 140, 40, 0.08);
  pointer-events: none;
}

.mws-dmepairorder-box-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.mws-dmepairorder-box-head > i {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: rgba(242, 140, 40, 0.16);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-dmepairorder-box-head h3 {
  color: #eeeeee;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.mws-dmepairorder-mini-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mws-dmepairorder-wide {
  grid-column: 1 / -1;
}

.mws-dmepairorder-field label {
  display: block;
  color: #eeeeee;
  font-size: 12.5px;
  font-weight: 900;
  margin-bottom: 7px;
}

.mws-dmepairorder-input-wrap,
.mws-dmepairorder-select-wrap {
  position: relative;
}

.mws-dmepairorder-input-wrap > i,
.mws-dmepairorder-select-wrap > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #f28c28;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}

.mws-dmepairorder-input-wrap input,
.mws-dmepairorder-select-wrap select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px 0 41px;
  border-radius: 15px;
  border: 1px solid rgba(242, 140, 40, 0.22);
  background: rgba(45, 45, 45, 0.76);
  color: #eeeeee;
  font-size: 13.5px;
  font-weight: 700;
  outline: none;
  transition: 0.3s ease;
}

.mws-dmepairorder-select-wrap select {
  appearance: none;
  cursor: pointer;
  padding-right: 36px;
}

.mws-dmepairorder-select-wrap::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #f28c28;
  font-size: 11px;
  pointer-events: none;
}

.mws-dmepairorder-input-wrap input::placeholder,
.mws-dmepairorder-textarea-wrap textarea::placeholder {
  color: rgba(230, 230, 230, 0.48);
}

.mws-dmepairorder-input-wrap input:focus,
.mws-dmepairorder-select-wrap select:focus,
.mws-dmepairorder-textarea-wrap textarea:focus {
  border-color: rgba(242, 140, 40, 0.72);
  background: rgba(65, 65, 65, 0.84);
  box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.1);
}

/* Quantity */
.mws-dmepairorder-qty-wrap {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 8px;
}

.mws-dmepairorder-qty-wrap input {
  width: 100%;
  min-height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(242, 140, 40, 0.22);
  background: rgba(45, 45, 45, 0.76);
  color: #eeeeee;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  outline: none;
}

.mws-dmepairorder-qty-btn {
  width: 44px;
  min-height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(242, 140, 40, 0.28);
  background: rgba(70, 70, 70, 0.66);
  color: #f28c28;
  cursor: pointer;
  transition: 0.3s ease;
}

.mws-dmepairorder-qty-btn:hover {
  background: #f28c28;
  color: #303030;
  transform: translateY(-3px);
}

/* Textarea */
.mws-dmepairorder-textarea-wrap {
  position: relative;
}

.mws-dmepairorder-textarea-wrap textarea {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  padding: 14px 16px 38px;
  border-radius: 16px;
  border: 1px solid rgba(242, 140, 40, 0.22);
  background: rgba(45, 45, 45, 0.76);
  color: #eeeeee;
  font-size: 13.5px;
  line-height: 1.62;
  font-weight: 700;
  outline: none;
  transition: 0.3s ease;
}

.mws-dmepairorder-count {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.13);
  border: 1px solid rgba(242, 140, 40, 0.25);
  color: #dcdcdc;
  font-size: 10.5px;
  font-weight: 900;
}

/* Note + Checkbox */
.mws-dmepairorder-note {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 17px;
  background: rgba(242, 140, 40, 0.11);
  border: 1px solid rgba(242, 140, 40, 0.28);
  margin-bottom: 14px;
}

.mws-dmepairorder-note i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(242, 140, 40, 0.15);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-dmepairorder-note span {
  color: #dcdcdc;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.mws-dmepairorder-checkbox {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin-bottom: 15px;
}

.mws-dmepairorder-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #f28c28;
  margin-top: 3px;
}

.mws-dmepairorder-checkbox label {
  color: #dcdcdc;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.mws-dmepairorder-submit-btn {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 17px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.28);
  transition: 0.32s ease;
}

.mws-dmepairorder-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(242, 140, 40, 0.36);
}

.mws-dmepairorder-submit-btn i {
  transition: 0.32s ease;
}

.mws-dmepairorder-submit-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-dmepairorder-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .mws-dmepairorder-section {
    padding: 66px 16px;
  }

  .mws-dmepairorder-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .mws-dmepairorder-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mws-dmepairorder-top-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-size: 24px;
    margin: 0 auto;
  }

  .mws-dmepairorder-top h2 {
    font-size: 28px;
  }

  .mws-dmepairorder-box {
    padding: 15px;
    border-radius: 20px;
  }

  .mws-dmepairorder-mini-grid {
    grid-template-columns: 1fr;
  }

  .mws-dmepairorder-wide {
    grid-column: auto;
  }

  .mws-dmepairorder-box-head h3 {
    font-size: 15.5px;
  }

  .mws-dmepairorder-note {
    grid-template-columns: 38px 1fr;
  }

  .mws-dmepairorder-note i {
    width: 38px;
    height: 38px;
  }
}

/* ======================================================
   METROWELL PRODUCTS HERO
   Short DME Product Information Hero
====================================================== */

.mws-productshero-section {
  position: relative;
  overflow: hidden;
  padding: 108px 24px 58px;
  background:
    radial-gradient(circle at 14% 22%, rgba(242, 140, 40, 0.13), transparent 28%),
    linear-gradient(135deg, #303030 0%, #414141 52%, #292929 100%);
}

.mws-productshero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.32;
  pointer-events: none;
}

.mws-productshero-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: 44px;
  border-radius: 50%;
  border: 28px solid rgba(242, 140, 40, 0.09);
  pointer-events: none;
}

.mws-productshero-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 285px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 42px;
  align-items: center;
}

.mws-productshero-content {
  max-width: 780px;
}

.mws-productshero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.4);
  color: #eeeeee;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.mws-productshero-badge i {
  color: #f28c28;
}

.mws-productshero-title {
  color: #eeeeee;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  font-weight: 900;
  margin-bottom: 15px;
}

.mws-productshero-title::first-letter {
  color: #f28c28;
}

.mws-productshero-text {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.7;
  max-width: 690px;
  margin-bottom: 24px;
}

.mws-productshero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mws-productshero-primary-btn,
.mws-productshero-secondary-btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s ease;
}

.mws-productshero-primary-btn {
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  box-shadow: 0 16px 32px rgba(242, 140, 40, 0.28);
}

.mws-productshero-secondary-btn {
  background: rgba(80, 80, 80, 0.56);
  color: #eeeeee;
  border: 1px solid rgba(242, 140, 40, 0.32);
}

.mws-productshero-secondary-btn i {
  color: #f28c28;
}

.mws-productshero-primary-btn:hover,
.mws-productshero-secondary-btn:hover {
  transform: translateY(-4px);
}

/* Right Mini Panel */
.mws-productshero-panel {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.84), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.28);
  box-shadow:
    0 22px 58px rgba(35, 35, 35, 0.34),
    inset 0 0 22px rgba(242, 140, 40, 0.05);
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
}

.mws-productshero-panel::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -62px;
  bottom: -66px;
  border-radius: 50%;
  border: 18px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-productshero-panel-icon {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  border-radius: 21px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.25);
  animation: mwsProductsheroIconFloat 3.4s ease-in-out infinite;
}

@keyframes mwsProductsheroIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.mws-productshero-panel-content {
  position: relative;
  z-index: 2;
}

.mws-productshero-panel-content span {
  display: block;
  color: #f28c28;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.mws-productshero-panel-content strong {
  display: block;
  color: #eeeeee;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 980px) {
  .mws-productshero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .mws-productshero-content {
    max-width: 100%;
  }

  .mws-productshero-badge,
  .mws-productshero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .mws-productshero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .mws-productshero-panel {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .mws-productshero-section {
    padding: 92px 16px 52px;
  }

  .mws-productshero-container {
    min-height: auto;
  }

  .mws-productshero-badge {
    width: 100%;
    justify-content: center;
    border-radius: 15px;
    font-size: 12px;
  }

  .mws-productshero-title {
    font-size: 33px;
    letter-spacing: -0.8px;
  }

  .mws-productshero-text {
    font-size: 14.5px;
  }

  .mws-productshero-actions {
    flex-direction: column;
  }

  .mws-productshero-primary-btn,
  .mws-productshero-secondary-btn {
    width: 100%;
  }

  .mws-productshero-panel {
    grid-template-columns: 56px 1fr;
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .mws-productshero-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 22px;
  }

  .mws-productshero-panel-content strong {
    font-size: 15px;
  }
}

/* ======================================================
   METROWELL PRODUCT SEARCH SECTION
   Small Title Left / Live Search Right
====================================================== */

.mws-productsearch-section {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 140, 40, 0.08), transparent 28%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
}

.mws-productsearch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.28;
  pointer-events: none;
}

.mws-productsearch-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-productsearch-bar {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 20px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(78, 78, 78, 0.86), rgba(42, 42, 42, 0.96));
  border: 1px solid rgba(242, 140, 40, 0.28);
  box-shadow:
    0 20px 54px rgba(35, 35, 35, 0.34),
    inset 0 0 22px rgba(242, 140, 40, 0.05);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: center;
}

.mws-productsearch-bar::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -68px;
  bottom: -72px;
  border-radius: 50%;
  border: 18px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-productsearch-title-wrap {
  position: relative;
  z-index: 2;
}

.mws-productsearch-title-wrap span {
  display: inline-flex;
  align-items: center;
  color: #f28c28;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mws-productsearch-title-wrap h2 {
  color: #eeeeee;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.6px;
  font-weight: 900;
}

.mws-productsearch-box {
  position: relative;
  z-index: 2;
}

.mws-productsearch-box > i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #f28c28;
  font-size: 17px;
  pointer-events: none;
}

.mws-productsearch-box input {
  width: 100%;
  min-height: 60px;
  padding: 0 58px 0 52px;
  border-radius: 18px;
  border: 1px solid rgba(242, 140, 40, 0.28);
  background: rgba(45, 45, 45, 0.78);
  color: #eeeeee;
  font-size: 15px;
  font-weight: 800;
  outline: none;
  transition: 0.3s ease;
}

.mws-productsearch-box input::placeholder {
  color: rgba(230, 230, 230, 0.48);
}

.mws-productsearch-box input:focus {
  border-color: rgba(242, 140, 40, 0.78);
  background: rgba(65, 65, 65, 0.86);
  box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.11);
}

.mws-productsearch-clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 13px;
  background: rgba(242, 140, 40, 0.14);
  color: #f28c28;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.28s ease;
}

.mws-productsearch-clear-btn:hover {
  background: #f28c28;
  color: #303030;
}

.mws-productsearch-clear-btn.mws-productsearch-clear-active {
  display: flex;
}

/* This class will be used by JS on product cards */
.mws-productgrid-card.mws-productsearch-hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 820px) {
  .mws-productsearch-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mws-productsearch-title-wrap {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .mws-productsearch-section {
    padding: 24px 16px;
  }

  .mws-productsearch-bar {
    padding: 17px;
    border-radius: 22px;
  }

  .mws-productsearch-title-wrap h2 {
    font-size: 24px;
  }

  .mws-productsearch-box input {
    min-height: 56px;
    font-size: 14px;
  }
}

/* ======================================================
   METROWELL PRODUCT SHOWCASE GRID
   Premium Bento Product Page
====================================================== */

.mws-productstudio-section {
  position: relative;
  overflow: hidden;
  padding: 54px 24px 92px;
  background:
    radial-gradient(circle at 10% 16%, rgba(242, 140, 40, 0.13), transparent 30%),
    radial-gradient(circle at 90% 88%, rgba(150, 150, 150, 0.16), transparent 34%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
}

.mws-productstudio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.26;
  pointer-events: none;
}

.mws-productstudio-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-productstudio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

/* Card */
.mws-productstudio-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  min-height: 440px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(76, 76, 76, 0.86), rgba(34, 34, 34, 0.98));
  border: 1px solid rgba(242, 140, 40, 0.24);
  box-shadow:
    0 24px 70px rgba(20, 20, 20, 0.34),
    inset 0 0 24px rgba(242, 140, 40, 0.045);
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.mws-productstudio-card.mws-productstudio-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mws-productstudio-featured {
  grid-column: span 6;
  min-height: 520px;
}

.mws-productstudio-wide {
  grid-column: span 6;
  min-height: 440px;
}

.mws-productstudio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(242, 140, 40, 0.18) 44%, transparent 72%);
  transform: translateX(-120%);
  pointer-events: none;
  transition: 0.8s ease;
}

.mws-productstudio-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -108px;
  bottom: -110px;
  border-radius: 50%;
  border: 26px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
  transition: 0.4s ease;
}

.mws-productstudio-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(242, 140, 40, 0.72);
  box-shadow:
    0 36px 96px rgba(20, 20, 20, 0.52),
    0 0 40px rgba(242, 140, 40, 0.13);
}

.mws-productstudio-card:hover::before {
  transform: translateX(120%);
}

.mws-productstudio-card:hover::after {
  transform: scale(1.15);
}

/* Image */
.mws-productstudio-media {
  position: relative;
  height: 265px;
  overflow: hidden;
  border-radius: 34px 34px 0 0;
  background: rgba(30, 30, 30, 0.72);
}

.mws-productstudio-featured .mws-productstudio-media {
  height: 330px;
}

.mws-productstudio-wide .mws-productstudio-media {
  height: 275px;
}

.mws-productstudio-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.05);
  transition: 0.5s ease;
}

.mws-productstudio-card:hover .mws-productstudio-media img {
  transform: scale(1.09);
}

.mws-productstudio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(35, 35, 35, 0.86), rgba(35, 35, 35, 0.08) 58%, transparent);
  pointer-events: none;
}

/* Content */
.mws-productstudio-content {
  position: relative;
  z-index: 3;
  padding: 22px;
}

.mws-productstudio-featured .mws-productstudio-content {
  padding: 26px;
}

.mws-productstudio-category {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.3);
  color: #f28c28;
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.mws-productstudio-content h3 {
  color: #eeeeee;
  font-size: 24px;
  line-height: 1.13;
  letter-spacing: -0.6px;
  font-weight: 950;
  margin-bottom: 9px;
}

.mws-productstudio-featured .mws-productstudio-content h3 {
  font-size: 32px;
}

.mws-productstudio-content p {
  color: #cfcfcf;
  font-size: 13.5px;
  line-height: 1.62;
  margin-bottom: 16px;
  max-width: 94%;
}

.mws-productstudio-featured .mws-productstudio-content p {
  font-size: 14.5px;
  max-width: 86%;
}

.mws-productstudio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.mws-productstudio-tags span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 50px;
  background: rgba(238, 238, 238, 0.08);
  color: #dedede;
  font-size: 11.5px;
  font-weight: 800;
}

.mws-productstudio-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 17px;
  background: rgba(242, 140, 40, 0.13);
  border: 1px solid rgba(242, 140, 40, 0.36);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 950;
  text-decoration: none;
  transition: 0.32s ease;
}

.mws-productstudio-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f28c28;
  transform: translateY(105%);
  transition: 0.32s ease;
}

.mws-productstudio-btn span,
.mws-productstudio-btn i {
  position: relative;
  z-index: 2;
}

.mws-productstudio-btn i {
  color: #f28c28;
  transition: 0.32s ease;
}

.mws-productstudio-btn:hover {
  color: #303030;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.26);
}

.mws-productstudio-btn:hover::before {
  transform: translateY(0);
}

.mws-productstudio-btn:hover i {
  color: #303030;
  transform: translateX(5px);
}

/* Search Hidden */
.mws-productgrid-card.mws-productsearch-hidden {
  display: none !important;
}

/* Empty State */
.mws-productstudio-empty {
  display: none;
  max-width: 540px;
  margin: 34px auto 0;
  padding: 38px 24px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(76, 76, 76, 0.86), rgba(36, 36, 36, 0.98));
  border: 1px solid rgba(242, 140, 40, 0.28);
  text-align: center;
  box-shadow:
    0 24px 68px rgba(20, 20, 20, 0.34),
    inset 0 0 24px rgba(242, 140, 40, 0.045);
}

.mws-productstudio-empty.mws-productgrid-empty-active {
  display: block;
}

.mws-productstudio-empty i {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: #f28c28;
  color: #303030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 16px;
}

.mws-productstudio-empty h3 {
  color: #eeeeee;
  font-size: 25px;
  font-weight: 950;
  margin-bottom: 8px;
}

.mws-productstudio-empty p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .mws-productstudio-card,
  .mws-productstudio-featured,
  .mws-productstudio-wide {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .mws-productstudio-section {
    padding: 42px 16px 72px;
  }

  .mws-productstudio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mws-productstudio-card,
  .mws-productstudio-featured,
  .mws-productstudio-wide {
    grid-column: auto;
    min-height: auto;
    border-radius: 26px;
  }

  .mws-productstudio-media,
  .mws-productstudio-featured .mws-productstudio-media,
  .mws-productstudio-wide .mws-productstudio-media {
    height: 245px;
    border-radius: 26px 26px 0 0;
  }

  .mws-productstudio-content,
  .mws-productstudio-featured .mws-productstudio-content {
    padding: 20px;
  }

  .mws-productstudio-content h3,
  .mws-productstudio-featured .mws-productstudio-content h3 {
    font-size: 23px;
  }

  .mws-productstudio-content p,
  .mws-productstudio-featured .mws-productstudio-content p {
    max-width: 100%;
    font-size: 13.5px;
  }
}

/* ======================================================
   METROWELL PREMIUM PRODUCT CATALOG
   Clean / Attractive / Client-Focused Product Grid
====================================================== */

.mws-cataloglux-section {
  position: relative;
  overflow: hidden;
  padding: 58px 24px 96px;
  background:
    radial-gradient(circle at 12% 14%, rgba(242, 140, 40, 0.14), transparent 31%),
    radial-gradient(circle at 90% 90%, rgba(140, 140, 140, 0.15), transparent 34%),
    linear-gradient(135deg, #292929 0%, #414141 50%, #303030 100%);
}

.mws-cataloglux-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.24;
  pointer-events: none;
}

.mws-cataloglux-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-cataloglux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.mws-cataloglux-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.09), rgba(55, 55, 55, 0.92));
  border: 1px solid rgba(242, 140, 40, 0.24);
  box-shadow:
    0 24px 70px rgba(20, 20, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.mws-cataloglux-card.mws-cataloglux-visible {
  opacity: 1;
  transform: translateY(0);
}

.mws-cataloglux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(242, 140, 40, 0.16) 45%, transparent 72%);
  transform: translateX(-125%);
  pointer-events: none;
  transition: 0.85s ease;
}

.mws-cataloglux-card::after {
  content: "";
  position: absolute;
  width: 175px;
  height: 175px;
  right: -92px;
  bottom: -96px;
  border-radius: 50%;
  border: 22px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
  transition: 0.35s ease;
}

.mws-cataloglux-card:hover {
  transform: translateY(-10px);
  border-color: rgba(242, 140, 40, 0.72);
  box-shadow:
    0 36px 96px rgba(20, 20, 20, 0.52),
    0 0 42px rgba(242, 140, 40, 0.13);
}

.mws-cataloglux-card:hover::before {
  transform: translateX(125%);
}

.mws-cataloglux-card:hover::after {
  transform: scale(1.14);
}

/* Image */
.mws-cataloglux-image-wrap {
  position: relative;
  overflow: hidden;
  height: 282px;
  margin: 14px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(238, 238, 238, 0.08), rgba(35, 35, 35, 0.72));
  border: 1px solid rgba(242, 140, 40, 0.18);
}

.mws-cataloglux-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  transition: 0.5s ease;
}

.mws-cataloglux-card:hover .mws-cataloglux-image-wrap img {
  transform: scale(1.08);
}

.mws-cataloglux-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(35, 35, 35, 0.74), rgba(35, 35, 35, 0.08) 62%, transparent);
  pointer-events: none;
}

.mws-cataloglux-category {
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 3;
  padding: 9px 13px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.95);
  color: #303030;
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.28);
}

/* Content */
.mws-cataloglux-content {
  position: relative;
  z-index: 3;
  padding: 7px 22px 22px;
}

.mws-cataloglux-content h3 {
  color: #eeeeee;
  font-size: 24px;
  line-height: 1.13;
  letter-spacing: -0.6px;
  font-weight: 950;
  margin-bottom: 9px;
}

.mws-cataloglux-content p {
  color: #cfcfcf;
  font-size: 13.5px;
  line-height: 1.66;
  margin-bottom: 18px;
}

.mws-cataloglux-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 17px;
  background: rgba(242, 140, 40, 0.13);
  border: 1px solid rgba(242, 140, 40, 0.38);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 950;
  text-decoration: none;
  transition: 0.32s ease;
}

.mws-cataloglux-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f28c28;
  transform: translateY(105%);
  transition: 0.32s ease;
}

.mws-cataloglux-btn span,
.mws-cataloglux-btn i {
  position: relative;
  z-index: 2;
}

.mws-cataloglux-btn i {
  color: #f28c28;
  transition: 0.32s ease;
}

.mws-cataloglux-btn:hover {
  color: #303030;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.28);
}

.mws-cataloglux-btn:hover::before {
  transform: translateY(0);
}

.mws-cataloglux-btn:hover i {
  color: #303030;
  transform: translateX(5px);
}

/* Search Hidden */
.mws-productgrid-card.mws-productsearch-hidden {
  display: none !important;
}

/* Empty State */
.mws-cataloglux-empty {
  display: none;
  max-width: 540px;
  margin: 34px auto 0;
  padding: 38px 24px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.09), rgba(55, 55, 55, 0.92));
  border: 1px solid rgba(242, 140, 40, 0.28);
  text-align: center;
  box-shadow:
    0 24px 70px rgba(20, 20, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mws-cataloglux-empty.mws-productgrid-empty-active {
  display: block;
}

.mws-cataloglux-empty i {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: #f28c28;
  color: #303030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 16px;
}

.mws-cataloglux-empty h3 {
  color: #eeeeee;
  font-size: 25px;
  font-weight: 950;
  margin-bottom: 8px;
}

.mws-cataloglux-empty p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-cataloglux-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mws-cataloglux-image-wrap {
    height: 265px;
  }
}

@media (max-width: 680px) {
  .mws-cataloglux-section {
    padding: 42px 16px 72px;
  }

  .mws-cataloglux-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mws-cataloglux-card {
    border-radius: 26px;
  }

  .mws-cataloglux-image-wrap {
    height: 245px;
    margin: 12px;
    border-radius: 20px;
  }

  .mws-cataloglux-content {
    padding: 6px 18px 18px;
  }

  .mws-cataloglux-content h3 {
    font-size: 22px;
  }

  .mws-cataloglux-content p {
    font-size: 13px;
  }
}

/* ======================================================
   METROWELL BLOOD PRESSURE MONITOR DETAIL HERO
====================================================== */

.mws-bpdetail-hero-section {
  position: relative;
  overflow: hidden;
  padding: 112px 24px 82px;
  background:
    radial-gradient(circle at 10% 18%, rgba(242, 140, 40, 0.16), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(170, 170, 170, 0.16), transparent 34%),
    linear-gradient(135deg, #292929 0%, #414141 50%, #303030 100%);
}

.mws-bpdetail-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.28;
  pointer-events: none;
}

.mws-bpdetail-hero-section::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -150px;
  top: 80px;
  border-radius: 50%;
  border: 34px solid rgba(242, 140, 40, 0.08);
  pointer-events: none;
}

.mws-bpdetail-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

/* Breadcrumbs */
.mws-bpdetail-breadcrumbs {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 28px;
  padding: 10px 14px;
  border-radius: 50px;
  background: rgba(238, 238, 238, 0.08);
  border: 1px solid rgba(242, 140, 40, 0.28);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mws-bpdetail-breadcrumbs a,
.mws-bpdetail-breadcrumbs span {
  color: #eeeeee;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
}

.mws-bpdetail-breadcrumbs a {
  transition: 0.3s ease;
}

.mws-bpdetail-breadcrumbs a:hover {
  color: #f28c28;
}

.mws-bpdetail-breadcrumbs i {
  color: #f28c28;
  font-size: 11px;
}

.mws-bpdetail-breadcrumbs a:first-child i {
  font-size: 12px;
  margin-right: 5px;
}

/* Showcase */
.mws-bpdetail-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

/* Product Visual */
.mws-bpdetail-visual-wrap {
  position: relative;
}

.mws-bpdetail-image-card {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.09), rgba(55, 55, 55, 0.92));
  border: 1px solid rgba(242, 140, 40, 0.26);
  box-shadow:
    0 30px 88px rgba(20, 20, 20, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  cursor: zoom-in;
  transition: 0.36s ease;
}

.mws-bpdetail-image-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 140, 40, 0.7);
  box-shadow:
    0 38px 100px rgba(20, 20, 20, 0.52),
    0 0 42px rgba(242, 140, 40, 0.14);
}

.mws-bpdetail-image-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 30px;
  border: 1px dashed rgba(242, 140, 40, 0.24);
  pointer-events: none;
}

.mws-bpdetail-image-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -105px;
  bottom: -115px;
  border-radius: 50%;
  border: 30px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-bpdetail-image-bg {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 140, 40, 0.34), rgba(242, 140, 40, 0.05) 62%, transparent 70%);
  filter: blur(2px);
  animation: mwsBpdetailPulse 4s ease-in-out infinite;
}

@keyframes mwsBpdetailPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.mws-bpdetail-main-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(20, 20, 20, 0.45));
  animation: mwsBpdetailFloat 4.2s ease-in-out infinite;
  transition: 0.36s ease;
}

.mws-bpdetail-image-card:hover .mws-bpdetail-main-img {
  transform: scale(1.03);
}

@keyframes mwsBpdetailFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

.mws-bpdetail-zoom-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 5;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(48, 48, 48, 0.92);
  border: 1px solid rgba(242, 140, 40, 0.34);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(20, 20, 20, 0.3);
}

.mws-bpdetail-zoom-label i {
  color: #f28c28;
}

/* Content */
.mws-bpdetail-content {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.08), rgba(45, 45, 45, 0.86));
  border: 1px solid rgba(242, 140, 40, 0.24);
  box-shadow:
    0 26px 76px rgba(20, 20, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mws-bpdetail-content::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -92px;
  bottom: -96px;
  border-radius: 50%;
  border: 26px solid rgba(242, 140, 40, 0.09);
  pointer-events: none;
}

.mws-bpdetail-category {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.34);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
}

.mws-bpdetail-category i {
  color: #f28c28;
}

.mws-bpdetail-content h1 {
  position: relative;
  z-index: 2;
  color: #eeeeee;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 950;
  margin-bottom: 18px;
}

.mws-bpdetail-content h1::first-letter {
  color: #f28c28;
}

.mws-bpdetail-description {
  position: relative;
  z-index: 2;
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 24px;
}

.mws-bpdetail-info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-bottom: 26px;
}

.mws-bpdetail-info-box {
  padding: 15px;
  border-radius: 20px;
  background: rgba(60, 60, 60, 0.62);
  border: 1px solid rgba(242, 140, 40, 0.18);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  transition: 0.32s ease;
}

.mws-bpdetail-info-box:hover {
  transform: translateY(-5px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.48);
}

.mws-bpdetail-info-box > i {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-bpdetail-info-box strong {
  display: block;
  color: #eeeeee;
  font-size: 13.5px;
  font-weight: 950;
  margin-bottom: 4px;
}

.mws-bpdetail-info-box span {
  display: block;
  color: #cfcfcf;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 700;
}

/* Buttons */
.mws-bpdetail-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mws-bpdetail-primary-btn,
.mws-bpdetail-secondary-btn {
  min-height: 54px;
  padding: 0 20px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  transition: 0.32s ease;
}

.mws-bpdetail-primary-btn {
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.28);
}

.mws-bpdetail-secondary-btn {
  background: rgba(242, 140, 40, 0.12);
  border: 1px solid rgba(242, 140, 40, 0.34);
  color: #eeeeee;
}

.mws-bpdetail-secondary-btn i {
  color: #f28c28;
}

.mws-bpdetail-primary-btn:hover,
.mws-bpdetail-secondary-btn:hover {
  transform: translateY(-4px);
}

.mws-bpdetail-primary-btn:hover {
  box-shadow: 0 24px 50px rgba(242, 140, 40, 0.36);
}

/* Full Screen Modal */
.mws-bpdetail-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  padding: 28px;
  background: rgba(20, 20, 20, 0.88);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.32s ease;
}

.mws-bpdetail-modal.mws-bpdetail-modal-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mws-bpdetail-modal-inner {
  position: relative;
  max-width: 94vw;
  max-height: 88vh;
  border-radius: 28px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.1), rgba(45, 45, 45, 0.94));
  border: 1px solid rgba(242, 140, 40, 0.35);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.55),
    0 0 44px rgba(242, 140, 40, 0.12);
  transform: scale(0.92);
  transition: 0.32s ease;
}

.mws-bpdetail-modal.mws-bpdetail-modal-active .mws-bpdetail-modal-inner {
  transform: scale(1);
}

.mws-bpdetail-modal-inner img {
  display: block;
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 20px;
}

.mws-bpdetail-modal-close {
  position: fixed;
  right: 28px;
  top: 28px;
  z-index: 100000;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(242, 140, 40, 0.35);
  border-radius: 17px;
  background: rgba(48, 48, 48, 0.92);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.mws-bpdetail-modal-close:hover {
  background: #f28c28;
  color: #303030;
  transform: rotate(90deg);
}

body.mws-bpdetail-modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-bpdetail-showcase {
    grid-template-columns: 1fr;
  }

  .mws-bpdetail-image-card {
    min-height: 500px;
  }

  .mws-bpdetail-main-img {
    height: 390px;
  }
}

@media (max-width: 680px) {
  .mws-bpdetail-hero-section {
    padding: 94px 16px 66px;
  }

  .mws-bpdetail-breadcrumbs {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
  }

  .mws-bpdetail-image-card {
    min-height: 390px;
    padding: 24px;
    border-radius: 28px;
  }

  .mws-bpdetail-image-card::before {
    inset: 15px;
    border-radius: 22px;
  }

  .mws-bpdetail-main-img {
    height: 285px;
  }

  .mws-bpdetail-zoom-label {
    left: 18px;
    bottom: 18px;
    min-height: 42px;
    border-radius: 14px;
    font-size: 11.5px;
  }

  .mws-bpdetail-content {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .mws-bpdetail-category {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .mws-bpdetail-content h1 {
    font-size: 36px;
    letter-spacing: -1px;
    text-align: center;
  }

  .mws-bpdetail-description {
    font-size: 14.5px;
    text-align: center;
  }

  .mws-bpdetail-info-grid {
    grid-template-columns: 1fr;
  }

  .mws-bpdetail-actions {
    flex-direction: column;
  }

  .mws-bpdetail-primary-btn,
  .mws-bpdetail-secondary-btn {
    width: 100%;
  }

  .mws-bpdetail-modal {
    padding: 16px;
  }

  .mws-bpdetail-modal-inner {
    padding: 14px;
    border-radius: 22px;
  }

  .mws-bpdetail-modal-inner img {
    max-width: 92vw;
    max-height: 76vh;
    border-radius: 16px;
  }

  .mws-bpdetail-modal-close {
    right: 16px;
    top: 16px;
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }
}

/* ======================================================
   METROWELL BLOOD PRESSURE MONITOR OVERVIEW
====================================================== */

.mws-bpoverview-section {
  position: relative;
  overflow: hidden;
  padding: 86px 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 140, 40, 0.11), transparent 30%),
    radial-gradient(circle at 90% 86%, rgba(155, 155, 155, 0.14), transparent 34%),
    linear-gradient(135deg, #303030 0%, #414141 52%, #292929 100%);
}

.mws-bpoverview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.25;
  pointer-events: none;
}

.mws-bpoverview-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.mws-bpoverview-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.mws-bpoverview-left,
.mws-bpoverview-right {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.08), rgba(45, 45, 45, 0.88));
  border: 1px solid rgba(242, 140, 40, 0.24);
  box-shadow:
    0 26px 76px rgba(20, 20, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mws-bpoverview-left {
  padding: 38px;
}

.mws-bpoverview-left::after,
.mws-bpoverview-right::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -92px;
  bottom: -96px;
  border-radius: 50%;
  border: 26px solid rgba(242, 140, 40, 0.09);
  pointer-events: none;
}

.mws-bpoverview-label {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.34);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
}

.mws-bpoverview-label i {
  color: #f28c28;
}

.mws-bpoverview-left h2 {
  position: relative;
  z-index: 2;
  color: #eeeeee;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -1.5px;
  font-weight: 950;
  margin-bottom: 18px;
}

.mws-bpoverview-left h2::first-letter {
  color: #f28c28;
}

.mws-bpoverview-left p {
  position: relative;
  z-index: 2;
  color: #cfcfcf;
  font-size: 15.5px;
  line-height: 1.78;
  margin-bottom: 14px;
}

.mws-bpoverview-left p:last-child {
  margin-bottom: 0;
}

/* Right */
.mws-bpoverview-right {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mws-bpoverview-card {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.14), rgba(70, 70, 70, 0.58));
  border: 1px solid rgba(242, 140, 40, 0.32);
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
  transition: 0.35s ease;
}

.mws-bpoverview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 140, 40, 0.68);
  box-shadow: 0 22px 54px rgba(20, 20, 20, 0.3);
}

.mws-bpoverview-card-icon {
  width: 66px;
  height: 66px;
  border-radius: 21px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.24);
}

.mws-bpoverview-card span {
  display: block;
  color: #f28c28;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.mws-bpoverview-card strong {
  display: block;
  color: #eeeeee;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 950;
}

.mws-bpoverview-mini-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  flex: 1;
}

.mws-bpoverview-mini-card {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(60, 60, 60, 0.62);
  border: 1px solid rgba(242, 140, 40, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.34s ease;
}

.mws-bpoverview-mini-card::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: -48px;
  bottom: -50px;
  border-radius: 50%;
  border: 14px solid rgba(242, 140, 40, 0.09);
  pointer-events: none;
  transition: 0.34s ease;
}

.mws-bpoverview-mini-card:hover {
  transform: translateY(-6px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.52);
}

.mws-bpoverview-mini-card:hover::after {
  transform: scale(1.15);
}

.mws-bpoverview-mini-card i {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: rgba(242, 140, 40, 0.16);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mws-bpoverview-mini-card span {
  position: relative;
  z-index: 2;
  color: #eeeeee;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
}

/* Responsive */
@media (max-width: 980px) {
  .mws-bpoverview-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .mws-bpoverview-section {
    padding: 66px 16px;
  }

  .mws-bpoverview-left,
  .mws-bpoverview-right {
    border-radius: 26px;
  }

  .mws-bpoverview-left {
    padding: 24px 18px;
    text-align: center;
  }

  .mws-bpoverview-label {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .mws-bpoverview-left h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .mws-bpoverview-left p {
    font-size: 14.5px;
  }

  .mws-bpoverview-right {
    padding: 16px;
  }

  .mws-bpoverview-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mws-bpoverview-card-icon {
    margin: 0 auto;
  }

  .mws-bpoverview-mini-grid {
    grid-template-columns: 1fr;
  }

  .mws-bpoverview-mini-card {
    min-height: 118px;
  }
}

/* ======================================================
   METROWELL PRODUCT FEATURES CAROUSEL
   Mobile Friendly / Interactive / Reusable
====================================================== */

.mws-featurecarousel-section {
  position: relative;
  overflow: hidden;
  padding: 88px 24px;
  background:
    radial-gradient(circle at 12% 16%, rgba(242, 140, 40, 0.14), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(150, 150, 150, 0.15), transparent 34%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
}

.mws-featurecarousel-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.24;
  pointer-events: none;
}

.mws-featurecarousel-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -180px;
  bottom: -190px;
  border-radius: 50%;
  border: 38px solid rgba(242, 140, 40, 0.08);
  pointer-events: none;
}

.mws-featurecarousel-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

/* Top */
.mws-featurecarousel-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.mws-featurecarousel-heading {
  max-width: 790px;
}

.mws-featurecarousel-label {
  width: fit-content;
  margin-bottom: 17px;
  padding: 9px 14px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.34);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
}

.mws-featurecarousel-label i {
  color: #f28c28;
}

.mws-featurecarousel-heading h2 {
  color: #eeeeee;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.6px;
  font-weight: 950;
  margin-bottom: 15px;
}

.mws-featurecarousel-heading h2::first-letter {
  color: #f28c28;
}

.mws-featurecarousel-heading p {
  color: #cfcfcf;
  font-size: 15.5px;
  line-height: 1.76;
}

/* Controls */
.mws-featurecarousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mws-featurecarousel-arrow {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(242, 140, 40, 0.36);
  background: rgba(242, 140, 40, 0.12);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.32s ease;
}

.mws-featurecarousel-arrow:hover {
  background: #f28c28;
  color: #303030;
  transform: translateY(-4px);
}

/* Stage */
.mws-featurecarousel-stage {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
}

.mws-featurecarousel-track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Card */
.mws-featurecarousel-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 390px;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.09), rgba(45, 45, 45, 0.92));
  border: 1px solid rgba(242, 140, 40, 0.24);
  box-shadow:
    0 26px 76px rgba(20, 20, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.36s ease;
}

.mws-featurecarousel-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 140, 40, 0.24), rgba(242, 140, 40, 0.06) 62%, transparent 72%);
  opacity: 0.72;
  transition: 0.36s ease;
}

.mws-featurecarousel-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -86px;
  bottom: -90px;
  border-radius: 50%;
  border: 22px solid rgba(242, 140, 40, 0.09);
  pointer-events: none;
  transition: 0.36s ease;
}

.mws-featurecarousel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 140, 40, 0.66);
  box-shadow:
    0 34px 94px rgba(20, 20, 20, 0.5),
    0 0 40px rgba(242, 140, 40, 0.12);
}

.mws-featurecarousel-card:hover::before {
  transform: translate(-50%, -50%) scale(1.12);
  opacity: 1;
}

.mws-featurecarousel-card:hover::after {
  transform: scale(1.15);
}

.mws-featurecarousel-number {
  position: absolute;
  right: 24px;
  top: 22px;
  z-index: 3;
  color: rgba(238, 238, 238, 0.16);
  font-size: 54px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2px;
  transition: 0.34s ease;
}

.mws-featurecarousel-card:hover .mws-featurecarousel-number {
  color: rgba(242, 140, 40, 0.48);
}

.mws-featurecarousel-icon {
  position: relative;
  z-index: 3;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 20px 46px rgba(242, 140, 40, 0.28);
  transition: 0.34s ease;
}

.mws-featurecarousel-card:hover .mws-featurecarousel-icon {
  transform: rotate(-6deg) scale(1.06);
}

.mws-featurecarousel-card h3 {
  position: relative;
  z-index: 3;
  color: #eeeeee;
  font-size: 25px;
  line-height: 1.14;
  letter-spacing: -0.6px;
  font-weight: 950;
  margin-bottom: 12px;
}

.mws-featurecarousel-card p {
  position: relative;
  z-index: 3;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.68;
  margin-bottom: 24px;
}

.mws-featurecarousel-line {
  position: relative;
  z-index: 3;
  height: 7px;
  border-radius: 50px;
  background: rgba(238, 238, 238, 0.1);
  overflow: hidden;
}

.mws-featurecarousel-line span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f28c28, rgba(242, 140, 40, 0.2));
  transition: 0.4s ease;
}

.mws-featurecarousel-card:hover .mws-featurecarousel-line span {
  width: 100%;
}

/* Dots */
.mws-featurecarousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}

.mws-featurecarousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50px;
  background: rgba(238, 238, 238, 0.24);
  cursor: pointer;
  transition: 0.3s ease;
}

.mws-featurecarousel-dot.mws-featurecarousel-dot-active {
  width: 34px;
  background: #f28c28;
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-featurecarousel-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 720px) {
  .mws-featurecarousel-section {
    padding: 68px 16px;
  }

  .mws-featurecarousel-top {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 26px;
  }

  .mws-featurecarousel-label {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .mws-featurecarousel-heading h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .mws-featurecarousel-heading p {
    font-size: 14.5px;
  }

  .mws-featurecarousel-controls {
    justify-content: center;
  }

  .mws-featurecarousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .mws-featurecarousel-stage {
    border-radius: 28px;
    overflow: visible;
  }

  .mws-featurecarousel-track {
    gap: 14px;
  }

  .mws-featurecarousel-card {
    flex-basis: 100%;
    min-height: 360px;
    padding: 24px;
    border-radius: 28px;
  }

  .mws-featurecarousel-number {
    font-size: 46px;
    right: 20px;
    top: 18px;
  }

  .mws-featurecarousel-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    font-size: 26px;
  }

  .mws-featurecarousel-card h3 {
    font-size: 23px;
  }

  .mws-featurecarousel-card p {
    font-size: 13.5px;
  }
}

/* ======================================================
   METROWELL BLOOD PRESSURE MONITOR SPECIFICATIONS
====================================================== */

.mws-bpspecs-section {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;
  background:
    radial-gradient(circle at 14% 18%, rgba(242, 140, 40, 0.13), transparent 30%),
    radial-gradient(circle at 90% 86%, rgba(150, 150, 150, 0.15), transparent 34%),
    linear-gradient(135deg, #303030 0%, #414141 52%, #292929 100%);
}

.mws-bpspecs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.25;
  pointer-events: none;
}

.mws-bpspecs-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -190px;
  border-radius: 50%;
  border: 38px solid rgba(242, 140, 40, 0.08);
  pointer-events: none;
}

.mws-bpspecs-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.mws-bpspecs-header {
  max-width: 780px;
  margin-bottom: 36px;
}

.mws-bpspecs-label {
  width: fit-content;
  margin-bottom: 17px;
  padding: 9px 14px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.34);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
}

.mws-bpspecs-label i {
  color: #f28c28;
}

.mws-bpspecs-header h2 {
  color: #eeeeee;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.6px;
  font-weight: 950;
  margin-bottom: 15px;
}

.mws-bpspecs-header h2::first-letter {
  color: #f28c28;
}

.mws-bpspecs-header p {
  color: #cfcfcf;
  font-size: 15.5px;
  line-height: 1.76;
}

/* Layout */
.mws-bpspecs-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}

/* Summary Card */
.mws-bpspecs-summary-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(242, 140, 40, 0.18), rgba(45, 45, 45, 0.92));
  border: 1px solid rgba(242, 140, 40, 0.36);
  box-shadow:
    0 30px 88px rgba(20, 20, 20, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mws-bpspecs-summary-card::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 140, 40, 0.28), rgba(242, 140, 40, 0.05) 62%, transparent 72%);
  animation: mwsBpspecsGlow 4.4s ease-in-out infinite;
}

.mws-bpspecs-summary-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -115px;
  bottom: -120px;
  border-radius: 50%;
  border: 30px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

@keyframes mwsBpspecsGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.75;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
  }
}

.mws-bpspecs-summary-icon {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
  border-radius: 27px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 22px 48px rgba(242, 140, 40, 0.3);
}

.mws-bpspecs-summary-card h3 {
  position: relative;
  z-index: 2;
  color: #eeeeee;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  font-weight: 950;
  margin-bottom: 15px;
}

.mws-bpspecs-summary-card p {
  position: relative;
  z-index: 2;
  color: #d6d6d6;
  font-size: 15px;
  line-height: 1.76;
  margin-bottom: 22px;
}

.mws-bpspecs-summary-note {
  position: relative;
  z-index: 2;
  padding: 15px;
  border-radius: 20px;
  background: rgba(48, 48, 48, 0.72);
  border: 1px solid rgba(242, 140, 40, 0.24);
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #eeeeee;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
  margin-bottom: 22px;
}

.mws-bpspecs-summary-note i {
  color: #f28c28;
  margin-top: 3px;
}

.mws-bpspecs-btn {
  position: relative;
  z-index: 2;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 17px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.28);
  transition: 0.32s ease;
}

.mws-bpspecs-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(242, 140, 40, 0.36);
}

/* Specs Panel */
.mws-bpspecs-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.08), rgba(45, 45, 45, 0.9));
  border: 1px solid rgba(242, 140, 40, 0.24);
  box-shadow:
    0 30px 88px rgba(20, 20, 20, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mws-bpspecs-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 30px;
  border: 1px dashed rgba(242, 140, 40, 0.16);
  pointer-events: none;
}

.mws-bpspecs-row {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 132px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(60, 60, 60, 0.62);
  border: 1px solid rgba(242, 140, 40, 0.18);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  transition: 0.34s ease;
}

.mws-bpspecs-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(242, 140, 40, 0.16) 45%, transparent 72%);
  transform: translateX(-120%);
  pointer-events: none;
  transition: 0.72s ease;
}

.mws-bpspecs-row::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  right: -56px;
  bottom: -58px;
  border-radius: 50%;
  border: 16px solid rgba(242, 140, 40, 0.08);
  pointer-events: none;
  transition: 0.34s ease;
}

.mws-bpspecs-row:hover {
  transform: translateY(-7px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.58);
  box-shadow:
    0 22px 56px rgba(20, 20, 20, 0.34),
    0 0 26px rgba(242, 140, 40, 0.08);
}

.mws-bpspecs-row:hover::before {
  transform: translateX(120%);
}

.mws-bpspecs-row:hover::after {
  transform: scale(1.16);
}

.mws-bpspecs-row-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(242, 140, 40, 0.15);
  border: 1px solid rgba(242, 140, 40, 0.24);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.34s ease;
}

.mws-bpspecs-row:hover .mws-bpspecs-row-icon {
  background: #f28c28;
  color: #303030;
  transform: rotate(-5deg) scale(1.04);
}

.mws-bpspecs-row-content {
  position: relative;
  z-index: 2;
}

.mws-bpspecs-row-content span {
  display: block;
  color: #f28c28;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 950;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.mws-bpspecs-row-content strong {
  display: block;
  color: #eeeeee;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-bpspecs-layout {
    grid-template-columns: 1fr;
  }

  .mws-bpspecs-summary-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .mws-bpspecs-section {
    padding: 68px 16px 76px;
  }

  .mws-bpspecs-header {
    text-align: center;
  }

  .mws-bpspecs-label {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .mws-bpspecs-header h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .mws-bpspecs-header p {
    font-size: 14.5px;
  }

  .mws-bpspecs-summary-card,
  .mws-bpspecs-panel {
    border-radius: 28px;
  }

  .mws-bpspecs-summary-card {
    padding: 26px 18px;
    text-align: center;
  }

  .mws-bpspecs-summary-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .mws-bpspecs-summary-note {
    text-align: left;
  }

  .mws-bpspecs-panel {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .mws-bpspecs-panel::before {
    inset: 14px;
    border-radius: 22px;
  }

  .mws-bpspecs-row {
    min-height: auto;
    border-radius: 22px;
    padding: 16px;
  }

  .mws-bpspecs-row-content strong {
    font-size: 14px;
  }
}

/* ======================================================
   METROWELL TERMS & CONDITIONS PAGE
====================================================== */

.mws-termslegal-section {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 90px;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 140, 40, 0.15), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(150, 150, 150, 0.16), transparent 34%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
}

.mws-termslegal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.25;
  pointer-events: none;
}

.mws-termslegal-section::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -190px;
  top: 120px;
  border-radius: 50%;
  border: 40px solid rgba(242, 140, 40, 0.08);
  pointer-events: none;
}

.mws-termslegal-container {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}

.mws-termslegal-shell {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.08), rgba(45, 45, 45, 0.92));
  border: 1px solid rgba(242, 140, 40, 0.26);
  box-shadow:
    0 34px 100px rgba(20, 20, 20, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mws-termslegal-shell::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -130px;
  bottom: -140px;
  border-radius: 50%;
  border: 32px solid rgba(242, 140, 40, 0.09);
  pointer-events: none;
}

.mws-termslegal-head {
  position: relative;
  overflow: hidden;
  padding: 44px 44px 38px;
  border-bottom: 1px solid rgba(242, 140, 40, 0.2);
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.16), rgba(48, 48, 48, 0.52));
}

.mws-termslegal-head::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 140, 40, 0.22), transparent 70%);
  pointer-events: none;
}

.mws-termslegal-badge {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 50px;
  background: rgba(48, 48, 48, 0.62);
  border: 1px solid rgba(242, 140, 40, 0.34);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
}

.mws-termslegal-badge i {
  color: #f28c28;
}

.mws-termslegal-head h1 {
  position: relative;
  z-index: 2;
  color: #eeeeee;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 950;
  margin-bottom: 16px;
}

.mws-termslegal-head h1::first-letter {
  color: #f28c28;
}

.mws-termslegal-head p {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #d5d5d5;
  font-size: 15.5px;
  line-height: 1.75;
}

.mws-termslegal-content {
  position: relative;
  z-index: 2;
  padding: 42px 44px 48px;
}

.mws-termslegal-content p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.82;
  margin-bottom: 18px;
}

.mws-termslegal-content h2 {
  position: relative;
  color: #eeeeee;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin: 32px 0 12px;
  padding-left: 18px;
}

.mws-termslegal-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 26px;
  border-radius: 50px;
  background: #f28c28;
  box-shadow: 0 0 18px rgba(242, 140, 40, 0.42);
}

/* Contact Box */
.mws-termslegal-contact {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.14), rgba(60, 60, 60, 0.68));
  border: 1px solid rgba(242, 140, 40, 0.34);
  box-shadow:
    0 24px 64px rgba(20, 20, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mws-termslegal-contact::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -78px;
  bottom: -82px;
  border-radius: 50%;
  border: 20px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-termslegal-contact-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}

.mws-termslegal-contact-head > i {
  width: 64px;
  height: 64px;
  border-radius: 21px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.26);
}

.mws-termslegal-contact-head h2 {
  margin: 0 0 8px;
  padding-left: 0;
}

.mws-termslegal-contact-head h2::before {
  display: none;
}

.mws-termslegal-contact-head p {
  margin: 0;
}

.mws-termslegal-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.mws-termslegal-contact-grid a {
  min-height: 64px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(48, 48, 48, 0.68);
  border: 1px solid rgba(242, 140, 40, 0.2);
  color: #eeeeee;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  transition: 0.32s ease;
}

.mws-termslegal-contact-grid a:hover {
  transform: translateY(-5px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.58);
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.28);
}

.mws-termslegal-contact-grid a i {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: rgba(242, 140, 40, 0.16);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-termslegal-contact-grid a span {
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 850;
  word-break: break-word;
}

/* Responsive */
@media (max-width: 760px) {
  .mws-termslegal-section {
    padding: 96px 16px 70px;
  }

  .mws-termslegal-shell {
    border-radius: 28px;
  }

  .mws-termslegal-head {
    padding: 30px 20px;
    text-align: center;
  }

  .mws-termslegal-badge {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .mws-termslegal-head h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .mws-termslegal-head p {
    font-size: 14.5px;
  }

  .mws-termslegal-content {
    padding: 28px 20px 32px;
  }

  .mws-termslegal-content h2 {
    font-size: 21px;
  }

  .mws-termslegal-content p {
    font-size: 14px;
  }

  .mws-termslegal-contact {
    padding: 20px;
    border-radius: 24px;
  }

  .mws-termslegal-contact-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mws-termslegal-contact-head > i {
    margin: 0 auto;
  }

  .mws-termslegal-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   METROWELL PRIVACY POLICY PAGE
====================================================== */

.mws-privacylegal-section {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 90px;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 140, 40, 0.15), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(150, 150, 150, 0.16), transparent 34%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
}

.mws-privacylegal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.25;
  pointer-events: none;
}

.mws-privacylegal-section::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -190px;
  top: 120px;
  border-radius: 50%;
  border: 40px solid rgba(242, 140, 40, 0.08);
  pointer-events: none;
}

.mws-privacylegal-container {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}

.mws-privacylegal-shell {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.08), rgba(45, 45, 45, 0.92));
  border: 1px solid rgba(242, 140, 40, 0.26);
  box-shadow:
    0 34px 100px rgba(20, 20, 20, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mws-privacylegal-shell::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -130px;
  bottom: -140px;
  border-radius: 50%;
  border: 32px solid rgba(242, 140, 40, 0.09);
  pointer-events: none;
}

/* Header */
.mws-privacylegal-head {
  position: relative;
  overflow: hidden;
  padding: 44px 44px 38px;
  border-bottom: 1px solid rgba(242, 140, 40, 0.2);
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.16), rgba(48, 48, 48, 0.52));
}

.mws-privacylegal-head::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 140, 40, 0.22), transparent 70%);
  pointer-events: none;
}

.mws-privacylegal-badge {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 50px;
  background: rgba(48, 48, 48, 0.62);
  border: 1px solid rgba(242, 140, 40, 0.34);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
}

.mws-privacylegal-badge i {
  color: #f28c28;
}

.mws-privacylegal-head h1 {
  position: relative;
  z-index: 2;
  color: #eeeeee;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 950;
  margin-bottom: 16px;
}

.mws-privacylegal-head h1::first-letter {
  color: #f28c28;
}

.mws-privacylegal-head p {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #d5d5d5;
  font-size: 15.5px;
  line-height: 1.75;
}

/* Content */
.mws-privacylegal-content {
  position: relative;
  z-index: 2;
  padding: 42px 44px 48px;
}

.mws-privacylegal-content p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.82;
  margin-bottom: 18px;
}

.mws-privacylegal-content h2 {
  position: relative;
  color: #eeeeee;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin: 32px 0 12px;
  padding-left: 18px;
}

.mws-privacylegal-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 26px;
  border-radius: 50px;
  background: #f28c28;
  box-shadow: 0 0 18px rgba(242, 140, 40, 0.42);
}

/* Lists */
.mws-privacylegal-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
}

.mws-privacylegal-content ul li {
  position: relative;
  padding: 14px 16px 14px 46px;
  border-radius: 18px;
  background: rgba(60, 60, 60, 0.58);
  border: 1px solid rgba(242, 140, 40, 0.16);
  color: #cfcfcf;
  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 700;
}

.mws-privacylegal-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 14px;
  top: 14px;
  width: 23px;
  height: 23px;
  border-radius: 9px;
  background: rgba(242, 140, 40, 0.16);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Contact Box */
.mws-privacylegal-contact {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.14), rgba(60, 60, 60, 0.68));
  border: 1px solid rgba(242, 140, 40, 0.34);
  box-shadow:
    0 24px 64px rgba(20, 20, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mws-privacylegal-contact::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -78px;
  bottom: -82px;
  border-radius: 50%;
  border: 20px solid rgba(242, 140, 40, 0.1);
  pointer-events: none;
}

.mws-privacylegal-contact-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}

.mws-privacylegal-contact-head > i {
  width: 64px;
  height: 64px;
  border-radius: 21px;
  background: #f28c28;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.26);
}

.mws-privacylegal-contact-head h2 {
  margin: 0 0 8px;
  padding-left: 0;
}

.mws-privacylegal-contact-head h2::before {
  display: none;
}

.mws-privacylegal-contact-head p {
  margin: 0;
}

.mws-privacylegal-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.mws-privacylegal-contact-grid a {
  min-height: 64px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(48, 48, 48, 0.68);
  border: 1px solid rgba(242, 140, 40, 0.2);
  color: #eeeeee;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  transition: 0.32s ease;
}

.mws-privacylegal-contact-grid a:hover {
  transform: translateY(-5px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.58);
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.28);
}

.mws-privacylegal-contact-grid a i {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: rgba(242, 140, 40, 0.16);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-privacylegal-contact-grid a span {
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 850;
  word-break: break-word;
}

/* Responsive */
@media (max-width: 760px) {
  .mws-privacylegal-section {
    padding: 96px 16px 70px;
  }

  .mws-privacylegal-shell {
    border-radius: 28px;
  }

  .mws-privacylegal-head {
    padding: 30px 20px;
    text-align: center;
  }

  .mws-privacylegal-badge {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .mws-privacylegal-head h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .mws-privacylegal-head p {
    font-size: 14.5px;
  }

  .mws-privacylegal-content {
    padding: 28px 20px 32px;
  }

  .mws-privacylegal-content h2 {
    font-size: 21px;
  }

  .mws-privacylegal-content p {
    font-size: 14px;
  }

  .mws-privacylegal-content ul li {
    font-size: 13.8px;
    padding: 13px 14px 13px 42px;
  }

  .mws-privacylegal-contact {
    padding: 20px;
    border-radius: 24px;
  }

  .mws-privacylegal-contact-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mws-privacylegal-contact-head > i {
    margin: 0 auto;
  }

  .mws-privacylegal-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   METROWELL THANK YOU PAGE
====================================================== */

.mws-thankyou-section {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  padding: 135px 24px 95px;
  background:
    radial-gradient(circle at 14% 18%, rgba(242, 140, 40, 0.18), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(150, 150, 150, 0.15), transparent 35%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
  display: flex;
  align-items: center;
}

.mws-thankyou-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.25;
  pointer-events: none;
}

.mws-thankyou-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: -230px;
  border-radius: 50%;
  border: 42px solid rgba(242, 140, 40, 0.08);
  pointer-events: none;
}

.mws-thankyou-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.mws-thankyou-box {
  position: relative;
  overflow: hidden;
  padding: 54px 42px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(238, 238, 238, 0.09), rgba(45, 45, 45, 0.94));
  border: 1px solid rgba(242, 140, 40, 0.28);
  box-shadow:
    0 36px 110px rgba(20, 20, 20, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  text-align: center;
}

.mws-thankyou-box::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 140, 40, 0.28), rgba(242, 140, 40, 0.06) 60%, transparent 74%);
  animation: mwsThankyouGlow 4.4s ease-in-out infinite;
  pointer-events: none;
}

.mws-thankyou-box::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -110px;
  top: -115px;
  border-radius: 50%;
  border: 30px solid rgba(242, 140, 40, 0.09);
  pointer-events: none;
}

@keyframes mwsThankyouGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.72;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.13);
    opacity: 1;
  }
}

.mws-thankyou-top-badge {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 9px 15px;
  border-radius: 50px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.34);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
}

.mws-thankyou-top-badge i {
  color: #f28c28;
}

.mws-thankyou-icon {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  margin: 0 auto 26px;
  border-radius: 34px;
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  box-shadow:
    0 24px 60px rgba(242, 140, 40, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation: mwsThankyouCheck 1.8s ease-in-out infinite;
}

@keyframes mwsThankyouCheck {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
}

.mws-thankyou-box h1 {
  position: relative;
  z-index: 2;
  color: #eeeeee;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 950;
  margin-bottom: 16px;
}

.mws-thankyou-box h1::first-letter {
  color: #f28c28;
}

.mws-thankyou-box p {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin: 0 auto 30px;
  color: #d3d3d3;
  font-size: 16px;
  line-height: 1.78;
}

/* Steps */
.mws-thankyou-steps {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mws-thankyou-step {
  min-height: 108px;
  padding: 18px 14px;
  border-radius: 24px;
  background: rgba(60, 60, 60, 0.66);
  border: 1px solid rgba(242, 140, 40, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition: 0.34s ease;
}

.mws-thankyou-step:hover {
  transform: translateY(-6px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.56);
  box-shadow: 0 20px 52px rgba(20, 20, 20, 0.3);
}

.mws-thankyou-step i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(242, 140, 40, 0.16);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.mws-thankyou-step span {
  color: #eeeeee;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

/* Buttons */
.mws-thankyou-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
}

.mws-thankyou-btn {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  transition: 0.32s ease;
}

.mws-thankyou-btn-primary {
  background: linear-gradient(135deg, #f28c28 0%, #b96218 100%);
  color: #303030;
  box-shadow: 0 18px 42px rgba(242, 140, 40, 0.3);
}

.mws-thankyou-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(242, 140, 40, 0.38);
}

.mws-thankyou-btn-secondary {
  background: rgba(238, 238, 238, 0.08);
  border: 1px solid rgba(242, 140, 40, 0.28);
  color: #eeeeee;
}

.mws-thankyou-btn-secondary:hover {
  transform: translateY(-4px);
  background: rgba(242, 140, 40, 0.12);
  border-color: rgba(242, 140, 40, 0.58);
}

/* Responsive */
@media (max-width: 760px) {
  .mws-thankyou-section {
    min-height: auto;
    padding: 112px 16px 76px;
  }

  .mws-thankyou-box {
    padding: 38px 20px;
    border-radius: 30px;
  }

  .mws-thankyou-top-badge {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .mws-thankyou-icon {
    width: 90px;
    height: 90px;
    border-radius: 28px;
    font-size: 38px;
  }

  .mws-thankyou-box h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .mws-thankyou-box p {
    font-size: 14.5px;
  }

  .mws-thankyou-steps {
    grid-template-columns: 1fr;
  }

  .mws-thankyou-step {
    min-height: 84px;
    flex-direction: row;
  }

  .mws-thankyou-actions {
    flex-direction: column;
  }

  .mws-thankyou-btn {
    width: 100%;
  }
}

/* ======================================================
   METROWELL PROFESSIONAL SITEMAP PAGE
====================================================== */

.mws-sitemap-hero-section {
  position: relative;
  overflow: hidden;
  padding: 145px 24px 82px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 140, 40, 0.20), transparent 32%),
    radial-gradient(circle at 88% 72%, rgba(120, 120, 120, 0.18), transparent 34%),
    linear-gradient(135deg, #292929 0%, #414141 52%, #303030 100%);
}

.mws-sitemap-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 140, 40, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 140, 40, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.38;
  pointer-events: none;
}

.mws-sitemap-hero-section::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -220px;
  top: -190px;
  border-radius: 50%;
  border: 46px solid rgba(242, 140, 40, 0.08);
  pointer-events: none;
}

.mws-sitemap-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.mws-sitemap-hero-badge {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(242, 140, 40, 0.14);
  border: 1px solid rgba(242, 140, 40, 0.32);
  color: #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.mws-sitemap-hero-badge i {
  color: #f28c28;
}

.mws-sitemap-hero-container h1 {
  max-width: 780px;
  margin: 0 auto;
  color: #eeeeee;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2.5px;
}

.mws-sitemap-hero-container h1::first-letter {
  color: #f28c28;
}

.mws-sitemap-hero-container p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #d3d3d3;
  font-size: 16px;
  line-height: 1.8;
}

.mws-sitemap-hero-stats {
  max-width: 650px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mws-sitemap-hero-stats div {
  padding: 20px 16px;
  border-radius: 24px;
  background: rgba(238, 238, 238, 0.08);
  border: 1px solid rgba(242, 140, 40, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mws-sitemap-hero-stats strong {
  display: block;
  color: #f28c28;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 7px;
}

.mws-sitemap-hero-stats span {
  display: block;
  color: #eeeeee;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

/* Main Area */
.mws-sitemap-section {
  position: relative;
  padding: 92px 24px;
  background:
    radial-gradient(circle at 8% 15%, rgba(242, 140, 40, 0.08), transparent 32%),
    linear-gradient(180deg, #f7f7f7 0%, #eeeeee 100%);
}

.mws-sitemap-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.mws-sitemap-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(120, 120, 120, 0.18);
  box-shadow: 0 28px 90px rgba(48, 48, 48, 0.11);
}

.mws-sitemap-card::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -150px;
  top: -150px;
  border-radius: 50%;
  background: rgba(242, 140, 40, 0.08);
  pointer-events: none;
}

.mws-sitemap-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.mws-sitemap-card-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f28c28 0%, #bf681b 100%);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 18px 42px rgba(242, 140, 40, 0.26);
}

.mws-sitemap-card-head span {
  display: block;
  color: #f28c28;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.mws-sitemap-card-head h2 {
  margin: 0;
  color: #303030;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1px;
}

.mws-sitemap-links-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mws-sitemap-link {
  min-height: 112px;
  padding: 18px;
  border-radius: 24px;
  background: #f8f8f8;
  border: 1px solid rgba(120, 120, 120, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: 0.35s ease;
}

.mws-sitemap-link:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(242, 140, 40, 0.45);
  box-shadow: 0 22px 60px rgba(48, 48, 48, 0.12);
}

.mws-sitemap-link > i {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 18px;
  background: rgba(242, 140, 40, 0.12);
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.35s ease;
}

.mws-sitemap-link:hover > i {
  background: #f28c28;
  color: #303030;
}

.mws-sitemap-link strong {
  display: block;
  color: #303030;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 950;
  margin-bottom: 5px;
}

.mws-sitemap-link span {
  display: block;
  color: #727272;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

/* Product Links */
.mws-sitemap-product-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(242, 140, 40, 0.08), transparent 34%),
    #ffffff;
}

.mws-sitemap-product-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mws-sitemap-product-link {
  position: relative;
  overflow: hidden;
  min-height: 74px;
  padding: 16px 18px;
  border-radius: 22px;
  background: #f8f8f8;
  border: 1px solid rgba(120, 120, 120, 0.15);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: 0.35s ease;
}

.mws-sitemap-product-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 140, 40, 0.14), transparent 48%);
  opacity: 0;
  transition: 0.35s ease;
}

.mws-sitemap-product-link:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 140, 40, 0.45);
  box-shadow: 0 20px 54px rgba(48, 48, 48, 0.10);
}

.mws-sitemap-product-link:hover::before {
  opacity: 1;
}

.mws-sitemap-product-link span {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #303030;
  color: #f28c28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 950;
}

.mws-sitemap-product-link strong {
  position: relative;
  z-index: 2;
  color: #303030;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.mws-sitemap-product-link i {
  position: relative;
  z-index: 2;
  color: #f28c28;
  transition: 0.35s ease;
}

.mws-sitemap-product-link:hover i {
  transform: translateX(5px);
}

.mws-sitemap-legal-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* Responsive */
@media (max-width: 880px) {
  .mws-sitemap-hero-section {
    padding: 122px 16px 68px;
  }

  .mws-sitemap-section {
    padding: 68px 16px;
  }

  .mws-sitemap-card {
    padding: 22px;
    border-radius: 28px;
  }

  .mws-sitemap-links-grid,
  .mws-sitemap-product-list,
  .mws-sitemap-legal-grid {
    grid-template-columns: 1fr;
  }

  .mws-sitemap-card-head {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .mws-sitemap-hero-container h1 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }

  .mws-sitemap-hero-container p {
    font-size: 14.5px;
  }

  .mws-sitemap-hero-stats {
    grid-template-columns: 1fr;
  }

  .mws-sitemap-hero-stats div {
    padding: 17px 14px;
  }

  .mws-sitemap-card-head {
    flex-direction: column;
    gap: 14px;
  }

  .mws-sitemap-link {
    min-height: auto;
    align-items: flex-start;
  }

  .mws-sitemap-product-link {
    grid-template-columns: auto 1fr;
  }

  .mws-sitemap-product-link i {
    display: none;
  }
}