/* TransWorld — Navy brand + orange CTA */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Rajdhani:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap");

:root {
  --primary: #e63312;
  --primary-dark: #b52208;
  --accent: #ff8c00;
  --navy: #0b1b3a;
  --navy-soft: #142248;
  --navy-dark: #071428;
  --navy-deep: #050e1c;
  --cta: var(--primary);
  --cta-dark: var(--primary-dark);
  --cta-deep: #8f1a08;
  --cta-soft: rgba(230, 51, 18, 0.12);
  --cta-wash: #fff5f2;
  --red: var(--primary);
  --red-dark: var(--primary-dark);
  --red-deep: var(--cta-deep);
  --red-soft: var(--cta-soft);
  --red-wash: var(--cta-wash);
  --secondary: var(--accent);
  --secondary-dark: #e67a00;
  --gold: var(--accent);
  --black: var(--navy);
  --ink: #1e293b;
  --muted: #475569;
  --line: rgba(11, 27, 58, 0.12);
  --line-dark: rgba(11, 27, 58, 0.1);
  --surface: #f8fafc;
  --white: #ffffff;
  --radius: 12px;
  --header-h: 74px;
  --site-chrome-h: 108px;
  --sticky-gap: 12px;
  --sticky-offset: calc(var(--site-chrome-h) + var(--sticky-gap));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Rajdhani", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  --max: 1200px;
  --page-aside-w: 360px;
  --header-logo-h: 58px;
  --header-logo-max-w: 230px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--navy) #e2e8f0;
  scroll-padding-top: var(--sticky-offset);
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: clip;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #eeeeee;
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-dark);
}

::-webkit-scrollbar-corner {
  background: #eeeeee;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.25rem, 6vw, 5.25rem) 0;
}

.section--red {
  background: var(--red);
  color: var(--white);
}

.section--wash {
  background: var(--red-wash);
}

.section--surface {
  background: var(--surface);
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 0.55rem;
}

.section--red .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  max-width: 22ch;
  color: var(--ink);
}

.section__title em,
.section__title .is-accent {
  font-style: normal;
  color: var(--cta);
}

.hero__title,
.section__title,
.page-hero__title,
.cta-band h2,
.footer-cta h2,
.footer-explore__head h2,
.footer-explore__col h3,
.footer-cities h3,
.footer-col h4,
.process-step h3,
.feature-service h3,
.service h3,
.prose h2,
.prose h3,
.side-card h3,
.cover-card h3,
.why-item h3,
.quote__panel h2,
.title-word {
  text-transform: capitalize;
}

.title-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 0.32em;
  row-gap: 0.12em;
}

.title-word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.06em;
  vertical-align: bottom;
}

.title-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  will-change: opacity, transform;
  text-transform: none;
}

.title-letter.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section__lead {
  margin-top: 0.7rem;
  color: #6b6b6b;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

.section--red .section__lead {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.6rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease);
}

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

.btn--primary {
  background: var(--cta);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--cta-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--dark {
  background: var(--navy-deep);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--white:hover {
  background: var(--cta);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

/* Shiv Shakti–style quote CTA */
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  outline: none;
  background-color: var(--cta);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  padding: 6px 14px 6px 22px;
  overflow: hidden;
  border-radius: 30px;
  transition: color 0.45s linear;
  text-transform: capitalize;
  z-index: 1;
  border: 0;
  cursor: pointer;
}

.thm-btn > span {
  position: relative;
  font-size: 1rem;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-deep);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.45s linear;
  flex-shrink: 0;
  z-index: 2;
}

.thm-btn > span svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thm-btn:hover > span {
  background-color: var(--white);
  color: var(--navy);
}

.thm-btn::before,
.thm-btn::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--navy-deep);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn::before {
  top: 0;
  left: 0;
}

.thm-btn::after {
  bottom: 0;
  right: 0;
}

.thm-btn:hover::before,
.thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn:hover {
  color: var(--white);
}

.thm-btn--light {
  background-color: var(--white);
  color: var(--navy);
}

.thm-btn--light > span {
  background-color: var(--cta);
  color: var(--white);
}

.thm-btn--light:hover > span {
  background-color: var(--navy);
  color: var(--white);
}

.thm-btn--light::before,
.thm-btn--light::after {
  background-color: var(--navy);
}

.thm-btn--light:hover {
  color: var(--white);
}

/* White CTA on dark/navy surfaces */
.thm-btn--on-red {
  background-color: var(--white);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.thm-btn--on-red > span {
  background-color: var(--cta);
  color: var(--white);
}

.thm-btn--on-red::before,
.thm-btn--on-red::after {
  background-color: var(--navy-deep);
}

.thm-btn--on-red:hover {
  color: var(--white);
}

.thm-btn--on-red:hover > span {
  background-color: var(--white);
  color: #1a1a1a;
}

.thm-btn--ghost {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.thm-btn--ghost > span {
  background-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.thm-btn--ghost:hover > span {
  background-color: var(--white);
  color: var(--cta);
}

.thm-btn--ghost::before,
.thm-btn--ghost::after {
  background-color: var(--white);
}

.thm-btn--ghost:hover {
  color: var(--red);
  border-color: var(--white);
}

/* Reveal — WOW-like section animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

.reveal-left,
.fadeInLeft {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}

.reveal-left.is-visible,
.fadeInLeft.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-right,
.fadeInRight {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}

.reveal-right.is-visible,
.fadeInRight.is-visible {
  opacity: 1;
  transform: none;
}

.slideInLeft {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.6s var(--ease), transform 1.6s var(--ease);
}

.slideInLeft.is-visible {
  opacity: 1;
  transform: none;
}

.slideInRight {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.6s var(--ease), transform 1.6s var(--ease);
}

.slideInRight.is-visible {
  opacity: 1;
  transform: none;
}

.from-right {
  opacity: 0;
  transform: translateX(90px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

.from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fadeInUp {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

.fadeInUp.is-visible {
  opacity: 1;
  transform: none;
}

.zoomIn {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.zoomIn.is-visible {
  opacity: 1;
  transform: none;
}

.media-reveal {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.media-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.9s var(--ease);
  z-index: 2;
  pointer-events: none;
}

.media-reveal img,
.media-reveal picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.2s var(--ease) 0.12s;
}

.media-reveal.is-visible::after {
  transform: scaleY(0);
  transform-origin: top;
}

.media-reveal.is-visible img,
.media-reveal.is-visible picture {
  transform: scale(1);
}

.clip-reveal {
  clip-path: inset(0 0 100% 0 round var(--radius));
  transition: clip-path 0.95s var(--ease);
}

.clip-reveal.is-visible {
  clip-path: inset(0 0 0 0 round var(--radius));
}

/* ========== 1. Top Strip ========== */
.top-strip {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.85rem;
}

.top-strip__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
}

.top-strip__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  padding: 0.16rem 0.5rem 0.16rem 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.top-strip__pill-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.top-strip__pill-icon svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-strip__right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.top-strip__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.top-strip__social {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.top-strip__social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.top-strip__social a:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--red);
  transform: translateY(-1px);
}

.top-strip__social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  overflow: visible;
}

.top-strip__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.top-strip__links a {
  padding: 0.18rem 0.45rem;
  border-radius: var(--radius);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.25s ease, color 0.25s ease;
}

.top-strip__links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

/* ========== 2. Main Header ========== */
.site-chrome {
  position: relative;
  z-index: 1000;
  overflow: visible;
  background: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  box-shadow: 0 4px 18px rgba(20, 10, 12, 0.05);
  overflow: visible;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  overflow: visible;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  width: 130px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.site-header .brand__text {
  display: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--red);
  letter-spacing: 0.02em;
}

.brand__tag {
  font-size: 0.58rem;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.55rem;
  flex: 1;
  justify-content: center;
  align-self: center;
  height: auto;
}

.nav > .nav__link {
  display: inline-flex;
  align-items: center;
  height: auto;
}

.nav__link {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 8px;
}

.nav__link:hover,
.nav__link.is-active,
.nav__dropdown.is-active > .nav__link,
.nav__dropdown:hover > .nav__link,
.nav__dropdown.is-hover > .nav__link,
.nav__dropdown:focus-within > .nav__link {
  color: var(--primary, #e63312);
  background: rgba(230, 51, 18, 0.06);
}

@media (min-width: 981px) {
  .nav__dropdown:hover > .nav__link,
  .nav__dropdown:focus-within > .nav__link,
  .nav__link:hover,
  .nav__link.is-active,
  .nav__dropdown.is-active > .nav__link,
  .nav__dropdown.is-hover > .nav__link {
    color: var(--primary, #e63312);
    background: rgba(230, 51, 18, 0.06);
  }
}

.nav__caret {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
  transition: transform 0.25s ease;
}

.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
}

.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 16px 28px rgba(20, 10, 12, 0.12);
  clip-path: inset(0 -48px -48px -48px);
  padding: 0.45rem 0 0.35rem;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.nav__menu--compact {
  max-height: none;
}

.nav__menu--cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 360px;
  gap: 0.1rem;
}

.nav__menu--cities .nav__menu-more {
  grid-column: 1 / -1;
}

.nav__menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
}

.nav__menu a:hover {
  background: var(--red-wash);
  color: var(--red);
}

.nav__menu-more {
  margin-top: 0.2rem;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius) !important;
  font-weight: 600 !important;
  color: var(--red) !important;
  padding-top: 0.55rem !important;
}

.nav__menu-more:hover {
  background: rgba(15, 61, 94, 0.08) !important;
}

.nav__dropdown:hover .nav__menu,
.nav__dropdown.is-hover .nav__menu,
.nav__dropdown:focus-within .nav__menu,
.nav__dropdown:hover .nav__mega,
.nav__dropdown.is-hover .nav__mega,
.nav__dropdown:focus-within .nav__mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (min-width: 981px) {
  /* Desktop mega/dropdown open state is JS-driven (.is-hover) so :focus-within
     does not keep panels stuck open after the pointer leaves. */
  .nav__dropdown:hover .nav__menu,
  .nav__dropdown:focus-within .nav__menu,
  .nav__dropdown:hover .nav__mega,
  .nav__dropdown:focus-within .nav__mega {
    opacity: 0;
    visibility: hidden;
  }

  .nav__dropdown.is-hover .nav__menu,
  .nav__dropdown.is-hover .nav__mega {
    opacity: 1;
    visibility: visible;
  }

  .nav__dropdown.is-hover > .nav__link {
    color: var(--red);
  }
}

/* ========== Mega Menu ========== */
.nav__dropdown--mega {
  position: static;
}

.nav__mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: auto;
  transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 30;
  padding: 0;
  margin-top: -1px;
}

.nav__mega-panel {
  max-width: var(--max);
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(11, 27, 58, 0.1);
  border-top: 3px solid #e63312;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 22px 48px rgba(11, 27, 58, 0.16);
  overflow: hidden;
  pointer-events: auto;
}

.nav__mega-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: linear-gradient(135deg, #0b1b3a 0%, #142248 100%);
  color: #fff;
  padding: 1.2rem 1.35rem;
  border-bottom: 0;
  border-left: 0;
  position: relative;
}

.nav__mega-intro::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 28%;
  background: linear-gradient(135deg, transparent, rgba(230, 51, 18, 0.22));
  pointer-events: none;
}

.nav__mega-intro-copy {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.nav__mega-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff8c00;
}

.nav__mega-title {
  margin: 0 0 0.45rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nav__mega-copy {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42rem;
}

.nav__mega-cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e63312, #b52208);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(230, 51, 18, 0.35);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav__mega-cta:hover {
  background: linear-gradient(135deg, #ff3d1a, #e63312);
  color: #fff;
  transform: translateY(-2px);
}

.nav__mega-grid {
  display: grid;
  gap: 0.75rem 1.25rem;
  padding: 1.15rem 1.35rem 0.85rem;
  background: #f8fafc;
}

.nav__mega-grid--services,
.nav__mega-grid--cities,
.nav__mega-grid--even {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nav__mega-col {
  background: #fff;
  border: 1px solid rgba(11, 27, 58, 0.08);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  box-shadow: 0 4px 14px rgba(11, 27, 58, 0.04);
}

.nav__mega-col-title {
  margin: 0 0 0.55rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(230, 51, 18, 0.28);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e63312;
}

.nav__mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__mega-list a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.35rem;
  margin: 0 -0.35rem;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.nav__mega-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff8c00;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.18);
}

.nav__mega-list a:hover {
  color: #e63312;
  background: rgba(230, 51, 18, 0.06);
  padding-left: 0.45rem;
}

.nav__mega-foot {
  padding: 0.7rem 1.35rem 0.95rem;
  border-top: 1px solid rgba(11, 27, 58, 0.08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__mega-foot a {
  font-size: 0.86rem;
  font-weight: 700;
  color: #e63312;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav__mega-foot a:hover {
  color: #b52208;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.55rem 0.35rem 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(20, 10, 12, 0.08);
}

.header-cta__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.header-cta__icon svg {
  width: 15px;
  height: 15px;
}

.header-cta--call .header-cta__icon {
  background: var(--cta);
  animation: call-shiver 1.2s ease-in-out infinite;
  transform-origin: center center;
}

.header-cta--call .header-cta__icon svg {
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes call-shiver {
  0%,
  55%,
  100% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(14deg);
  }
  10% {
    transform: rotate(-12deg);
  }
  15% {
    transform: rotate(10deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  25% {
    transform: rotate(6deg);
  }
  30% {
    transform: rotate(-4deg);
  }
  35% {
    transform: rotate(0deg);
  }
}

.header-cta--call:hover .header-cta__icon {
  animation-play-state: paused;
}

.header-cta--call:hover {
  border-color: rgba(15, 61, 94, 0.35);
}

.header-cta--call .header-cta__text strong {
  color: var(--navy);
}

.header-cta--wa .header-cta__icon {
  background: #25d366;
}

.header-cta--wa .header-cta__icon svg {
  fill: var(--white);
}

.header-cta--wa:hover {
  border-color: rgba(37, 211, 102, 0.45);
}

.header-cta--wa .header-cta__text strong {
  color: #128c7e;
}

.header-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  padding-right: 0.25rem;
}

.header-cta__text small {
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-cta__text strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* legacy alias if referenced elsewhere */
.header-call {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--red);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 121;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0;
  border-radius: var(--radius);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ========== 3. USP Bar ========== */
.usp-bar {
  background: var(--red);
  color: var(--white);
  padding: 0.55rem 0;
}

.usp-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.usp-bar__copy {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
}

.usp-bar__copy strong {
  font-weight: 700;
  color: var(--white);
}

.usp-bar__copy span {
  opacity: 0.55;
}

.usp-bar__cta {
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 3px 4px 3px 14px;
  font-size: 0.8rem;
  gap: 6px;
  line-height: 1;
}

.usp-bar__cta > span {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
}

.usp-bar__cta > span svg {
  width: 13px;
  height: 13px;
}

/* Floating contact + back to top */
.float-dock {
  position: fixed;
  left: 1rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  overflow: visible;
}

.float-btn--wa {
  background: #25d366;
}

.float-btn--wa svg {
  fill: currentColor;
}

.float-btn--call {
  background: var(--red);
}

.float-btn--call svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 1.4rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(8, 37, 54, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease), visibility 0.3s ease, background 0.25s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.back-top:hover {
  background: var(--cta);
}

.back-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========== Page hero (inner pages) ========== */
.page-hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(8, 37, 54, 0.94), rgba(15, 61, 94, 0.88)),
    url("../image/packing-home.jpg") center/cover no-repeat;
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.page-hero__copy {
  margin-top: 0.65rem;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-hero__copy--seo {
  margin-top: 0.55rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ========== 4. Home Hero (Agarwal-inspired split) ========== */
.hero {
  position: relative;
  min-height: 72vh;
  min-height: 72svh;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 8, 10, 0.88) 0%, rgba(18, 8, 10, 0.72) 42%, rgba(18, 8, 10, 0.35) 68%, rgba(18, 8, 10, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(2.5rem, 7vh, 4.5rem) 0;
}

.hero__copy-block {
  max-width: 560px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 9vh, 5.5rem) 0;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  max-width: 640px;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff6b70;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  max-width: 18ch;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 58ch;
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero__checks {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero__checks li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero .btn {
  font-weight: 500;
}

.hero--slider {
  height: calc(100vh - var(--site-chrome-h));
  height: calc(100svh - var(--site-chrome-h));
  min-height: calc(100vh - var(--site-chrome-h));
  min-height: calc(100svh - var(--site-chrome-h));
}

.hero--slider .hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 16, 28, 0.78) 0%, rgba(10, 16, 28, 0.52) 46%, rgba(10, 16, 28, 0.28) 72%, rgba(10, 16, 28, 0.18) 100%);
}

.hero--slider .hero__layout {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin-right: auto;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  width: min(100% - 2rem, var(--max));
  padding: clamp(4.5rem, 14vh, 8rem) 0 7.5rem;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy-wrap {
  position: relative;
  max-width: 720px;
}

.hero--slider .hero__badge,
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
  padding: 0.42rem 0.78rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  text-shadow: none;
}

.hero--slider .hero__title {
  max-width: min(100%, 24em);
  font-size: clamp(1.4rem, 3vw, 2.05rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.75rem;
  white-space: normal;
}

.hero--slider .hero__title .hero__brand {
  display: inline-block;
  margin-top: 0.15em;
  color: var(--secondary);
  font-size: 1.18em;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 8px rgba(240, 180, 41, 0.55),
    0 0 18px rgba(240, 180, 41, 0.45),
    0 0 36px rgba(240, 180, 41, 0.35),
    0 2px 14px rgba(0, 0, 0, 0.35);
  animation: heroBrandGlow 2.4s ease-in-out infinite;
}

@keyframes heroBrandGlow {
  0%, 100% {
    text-shadow:
      0 0 8px rgba(240, 180, 41, 0.5),
      0 0 18px rgba(240, 180, 41, 0.4),
      0 0 32px rgba(240, 180, 41, 0.28),
      0 2px 14px rgba(0, 0, 0, 0.35);
  }
  50% {
    text-shadow:
      0 0 12px rgba(240, 180, 41, 0.75),
      0 0 28px rgba(240, 180, 41, 0.55),
      0 0 48px rgba(240, 180, 41, 0.4),
      0 2px 14px rgba(0, 0, 0, 0.35);
  }
}

.hero--slider .hero__sub {
  max-width: 42ch;
  margin-top: 0.35rem;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero--slider .hero__lead {
  max-width: 44ch;
  font-size: clamp(0.98rem, 1.55vw, 1.08rem);
  line-height: 1.65;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-points {
  list-style: none;
  margin: 1.35rem 0 1.65rem;
  padding: 0.15rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-points__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--secondary);
  color: #1a1208;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-points__ico svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-cta--solid {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
}

.hero-cta--solid svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-cta--solid:hover {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
}

.hero-cta--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.hero-cta--ghost svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-cta--ghost:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-nav:hover,
.hero-nav:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--red);
}

.hero-nav--prev {
  left: 18px;
}

.hero-nav--next {
  right: 18px;
}

.hero-footer {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transform: translateX(-50%);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.hero-scroll__mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-scroll__wheel {
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  animation: heroScrollWheel 1.6s ease-in-out infinite;
}

.hero-scroll__chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -0.1rem;
  animation: heroScrollChevrons 1.6s ease-in-out infinite;
}

.hero-scroll__chevrons svg {
  width: 16px;
  height: 14px;
  margin-top: -8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.55;
}

.hero-scroll__chevrons svg:last-child {
  opacity: 0.9;
}

.hero-scroll__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

@keyframes heroScrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes heroScrollChevrons {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(4px); opacity: 1; }
}

.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.92);
  transform: none;
}

.quote-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(580px, calc(100vw - 2rem));
  width: min(580px, calc(100vw - 2rem));
  margin: auto;
  inset: 0;
  height: fit-content;
  max-height: calc(100vh - 2rem);
}

.quote-dialog[open] {
  display: block;
}

.quote-dialog::backdrop {
  background: rgba(18, 8, 10, 0.62);
}

.quote-dialog__panel {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  border-top: 3px solid var(--red);
  padding: 1.45rem 1.35rem 1.3rem;
  position: relative;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

.quote-dialog__close {
  position: absolute;
  top: 0.45rem;
  right: 0.65rem;
  border: 0;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.quote-dialog__panel > h2 {
  font-size: 1.25rem;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.quote-dialog__panel > p {
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 0.65rem;
}

.quote-dialog__phones {
  font-weight: 600;
  color: var(--ink) !important;
  margin-bottom: 1rem !important;
}

.quote-dialog__phones a {
  color: var(--red);
}

.quote-dialog .hero-quote__form {
  display: block;
}

.quote-dialog .hero-quote__form .form-grid {
  margin-bottom: 0.85rem;
}

.quote-dialog .hero-quote__form select,
.quote-dialog .hero-quote__form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #f8fafc;
  font: inherit;
  color: inherit;
  resize: vertical;
}

.quote-dialog .hero-quote__form textarea {
  min-height: 78px;
}

.quote-dialog .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.quote-dialog .form-field label {
  font-size: 0.72rem;
  font-weight: 600;
}

.quote-dialog .form-field input,
.quote-dialog .form-field select,
.quote-dialog .form-field textarea {
  width: 100%;
}

@media (max-width: 560px) {
  .quote-dialog .form-grid {
    grid-template-columns: 1fr;
  }
}

.side-dock {
  position: fixed;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 46px;
}

.side-dock--left {
  left: 18px;
  right: auto;
  bottom: 1.4rem;
  top: auto;
}

.side-dock--right {
  right: 18px;
  left: auto;
  bottom: 1.4rem;
  top: auto;
  transition: bottom 0.35s var(--ease);
}

.side-dock--right.is-raised {
  bottom: calc(1.4rem + 46px + 1.2rem);
}

.side-dock__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.side-dock__icon:hover,
.side-dock__icon:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.side-dock__icon svg {
  width: 21px;
  height: 21px;
}

.side-dock__icon--wa {
  background: #25d366;
}

.side-dock__icon--wa svg {
  fill: currentColor;
}

.side-dock__icon--call {
  position: relative;
  background: var(--cta);
  animation: callPulse 1.7s ease-out infinite;
}

.side-dock__icon--call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.45);
  animation: callRing 1.7s ease-out infinite;
  pointer-events: none;
}

.side-dock__icon--call svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes callPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(15, 61, 94, 0.45), 0 8px 20px rgba(0, 0, 0, 0.22);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(15, 61, 94, 0), 0 8px 20px rgba(0, 0, 0, 0.22);
  }
}

@keyframes callRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.side-dock__icon--msg {
  background: var(--navy);
}

.side-dock__icon--msg svg {
  fill: currentColor;
  stroke: none;
}

/* Floating contact + back to top */
.float-dock {
  display: none;
}

/* Hero free-quote panel */
.hero-quote {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.2rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  border-top: 3px solid var(--red);
}

.hero-quote h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.hero-quote > p {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.hero-quote__form {
  display: grid;
  gap: 0.7rem;
}

.hero-quote__form .form-field label {
  font-size: 0.72rem;
  color: var(--ink);
}

.hero-quote__form .form-field input,
.hero-quote__form .form-field select {
  padding: 0.65rem 0.75rem;
  font-size: 0.86rem;
  background: #f8fafc;
}

.hero-quote__note {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.hero-quote .form-success {
  margin: 0;
}

/* Presence strip */
.presence-strip {
  background: var(--red);
  color: var(--white);
  padding: 1.15rem 0;
}

.presence-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem 1rem;
  text-align: center;
}

.presence-item {
  display: grid;
  gap: 0.15rem;
  padding: 0.35rem 0.5rem;
}

.presence-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}

.presence-item span {
  font-size: 0.74rem;
  opacity: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* About band */
.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.about-band > * {
  min-width: 0;
  max-width: 100%;
}

.about-band__text p:not(.eyebrow):not(.section__lead):not(.section__sublead):not(.section__title):not(.tw-label) {
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.about-band__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
}

.about-band__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-band__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--red);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  max-width: 11rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.about-band__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-band__badge span {
  font-size: 0.75rem;
  line-height: 1.35;
  opacity: 0.95;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* Featured service cards */
.feature-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-service {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.feature-service:hover {
  border-color: #d8d8d8;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.feature-service__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f0f0;
}

.feature-service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.feature-service:hover .feature-service__media img {
  transform: scale(1.05);
}

.feature-service__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.15rem 1.15rem 1.25rem;
  flex: 1;
}

.feature-service__body h2,
.feature-service__body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
}

.feature-service__body h2 a,
.feature-service__body h3 a {
  color: inherit;
  text-decoration: none;
}

.feature-service__body h2 a:hover,
.feature-service__body h3 a:hover {
  color: var(--red);
}

.feature-service__body > p {
  color: #666666;
  font-size: 0.88rem;
  line-height: 1.55;
  flex-grow: 1;
  margin: 0;
}

.feature-service__link {
  font-size: 0.86rem;
  font-weight: 600;
  color: #333333;
  margin-top: 0.15rem;
}

.feature-service__link:hover {
  color: var(--red);
  text-decoration: none;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
}

.blog-card__meta time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.blog-card__meta span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}

.page-hero__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.prose .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  width: 100%;
  margin: 1.25rem 0 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.prose table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.prose th,
.prose td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.prose thead th {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.prose tbody tr:nth-child(even) {
  background: rgba(15, 61, 94, 0.04);
}

.prose .faq-list {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.prose .faq-item {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.prose .faq-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.prose .faq-item p {
  margin: 0;
  color: #555;
}

.side-card h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

/* USP cards */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.usp-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 1.2rem 1.05rem;
  border-top: 3px solid #dddddd;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-top-color 0.35s ease;
}

.usp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  border-top-color: var(--red);
}

.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.usp-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.coverage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.35s ease, transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.coverage-item:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(225, 6, 0, 0.08);
}

.coverage-item__num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--red);
  font-size: 1rem;
}

.coverage-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.coverage-item p {
  color: var(--muted);
  font-size: 0.82rem;
}

.intro-media {
  min-height: 380px;
  height: 100%;
}

.intro-media img {
  height: 100%;
  min-height: 380px;
}

/* Services */
.services-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.15rem;
  margin-bottom: 1.85rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 195px;
  padding: 1.35rem 1.25rem;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
  border: 1px solid #e8e8e8;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

.service--media {
  padding: 0;
  min-height: 0;
}

.service__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f0f0;
}

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.service--media:hover .service__media img {
  transform: scale(1.05);
}

.service__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.15rem 1.25rem;
  flex: 1;
}

.service::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.service:hover {
  transform: translateY(-3px);
  border-color: #d8d8d8;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service:hover::before {
  transform: scaleX(1);
}

.service__icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #f3f3f3;
  color: #333333;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
}

.service__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

.service p {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: auto;
}

.service__link {
  margin-top: 1rem;
  color: #333333;
  font-weight: 600;
  font-size: 0.82rem;
}

.service__link:hover {
  color: var(--red);
}

/* Stats — red wash instead of black */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.stat {
  padding: 1.35rem 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.stat__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat__label {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.stat__desc {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 1.85rem;
  list-style: none;
  padding: 0;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.process-grid.is-visible .process-step {
  opacity: 1;
  transform: translateY(0);
}

.process-grid.is-visible .process-step:nth-child(1) { transition-delay: 0.05s; }
.process-grid.is-visible .process-step:nth-child(2) { transition-delay: 0.12s; }
.process-grid.is-visible .process-step:nth-child(3) { transition-delay: 0.19s; }
.process-grid.is-visible .process-step:nth-child(4) { transition-delay: 0.26s; }
.process-grid.is-visible .process-step:nth-child(5) { transition-delay: 0.33s; }
.process-grid.is-visible .process-step:nth-child(6) { transition-delay: 0.4s; }

.process-step__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
  padding: 1.65rem 1.45rem 1.7rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(15, 61, 94, 0.12);
  box-shadow: 0 10px 28px rgba(20, 10, 12, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-grid.is-visible .process-step:hover .process-step__body {
  border-color: rgba(15, 61, 94, 0.35);
  box-shadow: 0 18px 40px rgba(15, 61, 94, 0.12);
  transform: translateY(-6px);
}

.process-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.15rem;
}

.process-step__icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.process-step__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(15, 61, 94, 0.18);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #1a1a1a;
}

.process-step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.process-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  margin-top: 2.5rem;
  padding: 1.45rem 1.55rem;
  background: var(--white);
  border: 1px solid rgba(15, 61, 94, 0.14);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 10, 12, 0.04);
}

.process-footer__copy {
  display: grid;
  gap: 0.25rem;
}

.process-footer__copy strong {
  font-size: 1.05rem;
  color: #1a1a1a;
}

.process-footer__copy span {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (max-width: 720px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-step__body {
    padding: 1.35rem 1.2rem 1.4rem;
  }

  .process-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .process-footer .btn-group {
    justify-content: center;
  }
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 0.35rem;
}

.cover-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.55rem 1.35rem 1.35rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid #e8e8e8;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.cover-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.35s var(--ease);
}

.cover-card:hover {
  transform: translateY(-4px);
  border-color: #d8d8d8;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.cover-card:hover::after {
  width: 100%;
}

.cover-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.15rem;
}

.cover-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #f3f3f3;
  color: #333333;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cover-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cover-card__index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.cover-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #1a1a1a;
}

.cover-card p {
  color: #666666;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.cover-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.15rem 0 0.2rem;
}

.cover-card ul li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #333333;
}

.cover-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
}

.cover-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #333333;
}

.cover-card__link:hover {
  color: var(--red);
}

.cover-card__link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
}

.cover-card:hover .cover-card__link svg {
  transform: translateX(3px);
}

.cover-assurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}

.cover-assurance li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #333333;
}

.cover-assurance li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #999999;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.why-item__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--red);
  display: grid;
  place-items: center;
}

.why-item__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.8rem;
}

/* Quote */
.quote {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.quote__panel {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.quote__panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.quote__panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
  max-width: 14ch;
  margin: 0.55rem 0 0.75rem;
}

.quote__panel p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 34ch;
  font-size: 0.9rem;
}

.quote__meta {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.quote__meta a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

.quote__meta span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.74rem;
  margin-bottom: 0.1rem;
}

.quote__meta strong {
  font-size: 0.88rem;
  font-weight: 600;
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.8vw, 1.85rem);
  border: 1px solid var(--line);
}

.quote-form h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.quote-form > p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 0.86rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.74rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  outline: none;
  font-size: 0.86rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field textarea {
  min-height: 95px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.form-actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.74rem;
  color: var(--muted);
}

.form-success {
  display: none;
  margin-top: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-weight: 500;
  font-size: 0.84rem;
}

.form-success.is-shown {
  display: block;
}

.form-error {
  display: block;
  margin-top: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(15, 61, 94, 0.08);
  color: var(--red-dark);
  border: 1px solid rgba(15, 61, 94, 0.22);
  font-weight: 500;
  font-size: 0.84rem;
}

.form-error[hidden] {
  display: none;
}

.contact-dialog textarea {
  width: 100%;
  min-height: 96px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #f8fafc;
  resize: vertical;
}

/* Cities */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 600;
  font-size: 0.84rem;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.city svg {
  width: 14px;
  height: 14px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.city:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.city:hover svg {
  stroke: var(--white);
}

.section-head {
  margin-bottom: 1.85rem;
  overflow: hidden;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section__title,
.section-head--center .section__lead {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.section-head--center .section__title {
  max-width: 18ch;
}

.section-head--center .section__lead {
  max-width: 40ch;
}

.section-head__line {
  display: block;
  width: 40px;
  height: 3px;
  margin: 0.85rem 0 0;
  background: var(--red);
  border-radius: 2px;
}

.section-head--center .section-head__line {
  margin-left: auto;
  margin-right: auto;
}

/* Section head variants */
.section-head__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.85rem;
  border: 1px solid rgba(15, 61, 94, 0.28);
  border-radius: 999px;
  background: rgba(15, 61, 94, 0.06);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head--about .section-head__title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 0.65rem;
}

.section-head--about .section-head__accent-bar {
  flex-shrink: 0;
  width: 4px;
  height: clamp(2.8rem, 5vw, 3.4rem);
  margin-top: 0.15rem;
  background: linear-gradient(180deg, var(--red), var(--gold));
  border-radius: 2px;
}

.section-head--about .section__title {
  max-width: none;
}

.section-head__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 28rem;
}

.section-head__eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8d8d8 20%, #d8d8d8 80%, transparent);
}

.section-head__eyebrow {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
}

.section-head--coverage .section__title {
  margin-top: 0.65rem;
  max-width: 20ch;
}

.section-head__dots {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.section-head__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddd;
}

.section-head__dots span:nth-child(2) {
  background: var(--gold);
}

.section-head__dots span:nth-child(3) {
  background: var(--red);
}

.section-head__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.55rem;
  background: #1a1a1a;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
}

.section-head__label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 1px;
}

.section-head--services .section__title {
  margin-top: 0.7rem;
  max-width: 20ch;
}

.section-head__underline {
  display: block;
  width: min(120px, 28%);
  height: 4px;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, var(--red), rgba(15, 61, 94, 0.15));
  border-radius: 2px;
}

.section-head__intro {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.section-head__gem {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, var(--gold), #e8c45a);
  border: 1px solid rgba(240, 180, 41, 0.55);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.12);
}

.section-head__eyebrow-text {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
}

.section-head__rule {
  flex: 0 1 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(15, 61, 94, 0.08));
  border-radius: 2px;
}

.section-head--process .section__title {
  margin-top: 0.65rem;
  max-width: none;
  line-height: 1.22;
  text-wrap: balance;
}

.section-head--process .section__title span {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .section-head--process .section__title {
    font-size: clamp(1.35rem, 6vw, 1.55rem);
  }

  .section-head--process .section__title span {
    white-space: normal;
  }
}

.section-head--process .section__lead {
  margin-top: 0.75rem;
  max-width: 40ch;
  padding-left: 1rem;
  border-left: 3px solid rgba(15, 61, 94, 0.3);
  color: #ababab;
  font-size: 0.93rem;
  line-height: 1.55;
  font-weight: 400;
  min-height: calc(0.93rem * 1.55 * 1.2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.section-head--process .section__sublead {
  margin-top: 0.4rem;
  max-width: 40ch;
  padding-left: 1rem;
  color: #b5b5b5;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: calc(0.8rem * 1.5 * 1.2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.section-head__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  background: rgba(240, 180, 41, 0.16);
  border: 1px solid rgba(240, 180, 41, 0.42);
  border-radius: 999px;
  color: #8a6400;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head__title-bracket span::before {
  content: "[ ";
  color: var(--gold);
  font-weight: 700;
}

.section-head__title-bracket span::after {
  content: " ]";
  color: var(--gold);
  font-weight: 700;
}

.section-head__line--gold {
  background: var(--gold);
}

.section-head--cities .section__title {
  margin-top: 0.65rem;
}

.section-head__eyebrow-italic {
  display: block;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #888;
}

.section-head--blog .section__title {
  margin-top: 0.45rem;
}

.section-head__highlight {
  display: inline;
  padding: 0.05rem 0.35rem;
  background: rgba(15, 61, 94, 0.08);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-head__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border: 1px dashed #ccc;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777;
}

.section-head__mark {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.section-head__mark-label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
}

.section-head--story .section__title {
  margin-top: 0.55rem;
}

.section-head--why .section__title {
  margin-top: 0.65rem;
}

.section-head .section__lead {
  margin-top: 0.85rem;
  max-width: 58ch;
}

.branch-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.branch-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 3.75rem) / 4);
  max-width: calc((100% - 3.75rem) / 4);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.branch-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
  overflow: hidden;
}

.branch-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.branch-card__fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.branch-card__fallback svg {
  width: 36px;
  height: 36px;
  fill: var(--red);
}

.branch-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  text-align: left;
}

.branch-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.25;
}

.branch-card__pin {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.branch-card__pin svg {
  width: 22px;
  height: 22px;
}

.branch-card:hover {
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.14);
  transform: translateY(-3px);
}

.branch-card:hover .branch-card__name {
  color: var(--red);
}

.branch-card:hover .branch-card__media img {
  transform: scale(1.06);
}

.branch-more {
  margin-top: 1.75rem;
  text-align: center;
}

.city-feature-image {
  width: 100%;
  max-height: none;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  display: block;
}

.page-hero--city {
  padding: clamp(2rem, 4.5vw, 3.25rem) 0;
}

.page-hero--city .hero-cta--ghost {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.city-page-section {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
}

.city-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--page-aside-w);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}

.city-layout > * {
  min-width: 0;
  max-width: 100%;
}

.city-article {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(80, 50, 30, 0.05);
}

.city-article__media {
  margin: 0;
  background: #f3efe9;
}

.city-article__body {
  padding: clamp(1.15rem, 2.5vw, 1.85rem) clamp(1.15rem, 2.5vw, 1.85rem) 0.5rem;
}

.city-article__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.15rem clamp(1.15rem, 2.5vw, 1.85rem) 1.35rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

.city-aside {
  display: grid;
  gap: 1rem;
}

.side-card--services {
  background: #fff;
  border-color: var(--line);
}

.side-card--services h2 {
  margin-bottom: 0.85rem;
}

.side-links--services {
  gap: 0;
}

.side-links--services li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.side-links--services a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0.15rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.side-links--services a .side-list__arrow {
  margin-left: auto;
}

.side-links--services a:hover {
  color: var(--red);
  padding-left: 0.25rem;
}

.side-links--services a:hover .side-list__arrow {
  opacity: 1;
}

.side-card__more {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.city-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.city-area-chips li {
  margin: 0;
  padding: 0;
}

.city-area-chips li::before {
  display: none;
}

.city-area-chips a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fcfaf8;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.city-area-chips a:hover {
  border-color: rgba(15, 61, 94, 0.35);
  color: var(--red);
  background: #f1f5f9;
}

/* Blog slider */
.blog-slider-section {
  overflow: hidden;
}

.blog-slider {
  position: relative;
  margin-top: 0.35rem;
  --blog-gap: 1.25rem;
  --blog-per-view: 1;
}

.blog-slider__viewport {
  overflow: hidden;
}

.blog-slider__track {
  display: flex;
  align-items: stretch;
  gap: var(--blog-gap);
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.blog-slide {
  flex: 0 0 calc((100% - (var(--blog-gap) * (var(--blog-per-view) - 1))) / var(--blog-per-view));
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: stretch;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-slide:hover {
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.12);
  transform: translateY(-3px);
}

.blog-slide__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
  overflow: hidden;
}

.blog-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.blog-slide:hover .blog-slide__media img {
  transform: scale(1.05);
}

.blog-slide__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.15rem 1.15rem;
}

.blog-slide__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
}

.blog-slide__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.65rem;
  background: rgba(240, 180, 41, 0.18);
  border: 1px solid rgba(240, 180, 41, 0.45);
  border-radius: 999px;
  color: #8a6400;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-slide__meta time {
  color: var(--muted);
  font-size: 0.82rem;
}

.blog-slide__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.35em * 2);
}

.blog-slide__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-slide__title a:hover {
  color: var(--red);
}

.blog-slide__excerpt {
  flex: 1 1 auto;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: calc(0.92rem * 1.6 * 3);
}

.blog-slide__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-top: 0.35rem;
  color: var(--red);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}

.blog-slide__link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.blog-slide__link:hover svg {
  transform: translateX(3px);
}

.blog-slider__nav {
  position: absolute;
  top: 42%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.12);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.blog-slider__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.blog-slider__nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-slider__nav:hover:not(:disabled),
.blog-slider__nav:focus-visible:not(:disabled) {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.04);
}

.blog-slider__nav--prev {
  left: -14px;
}

.blog-slider__nav--next {
  right: -14px;
}

.blog-slider__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.15rem;
  padding: 0 0.15rem;
}

.blog-slider__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.blog-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #ececec;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.blog-slider__dot.is-active {
  width: 28px;
  background: var(--red);
  border-color: var(--red);
}

.blog-slider__count {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.blog-slider__count-current {
  color: var(--red);
}

.blog-slider-more {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .blog-slider {
    --blog-per-view: 2;
  }
}

@media (min-width: 1200px) {
  .blog-slider {
    --blog-per-view: 3;
  }
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(8, 37, 54, 0.94), rgba(18, 59, 99, 0.9)),
    url("../image/packing-home.jpg") center/cover no-repeat;
  color: var(--white);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.cta-band--flush {
  display: block;
  border-radius: 0;
  padding: clamp(2.5rem, 5.5vw, 3.75rem) 0;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem 2rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 22ch;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.cta-band p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Content blocks (inner pages) */
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--page-aside-w);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.content-grid > * {
  min-width: 0;
  max-width: 100%;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--page-aside-w);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}

.blog-index-section {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
}

.blog-index-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  border-bottom: 1px solid var(--line);
}

.blog-index-intro__copy > p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 62ch;
}

.blog-index-intro__points {
  display: grid;
  gap: 0.75rem;
}

.blog-index-intro__points article {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  border-left: 3px solid var(--red);
}

.blog-index-intro__points h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--ink);
}

.blog-index-intro__points p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.blog-index-main {
  min-width: 0;
}

.feature-services--blog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-index-filter {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--red-wash);
  border: 1px solid rgba(15, 61, 94, 0.16);
  font-size: 0.9rem;
}

.blog-index-filter p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
}

.blog-index-filter a {
  margin-left: auto;
  font-weight: 700;
  color: var(--red);
}

.blog-index-empty {
  padding: 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.blog-index-empty h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.blog-index-empty p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.blog-index-pagination {
  margin-top: 1.5rem;
}

.blog-search {
  display: grid;
  gap: 0.65rem;
}

.blog-search input[type="search"] {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.blog-search input[type="search"]:focus {
  outline: 2px solid rgba(15, 61, 94, 0.25);
  border-color: var(--red);
}

.blog-search .btn {
  width: 100%;
  justify-content: center;
}

.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-topics__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-topics__chip span {
  color: var(--muted);
  font-weight: 700;
}

.blog-topics__chip:hover,
.blog-topics__chip.is-active {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-wash);
}

.blog-aside__tips a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.blog-aside__tips a:hover {
  color: var(--red);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--page-aside-w);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}

.service-layout > *,
.blog-layout > * {
  min-width: 0;
  max-width: 100%;
}

.page-hero--blog {
  padding: clamp(2rem, 4.5vw, 3.25rem) 0;
}

.page-hero--blog .page-hero__title {
  max-width: 28ch;
}

.page-hero--blog .page-hero__copy {
  max-width: 68ch;
}

.blog-meta__tag {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.blog-article-section {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
}

.blog-article {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(80, 50, 30, 0.05);
}

.blog-article__media {
  margin: 0;
  background: #f3efe9;
}

.blog-article__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-article__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: #fcfaf8;
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-article__share span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.blog-article__share a {
  color: var(--red);
}

.blog-article__share a:hover {
  text-decoration: underline;
}

.blog-article__body {
  padding: clamp(1.15rem, 2.5vw, 1.75rem) clamp(1.15rem, 2.5vw, 1.85rem) 0.5rem;
}

.blog-article__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.15rem clamp(1.15rem, 2.5vw, 1.85rem) 1.35rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

.page-hero--service {
  padding: clamp(2rem, 4.5vw, 3.25rem) 0;
}

.page-hero--service .hero-points--service {
  margin: 1.1rem 0 0;
}

.page-hero--service .hero-cta--ghost {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.service-page-section {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
}

.service-article {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(80, 50, 30, 0.05);
}

.service-article__media {
  margin: 0;
  background: #f3efe9;
}

.service-article__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-article__body {
  padding: clamp(1.15rem, 2.5vw, 1.75rem) clamp(1.15rem, 2.5vw, 1.85rem) 0.5rem;
}

.service-article__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.15rem clamp(1.15rem, 2.5vw, 1.85rem) 1.35rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

.prose .svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.prose .svc-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fcfaf8;
}

.prose .svc-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.prose .svc-card p {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
}

.prose .svc-process,
.prose .svc-range {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.prose .svc-process__item {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--red);
  background: #fff;
  border: 1px solid var(--line);
  border-left-width: 3px;
  border-left-color: var(--red);
  border-radius: var(--radius);
}

.prose .svc-process__item p {
  margin: 0 0 0.35rem;
}

.prose .svc-process__item p:last-child {
  margin-bottom: 0;
  color: #555;
}

.prose .svc-inline-cta {
  margin: 1.35rem 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #fff 0%, #f1f5f9 100%);
  border: 1px solid rgba(15, 61, 94, 0.22);
}

.prose .svc-inline-cta p {
  margin: 0;
}

.blog-back {
  font-weight: 700;
  color: var(--ink);
}

.blog-back:hover {
  color: var(--red);
}

.blog-aside {
  display: grid;
  gap: 1rem;
}

.side-card--cta {
  background: linear-gradient(160deg, #fff 0%, var(--cta-wash) 100%);
  border-color: rgba(245, 158, 11, 0.28);
}

.side-card__phone {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--red);
}

.blog-aside__posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.blog-aside__post {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.7rem;
  align-items: start;
  color: inherit;
}

.blog-aside__post img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius);
  background: #eee;
}

.blog-aside__post strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--ink);
}

.blog-aside__post time {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.blog-aside__post:hover strong {
  color: var(--red);
}

.blog-aside__tips {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.blog-aside__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.blog-aside__social a {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.blog-aside__social a:hover {
  border-color: var(--red);
  color: var(--red);
}

.blog-aside__social svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.prose {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  opacity: 1;
  transform: none;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.prose .service-article__media {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f3efe9;
}

.prose .service-article__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.prose p {
  margin: 0 0 16px;
}

.prose h2,
.prose h3,
.prose h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.prose h2 {
  font-size: 28px;
  margin: 30px 0 15px;
}

.prose h3 {
  font-size: 22px;
  margin: 25px 0 12px;
}

.prose h4 {
  font-size: 18px;
  margin: 20px 0 10px;
}

.prose strong {
  font-weight: 700;
}

.prose em {
  font-style: italic;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.prose a:not(.thm-btn):not(.btn) {
  color: var(--navy);
}

.prose a.thm-btn,
.prose a.btn--primary {
  color: var(--white);
}

.prose a.btn--white {
  color: var(--navy);
}

.prose a.thm-btn--light,
.prose a.thm-btn--on-red,
.prose a.btn--outline {
  color: var(--navy);
}

.prose a.thm-btn--ghost,
.prose a.btn--ghost {
  color: var(--white);
}

.prose ul,
.prose ol {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 1.15rem;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.25rem;
}

.prose ul li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
}

.prose ol li {
  color: var(--ink);
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: var(--radius);
}

.side-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--red-wash);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.side-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.side-card p {
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 1rem;
}

.side-links {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-links a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.35;
}

.side-links a:hover {
  color: var(--red);
}

.side-links a:hover .side-list__ico {
  background: rgba(230, 51, 18, 0.14);
  color: var(--red);
}

.side-list__ico {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(230, 51, 18, 0.08);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.side-list__svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.side-list__text {
  flex: 1 1 auto;
  min-width: 0;
}

.side-list__arrow {
  flex: 0 0 auto;
  color: var(--red);
  opacity: 0.55;
  font-weight: 700;
}

.side-links a:hover .side-list__arrow {
  opacity: 1;
}

.side-list__tip {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.side-list__tip .side-list__ico {
  margin-top: 0.05rem;
}

.side-list__tip .side-list__text {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.45;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(11, 27, 58, 0.85));
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.contact-card {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-card span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-card a,
.contact-card strong {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.4;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-deep);
}

.footer-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.35rem 0;
}

.footer-cta__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.footer-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-explore {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.15rem 0 1.85rem;
}

.footer-explore__head {
  margin-bottom: 1.35rem;
}

.footer-explore__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.footer-explore__head h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.75rem;
}

.footer-explore__col h3 {
  margin: 0 0 0.7rem;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-explore__col ul {
  display: grid;
  gap: 0.32rem;
  columns: 1;
}

.footer-explore__col a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.footer-explore__col a:hover {
  color: var(--red);
  text-decoration: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1fr 1.2fr;
  gap: 0 2rem;
  padding: 2.75rem 0 2.5rem;
}

.footer-grid > :not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 2rem;
}

.footer-brand .brand {
  margin-bottom: 0.75rem;
}

.footer-brand .brand__logo {
  width: 130px;
  height: auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-brand__lead {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--white);
  text-align: justify;
}

.footer-brand__text {
  margin: 0 0 0.7rem;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  text-align: justify;
}

.footer-brand__text:last-of-type {
  margin-bottom: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  overflow: visible;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--red);
  display: block;
  width: 100%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 0.5rem;
}

.footer-col a,
.footer-col li,
.footer-address {
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: justify;
}

.footer-col a {
  display: block;
}

.footer-col a:hover {
  color: var(--red);
  text-decoration: none;
}

.footer-col--contact a,
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  text-align: left;
}

.footer-ico {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 0.05rem;
  border-radius: var(--radius);
  background: rgba(15, 61, 94, 0.18);
  color: var(--red);
  flex-shrink: 0;
}

.footer-ico svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-cities {
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  border-top: 2px solid rgba(245, 158, 11, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.65rem 0 1.75rem;
}

.footer-cities h3 {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-cities h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-cities__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem 1.15rem;
}

.footer-cities__list a {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
  padding: 0.22rem 0;
  text-align: justify;
  transition: color 0.2s ease;
}

.footer-cities__list a:hover {
  color: var(--red);
  text-decoration: none;
}

.footer-bottom {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 1rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom__credit a,
.footer-bottom__links a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom__credit a:hover,
.footer-bottom__links a:hover {
  color: var(--red);
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .top-strip__trust li:nth-child(3) {
    display: none;
  }

  .brand__text {
    display: none;
  }

  .nav {
    gap: 0.2rem 1.15rem;
  }

  .nav__link {
    font-size: 0.88rem;
  }

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

  .nav__mega-grid--cities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-cities__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .nav {
    gap: 0.2rem 1rem;
  }

  .header-call__text small,
  .header-cta__text small {
    display: none;
  }
}

@media (max-width: 1024px) {
  .services-grid,
  .gallery-grid,
  .contact-cards,
  .feature-services,
  .usp-grid,
  .coverage-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .presence-strip__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__layout,
  .about-band {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.75rem;
  }

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

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .branch-card {
    flex-basis: calc((100% - 2.5rem) / 3);
    max-width: calc((100% - 2.5rem) / 3);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.5rem;
  }

  .footer-grid > :not(:first-child) {
    padding-left: 1.5rem;
  }

  .footer-grid > :nth-child(odd):not(:first-child) {
    border-left: 0;
    padding-left: 0;
  }

  .footer-grid > :nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 1.5rem;
    margin-top: 0.25rem;
  }

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

  .footer-explore__grid {
    grid-template-columns: 1fr 1fr;
  }

  .top-strip__trust li:nth-child(3) {
    display: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
    order: 3;
  }

  .blog-slider__nav--prev {
    left: 8px;
  }

  .blog-slider__nav--next {
    right: 8px;
  }

  .branch-card {
    flex-basis: calc((100% - 2.5rem) / 3);
    max-width: calc((100% - 2.5rem) / 3);
  }

  .header-call,
  .header-ctas {
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: min(78vh, 640px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.35rem 1.15rem 1rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(20, 10, 12, 0.14);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s ease;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 120;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__link {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line);
    width: 100%;
    min-height: 44px;
  }

  .nav__dropdown {
    width: 100%;
    height: auto;
    display: block;
    flex-direction: column;
    align-items: stretch;
  }

  .nav__dropdown > .nav__link {
    width: 100%;
    justify-content: space-between;
  }

  .nav__dropdown.is-open > .nav__link {
    color: var(--red);
    border-bottom-color: transparent;
  }

  .nav__dropdown.is-open .nav__caret {
    transform: rotate(180deg);
  }

  .nav > .nav__link {
    height: auto;
  }

  .nav__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    clip-path: none;
    border: 0;
    padding: 0 0 0.55rem 0.35rem;
    min-width: 0;
    max-width: none;
    display: none;
    background: var(--red-wash);
    border-radius: var(--radius);
    margin: 0 0 0.45rem;
  }

  .nav__menu--cities {
    grid-template-columns: 1fr;
    min-width: 0;
    max-width: none;
  }

  .nav__dropdown:hover .nav__menu,
  .nav__dropdown:focus-within .nav__menu,
  .nav__dropdown:hover .nav__mega,
  .nav__dropdown:focus-within .nav__mega {
    display: none;
  }

  .nav__dropdown.is-open .nav__menu {
    display: block;
  }

  .nav__dropdown.is-open .nav__menu--cities {
    display: grid;
  }

  .nav__mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    display: none;
    width: 100%;
  }

  .nav__dropdown.is-open .nav__mega {
    display: block;
  }

  .nav__mega-panel {
    max-width: none;
    margin: 0 0 0.45rem;
    box-shadow: none;
    border: 0;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .nav__mega-intro {
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 0.95rem;
  }

  .nav__mega-cta {
    align-self: flex-start;
  }

  .nav__mega-title {
    font-size: 1rem;
  }

  .nav__mega-copy {
    font-size: 0.78rem;
    margin-bottom: 0.55rem;
  }

  .nav__mega-grid {
    grid-template-columns: 1fr !important;
    padding: 0.65rem 0.95rem 0.45rem;
    gap: 0.65rem;
  }

  .nav__mega-col-title {
    margin-bottom: 0.25rem;
  }

  .nav__mega-list a {
    padding: 0.45rem 0;
    font-size: 0.88rem;
  }

  .nav__mega-foot {
    padding: 0.45rem 0.95rem 0.65rem;
  }

  .nav__menu a {
    white-space: normal;
    padding: 0.7rem 0.85rem;
  }

  .usp-bar__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.75rem;
  }

  .usp-bar__copy {
    justify-content: center;
  }

  .usp-bar__cta {
    width: 100%;
    justify-content: space-between;
  }

  .intro-grid,
  .quote,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .blog-layout,
  .service-layout,
  .city-layout {
    grid-template-columns: 1fr;
  }

  .blog-index-intro {
    grid-template-columns: 1fr;
  }

  .feature-services--blog {
    grid-template-columns: 1fr;
  }

  .blog-aside,
  .city-aside {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .prose .svc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 16px;
  }

  :root {
    --header-h: 64px;
    --site-chrome-h: 96px;
  }

  body {
    padding-bottom: 0;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .top-strip {
    padding: 0.22rem 0;
  }

  .top-strip__inner {
    justify-content: center;
  }

  .top-strip__trust {
    justify-content: center;
  }

  .top-strip__trust li:nth-child(n + 2),
  .top-strip__right {
    display: none;
  }

  .site-header {
    height: var(--header-h);
  }

  .site-header .brand__logo,
  .brand__logo,
  .footer-brand .brand__logo {
    width: min(130px, 38vw);
    height: auto;
  }

  .header-call__text,
  .header-cta__text {
    display: none;
  }

  .header-cta {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .header-cta:hover {
    transform: none;
    box-shadow: none;
  }

  .float-dock {
    left: auto;
    right: 0.85rem;
    bottom: 5.5rem;
  }

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

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .back-top {
    right: 10px;
    bottom: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
  }

  .services-grid,
  .why-grid,
  .stats,
  .process-grid,
  .cities-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid > :not(:first-child) {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 1.35rem;
    margin-top: 1.35rem;
    grid-column: auto;
  }

  .footer-cities__list,
  .footer-explore__grid,
  .gallery-grid,
  .contact-cards,
  .feature-services,
  .usp-grid,
  .presence-strip__inner,
  .about-band,
  .hero__layout,
  .coverage-list,
  .cover-grid {
    grid-template-columns: 1fr;
  }

  .branch-card {
    flex-basis: calc((100% - 1.25rem) / 2);
    max-width: calc((100% - 1.25rem) / 2);
  }

  .hero {
    overflow: hidden;
  }

  .hero--slider {
    height: calc(100vh - var(--site-chrome-h));
    height: calc(100svh - var(--site-chrome-h));
    min-height: calc(100vh - var(--site-chrome-h));
    min-height: calc(100svh - var(--site-chrome-h));
  }

  .hero--slider .hero__layout {
    margin-left: auto;
    margin-right: auto;
    padding: 3.25rem 0 4.25rem;
    padding-right: 3.25rem;
    max-width: none;
    width: min(100% - 2rem, var(--max));
  }

  .hero-copy-wrap {
    min-height: 0;
  }

  .hero--slider .hero__title {
    font-size: clamp(1.28rem, 5.2vw, 1.55rem);
    max-width: 100%;
  }

  .hero--slider .hero__sub {
    font-size: 1rem;
  }

  .hero--slider .hero__lead {
    font-size: 0.98rem;
  }

  .hero-points {
    gap: 0.6rem 0.9rem;
    margin: 1.15rem 0 1.4rem;
    padding: 0.1rem 0;
  }

  .hero-points li {
    font-size: 0.78rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-nav {
    width: 38px;
    height: 38px;
  }

  .hero-nav svg {
    width: 16px;
    height: 16px;
  }

  .hero-nav--prev {
    left: 8px;
  }

  .hero-nav--next {
    right: 10px;
  }

  .side-dock {
    width: 42px;
    flex-direction: column;
    gap: 0.4rem;
  }

  .side-dock--left {
    left: 10px;
    right: auto;
    bottom: 1rem;
    top: auto;
  }

  .side-dock--right {
    right: 10px;
    left: auto;
    bottom: 1rem;
    top: auto;
  }

  .side-dock--right.is-raised {
    bottom: calc(1rem + 42px + 1.1rem);
  }

  .hero-footer {
    bottom: 1rem;
    gap: 0.65rem;
  }

  .hero-scroll__label {
    font-size: 0.62rem;
  }

  .side-dock__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
  }

  .side-dock__icon svg {
    width: 19px;
    height: 19px;
  }

  .back-top {
    right: 10px;
    bottom: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
  }

  .hero__copy-block {
    max-width: none;
    min-width: 0;
  }

  .hero__content {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }

  .hero__eyebrow {
    font-size: 0.68rem;
    margin-bottom: 0.5rem;
  }

  .hero__title {
    max-width: none;
    font-size: 1.7rem;
    line-height: 1.25;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero .hero-cta {
    width: 100%;
    justify-content: center;
  }

  .from-right,
  .fadeInUp,
  .fadeInLeft,
  .fadeInRight,
  .slideInLeft,
  .slideInRight {
    transform: none;
    opacity: 1;
  }

  .section {
    padding: 2.25rem 0;
  }

  .section-head {
    overflow: visible;
    margin-bottom: 1.35rem;
  }

  .about-band__media,
  .about-band__media img {
    min-height: 240px;
  }

  .brand__text {
    display: none;
  }

  .section__title {
    max-width: none;
    font-size: 1.45rem;
  }

  .cta-band,
  .cta-band--flush {
    padding: 1.75rem 0;
  }

  .cta-band h2 {
    font-size: 1.4rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .fadeInUp,
  .fadeInLeft,
  .fadeInRight,
  .slideInLeft,
  .slideInRight,
  .zoomIn,
  .title-letter,
  .process-step,
  .from-right,
  .clip-reveal,
  .media-reveal,
  .media-reveal img {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .media-reveal::after {
    display: none;
  }
}


/* ========== Homepage only — Trusted Packers inspired theme ========== */
/* Fonts/colors matched to trustedpackersandmover.com; TransWorld logo & images kept */
body.page-home {
  --primary: #e63312;
  --primary-dark: #b52208;
  --accent: #ff8c00;
  --navy: #0b1b3a;
  --navy-soft: #142248;
  --navy-dark: #071428;
  --navy-deep: #050e1c;

  --cta: var(--primary);
  --cta-dark: var(--primary-dark);
  --cta-deep: #8f1a08;
  --cta-soft: rgba(230, 51, 18, 0.12);
  --cta-wash: #fff5f2;

  --red: var(--primary);
  --red-dark: var(--primary-dark);
  --red-deep: var(--cta-deep);
  --red-soft: var(--cta-soft);
  --red-wash: var(--cta-wash);

  --secondary: var(--accent);
  --secondary-dark: #e67a00;
  --gold: var(--accent);
  --black: var(--navy);
  --ink: #1e293b;
  --muted: #475569;
  --line: rgba(11, 27, 58, 0.12);
  --line-dark: rgba(11, 27, 58, 0.1);
  --surface: #f8fafc;
  --radius: 12px;

  --font-display: "Rajdhani", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

body.page-home,
body.page-home button,
body.page-home input,
body.page-home select,
body.page-home textarea {
  font-family: var(--font-body);
  color: var(--muted);
}

body.page-home .site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

body.page-home .site-header .brand__logo {
  width: auto;
  height: 48px;
  max-width: 190px;
}

body.page-home .nav__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e293b;
}

body.page-home .nav__link.is-active,
body.page-home .nav__link:hover {
  color: var(--primary);
  background: rgba(230, 51, 18, 0.06);
}

body.page-home .top-strip {
  background: var(--navy);
  border-bottom: 0;
}

body.page-home .presence-strip {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

body.page-home .presence-item strong {
  font-family: var(--font-display);
  font-weight: 700;
}

body.page-home .section__title,
body.page-home .hero__title,
body.page-home .page-hero__title,
body.page-home .cta-band h2,
body.page-home .footer-cta h2,
body.page-home .footer-cities h3,
body.page-home .footer-col h4,
body.page-home .about-band__badge strong,
body.page-home .side-card h2,
body.page-home .side-card h3,
body.page-home h1,
body.page-home h2,
body.page-home h3,
body.page-home h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
}

body.page-home .section__title .is-accent,
body.page-home .section__title em,
body.page-home .section__title span {
  color: var(--primary);
  font-style: normal;
}

body.page-home .eyebrow,
body.page-home .section-head__eyebrow,
body.page-home .section-head__eyebrow-text,
body.page-home .section-head__chip,
body.page-home .section-head__label,
body.page-home .section-head__mark-label,
body.page-home .section-head__tag,
body.page-home .section-head__pill {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

body.page-home .hero__shade {
  background:
    linear-gradient(105deg, rgba(11, 27, 58, 0.92) 0%, rgba(11, 27, 58, 0.78) 42%, rgba(11, 27, 58, 0.35) 70%, rgba(11, 27, 58, 0.12) 100%);
}

body.page-home .hero--slider .hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  max-width: min(100%, 18ch);
}

body.page-home .hero--slider .hero__title .hero__brand {
  color: var(--accent);
  text-shadow:
    0 0 10px rgba(255, 140, 0, 0.45),
    0 2px 14px rgba(0, 0, 0, 0.35);
  animation: none;
}

body.page-home .hero__badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
}

body.page-home .hero__sub,
body.page-home .hero__lead {
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

body.page-home .hero-cta--solid {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 0;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 20px rgba(230, 51, 18, 0.35);
}

body.page-home .hero-cta--solid:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--cta-deep));
  border-color: transparent;
  transform: translateY(-2px);
}

body.page-home .hero-cta--ghost {
  border-radius: 8px;
  border-width: 2px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.page-home .thm-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(230, 51, 18, 0.28);
}

body.page-home .thm-btn > span {
  background-color: rgba(0, 0, 0, 0.22);
}

body.page-home .thm-btn:hover > span {
  background-color: var(--white);
  color: var(--primary);
}

body.page-home .thm-btn::before,
body.page-home .thm-btn::after {
  background-color: var(--navy);
}

body.page-home .thm-btn--light {
  color: var(--primary);
}

body.page-home .thm-btn--light > span {
  background-color: var(--primary);
}

body.page-home .thm-btn--light::before,
body.page-home .thm-btn--light::after {
  background-color: var(--primary-dark);
}

body.page-home .btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.page-home .btn--primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--cta-deep));
}

body.page-home .btn--outline {
  color: var(--primary);
  border-color: var(--primary);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

body.page-home .btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

body.page-home .nav__mega-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 22px;
  font-family: var(--font-display);
}

body.page-home .nav__mega-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--cta-deep));
}

body.page-home .header-cta--call .header-cta__icon,
body.page-home .side-dock__icon--call {
  background: var(--primary);
}

body.page-home .side-dock__icon--call::before {
  border-color: rgba(230, 51, 18, 0.45);
}

body.page-home .header-cta--call:hover {
  border-color: rgba(230, 51, 18, 0.35);
}

body.page-home .header-cta--call .header-cta__text strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
}

body.page-home .side-dock__icon--msg {
  background: var(--navy);
}

body.page-home .page-hero {
  background:
    linear-gradient(135deg, rgba(11, 27, 58, 0.94), rgba(20, 34, 72, 0.9)),
    url("../image/packing-home.jpg") center/cover no-repeat;
}

body.page-home .cta-band {
  background:
    linear-gradient(135deg, rgba(11, 27, 58, 0.94), rgba(20, 34, 72, 0.9)),
    url("../image/packing-home.jpg") center/cover no-repeat;
  border-radius: 12px;
}

body.page-home .cta-band h2,
body.page-home .cta-band p,
body.page-home .hero__title,
body.page-home .page-hero__title {
  color: #fff;
}

body.page-home .site-footer {
  background: var(--navy);
}

body.page-home .footer-cta,
body.page-home .footer-explore {
  background: var(--navy-dark);
}

body.page-home .footer-cities {
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  border-top-color: rgba(230, 51, 18, 0.7);
}

body.page-home .footer-col h4::after,
body.page-home .footer-cities h3::after {
  background: var(--primary);
}

body.page-home .side-card--cta {
  background: linear-gradient(160deg, #fff 0%, var(--cta-wash) 100%);
  border-color: rgba(230, 51, 18, 0.22);
  border-radius: 12px;
}

body.page-home .back-top {
  background: var(--navy);
  border-radius: 9px;
}

body.page-home .back-top:hover {
  background: var(--primary);
}

body.page-home .service,
body.page-home .feature-service,
body.page-home .why-item,
body.page-home .branch-card,
body.page-home .blog-slide {
  border-radius: 12px;
}

body.page-home .prose a:not(.thm-btn):not(.btn) {
  color: var(--primary);
}

@media (max-width: 640px) {
  body.page-home .site-header .brand__logo {
    height: 52px;
    max-width: 180px;
  }

  body.page-home .hero--slider .hero__title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }
}
/* ========== Homepage redesign blocks (TPM-style structure) ========== */
.tw-marquee {
  background: linear-gradient(90deg, var(--primary, #e63312), var(--primary-dark, #b52208));
  padding: 0.45rem 0;
  overflow: hidden;
}

body.page-home .tw-marquee {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.tw-marquee p {
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
  animation: twMarquee 26s linear infinite;
  letter-spacing: 0.02em;
}

@keyframes twMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tw-quotebar {
  background: linear-gradient(135deg, #0b1b3a, #142248);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

body.page-home .tw-quotebar {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.tw-quotebar h2 {
  margin: 0 0 0.45rem;
  color: #fff !important;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  letter-spacing: 0.08em;
}

.tw-quotebar p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.tw-quotebar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tw-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.55rem;
  color: var(--primary, #e63312);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.page-home .tw-label {
  color: var(--primary);
}

.tw-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.tw-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--navy, #0b1b3a);
}

body.page-home .tw-title {
  color: var(--navy);
}

.tw-title span {
  color: var(--primary, #e63312);
}

body.page-home .tw-title span {
  color: var(--primary);
}

.tw-lead {
  max-width: 62ch;
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.tw-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.tw-feature {
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  background: #f8fafc;
  border-left: 3px solid var(--primary, #e63312);
}

body.page-home .tw-feature {
  border-left-color: var(--primary);
}

.tw-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy, #0b1b3a);
  text-transform: uppercase;
}

.tw-feature span {
  font-size: 0.82rem;
  color: var(--muted);
}

.tw-cert-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.tw-cert-intro .tw-label,
.tw-cert-intro .tw-title,
.tw-cert-intro .tw-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tw-cert-intro .tw-label {
  justify-content: center;
}

.tw-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.5rem;
}

.tw-cert-card {
  background: #fff;
  border: 1px solid var(--line, #e5e7eb);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 27, 58, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.tw-cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 27, 58, 0.12);
  border-color: #e63312;
}

.tw-cert-card__media {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem;
  border: 0;
  background: #f8fafc;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}

.tw-cert-card__media img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: top center;
  display: block;
  transition: transform 0.3s ease;
}

.tw-cert-card:hover .tw-cert-card__media img {
  transform: scale(1.04);
}

.tw-cert-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  background: linear-gradient(135deg, #e63312, #c42a0f);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(230, 51, 18, 0.35);
  font-family: var(--font-display, "Rajdhani", sans-serif);
}

.tw-cert-zoom {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(11, 27, 58, 0.82);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tw-cert-zoom svg {
  width: 16px;
  height: 16px;
}

.tw-cert-card__media:hover .tw-cert-zoom,
.tw-cert-card:hover .tw-cert-zoom {
  opacity: 1;
}

.tw-cert-card__body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid #f1f5f9;
}

.tw-cert-card__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0b1b3a;
  line-height: 1.2;
  font-family: var(--font-display, "Rajdhani", sans-serif);
}

.tw-cert-card__body p {
  margin: 0 0 0.75rem;
  color: var(--muted, #64748b);
  font-size: 0.85rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tw-cert-meta {
  font-size: 0.75rem;
  color: #334155;
  background: #f8fafc;
  border: 1px dashed #e2e8f0;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tw-cert-meta span {
  color: #e63312;
}

.tw-cert-card__actions {
  margin-top: auto;
  display: flex;
  gap: 0.65rem;
  padding: 0;
}

.tw-cert-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-family: var(--font-display, "Rajdhani", sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.tw-cert-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tw-cert-btn--view {
  background: linear-gradient(135deg, #e63312, #c42a0f);
  color: #fff !important;
}

.tw-cert-btn--view span,
.tw-cert-btn--view svg {
  color: #fff !important;
}

.tw-cert-btn--view:hover {
  box-shadow: 0 6px 18px rgba(230, 51, 18, 0.4);
  transform: translateY(-1px);
}

.tw-cert-btn--download {
  background: #0b1b3a;
  color: #fff;
}

.tw-cert-btn--download:hover {
  background: #142248;
  color: #fff;
  transform: translateY(-1px);
}

.tw-cert-trustbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 2rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid #eef2f7;
}

.tw-cert-trustbar div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  font-family: var(--font-display, "Rajdhani", sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tw-cert-trustbar svg {
  width: 17px;
  height: 17px;
  color: #e63312;
  flex-shrink: 0;
}

.tw-cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(7, 15, 32, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tw-cert-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.tw-cert-lightbox[hidden] {
  display: none !important;
}

.tw-cert-lightbox.is-open:not([hidden]) {
  display: flex !important;
  opacity: 1;
  visibility: visible;
}

.tw-cert-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  background: #fff;
  object-fit: contain;
}

.tw-cert-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tw-cert-lightbox__close:hover {
  background: #e63312;
  border-color: #e63312;
  transform: rotate(90deg);
}

@media (max-width: 980px) {
  .tw-cert-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 640px) and (max-width: 980px) {
  .tw-cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }
}

/* Home icons + readable color pairs */
.tw-ico {
  width: 1em;
  height: 1em;
  display: block;
  flex-shrink: 0;
}

.tw-label--icon::before {
  display: none;
}

.tw-label__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(230, 51, 18, 0.12);
  color: #e63312;
}

.tw-label__ico .tw-ico {
  width: 0.85rem;
  height: 0.85rem;
}

.tw-section-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.55rem;
  vertical-align: -0.35em;
  border-radius: 8px;
  background: rgba(230, 51, 18, 0.12);
  color: #e63312;
}

.tw-section-ico .tw-ico {
  width: 1.05rem;
  height: 1.05rem;
}

.tw-section-ico--on-dark {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.tw-quotebar h2,
.cta-band h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.cta-band h2 {
  justify-content: flex-start;
}

.presence-item {
  justify-items: center;
}

.presence-item__ico {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 0.2rem;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.presence-item__ico .tw-ico {
  width: 1.05rem;
  height: 1.05rem;
}

.tw-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
}

.tw-feature__ico {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e63312;
  color: #fff;
}

.tw-feature__ico .tw-ico {
  width: 1.05rem;
  height: 1.05rem;
}

.tw-feature strong {
  color: #0b1b3a;
}

.tw-feature span {
  color: #334155;
}

.tw-feature span.tw-feature__ico,
.tw-feature__ico,
.tw-feature__ico .tw-ico,
.tw-feature__ico svg {
  color: #fff !important;
  fill: #fff !important;
  stroke: none !important;
}

.tw-feature__ico path {
  fill: #fff !important;
  stroke: none !important;
}

.tw-cert-card__body h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tw-cert-title-ico {
  display: inline-flex;
  color: #e63312;
  flex-shrink: 0;
}

.tw-cert-title-ico .tw-ico {
  width: 1.15rem;
  height: 1.15rem;
}

.tw-trust-ico {
  display: inline-flex;
  color: #e63312;
}

.tw-trust-ico .tw-ico {
  width: 17px;
  height: 17px;
}

.tw-cert-trustbar div {
  color: #0b1b3a;
}

.feature-service__body h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-service__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  background: rgba(230, 51, 18, 0.1);
  color: #e63312;
  flex-shrink: 0;
}

.feature-service__ico .tw-ico {
  width: 0.95rem;
  height: 0.95rem;
}

.feature-service__body > p {
  color: #334155;
}

.feature-service__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #e63312;
}

.feature-service__link .tw-ico {
  width: 0.9rem;
  height: 0.9rem;
}

.tw-table-title__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 8px;
  background: #0b1b3a;
  color: #fff;
}

.tw-table-title__ico .tw-ico {
  width: 0.9rem;
  height: 0.9rem;
}

.tw-price-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #334155;
}

.tw-price-note__ico {
  color: #e63312;
  margin-top: 0.1rem;
}

.tw-price-note__ico .tw-ico {
  width: 1.1rem;
  height: 1.1rem;
}

.process-step__icon {
  background: rgba(230, 51, 18, 0.12);
  color: #e63312;
}

.process-step__icon svg,
.process-step__icon .tw-ico {
  width: 26px;
  height: 26px;
  fill: currentColor;
  stroke: none;
}

.process-step h3 {
  color: #0b1b3a;
}

.process-step p {
  color: #334155;
}

.tw-faq-q__text {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #0b1b3a;
}

.tw-faq-q__ico {
  display: inline-flex;
  color: #e63312;
  margin-top: 0.1rem;
}

.tw-faq-q__ico .tw-ico {
  width: 1.05rem;
  height: 1.05rem;
}

.tw-faq-a p {
  color: #334155;
}

.tw-review__stars {
  display: flex;
  gap: 0.2rem;
  color: #f59e0b;
  margin-bottom: 0.7rem;
}

.tw-review__stars .tw-ico {
  width: 1rem;
  height: 1rem;
}

.tw-review p {
  color: #334155;
}

.tw-city-chips a {
  align-items: center;
  gap: 0.4rem;
  color: #0b1b3a;
}

.tw-city-chips a .tw-ico {
  width: 0.85rem;
  height: 0.85rem;
  color: #e63312;
}

.tw-city-chips a:hover .tw-ico {
  color: #e63312;
}

.tw-btn-ico {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.tw-btn-ico__mark {
  display: inline-flex;
  color: currentColor;
}

.tw-btn-ico__mark .tw-ico {
  width: 1rem;
  height: 1rem;
}

.tw-lead {
  color: #334155;
}

.thm-btn > span .tw-ico {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

body.page-home .tw-quotebar .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

body.page-home .tw-quotebar .btn--ghost:hover {
  background: #fff;
  color: #0b1b3a;
  border-color: #fff;
}

body.page-home .cta-band h2,
body.page-home .cta-band p,
body.page-home .tw-quotebar h2 {
  color: #fff;
}

.tw-table-title {
  margin: 1.75rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy, #0b1b3a);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.tw-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.tw-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.tw-price-table thead th {
  background: var(--navy, #0b1b3a);
  color: #fff;
  text-align: left;
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.page-home .tw-price-table thead th {
  background: var(--navy);
}

.tw-price-table th,
.tw-price-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.9rem;
}

.tw-price-table tbody th {
  color: var(--primary, #e63312);
  font-weight: 700;
  text-align: left;
}

body.page-home .tw-price-table tbody th {
  color: var(--primary);
}

.tw-price-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.tw-price-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.tw-faq {
  max-width: 920px;
}

.tw-faq-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.tw-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.tw-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy, #0b1b3a);
}

.tw-faq-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(230, 51, 18, 0.1);
  color: var(--primary, #e63312);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

body.page-home .tw-faq-ico {
  background: var(--cta-soft);
  color: var(--primary);
}

.tw-faq-a {
  display: none;
  padding: 0 1.15rem 1rem;
}

.tw-faq-a p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tw-faq-item.is-open .tw-faq-a {
  display: block;
}

.tw-faq-item.is-open .tw-faq-ico {
  transform: rotate(45deg);
}

.tw-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.tw-review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(11, 27, 58, 0.05);
}

.tw-review__quote {
  font-size: 2.5rem;
  line-height: 0.8;
  color: var(--primary, #e63312);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

body.page-home .tw-review__quote {
  color: var(--primary);
}

.tw-review p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.tw-review__user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.tw-review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary, #e63312), var(--accent, #ff8c00));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.tw-review__user strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy, #0b1b3a);
  text-transform: uppercase;
  font-size: 0.92rem;
}

.tw-review__user small {
  color: var(--muted);
  font-size: 0.78rem;
}

.tw-city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.tw-city-chips a {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy, #0b1b3a);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.tw-city-chips a:hover {
  border-color: var(--primary, #e63312);
  color: var(--primary, #e63312);
  background: #fff5f2;
}

body.page-home .tw-city-chips a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--cta-wash);
}

/* Home — Cities We Cover (reference layout) */
.tw-cities-section {
  background: #faf5f2;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.tw-cities-section__inner {
  text-align: left;
}

.tw-cities-section__label {
  margin-bottom: 0.65rem;
}

.tw-cities-section__title {
  margin-bottom: 0.6rem;
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  letter-spacing: 0.02em;
}

.tw-cities-section__lead {
  max-width: 56ch;
  margin-bottom: 1.65rem;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.65;
}

.tw-cities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 769px) {
  .tw-cities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .tw-cities-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.tw-cities-grid__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.65rem 0.95rem;
  background: #fff;
  border: 1px solid rgba(11, 27, 58, 0.1);
  border-radius: 10px;
  color: #0b1b3a;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.tw-cities-grid__item:hover {
  border-color: rgba(230, 51, 18, 0.4);
  box-shadow: 0 6px 18px rgba(11, 27, 58, 0.07);
  color: var(--primary);
}

.tw-cities-grid__ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.tw-cities-grid__ico .tw-ico {
  width: 1rem;
  height: 1rem;
}

.tw-cities-grid__name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.tw-cities-section__cta {
  margin-top: 2rem;
  text-align: center;
}

.tw-cities-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.4rem 0.4rem 0.4rem 1.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a2f 0%, #e63312 52%, #b52208 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(230, 51, 18, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.tw-cities-cta-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(230, 51, 18, 0.34);
  color: #fff;
}

.tw-cities-cta-btn__text {
  padding-right: 1.1rem;
}

.tw-cities-cta-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  flex-shrink: 0;
}

.tw-cities-cta-btn__icon .tw-ico {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 768px) {
  .tw-cities-grid {
    gap: 0.55rem;
  }

  .tw-cities-grid__item {
    min-height: 44px;
    padding: 0.55rem 0.75rem;
    font-size: 0.84rem;
  }

  .tw-cities-cta-btn {
    width: 100%;
    max-width: 22rem;
    justify-content: space-between;
    padding-left: 1.35rem;
  }
}

@media (max-width: 960px) {
  .tw-cert-grid,
  .tw-review-grid {
    grid-template-columns: 1fr;
  }

  .tw-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== TPM-matched header + hero (keep megamenu) ========== */
:root {
  --primary: #e63312;
  --primary-dark: #b52208;
  --accent: #ff8c00;
  --header-h: 100px;
}

.site-chrome {
  background: #fff;
}

.tw-marquee {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 7px 0;
}

.tw-marquee p {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.top-strip {
  background: #0b1b3a;
  border-bottom: 0;
  padding: 7px 0;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.top-strip__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.top-strip__left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  text-decoration: none;
}

.top-strip__left a:hover {
  color: var(--accent);
}

.top-strip__ico {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.top-strip__ico svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-strip__social {
  display: flex;
  gap: 7px;
}

.top-strip__social a {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-strip__social a:hover {
  background: var(--primary);
  color: #fff;
}

.top-strip__social svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.site-header {
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid #f1f5f9;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  max-width: 1280px;
}

.brand__logo {
  width: auto;
  height: 85px;
  max-width: 360px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav__link {
  padding: 7px 13px;
  border-radius: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__link.is-active,
.nav__link:hover,
.nav__dropdown.is-active > .nav__link {
  color: var(--primary);
  background: rgba(230, 51, 18, 0.06);
}

.nav__home-ico,
.site-header .nav__home-ico,
.nav .nav__home-ico {
  width: 18px !important;
  height: 18px !important;
  margin-right: 0.28rem !important;
  transform: translate(2px, -3px);
  flex-shrink: 0;
}

.nav__home-ico svg,
.site-header .nav__home-ico svg,
.nav .nav__home-ico svg {
  width: 17px !important;
  height: 17px !important;
}

@media (max-width: 980px) {
  .nav__home-ico,
  .site-header .nav__home-ico,
  .nav .nav__home-ico {
    width: 20px !important;
    height: 20px !important;
    transform: translate(3px, -4px);
  }

  .nav__home-ico svg,
  .site-header .nav__home-ico svg,
  .nav .nav__home-ico svg {
    width: 19px !important;
    height: 19px !important;
  }
}

.nav__enq {
  margin-left: 6px;
  padding: 9px 20px !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 13px;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase !important;
  box-shadow: 0 4px 14px rgba(230, 51, 18, 0.35);
  text-decoration: none;
  white-space: nowrap;
}

.nav__enq:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 51, 18, 0.45);
  color: #fff !important;
}

/* Hero — TPM layout */
.hero.hero--slider.tw-hero {
  position: relative;
  height: 80vh;
  min-height: 80vh;
  max-height: none;
  overflow: hidden;
  background: #0b1b3a;
}

.hero.hero--slider.tw-hero .hero-slides {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.hero.hero--slider.tw-hero .hero-slide {
  position: relative;
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 1;
}

.hero.hero--slider.tw-hero .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero.hero--slider.tw-hero .hero-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  max-width: 720px;
  z-index: 2;
}

.hero.hero--slider.tw-hero .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(230, 51, 18, 0.85);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 0;
}

.hero.hero--slider.tw-hero .hero__title {
  margin: 0 0 16px;
  max-width: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero.hero--slider.tw-hero .hero__title span {
  color: var(--accent);
}

.hero.hero--slider.tw-hero .hero__sub {
  margin: 0 0 26px;
  max-width: 520px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  text-transform: none;
  letter-spacing: 0;
}

.hero.hero--slider.tw-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero.hero--slider.tw-hero .hero-cta--solid {
  padding: 14px 30px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(230, 51, 18, 0.4);
  text-decoration: none;
}

.hero.hero--slider.tw-hero .hero-cta--solid:hover {
  transform: translateY(-3px);
  color: #fff;
}

.hero.hero--slider.tw-hero .hero-cta--ghost {
  padding: 14px 30px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.hero.hero--slider.tw-hero .hero-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero.hero--slider.tw-hero .hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.hero.hero--slider.tw-hero .hero-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero.hero--slider.tw-hero .hero-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero.hero--slider.tw-hero .hero-nav--prev { left: 20px; }
.hero.hero--slider.tw-hero .hero-nav--next { right: 20px; }

.hero.hero--slider.tw-hero .hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero.hero--slider.tw-hero .hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s;
}

.hero.hero--slider.tw-hero .hero-dot.is-active,
.hero.hero--slider.tw-hero .hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}

@media (max-width: 980px) {
  .brand__logo {
    height: 68px;
    max-width: 300px;
  }

  .site-header {
    height: 84px;
  }

  :root {
    --header-h: 84px;
  }

  .nav__enq {
    margin: 8px 16px 16px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .top-strip__social {
    display: none;
  }

  .brand__logo {
    height: 58px;
    max-width: 240px;
  }

  .site-header {
    height: 76px;
  }

  :root {
    --header-h: 76px;
  }

  .hero.hero--slider.tw-hero {
    height: 80vh;
    min-height: 80vh;
    max-height: none;
  }

  .hero.hero--slider.tw-hero .hero-slide__content {
    padding: 0 24px;
    max-width: 100%;
  }

  .hero.hero--slider.tw-hero .hero__title {
    font-size: 36px;
  }

  .hero.hero--slider.tw-hero .hero-nav {
    display: none;
  }
}

/* Force TPM hero track over legacy absolute fade slider */
.hero.hero--slider.tw-hero .hero-slides {
  position: relative !important;
  inset: auto !important;
  display: flex !important;
  height: 100% !important;
  width: 100% !important;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1) !important;
}

.hero.hero--slider.tw-hero .hero-slide {
  position: relative !important;
  inset: auto !important;
  min-width: 100% !important;
  width: 100% !important;
  height: 100% !important;
  flex-shrink: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

.hero.hero--slider.tw-hero .hero__shade,
.hero.hero--slider.tw-hero .hero__layout,
.hero.hero--slider.tw-hero .hero-footer {
  display: none !important;
}

/* Keep slide captions visible over track slides */
.hero.hero--slider.tw-hero .hero-slide__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(11, 27, 58, 0.88) 0%,
    rgba(11, 27, 58, 0.72) 42%,
    rgba(11, 27, 58, 0.35) 72%,
    rgba(11, 27, 58, 0.15) 100%
  );
}

.hero.hero--slider.tw-hero .hero-slide__content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px !important;
  max-width: 740px !important;
  width: 100%;
  box-sizing: border-box;
  pointer-events: auto;
}

.hero.hero--slider.tw-hero .hero__title {
  color: #fff !important;
}

.hero.hero--slider.tw-hero .hero__title span {
  color: #ff8c00 !important;
}

.hero.hero--slider.tw-hero .hero__brand-line {
  margin: -4px 0 12px;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ff8c00 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero.hero--slider.tw-hero .hero__sub {
  color: rgba(255, 255, 255, 0.9) !important;
}

.hero.hero--slider.tw-hero .hero-points {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.hero.hero--slider.tw-hero .hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
}

.hero.hero--slider.tw-hero .hero-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff8c00;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero.hero--slider.tw-hero .hero-slide__content {
    padding: 0 24px !important;
  }

  .hero.hero--slider.tw-hero .hero__brand-line {
    font-size: 15px;
  }

  .hero.hero--slider.tw-hero .hero-points {
    gap: 8px 12px;
  }

  .hero.hero--slider.tw-hero .hero-points li {
    font-size: 12px;
  }
}

/* ========== Font scale, logo, theme + TPM quote modal ========== */
:root {
  --primary: #e63312;
  --primary-dark: #b52208;
  --accent: #ff8c00;
  --navy: #0b1b3a;
  --navy-soft: #142248;
  --navy-dark: #071428;
  --navy-deep: #050e1c;
  --cta: #e63312;
  --cta-dark: #b52208;
  --cta-deep: #8f1a08;
  --red: #e63312;
  --red-dark: #b52208;
  --header-h: 90px;
  --font-display: "Rajdhani", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
}

.brand__logo,
.site-header .brand__logo,
body.page-home .site-header .brand__logo {
  height: 48px !important;
  max-width: 190px !important;
  width: auto !important;
  /* Recolor solid logo from red to navy primary */
  filter: brightness(0) saturate(100%) invert(12%) sepia(38%) saturate(1604%) hue-rotate(186deg) brightness(92%) contrast(94%);
}

.site-footer .brand__logo,
.footer-brand .brand__logo {
  filter: brightness(0) invert(1) !important;
  height: 52px !important;
  max-width: 200px !important;
  width: auto !important;
}

.site-header {
  height: 72px;
}

:root {
  --header-h: 72px;
}

.nav__link {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  padding: 8px 14px !important;
  letter-spacing: 0.06em !important;
  color: #1e293b !important;
}

.nav__enq {
  font-size: 12px !important;
  padding: 8px 16px !important;
}

.tw-marquee p {
  font-size: 12px !important;
}

.top-strip__left a {
  font-size: 12px !important;
}

.tw-title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem) !important;
}

body.page-home .hero--slider .hero__title,
.hero.hero--slider.tw-hero .hero__title {
  font-size: 48px !important;
  line-height: 1.12 !important;
  margin-bottom: 12px !important;
}

.hero.hero--slider.tw-hero .hero__sub {
  font-size: 14.5px !important;
  margin-bottom: 20px !important;
}

.hero.hero--slider.tw-hero .hero__badge {
  font-size: 11px !important;
  padding: 4px 12px !important;
  margin-bottom: 14px !important;
}

.hero.hero--slider.tw-hero .hero-cta--solid,
.hero.hero--slider.tw-hero .hero-cta--ghost {
  font-size: 13px !important;
  padding: 11px 22px !important;
}

.hero.hero--slider.tw-hero {
  height: 80vh !important;
  min-height: 80vh !important;
  max-height: none !important;
}

/* Quote modal = TPM popup */
.quote-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(460px, calc(100vw - 1.25rem));
  width: min(460px, calc(100vw - 1.25rem));
  margin: auto;
  inset: 0;
  height: fit-content;
  max-height: calc(100vh - 1.5rem);
}

.quote-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

.quote-dialog__panel {
  background: #fff;
  border-radius: 18px;
  border-top: 0;
  padding: 0;
  overflow: hidden;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.quote-dialog__drag {
  display: none;
}

.quote-dialog__head {
  background: linear-gradient(135deg, #e63312, #b52208);
  padding: 18px 20px 14px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.quote-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-dialog__head-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  padding-right: 28px;
}

.quote-dialog__head-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.quote-dialog__head-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.quote-dialog__head h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px !important;
  font-weight: 700;
  color: #fff !important;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-dialog__head p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.quote-dialog__call {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 10px;
}

.quote-dialog__call span:not(.quote-dialog__call-ico) {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.quote-dialog__call a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.quote-dialog__body {
  padding: 18px 18px 24px;
}

.quote-modal-form .pm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quote-modal-form .pm-field {
  margin-bottom: 12px;
}

.quote-modal-form .pm-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}

.quote-modal-form .pm-field input,
.quote-modal-form .pm-field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #1e293b;
  background: #f8fafc;
  appearance: none;
  box-sizing: border-box;
}

.quote-modal-form .pm-field input:focus,
.quote-modal-form .pm-field select:focus {
  border-color: #e63312;
  background: #fff;
  outline: none;
}

.quote-modal-form .pm-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E63312' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.quote-modal-form .pm-submit {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  background: linear-gradient(135deg, #e63312, #b52208);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(230, 51, 18, 0.38);
}

.quote-modal-form .pm-submit:hover {
  transform: translateY(-1px);
}

.quote-modal-form .pm-note {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 8px;
}

.quote-modal-form .form-error {
  margin-top: 10px;
  color: #b52208;
  font-size: 12px;
}

.quote-modal-form .pm-success {
  display: none;
  text-align: center;
  padding: 28px 12px 8px;
}

.quote-modal-form .pm-success.is-shown {
  display: block;
}

.quote-modal-form.is-submitted .pm-row,
.quote-modal-form.is-submitted .pm-field,
.quote-modal-form.is-submitted .pm-submit,
.quote-modal-form.is-submitted .pm-note {
  display: none;
}

.pm-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
}

.quote-modal-form .pm-success h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0d1f3c;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.quote-modal-form .pm-success p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.pm-success__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #e63312, #b52208);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 980px) {
  .brand__logo,
  .site-header .brand__logo,
  body.page-home .site-header .brand__logo {
    height: 40px !important;
    max-width: 160px !important;
  }

  .site-header {
    height: 64px;
  }

  :root {
    --header-h: 64px;
  }
}

@media (max-width: 768px) {
  .hero.hero--slider.tw-hero {
    height: 80vh !important;
    min-height: 80vh !important;
    max-height: none !important;
  }

  body.page-home .hero--slider .hero__title,
  .hero.hero--slider.tw-hero .hero__title {
    font-size: 32px !important;
  }

  .quote-dialog {
    max-width: 100%;
    width: 100%;
    margin: auto 0 0;
    align-self: end;
  }

  .quote-dialog__panel {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
  }

  .quote-dialog__drag {
    display: block;
    width: 40px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin: 10px auto 0;
  }

  .quote-dialog__head {
    border-radius: 20px 20px 0 0;
  }
}

@media (max-width: 380px) {
  .quote-modal-form .pm-row {
    grid-template-columns: 1fr;
  }
}

/* ========== Isolated TPM hero (no legacy .hero conflicts) ========== */
.tw-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 80vh;
  max-height: none;
  overflow: hidden;
  background: #0b1b3a;
}

.tw-hero__track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.tw-hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tw-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
  z-index: 0;
}

.tw-hero__caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  max-width: none;
  box-sizing: border-box;
  pointer-events: none;
}

.tw-hero__caption-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 720px !important;
  margin: 0 !important;
  padding: 0 24px 0 88px !important;
  box-sizing: border-box;
  pointer-events: auto;
}

.tw-hero__caption-inner .tw-hero__btns,
.tw-hero__caption-inner .tw-hero__btn {
  pointer-events: auto;
}

.tw-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 3px 12px 3px 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(230, 51, 18, 0.95), rgba(181, 34, 8, 0.92));
  color: #fff !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 8px 22px rgba(230, 51, 18, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tw-hero__badge-ico {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.tw-hero__badge-ico svg {
  width: 11px;
  height: 11px;
  display: block;
  color: #fff;
}

.tw-hero__badge-text {
  padding-right: 4px;
  line-height: 1;
}

.tw-hero__title {
  margin: 0 0 14px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  max-width: none !important;
}

.tw-hero__title span {
  color: #ff8c00 !important;
}

.tw-hero__copy {
  min-height: 4.8em;
  margin: 0 0 22px !important;
  max-width: 520px;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.tw-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tw-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: transform 0.25s ease, background 0.25s ease;
}

.tw-hero__btn--primary {
  background: linear-gradient(135deg, #e63312, #b52208);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(230, 51, 18, 0.4);
  border: 0;
}

.tw-hero__btn--primary:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

.tw-hero__btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff !important;
  background: transparent;
}

.tw-hero__btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
}

.tw-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(11, 27, 58, 0.72);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32), 0 0 0 3px rgba(230, 51, 18, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tw-hero__nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tw-hero__nav:hover,
.tw-hero__nav:focus-visible {
  background: #e63312;
  border-color: #fff;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 28px rgba(230, 51, 18, 0.45), 0 0 0 5px rgba(255, 255, 255, 0.2);
  outline: none;
}

.tw-hero__nav--prev { left: 20px; }
.tw-hero__nav--next { right: 20px; }

.tw-hero__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.tw-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s;
}

.tw-hero__dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}

@media (max-width: 768px) {
  .tw-hero {
    height: 80vh;
    min-height: 80vh;
  }

  .tw-hero__caption {
    padding: 0;
  }

  .tw-hero__caption-inner {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 16px 0 52px !important;
  }

  .tw-hero__title {
    font-size: 32px !important;
  }

  .tw-hero__copy {
    font-size: 14px !important;
  }

  .tw-hero__nav {
    display: grid;
    width: 32px;
    height: 32px;
  }

  .tw-hero__nav--prev { left: 10px; }
  .tw-hero__nav--next { right: 10px; }
}

/* Hero must sit below header in normal flow — never under it */
main {
  position: relative;
  z-index: 1;
  display: block;
  clear: both;
}

.site-chrome {
  position: relative !important;
  z-index: 1000;
  isolation: auto;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1100 !important;
}

.tw-hero {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  clear: both;
  margin-top: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  inset: auto !important;
}

/* Flat header stack — no site-chrome wrapper around hero */
.tw-marquee,
.top-strip {
  position: relative;
  z-index: 1002;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1100 !important;
  width: 100%;
}

main {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

main > .tw-hero {
  position: relative !important;
  z-index: 1 !important;
  width: 100%;
  margin: 0 !important;
  height: 80vh !important;
  min-height: 80vh !important;
}

/* ========== TPM float buttons + hero text match ========== */
.tw-float {
  position: fixed;
  right: 14px;
  bottom: 76px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tw-float__btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease;
  animation: twFloatPulse 2.5s infinite;
}

.tw-float__btn:hover {
  transform: scale(1.1);
  color: #fff !important;
}

.tw-float__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.tw-float__btn--mail svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tw-float__btn--wa { background: #25d366; }
.tw-float__btn--call { background: #e63312; }
.tw-float__btn--mail { background: #1565c0; }

.tw-float__label {
  position: absolute;
  right: 54px;
  background: #1e293b;
  color: #fff;
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.tw-float__btn:hover .tw-float__label {
  opacity: 1;
}

@keyframes twFloatPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5); }
}

.side-dock {
  display: none !important;
}

.tw-hero__title {
  font-size: 58px !important;
}

.tw-hero__copy {
  font-size: 16px !important;
  margin-bottom: 26px !important;
}

.tw-hero__badge {
  margin-bottom: 18px !important;
  font-size: 12px !important;
}

.tw-hero__btn {
  gap: 8px;
  padding: 14px 30px !important;
  font-size: 15px !important;
}

.tw-hero__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  line-height: 0;
}

.tw-hero__ico svg,
.tw-hero__btn svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

/* Override older stroke-only rule so filled FA-style icons show */
.tw-hero__btn--primary svg,
.tw-hero__btn--outline svg {
  fill: currentColor;
  stroke: none;
}

.tw-hero__btn .tw-hero__ico svg path[stroke] {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main > .tw-hero .tw-hero__img,
.tw-hero .tw-hero__img {
  object-fit: cover !important;
  object-position: center top !important;
}

@media (max-width: 768px) {
  .tw-hero__title {
    font-size: 36px !important;
  }

  .tw-float {
    right: 10px;
    bottom: 70px;
  }
}

/* ========== Equal hero CTAs + header align/hover ========== */
.site-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem;
  width: 100%;
}

.site-header .brand {
  margin-right: auto;
  flex-shrink: 0;
}

.site-header .nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 4px;
}

.site-header .nav__link,
.site-header .nav__dropdown > .nav__link {
  padding: 9px 14px !important;
  border-radius: 8px !important;
  min-height: 40px;
  box-sizing: border-box;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #1e293b !important;
  transition: color 0.2s ease, background 0.2s ease !important;
}

.site-header .nav__home-ico {
  width: 15px;
  height: 15px;
}

.site-header .nav__home-ico svg {
  width: 14px;
  height: 14px;
}

.site-header .nav__caret {
  font-size: 0.65em;
  opacity: 0.85;
}

.site-header .nav__enq {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  padding: 10px 18px !important;
}

.site-header .nav__link:hover,
.site-header .nav__link.is-active,
.site-header .nav__dropdown.is-active > .nav__link,
.site-header .nav__dropdown:hover > .nav__link,
.site-header .nav__dropdown.is-hover > .nav__link,
.site-header .nav__dropdown:focus-within > .nav__link {
  color: #e63312 !important;
  background: rgba(230, 51, 18, 0.06) !important;
}

body.page-home .site-header .nav__link:hover,
body.page-home .site-header .nav__link.is-active,
body.page-home .site-header .nav__dropdown.is-active > .nav__link,
body.page-home .site-header .nav__dropdown:hover > .nav__link {
  color: #e63312 !important;
  background: rgba(230, 51, 18, 0.06) !important;
}

@media (min-width: 981px) {
  .site-header .nav__link:hover,
  .site-header .nav__link.is-active,
  .site-header .nav__dropdown.is-active > .nav__link,
  .site-header .nav__dropdown.is-hover > .nav__link,
  .site-header .nav__dropdown:hover > .nav__link,
  .site-header .nav__dropdown:focus-within > .nav__link,
  body.page-home .site-header .nav__link:hover,
  body.page-home .site-header .nav__link.is-active,
  body.page-home .site-header .nav__dropdown.is-active > .nav__link,
  body.page-home .site-header .nav__dropdown.is-hover > .nav__link,
  body.page-home .site-header .nav__dropdown:hover > .nav__link,
  body.page-home .site-header .nav__dropdown:focus-within > .nav__link {
    color: #e63312 !important;
    background: rgba(230, 51, 18, 0.06) !important;
  }
}

.tw-hero__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.tw-hero__btn,
.tw-hero__btn--primary,
.tw-hero__btn--outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 48px !important;
  height: 48px !important;
  padding: 0 28px !important;
  border-radius: 8px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
}

.tw-hero__btn--primary {
  border: 2px solid transparent !important;
}

.tw-hero__btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
}

/* Unify ALL header link hovers — no full-height stretch */
.site-header .nav,
.site-header .nav > .nav__link,
.site-header .nav__dropdown {
  height: auto !important;
  align-self: center !important;
  align-items: center !important;
}

.site-header .nav {
  align-items: center !important;
}

.site-header .nav__link,
.site-header .nav__dropdown > .nav__link,
.site-header .nav > .nav__link {
  height: auto !important;
  min-height: 40px !important;
  max-height: 40px !important;
  padding: 0 14px !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
}

.site-header .nav__link:hover,
.site-header .nav__link.is-active,
.site-header .nav__dropdown.is-active > .nav__link,
.site-header .nav__dropdown:hover > .nav__link,
.site-header .nav__dropdown.is-hover > .nav__link,
.site-header .nav__dropdown:focus-within > .nav__link,
body.page-home .site-header .nav__link:hover,
body.page-home .site-header .nav__link.is-active,
body.page-home .site-header .nav__dropdown.is-active > .nav__link,
body.page-home .site-header .nav__dropdown:hover > .nav__link,
body.page-home .site-header .nav__dropdown.is-hover > .nav__link,
body.page-home .site-header .nav__dropdown:focus-within > .nav__link {
  color: #e63312 !important;
  background: rgba(230, 51, 18, 0.08) !important;
}

/* ==========================================================================
   SITE-WIDE MOBILE RESPONSIVE (all pages)
   Placed last so it wins over desktop hover / layout rules.
   ========================================================================== */

@keyframes twNavFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 980px) {
  /* Backdrop when mobile menu is open */
  body.nav-lock::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1095;
    background: rgba(7, 20, 40, 0.48);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: twNavFade 0.25s ease;
  }

  /* ----- Header shell ----- */
  .tw-marquee {
    display: block !important;
    padding: 4px 0 !important;
  }

  .tw-marquee p {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  .top-strip {
    padding: 3px 0 !important;
  }

  .top-strip__inner {
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    min-height: 0 !important;
    width: 100%;
  }

  .top-strip__left {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.5rem;
    font-size: 0.72rem;
    width: 100% !important;
    overflow: visible;
    line-height: 1.15;
  }

  .top-strip__left a {
    line-height: 1.15 !important;
    padding: 0 !important;
  }

  .top-strip__social {
    display: none !important;
  }

  .site-header {
    height: 64px !important;
    min-height: 64px !important;
  }

  :root {
    --header-h: 64px !important;
  }

  .site-header__inner {
    height: 64px !important;
    min-height: 64px !important;
    padding-block: 0 !important;
    gap: 0.65rem !important;
  }

  .brand__logo,
  .site-header .brand__logo,
  body.page-home .site-header .brand__logo {
    height: 40px !important;
    max-width: 150px !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #e63312 !important;
    box-shadow: 0 4px 12px rgba(11, 27, 58, 0.08);
    order: 3;
    margin-left: auto;
  }

  .nav-toggle.is-open {
    background: #fff5f2 !important;
    border-color: rgba(230, 51, 18, 0.35) !important;
  }

  /* ----- Mobile drawer nav (override desktop pill / max-height) ----- */
  .site-header {
    position: sticky !important;
  }

  .site-header .nav,
  .nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: min(78vh, 680px) !important;
    margin: 0 !important;
    padding: 0.5rem 1rem 1.15rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    background: #fff !important;
    border-bottom: 1px solid #e8eef5 !important;
    border-radius: 0 0 18px 18px !important;
    box-shadow: 0 22px 48px rgba(11, 27, 58, 0.18) !important;
    transform: translateY(-10px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 1200 !important;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease !important;
  }

  .site-header .nav.is-open,
  .nav.is-open {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header .nav > .nav__link,
  .site-header .nav__dropdown > .nav__link,
  .site-header .nav__link,
  .nav > .nav__link,
  .nav__dropdown > .nav__link {
    width: 100% !important;
    height: auto !important;
    min-height: 48px !important;
    max-height: none !important;
    padding: 0.85rem 0.35rem !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #eef2f7 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.55rem !important;
    font-size: 15px !important;
    letter-spacing: 0.06em !important;
    background: transparent !important;
    color: #1e293b !important;
  }

  .site-header .nav__dropdown > .nav__link,
  .nav__dropdown > .nav__link {
    justify-content: space-between !important;
  }

  .site-header .nav__link:hover,
  .site-header .nav__link.is-active,
  .site-header .nav__dropdown.is-active > .nav__link,
  .site-header .nav__dropdown:hover > .nav__link,
  .site-header .nav__dropdown.is-hover > .nav__link,
  .site-header .nav__dropdown:focus-within > .nav__link,
  .site-header .nav__dropdown.is-open > .nav__link,
  body.page-home .site-header .nav__link:hover,
  body.page-home .site-header .nav__link.is-active,
  body.page-home .site-header .nav__dropdown.is-active > .nav__link,
  body.page-home .site-header .nav__dropdown:hover > .nav__link,
  body.page-home .site-header .nav__dropdown.is-hover > .nav__link,
  body.page-home .site-header .nav__dropdown:focus-within > .nav__link,
  body.page-home .site-header .nav__dropdown.is-open > .nav__link {
    color: #e63312 !important;
    background: transparent !important;
  }

  .site-header .nav__dropdown,
  .nav__dropdown {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    align-self: stretch !important;
  }

  .site-header .nav__mega,
  .nav__mega,
  .site-header .nav__dropdown:hover .nav__mega,
  .site-header .nav__dropdown:focus-within .nav__mega,
  .nav__dropdown:hover .nav__mega,
  .nav__dropdown:focus-within .nav__mega {
    position: static !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    display: none !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    z-index: auto !important;
  }

  .site-header .nav__dropdown.is-open .nav__mega,
  .nav__dropdown.is-open .nav__mega,
  .site-header .nav__dropdown.is-open:hover .nav__mega,
  .site-header .nav__dropdown.is-open:focus-within .nav__mega {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Force reveal content visible on mobile (services/locations cards) */
  .reveal,
  .reveal-left,
  .reveal-right,
  .media-reveal,
  .clip-reveal,
  .fadeInUp,
  .fadeInLeft,
  .fadeInRight,
  .slideInLeft,
  .slideInRight,
  .zoomIn,
  .from-right,
  .process-grid .process-step {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .media-reveal::after {
    display: none !important;
  }

  .services-grid,
  .branch-grid {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .service,
  .branch-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .site-header .nav__mega-panel,
  .nav__mega-panel {
    margin: 0 0 0.65rem !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    border: 1px solid #e8eef5 !important;
    overflow: hidden !important;
    max-width: none !important;
  }

  .site-header .nav__mega-intro,
  .nav__mega-intro {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    padding: 0.95rem 1rem !important;
  }

  .site-header .nav__mega-grid,
  .nav__mega-grid {
    grid-template-columns: 1fr !important;
    gap: 0.55rem !important;
    padding: 0.75rem 1rem !important;
  }

  .site-header .nav__mega-list a,
  .nav__mega-list a {
    padding: 0.55rem 0 !important;
    font-size: 0.92rem !important;
    min-height: 40px;
  }

  .site-header .nav__enq,
  .nav__enq {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: calc(100% - 0.5rem) !important;
    margin: 0.85rem 0.25rem 0.35rem !important;
    min-height: 48px !important;
    padding: 0.85rem 1.25rem !important;
    border-radius: 10px !important;
    text-align: center !important;
  }

  /* ----- Shared layout stacks ----- */
  .container {
    width: min(100% - 1.5rem, var(--max, 1180px)) !important;
  }

  .section {
    padding-block: clamp(2.25rem, 7vw, 3.25rem) !important;
  }

  .page-hero {
    padding: 1.85rem 0 2.1rem !important;
  }

  .page-hero__title {
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
    line-height: 1.18 !important;
  }

  .page-hero__copy {
    font-size: 0.95rem !important;
    max-width: none !important;
  }

  .breadcrumb {
    font-size: 0.7rem !important;
    margin-bottom: 0.55rem !important;
  }

  .content-grid,
  .blog-layout,
  .service-layout,
  .city-layout,
  .blog-index-intro,
  .quote,
  .intro-grid,
  .about-band {
    grid-template-columns: 1fr !important;
  }

  .footer-cta__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center !important;
  }

  .footer-cta__actions {
    justify-content: center !important;
    width: 100%;
  }

  .footer-cta__actions .btn,
  .footer-cta__actions a {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 46px;
  }

  .about-band {
    gap: 1.35rem !important;
  }

  .about-band__media,
  .about-band__media img {
    min-height: 240px !important;
  }

  .btn-group {
    flex-wrap: wrap !important;
    gap: 0.65rem !important;
  }

  .btn-group > a,
  .btn-group > .thm-btn,
  .btn-group > .btn {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
    min-height: 46px;
  }

  .why-grid,
  .stats,
  .cities-grid,
  .form-grid,
  .gallery-grid,
  .contact-cards,
  .feature-services--blog,
  .prose .svc-process,
  .prose .svc-range,
  .usp-grid,
  .cover-grid,
  .tw-review-grid {
    grid-template-columns: 1fr !important;
  }

  .services-grid,
  .feature-services,
  .prose .svc-grid,
  .process-grid,
  .tw-cert-grid,
  .tw-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.85rem !important;
  }

  .process-grid {
    gap: 0.85rem !important;
  }

  .branch-grid {
    gap: 1rem !important;
  }

  .branch-card {
    flex-basis: calc((100% - 1rem) / 2) !important;
    max-width: calc((100% - 1rem) / 2) !important;
  }

  .blog-aside,
  .city-aside {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .hero-actions {
    flex-wrap: wrap !important;
    gap: 0.65rem !important;
  }

  .hero-actions > a,
  .hero-cta {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
    min-height: 46px;
  }

  .hero-points--service {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.45rem !important;
  }

  /* Home TPM blocks */
  .tw-quotebar {
    padding: 1.5rem 0 !important;
  }

  .tw-quotebar h2 {
    font-size: 1.2rem !important;
    letter-spacing: 0.05em !important;
  }

  .tw-quotebar__actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .tw-quotebar__actions > a,
  .tw-quotebar__actions > .thm-btn,
  .tw-quotebar__actions > .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .tw-title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem) !important;
  }

  .tw-lead {
    font-size: 0.95rem !important;
  }

  .tw-table-wrap {
    margin-inline: -0.25rem;
    border-radius: 10px !important;
  }

  .tw-price-table {
    min-width: 560px;
  }

  .tw-faq-q {
    padding: 0.95rem 1rem !important;
    font-size: 0.95rem !important;
    gap: 0.75rem !important;
  }

  .tw-city-chips a {
    min-height: 40px;
    align-items: center;
  }

  /* Hero */
  main > .tw-hero,
  .tw-hero {
    height: min(78vh, 640px) !important;
    min-height: 520px !important;
    max-height: none !important;
  }

  .tw-hero__caption-inner {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 18px 0 52px !important;
  }

  .tw-hero__title {
    font-size: clamp(1.7rem, 7.5vw, 2.15rem) !important;
    line-height: 1.12 !important;
    margin-bottom: 10px !important;
  }

  .tw-hero__copy {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
    max-width: 38ch !important;
  }

  .tw-hero__badge {
    margin-bottom: 12px !important;
    font-size: 11px !important;
    padding: 3px 12px 3px 4px !important;
    min-height: 0 !important;
    line-height: 1 !important;
  }

  .tw-hero__btns {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: auto !important;
    max-width: 100% !important;
  }

  .tw-hero__btn,
  .tw-hero__btn--primary,
  .tw-hero__btn--outline {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 46px !important;
    height: 46px !important;
    padding: 0 22px !important;
    font-size: 14px !important;
  }

  .tw-hero__nav {
    width: 32px !important;
    height: 32px !important;
  }

  .tw-hero__nav--prev { left: 8px !important; }
  .tw-hero__nav--next { right: 8px !important; }

  .tw-hero__dots {
    bottom: 14px !important;
  }

  /* Float + back-top */
  .tw-float {
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: max(68px, calc(env(safe-area-inset-bottom) + 58px)) !important;
    gap: 8px !important;
  }

  .tw-float__btn {
    width: 48px !important;
    height: 48px !important;
  }

  .tw-float__label {
    display: none !important;
  }

  .back-top {
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
  }

  body {
    padding-bottom: 0 !important;
  }

  .footer-bottom {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .footer-grid > :not(:first-child) {
    border-left: 0 !important;
    padding-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    padding-top: 1.25rem !important;
    margin-top: 1.25rem !important;
  }

  .footer-cities__list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.45rem 0.75rem !important;
  }

  .footer-cities__list a {
    font-size: 0.82rem !important;
  }

  /* Forms / quote / contact */
  .quote__panel,
  .quote__form,
  .contact-card {
    min-width: 0 !important;
  }

  .form-grid {
    gap: 0.85rem !important;
  }

  input,
  select,
  textarea {
    font-size: 16px !important; /* prevent iOS zoom */
  }

  .quote-dialog {
    width: 100% !important;
    max-width: 100% !important;
    margin: auto 0 0 !important;
    align-self: end !important;
  }

  .quote-dialog__panel {
    border-radius: 20px 20px 0 0 !important;
    max-height: 92vh !important;
  }

  .prose .table-scroll,
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    width: 100%;
  }

  .prose table {
    min-width: 520px;
    font-size: 0.82rem;
  }

  .prose th,
  .prose td {
    padding: 0.55rem 0.65rem;
    white-space: normal;
  }

  .prose thead th {
    white-space: normal;
  }

  .prose h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.65rem) !important;
    margin: 1.5rem 0 0.85rem !important;
  }

  .prose h3 {
    font-size: clamp(1.05rem, 4.8vw, 1.25rem) !important;
    margin: 1.15rem 0 0.65rem !important;
  }

  .prose h4 {
    font-size: 1rem !important;
  }

  .prose .faq-item h3 {
    font-size: 0.98rem !important;
    overflow-wrap: anywhere;
  }

  .prose .svc-process__item,
  .prose .svc-card,
  .prose .faq-item {
    max-width: 100%;
  }

  .prose a.thm-btn,
  .prose .thm-btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .page-hero__title,
  .page-hero__copy {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .side-card {
    max-width: 100%;
  }

  .side-links a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 768px) {
  .top-strip__left {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    overflow: visible;
  }

  .top-strip__left a,
  .top-strip__left a[href^="mailto:"] {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 1 auto;
    gap: 5px !important;
    font-size: clamp(0.58rem, 2.7vw, 0.75rem) !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    padding: 0 !important;
    max-width: none;
  }

  .top-strip__ico {
    display: inline-grid !important;
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0;
  }

  .branch-card {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }

  .services-grid,
  .feature-services,
  .prose .svc-grid,
  .process-grid,
  .tw-cert-grid,
  .tw-feature-grid,
  .tw-review-grid,
  .gallery-grid,
  .contact-cards {
    grid-template-columns: 1fr !important;
  }

  .services-grid > .service,
  .service--media {
    max-width: 100%;
  }

  .section-head h2,
  .section__title {
    font-size: clamp(1.4rem, 6.5vw, 1.75rem) !important;
  }

  .page-hero--service .hero-actions,
  .page-hero .hero-actions {
    flex-direction: column !important;
  }

  .page-hero--service .hero-actions > a,
  .page-hero .hero-actions > a {
    width: 100%;
  }

  .blog-card,
  .service-article__media img {
    width: 100%;
  }

  .svc-process__item,
  .prose .svc-process__item {
    padding: 0.9rem 1rem !important;
  }

  .footer-cta__actions {
    flex-direction: column !important;
  }

  .footer-cta__actions .btn,
  .footer-cta__actions a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.15rem, var(--max, 1180px)) !important;
  }

  .tw-hero__caption-inner {
    padding: 0 16px !important;
    align-items: flex-start !important;
  }

  .tw-hero__nav {
    display: none !important;
  }

  .tw-hero__btns {
    width: auto !important;
    max-width: 100% !important;
  }

  .tw-hero__title {
    font-size: 1.65rem !important;
  }

  .site-header {
    height: 60px !important;
  }

  .site-header__inner {
    height: 60px !important;
    min-height: 60px !important;
  }

  :root {
    --header-h: 60px !important;
  }

  .brand__logo,
  .site-header .brand__logo,
  body.page-home .site-header .brand__logo {
    height: 36px !important;
    max-width: 136px !important;
  }

  main > .tw-hero,
  .tw-hero {
    height: min(72vh, 560px) !important;
    min-height: 460px !important;
  }

  .quote-modal-form .pm-row {
    grid-template-columns: 1fr !important;
  }

  .tw-float {
    bottom: max(62px, calc(env(safe-area-inset-bottom) + 52px)) !important;
  }

  .tw-float__btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
  }
}

@media (max-width: 380px) {
  .top-strip__left {
    gap: 0.35rem !important;
  }

  .tw-hero__title {
    font-size: 1.45rem !important;
  }

  .page-hero__title {
    font-size: 1.4rem !important;
  }

  .nav-toggle {
    width: 40px !important;
    height: 40px !important;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  body.nav-lock::before,
  .site-header .nav,
  .nav {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   MOBILE NAV DRAWER � full-screen scrollable (fixes hidden dropdown links)
   ========================================================================== */
@media (max-width: 980px) {
  html.nav-lock,
  body.nav-lock {
    overflow: hidden !important;
    height: 100% !important;
  }

  body.nav-lock .site-header .nav.is-open,
  body.nav-lock .nav.is-open {
    touch-action: pan-y;
  }

  .site-header,
  .site-header__inner {
    overflow: visible !important;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1200 !important;
    height: 60px !important;
    min-height: 60px !important;
  }

  :root {
    --header-h: 60px !important;
  }

  .site-header__inner {
    height: 60px !important;
    min-height: 60px !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    z-index: 1210 !important;
  }

  /* Full-viewport drawer under sticky header */
  .site-header .nav,
  .nav {
    position: fixed !important;
    top: var(--header-h, 60px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0.35rem 1rem calc(1.5rem + env(safe-area-inset-bottom)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: translateX(110%) !important;
    opacity: 1 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    z-index: 1190 !important;
    transition: transform 0.28s ease, visibility 0.28s ease !important;
  }

  .site-header .nav.is-open,
  .nav.is-open {
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.nav-lock::before {
    content: "";
    position: fixed;
    inset: auto !important;
    top: var(--header-h, 60px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1180 !important;
    background: rgba(7, 20, 40, 0.45) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    animation: none !important;
    pointer-events: none !important;
  }

  .site-header .nav > .nav__link,
  .site-header .nav__dropdown > .nav__link,
  .site-header .nav__link,
  .nav > .nav__link,
  .nav__dropdown > .nav__link {
    width: 100% !important;
    min-height: 50px !important;
    max-height: none !important;
    height: auto !important;
    padding: 0.9rem 0.25rem !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #eef2f7 !important;
    display: flex !important;
    align-items: center !important;
    font-size: 15px !important;
    background: transparent !important;
    color: #0f172a !important;
  }

  .site-header .nav__dropdown > .nav__link,
  .nav__dropdown > .nav__link {
    justify-content: space-between !important;
  }

  .site-header .nav__dropdown.is-open > .nav__link,
  .nav__dropdown.is-open > .nav__link {
    color: #e63312 !important;
    border-bottom-color: transparent !important;
  }

  .site-header .nav__dropdown.is-open .nav__caret,
  .nav__dropdown.is-open .nav__caret {
    transform: rotate(180deg) !important;
  }

  .site-header .nav__dropdown,
  .nav__dropdown,
  .nav__dropdown--mega {
    width: 100% !important;
    display: block !important;
    position: static !important;
  }

  /* Accordion panels: always in-flow, never clipped */
  .site-header .nav__mega,
  .nav__mega,
  .site-header .nav__dropdown:hover .nav__mega,
  .site-header .nav__dropdown:focus-within .nav__mega,
  .nav__dropdown:hover .nav__mega,
  .nav__dropdown:focus-within .nav__mega,
  .nav__dropdown.is-hover .nav__mega {
    position: static !important;
    display: none !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    overflow: visible !important;
  }

  .site-header .nav__dropdown.is-open > .nav__mega,
  .nav__dropdown.is-open > .nav__mega,
  .site-header .nav__dropdown.is-open .nav__mega,
  .nav__dropdown.is-open .nav__mega {
    display: block !important;
  }

  .site-header .nav__mega-panel,
  .nav__mega-panel {
    max-width: none !important;
    margin: 0 0 0.5rem !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    overflow: visible !important;
    background: #f8fafc !important;
  }

  /* Hide bulky intro so every link fits on screen */
  .site-header .nav__mega-intro,
  .nav__mega-intro {
    display: none !important;
  }

  .site-header .nav__mega-grid,
  .nav__mega-grid,
  .nav__mega-grid--services,
  .nav__mega-grid--cities {
    display: block !important;
    grid-template-columns: 1fr !important;
    padding: 0.35rem 0.65rem 0.55rem !important;
    gap: 0 !important;
  }

  .site-header .nav__mega-col,
  .nav__mega-col {
    margin: 0 0 0.55rem !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-header .nav__mega-col-title,
  .nav__mega-col-title {
    margin: 0.55rem 0 0.15rem !important;
    padding: 0.25rem 0.2rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #64748b !important;
  }

  .site-header .nav__mega-list,
  .nav__mega-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .site-header .nav__mega-list li,
  .nav__mega-list li {
    margin: 0 !important;
  }

  .site-header .nav__mega-list a,
  .nav__mega-list a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 0.65rem 0.35rem !important;
    margin: 0 !important;
    border-bottom: 1px solid #e8eef5 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.3 !important;
    white-space: normal !important;
  }

  .site-header .nav__mega-list a::before,
  .nav__mega-list a::before {
    display: none !important;
  }

  .site-header .nav__mega-list li:last-child a,
  .nav__mega-list li:last-child a {
    border-bottom: 0 !important;
  }

  .site-header .nav__mega-foot,
  .nav__mega-foot {
    display: block !important;
    padding: 0.35rem 0.65rem 0.75rem !important;
    border-top: 1px solid #e2e8f0 !important;
    background: transparent !important;
  }

  .site-header .nav__mega-foot a,
  .nav__mega-foot a {
    display: inline-flex !important;
    min-height: 40px !important;
    align-items: center !important;
    color: #e63312 !important;
    font-weight: 700 !important;
  }

  .site-header .nav__enq,
  .nav__enq {
    position: sticky !important;
    bottom: 0 !important;
    z-index: 2 !important;
    width: 100% !important;
    margin: 0.75rem 0 0 !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    box-shadow: 0 -8px 20px rgba(255, 255, 255, 0.95) !important;
  }
}

/* ==========================================================================
   MOBILE NAV SCROLL FIX � constrained height + visible scrollbar
   ========================================================================== */
@media (max-width: 980px) {
  .site-header .nav,
  .nav,
  .site-header .nav.is-open,
  .nav.is-open {
    position: fixed !important;
    top: var(--header-h, 60px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    /* MUST have a fixed height or overflow never scrolls */
    height: calc(100vh - var(--header-h, 60px)) !important;
    height: calc(100dvh - var(--header-h, 60px)) !important;
    max-height: calc(100vh - var(--header-h, 60px)) !important;
    max-height: calc(100dvh - var(--header-h, 60px)) !important;
    min-height: 0 !important;
    display: block !important; /* block > flex so content can overflow-scroll */
    overflow-x: hidden !important;
    overflow-y: scroll !important; /* force scrollbar track */
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #e63312 #e2e8f0;
    padding: 0.25rem 0.85rem 1.25rem !important;
    box-sizing: border-box !important;
  }

  .site-header .nav::-webkit-scrollbar,
  .nav::-webkit-scrollbar {
    width: 8px !important;
    display: block !important;
  }

  .site-header .nav::-webkit-scrollbar-track,
  .nav::-webkit-scrollbar-track {
    background: #eef2f7 !important;
  }

  .site-header .nav::-webkit-scrollbar-thumb,
  .nav::-webkit-scrollbar-thumb {
    background: #e63312 !important;
    border-radius: 8px !important;
  }

  /* Open accordion panels also scroll if very long */
  .site-header .nav__dropdown.is-open .nav__mega,
  .nav__dropdown.is-open .nav__mega,
  .site-header .nav__dropdown.is-open > .nav__mega,
  .nav__dropdown.is-open > .nav__mega {
    display: block !important;
    position: static !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header .nav__mega-panel,
  .nav__mega-panel,
  .site-header .nav__dropdown.is-open .nav__mega-panel,
  .nav__dropdown.is-open .nav__mega-panel {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
  }

  .site-header .nav__mega-grid,
  .nav__mega-grid,
  .nav__mega-grid--services,
  .nav__mega-grid--cities {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
  }

  /* Do not sticky-pin CTA � it blocked scrolling to lower links */
  .site-header .nav__enq,
  .nav__enq {
    position: static !important;
    bottom: auto !important;
    margin: 0.85rem 0 1.5rem !important;
    box-shadow: none !important;
  }

  .site-header .nav__dropdown,
  .nav__dropdown,
  .nav__dropdown--mega {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
  }
}

/* ==========================================================================
   MOBILE HEADER � VERTICAL SCROLL ONLY (no horizontal overflow)
   ========================================================================== */
@media (max-width: 980px) {
  html.nav-lock,
  body.nav-lock {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    max-width: 100% !important;
  }

  .site-header,
  .site-header__inner,
  .site-header .nav,
  .nav,
  .site-header .nav *,
  .nav * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .site-header .nav,
  .nav,
  .site-header .nav.is-open,
  .nav.is-open {
    position: fixed !important;
    top: var(--header-h, 60px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: calc(100dvh - var(--header-h, 60px)) !important;
    max-height: calc(100dvh - var(--header-h, 60px)) !important;
    margin: 0 !important;
    padding: 0.5rem 1rem 1.75rem !important;
    display: block !important;
    /* NO sideways slide � that caused horizontal scroll */
    transform: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    overscroll-behavior-x: none !important;
    overscroll-behavior-y: contain !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: #e63312 #e8eef5 !important;
    z-index: 1190 !important;
    background: #fff !important;
  }

  .site-header .nav.is-open,
  .nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header .nav::-webkit-scrollbar,
  .nav::-webkit-scrollbar {
    width: 8px !important;
    height: 0 !important; /* kill horizontal scrollbar */
  }

  .site-header .nav::-webkit-scrollbar:horizontal,
  .nav::-webkit-scrollbar:horizontal {
    display: none !important;
    height: 0 !important;
  }

  .site-header .nav > .nav__link,
  .site-header .nav__dropdown > .nav__link,
  .nav > .nav__link,
  .nav__dropdown > .nav__link,
  .site-header .nav__enq,
  .nav__enq {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  /* Force single-column lists � kill 3/5-col mega grids */
  .site-header .nav__mega,
  .nav__mega,
  .site-header .nav__mega-panel,
  .nav__mega-panel,
  .site-header .nav__mega-grid,
  .nav__mega-grid,
  .site-header .nav__mega-grid--services,
  .nav__mega-grid--services,
  .site-header .nav__mega-grid--cities,
  .nav__mega-grid--cities,
  .site-header .nav__mega-col,
  .nav__mega-col,
  .site-header .nav__mega-list,
  .nav__mega-list {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: 1fr !important;
    grid-auto-flow: row !important;
    float: none !important;
    columns: auto !important;
    column-count: 1 !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }

  .site-header .nav__dropdown.is-open .nav__mega,
  .nav__dropdown.is-open .nav__mega {
    display: block !important;
  }

  .nav__dropdown:not(.is-open) > .nav__mega {
    display: none !important;
  }

  .site-header .nav__mega-list a,
  .nav__mega-list a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    margin: 0 !important;
    padding: 0.75rem 0.5rem !important;
  }

  .site-header .nav__mega-list a::before,
  .nav__mega-list a::before {
    display: none !important;
  }

  .site-header .nav__mega-intro,
  .nav__mega-intro {
    display: none !important;
  }
}

/* ==========================================================================
   MOBILE NAV SCROLL CONTAINER � vertical scroll that actually works
   ========================================================================== */

/* Desktop: wrapper must not break horizontal nav */
@media (min-width: 981px) {
  .nav__scroll {
    display: contents;
  }

  .nav__link--toggle {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    color: inherit;
    padding: inherit;
  }
}

@media (max-width: 980px) {
  html.nav-lock,
  body.nav-lock {
    overflow: hidden !important;
    height: 100% !important;
    position: relative !important;
  }

  .site-header .nav,
  .nav {
    position: fixed !important;
    top: var(--header-h, 60px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: calc(100dvh - var(--header-h, 60px)) !important;
    max-height: calc(100dvh - var(--header-h, 60px)) !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow: hidden !important; /* scroll lives on .nav__scroll */
    z-index: 1190 !important;
  }

  .site-header .nav.is-open,
  .nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* THE only scroll surface */
  .site-header .nav__scroll,
  .nav__scroll {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    padding: 0.4rem 1rem 1.75rem !important;
    box-sizing: border-box !important;
    scrollbar-width: thin !important;
    scrollbar-color: #e63312 #e8eef5 !important;
  }

  .nav__scroll::-webkit-scrollbar {
    width: 8px !important;
  }

  .nav__scroll::-webkit-scrollbar-thumb {
    background: #e63312 !important;
    border-radius: 8px !important;
  }

  .nav__link--toggle {
    appearance: none;
    -webkit-appearance: none;
    border: 0 !important;
    background: transparent !important;
    width: 100% !important;
    text-align: left !important;
    cursor: pointer;
    font: inherit;
    color: inherit;
  }

  .site-header .nav__scroll > .nav__link,
  .site-header .nav__dropdown > .nav__link,
  .nav__scroll > .nav__link,
  .nav__dropdown > .nav__link {
    width: 100% !important;
    min-height: 48px !important;
    max-height: none !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
    padding: 0.85rem 0.25rem !important;
    border-bottom: 1px solid #eef2f7 !important;
    border-radius: 0 !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }

  .nav__dropdown > .nav__link {
    justify-content: space-between !important;
  }

  .nav__dropdown.is-open > .nav__link {
    color: #e63312 !important;
  }

  .nav__dropdown.is-open .nav__caret {
    transform: rotate(180deg) !important;
  }

  .nav__dropdown,
  .nav__dropdown--mega {
    display: block !important;
    width: 100% !important;
    position: static !important;
  }

  .nav__mega,
  .nav__dropdown:not(.is-open) > .nav__mega {
    display: none !important;
  }

  .nav__dropdown.is-open > .nav__mega {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .nav__mega-intro {
    display: none !important;
  }

  .nav__mega-panel,
  .nav__mega-grid,
  .nav__mega-grid--services,
  .nav__mega-grid--cities,
  .nav__mega-col,
  .nav__mega-list {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: 1fr !important;
    overflow: visible !important;
    float: none !important;
  }

  .nav__mega-panel {
    margin: 0 0 0.5rem !important;
    padding: 0.25rem 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #f8fafc !important;
    box-shadow: none !important;
  }

  .nav__mega-list a {
    display: block !important;
    width: 100% !important;
    padding: 0.7rem 0.75rem !important;
    margin: 0 !important;
    border-bottom: 1px solid #e8eef5 !important;
    white-space: normal !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
  }

  .nav__mega-list a::before {
    display: none !important;
  }

  .nav__mega-col-title {
    margin: 0.5rem 0.75rem 0.15rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #64748b !important;
  }

  .nav__mega-foot {
    padding: 0.5rem 0.75rem 0.75rem !important;
  }

  .nav__enq {
    display: flex !important;
    width: 100% !important;
    margin: 0.85rem 0 1rem !important;
    min-height: 48px !important;
    justify-content: center !important;
    align-items: center !important;
    white-space: normal !important;
    position: static !important;
  }
}

/* ==========================================================================
   GROWEDGE-STYLE MOBILE NAV (exact scroll + appearance pattern)
   Ref: https://grow-edge.in/ � left drawer, overflow-y on panel, accordion mega
   ========================================================================== */

.nav-backdrop {
  display: none;
}

@media (min-width: 981px) {
  .nav__scroll { display: contents; }
  .nav-backdrop { display: none !important; }
}

@media (max-width: 980px) {
  body.nav-open,
  body.nav-lock {
    overflow: hidden !important;
  }

  .site-header {
    overflow: visible !important;
    z-index: 60 !important;
    height: 60px !important;
    min-height: 60px !important;
  }

  .site-header__inner {
    min-height: 60px !important;
    height: 60px !important;
    position: relative !important;
    z-index: 64 !important;
    background: #fff !important;
  }

  :root { --header-h: 60px !important; }

  .brand,
  .nav-toggle {
    position: relative !important;
    z-index: 65 !important;
  }

  .nav-toggle {
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 3px !important;
    background: #fff !important;
    color: #e63312 !important;
    margin-left: auto !important;
    box-shadow: none !important;
  }

  /* Backdrop like GrowEdge */
  .nav-backdrop {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(11, 27, 58, 0.46) !important;
    z-index: 48 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav-backdrop.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Kill previous full-bleed / nested-scroll experiments */
  body.nav-lock::before { display: none !important; content: none !important; }

  /*
   * GrowEdge pattern: the NAV PANEL itself scrolls.
   * left drawer, fixed height, overflow-y:auto, overflow-x:hidden
   */
  .site-header .nav,
  .nav,
  .site-header .nav.is-open,
  .nav.is-open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: min(340px, 88vw) !important;
    max-width: min(340px, 88vw) !important;
    height: calc(100dvh - 60px) !important;
    max-height: calc(100dvh - 60px) !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border: 0 !important;
    border-top: 1px solid #fee2e2 !important;
    border-radius: 0 !important;
    box-shadow: 18px 0 40px rgba(11, 27, 58, 0.16) !important;
    overflow: hidden !important;
    z-index: 50 !important;
    transform: translateX(-100%) !important;
    opacity: 1 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.28s ease, visibility 0.28s ease !important;
  }

  .site-header .nav.is-open,
  .nav.is-open {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Inner scroll surface � fills drawer, vertical only */
  .site-header .nav__scroll,
  .nav__scroll {
    display: block !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 8px 16px calc(20px + env(safe-area-inset-bottom, 0px)) !important;
    padding-left: max(16px, env(safe-area-inset-left, 0px)) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    box-sizing: border-box !important;
  }

  .nav__scroll::-webkit-scrollbar { width: 6px; }
  .nav__scroll::-webkit-scrollbar-thumb {
    background: rgba(230, 51, 18, 0.45);
    border-radius: 6px;
  }

  .site-header .nav__scroll > .nav__link,
  .site-header .nav__dropdown > .nav__link,
  .nav__scroll > .nav__link,
  .nav__dropdown > .nav__link {
    width: 100% !important;
    min-height: 46px !important;
    max-height: none !important;
    height: auto !important;
    padding: 0.8rem 0.35rem !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #fff5f2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    color: #0f172a !important;
    background: transparent !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }

  .nav__scroll > .nav__link:first-child {
    justify-content: flex-start !important;
  }

  .nav__dropdown.is-open > .nav__link,
  .nav__scroll > .nav__link.is-active {
    color: #e63312 !important;
  }

  .nav__dropdown.is-open .nav__caret {
    transform: rotate(180deg) !important;
  }

  .nav__dropdown,
  .nav__dropdown--mega {
    display: block !important;
    width: 100% !important;
    position: static !important;
  }

  /* Accordion mega � GrowEdge static dropdown */
  .site-header .nav__mega,
  .nav__mega,
  .nav__dropdown:not(.is-open) > .nav__mega {
    display: none !important;
  }

  .nav__dropdown.is-open > .nav__mega {
    display: block !important;
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 0 8px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    overflow: visible !important;
    box-shadow: none !important;
  }

  .nav__mega-intro { display: none !important; }

  .nav__mega-panel {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 4px 0 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .nav__mega-grid,
  .nav__mega-grid--services,
  .nav__mega-grid--cities {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .nav__mega-col {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav__mega-col-title {
    margin: 10px 8px 4px !important;
    padding: 0 !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #94a3b8 !important;
  }

  .nav__mega-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav__mega-list a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
    padding: 10px 8px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    line-height: 1.35 !important;
  }

  .nav__mega-list a::before { display: none !important; }

  .nav__mega-list a:hover,
  .nav__mega-list a:active {
    color: #e63312 !important;
    background: rgba(230, 51, 18, 0.06) !important;
  }

  .nav__mega-foot {
    padding: 6px 8px 4px !important;
    border: 0 !important;
  }

  .nav__mega-foot a {
    color: #e63312 !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
  }

  .nav__enq {
    display: flex !important;
    width: 100% !important;
    min-height: 44px !important;
    margin: 14px 0 6px !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 8px !important;
    white-space: normal !important;
    position: static !important;
  }
}

/* ==========================================================================
   MOBILE HEADER FIX � keep logo bar + align X (drawer below header)
   ========================================================================== */
@media (max-width: 980px) {
  /* Always show logo header row above the drawer */
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 70 !important;
    height: 60px !important;
    min-height: 60px !important;
    background: #fff !important;
    border-bottom: 1px solid #e8eef5 !important;
    box-shadow: 0 4px 16px rgba(11, 27, 58, 0.06) !important;
    overflow: visible !important;
  }

  .site-header__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    height: 60px !important;
    min-height: 60px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 71 !important;
    background: #fff !important;
    padding-left: max(12px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(12px, env(safe-area-inset-right, 0px)) !important;
    box-sizing: border-box !important;
  }

  .site-header .brand,
  .brand {
    display: inline-flex !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 72 !important;
    margin-right: auto !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    order: 1 !important;
  }

  .site-header .brand__logo,
  .brand__logo,
  body.page-home .site-header .brand__logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 40px !important;
    max-width: 150px !important;
    width: auto !important;
  }

  /* X / hamburger stays in header, right side */
  .nav-toggle {
    display: grid !important;
    place-items: center !important;
    position: relative !important;
    z-index: 72 !important;
    order: 3 !important;
    flex: 0 0 auto !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    margin-left: auto !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #e63312 !important;
    box-shadow: 0 2px 8px rgba(11, 27, 58, 0.08) !important;
  }

  .nav-toggle.is-open {
    background: #fff5f2 !important;
    border-color: rgba(230, 51, 18, 0.35) !important;
  }

  .nav-backdrop {
    z-index: 55 !important;
    top: var(--nav-drawer-top, 100px) !important;
    inset: auto 0 0 0 !important;
  }

  /* Drawer starts UNDER the visible logo header */
  .site-header .nav,
  .nav,
  .site-header .nav.is-open,
  .nav.is-open {
    top: var(--nav-drawer-top, 100px) !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: min(340px, 88vw) !important;
    max-width: min(340px, 88vw) !important;
    height: calc(100dvh - var(--nav-drawer-top, 100px)) !important;
    max-height: calc(100dvh - var(--nav-drawer-top, 100px)) !important;
    z-index: 56 !important;
  }

  /* Cleaner link alignment inside drawer */
  .nav__scroll {
    padding: 4px 14px calc(18px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .site-header .nav__scroll > .nav__link,
  .site-header .nav__dropdown > .nav__link,
  .nav__scroll > .nav__link,
  .nav__dropdown > .nav__link {
    justify-content: flex-start !important;
    padding: 0.75rem 0.15rem !important;
    text-align: left !important;
  }

  .nav__dropdown > .nav__link {
    justify-content: space-between !important;
  }

  .nav__home-ico {
    margin-right: 0.35rem;
  }

  .nav__mega-list a {
    padding-left: 0.85rem !important;
  }

  .nav__mega-col-title {
    padding-left: 0.15rem !important;
    margin-left: 0.15rem !important;
  }
}

/* ==========================================================================
   FINAL MOBILE NAV � logo bar clean, links start BELOW header
   ========================================================================== */
@media (min-width: 981px) {
  .nav-backdrop { display: none !important; }

  .nav {
    display: flex !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    box-shadow: none !important;
    background: transparent !important;
    border: 0 !important;
  }

  .nav__scroll {
    display: contents !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 80 !important;
    height: 60px !important;
    min-height: 60px !important;
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid #e8eef5 !important;
    box-shadow: 0 4px 14px rgba(11, 27, 58, 0.07) !important;
    overflow: visible !important;
  }

  .site-header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 60px !important;
    min-height: 60px !important;
    gap: 0.75rem !important;
    background: #fff !important;
    position: relative !important;
    z-index: 81 !important;
  }

  .site-header .brand,
  .brand {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 82 !important;
    order: 1 !important;
    margin-right: auto !important;
  }

  .site-header .brand__logo,
  .brand__logo {
    display: block !important;
    height: 40px !important;
    max-width: 150px !important;
    width: auto !important;
  }

  .nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    order: 2 !important;
    z-index: 82 !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #e63312 !important;
    box-shadow: 0 2px 8px rgba(11, 27, 58, 0.08) !important;
  }

  .nav-toggle span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    background: currentColor !important;
    border-radius: 2px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transition: transform 0.22s ease, opacity 0.18s ease !important;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0 !important;
  }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .nav-backdrop {
    display: block !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: var(--nav-drawer-top, 96px) !important;
    background: rgba(11, 27, 58, 0.46) !important;
    z-index: 70 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav-backdrop.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Drawer starts strictly below white logo header */
  .nav,
  .nav.is-open {
    position: fixed !important;
    top: var(--nav-drawer-top, 96px) !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: min(340px, 88vw) !important;
    max-width: min(340px, 88vw) !important;
    height: calc(100dvh - var(--nav-drawer-top, 96px)) !important;
    max-height: calc(100dvh - var(--nav-drawer-top, 96px)) !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    border: 0 !important;
    border-top: 1px solid #fee2e2 !important;
    border-radius: 0 !important;
    box-shadow: 18px 0 40px rgba(11, 27, 58, 0.16) !important;
    overflow: hidden !important;
    z-index: 71 !important;
    transform: translateX(-105%) !important;
    opacity: 1 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.28s ease, visibility 0.28s ease !important;
  }

  .nav.is-open {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav__scroll {
    display: block !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    height: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    padding: 8px 16px calc(20px + env(safe-area-inset-bottom, 0px)) !important;
    box-sizing: border-box !important;
  }

  .nav__scroll > .nav__link,
  .nav__dropdown > .nav__link {
    width: 100% !important;
    min-height: 46px !important;
    max-height: none !important;
    height: auto !important;
    padding: 0.8rem 0.25rem !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #fff5f2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    color: #0f172a !important;
    background: transparent !important;
  }

  .nav__scroll > .nav__link {
    justify-content: flex-start !important;
  }

  .nav__dropdown > .nav__link {
    justify-content: space-between !important;
  }
}

/* Desktop: logo + links one sticky row */
@media (min-width: 981px) {
  .site-header-shell {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #fff;
    border-bottom: 1px solid var(--line, #e8eef5);
    box-shadow: 0 4px 18px rgba(20, 10, 12, 0.05);
  }

  .site-header-shell .site-header {
    position: static !important;
    height: auto !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
  }

  .site-header-shell .site-header__inner {
    position: relative !important;
    min-height: 72px;
    height: 72px !important;
  }

  .site-header-shell .nav {
    position: absolute !important;
    top: 0 !important;
    right: max(1rem, calc((100vw - var(--max, 1180px)) / 2 + 1rem)) !important;
    left: auto !important;
    bottom: auto !important;
    height: 72px !important;
    max-height: none !important;
    width: auto !important;
    max-width: none !important;
    display: flex !important;
    align-items: center !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    z-index: 2 !important;
  }

  .site-header-shell .nav__scroll {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    height: 100% !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  .site-header-shell .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .site-header-shell {
    position: sticky;
    top: 0;
    z-index: 80;
    background: #fff;
  }

  .site-header-shell .site-header {
    position: relative !important;
    top: auto !important;
  }
}

/* ==========================================================================
   QUOTE MODAL � focused icons + typography
   ========================================================================== */
.quote-dialog {
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  max-width: min(440px, calc(100vw - 1.25rem)) !important;
  width: min(440px, calc(100vw - 1.25rem)) !important;
  margin: auto !important;
}

.quote-dialog__panel {
  background: #fff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  max-height: min(92vh, 720px) !important;
  box-shadow: 0 28px 64px rgba(11, 27, 58, 0.32) !important;
}

.quote-dialog__head {
  background: linear-gradient(135deg, #e63312 0%, #c41f0a 100%) !important;
  padding: 20px 20px 16px !important;
  position: relative !important;
}

.quote-dialog__close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.quote-dialog__close svg {
  width: 14px !important;
  height: 14px !important;
  display: block !important;
}

.quote-dialog__close:hover {
  background: rgba(255, 255, 255, 0.32) !important;
}

.quote-dialog__head-top {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding-right: 36px !important;
  margin-bottom: 12px !important;
}

.quote-dialog__head-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  display: grid !important;
  place-items: center !important;
  color: #fff !important;
  flex-shrink: 0 !important;
}

.quote-dialog__head-icon svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  fill: #fff !important;
}

.quote-dialog__head-copy h2,
.quote-dialog__head h2 {
  margin: 0 0 4px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}

.quote-dialog__head-copy p,
.quote-dialog__head p {
  margin: 0 !important;
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500 !important;
}

.quote-dialog__call {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  background: rgba(0, 0, 0, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  text-decoration: none !important;
  color: #fff !important;
  box-sizing: border-box !important;
}

.quote-dialog__call:hover {
  background: rgba(0, 0, 0, 0.26) !important;
  color: #fff !important;
}

.quote-dialog__call-ico {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #e63312 !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0 !important;
}

.quote-dialog__call-ico svg {
  width: 15px !important;
  height: 15px !important;
  display: block !important;
  fill: #e63312 !important;
  color: #e63312 !important;
}

.quote-dialog__call-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 1px !important;
  line-height: 1.2 !important;
}

.quote-dialog__call-text small {
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.quote-dialog__call-text strong,
.quote-dialog__call a,
.quote-dialog__call-line {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: #fff !important;
}

.quote-dialog__body {
  padding: 18px 18px 20px !important;
}

.quote-modal-form .pm-row {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

.quote-modal-form .pm-field {
  margin-bottom: 14px !important;
}

.quote-modal-form .pm-field label {
  display: block !important;
  margin: 0 0 6px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #0b1b3a !important;
}

.quote-modal-form .pm-field input,
.quote-modal-form .pm-field select {
  width: 100% !important;
  min-height: 48px !important;
  padding: 12px 14px !important;
  border: 1.5px solid #dbe3ef !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #0f172a !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  box-sizing: border-box !important;
}

.quote-modal-form .pm-field input::placeholder {
  color: #94a3b8 !important;
  font-weight: 400 !important;
}

.quote-modal-form .pm-field input:focus,
.quote-modal-form .pm-field select:focus {
  border-color: #e63312 !important;
  box-shadow: 0 0 0 3px rgba(230, 51, 18, 0.12) !important;
  outline: none !important;
  background: #fff !important;
}

.quote-modal-form .pm-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23E63312' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 40px !important;
  color: #334155 !important;
}

.quote-modal-form .pm-submit {
  width: 100% !important;
  min-height: 52px !important;
  margin-top: 4px !important;
  padding: 14px 18px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #e63312, #b52208) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 24px rgba(230, 51, 18, 0.35) !important;
  cursor: pointer !important;
}

.quote-modal-form .pm-submit svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.quote-modal-form .pm-submit:hover {
  transform: translateY(-1px) !important;
}

.quote-modal-form .pm-note {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 12px 0 0 !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
  color: #64748b !important;
  text-align: center !important;
}

.quote-modal-form .pm-note__ico {
  width: 18px !important;
  height: 18px !important;
  color: #e63312 !important;
  flex-shrink: 0 !important;
  display: grid !important;
  place-items: center !important;
}

.quote-modal-form .pm-note__ico svg {
  width: 15px !important;
  height: 15px !important;
  display: block !important;
}

@media (min-width: 480px) {
  .quote-modal-form .pm-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
}

/* Desktop megamenu: full width, short height — no intro banner */
@media (min-width: 981px) {
  .nav__dropdown--mega {
    position: static !important;
  }

  .nav__mega,
  .nav__mega--services,
  .nav__mega--cities {
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
  }

  .nav__mega-panel {
    max-width: var(--max, 1200px) !important;
    margin: 0 auto !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 16px 36px rgba(11, 27, 58, 0.14) !important;
  }

  .nav__mega-intro {
    display: none !important;
  }

  .nav__mega-grid,
  .nav__mega-grid--services,
  .nav__mega-grid--cities,
  .nav__mega-grid--even {
    padding: 0.85rem 1rem 0.45rem !important;
    gap: 0 !important;
    background: #fff !important;
    align-items: stretch !important;
  }

  .nav__mega-grid--services,
  .nav__mega-grid--cities,
  .nav__mega-grid--even {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .nav__mega-col {
    padding: 0.2rem 0.85rem !important;
    border: 0 !important;
    border-right: 1px solid rgba(11, 27, 58, 0.08) !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-height: 0;
  }

  .nav__mega-col:last-child {
    border-right: 0 !important;
  }

  .nav__mega-col-title {
    display: none !important;
  }

  .nav__mega-list {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
  }

  .nav__mega-list a {
    padding: 0.42rem 0.35rem !important;
    margin: 0 !important;
    font-size: 0.84rem !important;
    line-height: 1.3 !important;
    min-height: 2rem;
  }

  .nav__mega-list a::before {
    width: 5px !important;
    height: 5px !important;
    box-shadow: none !important;
  }

  .nav__mega-foot {
    padding: 0.35rem 1rem 0.55rem !important;
  }

  .nav__mega-foot a {
    font-size: 0.78rem !important;
  }
}

/* Shared left/right alignment — one content column across the site */
:root {
  --max: 1200px;
  --gutter: 16px;
}

.container,
.site-header__inner,
.top-strip__inner,
.nav__mega-panel {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max)) !important;
  max-width: var(--max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

@media (min-width: 981px) {
  .site-header-shell .nav {
    right: max(var(--gutter), calc((100vw - var(--max)) / 2)) !important;
  }

  .nav__mega-grid,
  .nav__mega-grid--services,
  .nav__mega-grid--cities {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .nav__mega-foot {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Certificate section styles live with the main .tw-cert-* block above */

/* Footer — high-contrast, readable type on navy */
.site-footer,
body.page-home .site-footer {
  color: #f8fafc !important;
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
body.page-home .site-footer h2,
body.page-home .site-footer h3,
body.page-home .site-footer h4,
body.page-home .footer-cta h2,
body.page-home .footer-cities h3,
body.page-home .footer-col h4 {
  color: #ffffff !important;
}

.site-footer p,
.site-footer li,
.site-footer span,
.site-footer a,
body.page-home .site-footer p,
body.page-home .site-footer a,
body.page-home .site-footer li,
body.page-home .site-footer span {
  color: #f1f5f9 !important;
}

.footer-cta .btn--white,
.site-footer .footer-cta .btn--white,
body.page-home .site-footer .footer-cta .btn--white {
  background: #ffffff !important;
  color: #0b1b3a !important;
}

.footer-cta .btn--white:hover,
.site-footer .footer-cta .btn--white:hover {
  background: #e63312 !important;
  color: #ffffff !important;
}

.footer-cta {
  border-bottom: 0 !important;
}

.footer-brand__lead {
  font-size: 1.02rem !important;
  font-weight: 600 !important;
  line-height: 1.65 !important;
  color: #ffffff !important;
}

.footer-brand__text {
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: #e2e8f0 !important;
}

.footer-col h4,
.footer-cities h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
}

.footer-col a,
.footer-col li,
.footer-address {
  font-size: 0.98rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  color: #f8fafc !important;
}

.footer-col a:hover,
.footer-cities__list a:hover,
.site-footer a:hover {
  color: #ff8a70 !important;
}

.footer-cities__list a {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #f1f5f9 !important;
}

.footer-ico {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
}

.footer-bottom__inner,
.footer-bottom__inner span {
  font-size: 0.9rem !important;
  color: #e2e8f0 !important;
}

.footer-bottom__credit a {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.footer-col a {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  text-align: left !important;
}

.footer-link-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  background: #e63312;
  color: #fff !important;
  flex-shrink: 0;
}

.footer-link-ico svg {
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  fill: currentColor;
}

.site-footer .footer-social a,
body.page-home .site-footer .footer-social a {
  background: #ffffff !important;
  border-color: transparent !important;
}

.site-footer .footer-social a svg,
.site-footer .footer-social a svg path,
body.page-home .site-footer .footer-social a svg,
body.page-home .site-footer .footer-social a svg path {
  fill: currentColor !important;
  color: inherit !important;
}

.site-footer .footer-social a[aria-label="Facebook"],
.site-footer .footer-social a[aria-label="Facebook"]:hover,
body.page-home .site-footer .footer-social a[aria-label="Facebook"],
body.page-home .site-footer .footer-social a[aria-label="Facebook"]:hover {
  color: #1877F2 !important;
}

.site-footer .footer-social a[aria-label="Instagram"],
.site-footer .footer-social a[aria-label="Instagram"]:hover,
body.page-home .site-footer .footer-social a[aria-label="Instagram"],
body.page-home .site-footer .footer-social a[aria-label="Instagram"]:hover {
  color: #E4405F !important;
}

.site-footer .footer-social a[aria-label="YouTube"],
.site-footer .footer-social a[aria-label="YouTube"]:hover,
body.page-home .site-footer .footer-social a[aria-label="YouTube"],
body.page-home .site-footer .footer-social a[aria-label="YouTube"]:hover {
  color: #FF0000 !important;
}

.site-footer .footer-social a[aria-label="X"],
.site-footer .footer-social a[aria-label="X"]:hover,
body.page-home .site-footer .footer-social a[aria-label="X"],
body.page-home .site-footer .footer-social a[aria-label="X"]:hover {
  color: #111111 !important;
}

.site-footer .footer-social a[aria-label="Pinterest"],
.site-footer .footer-social a[aria-label="Pinterest"]:hover,
body.page-home .site-footer .footer-social a[aria-label="Pinterest"],
body.page-home .site-footer .footer-social a[aria-label="Pinterest"]:hover {
  color: #E60023 !important;
}

.site-footer .footer-social a[aria-label="WhatsApp"],
.site-footer .footer-social a[aria-label="WhatsApp"]:hover,
body.page-home .site-footer .footer-social a[aria-label="WhatsApp"],
body.page-home .site-footer .footer-social a[aria-label="WhatsApp"]:hover {
  color: #25D366 !important;
}

.site-footer .footer-social a:hover,
body.page-home .site-footer .footer-social a:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
}

.cta-band,
.cta-band--flush,
body.page-home .cta-band {
  border-radius: 0 !important;
}

.cta-band__inner {
  justify-content: flex-start !important;
  text-align: left !important;
}

.cta-band h2,
.cta-band p,
body.page-home .cta-band h2,
body.page-home .cta-band p {
  text-align: left !important;
  justify-content: flex-start !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.cta-band .thm-btn,
.cta-band .thm-btn--light,
.cta-band .thm-btn--ghost,
body.page-home .cta-band .thm-btn,
body.page-home .cta-band .thm-btn--light,
body.page-home .cta-band .thm-btn--ghost {
  background: #e63312 !important;
  color: #fff !important;
  border: 0 !important;
}

.cta-band .thm-btn span,
.cta-band .thm-btn--light > span,
.cta-band .thm-btn--ghost > span {
  background: #0b1b3a !important;
  color: #fff !important;
}

.cta-band .thm-btn .tw-ico,
.cta-band .thm-btn svg {
  color: #fff !important;
  fill: currentColor !important;
  stroke: none !important;
}

/* One column: WhatsApp, call, mail, back-to-top */
.tw-float {
  right: 16px !important;
  bottom: 16px !important;
  width: 46px;
  align-items: flex-end;
  gap: 8px !important;
}

.tw-float__btn,
.tw-float .back-top,
body.page-home .tw-float .back-top {
  position: relative !important;
  right: auto !important;
  left: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px;
  min-height: 46px;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 11px !important;
  flex: 0 0 46px;
  align-self: flex-end;
  box-sizing: border-box;
  line-height: 0;
}

.tw-float__btn--top,
.tw-float .back-top,
body.page-home .tw-float .back-top {
  background: #0B1B3A !important;
  color: #fff !important;
  z-index: auto;
  animation: twFloatPulse 2.5s infinite;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0 !important;
  min-height: 0 !important;
  flex: 0 0 0 !important;
  overflow: hidden;
  transform: none !important;
}

.tw-float__btn--top.is-visible,
.tw-float .back-top.is-visible,
body.page-home .tw-float .back-top.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  height: 46px !important;
  min-height: 46px !important;
  flex: 0 0 46px !important;
  overflow: visible;
}

.tw-float__btn--top:hover,
.tw-float .back-top:hover,
body.page-home .tw-float .back-top:hover {
  background: #0f3d5e !important;
}

.tw-float__btn--top svg,
.tw-float .back-top svg,
body.page-home .tw-float .back-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff !important;
  fill: none !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .tw-float {
    right: max(12px, env(safe-area-inset-right)) !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    width: 46px;
  }
}

/* Site-wide: same title / subtitle / color theme as home */
body {
  font-family: var(--font-body);
  color: var(--ink);
}

.section-head {
  margin: 0 0 1.25rem;
}

.section-head .tw-lead + .tw-lead {
  margin-top: -0.75rem;
}

.tw-label--on-dark,
.page-hero .tw-label {
  color: #fff !important;
}

.tw-label--on-dark::before,
.page-hero .tw-label::before {
  background: #e63312;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(11, 27, 58, 0.94), rgba(20, 34, 72, 0.9)),
    url("../image/packing-home.jpg") center/cover no-repeat;
}

.page-hero__title,
.section__title,
.tw-title,
.prose h2,
.prose h3,
.contact-card span,
.svc-card h3,
.feature-service h3,
.service h3 {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}

.page-hero__title,
.tw-title,
.section__title {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-hero__title {
  color: #fff !important;
}

.page-hero__title span,
.tw-title span,
.section__title span {
  color: #e63312 !important;
  font-style: normal;
}

.page-hero__copy {
  color: rgba(255, 255, 255, 0.9) !important;
  text-align: left;
  max-width: 62ch;
}

.page-hero .hero-points,
.page-hero .hero-actions,
.page-hero .blog-meta {
  color: rgba(255, 255, 255, 0.9);
}

.footer-cities__list a,
body.page-home .footer-cities__list a {
  text-align: left !important;
  text-justify: auto;
}

.cta-band__inner {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem 2rem;
}

.cta-band__inner > div:first-child {
  flex: 1 1 380px;
  min-width: 0;
}

.cta-band h2 {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0.65rem !important;
  max-width: none !important;
  margin-right: 0 !important;
}

.cta-band h2 .tw-section-ico {
  flex-shrink: 0;
  margin-right: 0 !important;
}

.cta-band p,
body.page-home .cta-band p {
  margin-right: 0 !important;
  max-width: 52ch;
}

.cta-band .btn-group {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.tw-review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .tw-review-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .cta-band h2 {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 640px) {
  .tw-review-grid {
    grid-template-columns: 1fr !important;
  }
}

.footer-cities h3::after,
body.page-home .footer-cities h3::after {
  display: none !important;
  content: none !important;
  flex: 0 !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
}

.footer-cities,
body.page-home .footer-cities {
  border-top: 2px solid #e63312 !important;
  box-shadow: none;
}

.footer-cities__list,
body.page-home .footer-cities__list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  column-gap: 1.75rem !important;
  row-gap: 0.2rem !important;
}

.footer-cities__list a,
body.page-home .footer-cities__list a {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  padding: 0.32rem 0 !important;
  text-align: left !important;
}

.footer-cities__list .footer-city-ico,
.site-footer .footer-cities__list .footer-city-ico,
body.page-home .footer-cities__list .footer-city-ico {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  min-height: 20px;
  margin-top: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  border: 1px solid rgba(180, 210, 235, 0.45) !important;
  color: #ffffff !important;
  box-sizing: border-box;
}

.footer-cities__list .footer-city-ico svg,
.footer-cities__list .footer-city-ico svg path,
.site-footer .footer-cities__list .footer-city-ico svg,
.site-footer .footer-cities__list .footer-city-ico svg path,
body.page-home .footer-cities__list .footer-city-ico svg,
body.page-home .footer-cities__list .footer-city-ico svg path {
  width: 11px !important;
  height: 11px !important;
  fill: #ffffff !important;
  stroke: none !important;
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .footer-cities__list,
  body.page-home .footer-cities__list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 1.25rem !important;
  }
}

@media (max-width: 420px) {
  .footer-cities__list,
  body.page-home .footer-cities__list {
    grid-template-columns: 1fr !important;
  }
}

.presence-strip,
body.page-home .presence-strip {
  background: #0B1B3A !important;
  color: #fff;
}

.presence-item__ico {
  background: rgba(255, 140, 0, 0.16) !important;
  border-color: #ff8c00 !important;
  color: #ff8c00 !important;
}

.footer-link-ico,
.footer-ico,
.site-footer .footer-link-ico,
.site-footer .footer-ico,
body.page-home .footer-link-ico,
body.page-home .footer-ico {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  min-height: 24px;
  margin-top: 0.05rem;
  border-radius: 50% !important;
  background: transparent !important;
  border: 1px solid rgba(180, 210, 235, 0.45) !important;
  color: #ffffff !important;
  flex-shrink: 0;
  box-sizing: border-box;
}

.footer-link-ico svg,
.footer-ico svg,
.footer-link-ico svg path,
.footer-ico svg path,
body.page-home .footer-link-ico svg,
body.page-home .footer-ico svg {
  width: 12px !important;
  height: 12px !important;
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 2;
  color: #ffffff !important;
}

.footer-link-ico svg path {
  fill: #ffffff !important;
  stroke: none !important;
}

@media (max-width: 768px) {
  .presence-strip,
  body.page-home .presence-strip {
    padding: 0.65rem 0.5rem !important;
  }

  .presence-strip__inner,
  body.page-home .presence-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.45rem 0.5rem !important;
  }

  .presence-item {
    padding: 0.15rem 0.2rem !important;
    gap: 0 !important;
  }

  .presence-item__ico {
    width: 1.45rem !important;
    height: 1.45rem !important;
    margin: 0 auto 0.08rem !important;
  }

  .presence-item__ico .tw-ico,
  .presence-item__ico svg {
    width: 0.78rem !important;
    height: 0.78rem !important;
  }

  .presence-item strong {
    font-size: 1.05rem !important;
    line-height: 1.15 !important;
  }

  .presence-item span {
    font-size: 0.66rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
  }

  .tw-quotebar h2,
  .cta-band h2 {
    display: block !important;
    flex-wrap: wrap !important;
    white-space: normal !important;
    max-width: 100% !important;
    font-size: 1.12rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0.04em !important;
    padding: 0 0.75rem;
  }

  .tw-hero__caption-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-bottom: 64px !important;
  }
}

/* Quote sheet + compact mobile hero + taller contact strip */
@keyframes twQuoteSheet {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.quote-dialog__call-line {
  font-family: "Rajdhani", sans-serif !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: #fff !important;
  white-space: nowrap;
}

.quote-modal-form .pm-note__ico {
  color: #e8b923 !important;
}

@media (max-width: 768px) {
  .top-strip {
    padding: 10px 0 !important;
  }

  .top-strip__inner,
  .top-strip__left {
    min-height: 28px !important;
  }

  .top-strip__left a,
  .top-strip__left a[href^="mailto:"] {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    gap: 6px !important;
  }

  .top-strip__ico {
    display: inline-grid !important;
    width: 15px !important;
    height: 15px !important;
  }

  .top-strip__ico svg {
    width: 13px !important;
    height: 13px !important;
  }

  main > .tw-hero,
  .tw-hero {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .tw-hero__track,
  .tw-hero__slide {
    height: auto !important;
    min-height: 0 !important;
  }

  .tw-hero__caption {
    position: relative !important;
    inset: auto !important;
    justify-content: flex-start !important;
    padding: 1.85rem 0 2.85rem !important;
  }

  .tw-hero__caption-inner {
    padding: 0 16px 0.75rem !important;
    max-width: 100% !important;
  }

  .tw-hero__copy {
    min-height: 0 !important;
    margin-bottom: 20px !important;
  }

  .tw-hero__dots {
    bottom: 10px !important;
  }

  .quote-dialog:not([open]) {
    display: none !important;
  }

  .quote-dialog[open] {
    display: block !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 92vh !important;
    margin: 0 !important;
    inset: auto 0 0 0 !important;
    border: 0 !important;
    border-radius: 18px 18px 0 0 !important;
    overflow: hidden !important;
    background: transparent !important;
    z-index: 10050 !important;
    animation: twQuoteSheet 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .quote-dialog::backdrop {
    background: rgba(11, 27, 58, 0.55) !important;
  }

  .quote-dialog__panel {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 18px 18px 0 0 !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .quote-dialog__drag {
    display: block !important;
    width: 42px !important;
    height: 4px !important;
    margin: 8px auto 0 !important;
    background: #d8dee8 !important;
    border-radius: 99px !important;
  }

  .quote-dialog__head {
    padding: 14px 16px 0 !important;
    border-radius: 18px 18px 0 0 !important;
  }

  .quote-dialog__call {
    margin: 12px -16px 0 !important;
    border-radius: 0 !important;
    border: 0 !important;
    justify-content: flex-start !important;
    padding: 11px 16px !important;
    background: rgba(0, 0, 0, 0.22) !important;
  }

  .quote-dialog__body {
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .quote-modal-form .pm-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .quote-modal-form .pm-field {
    margin-bottom: 12px !important;
  }

  .quote-modal-form .pm-field input,
  .quote-modal-form .pm-field select {
    min-height: 44px !important;
    font-size: 16px !important;
  }

  html,
  body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }

  .tw-marquee,
  .top-strip,
  .site-header,
  .site-header-shell,
  main,
  .site-footer,
  .tw-hero,
  .presence-strip,
  .section,
  .container {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .tw-hero {
    overflow: hidden !important;
    width: 100% !important;
  }

  .tw-hero__track {
    width: 100% !important;
  }

  .tw-hero__slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .tw-hero__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(6, 14, 32, 0.42) 0%,
      rgba(6, 14, 32, 0.78) 55%,
      rgba(6, 14, 32, 0.88) 100%
    );
  }

  .tw-hero__img {
    opacity: 0.85 !important;
  }

  .tw-hero__caption {
    z-index: 2 !important;
  }

  .tw-hero__caption-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px 1rem !important;
  }

  .tw-hero__badge {
    margin-bottom: 12px !important;
    padding: 3px 12px 3px 4px !important;
    min-height: 0 !important;
    line-height: 1 !important;
  }

  .tw-hero__badge-ico {
    width: 18px !important;
    height: 18px !important;
  }

  .tw-hero__badge-ico svg {
    width: 10px !important;
    height: 10px !important;
  }

  .tw-hero__title {
    font-size: clamp(1.45rem, 7vw, 1.85rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .tw-hero__copy {
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
    overflow-wrap: anywhere;
  }

  .tw-hero__badge,
  .tw-hero__title,
  .tw-hero__copy,
  .tw-hero__btns {
    max-width: 100% !important;
  }

  .tw-hero__btns {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: auto !important;
    max-width: 100% !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
  }

  .tw-hero__btn,
  .tw-hero__btn--primary,
  .tw-hero__btn--outline {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 50px !important;
    height: 50px !important;
  }

  .tw-hero__dots {
    bottom: 16px !important;
  }
  }

  .top-strip {
    overflow: hidden !important;
  }

  .top-strip__left a[href^="tel:"] {
    flex-shrink: 0;
  }

  .top-strip__left a[href^="mailto:"] {
    min-width: 0 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 58%;
  }

  .quote-dialog__call-line {
    white-space: normal !important;
  }

  .tw-table-wrap,
  .table-scroll {
    max-width: 100% !important;
    overflow-x: auto !important;
    margin-inline: 0 !important;
  }

  .tw-price-table {
    min-width: 520px;
  }

  .presence-strip,
  .footer-cities,
  .footer-grid {
    overflow-x: hidden !important;
  }
}

/* Megamenu: navy banner + even columns + red quote bar */
.nav__mega--cities .nav__mega-panel,
.nav__mega--services .nav__mega-panel {
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
}

.nav__mega-banner {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 12px 18px !important;
  background: #0b1b3a !important;
  color: #fff !important;
}

.nav__mega-banner-ico {
  display: inline-grid !important;
  place-items: center !important;
  width: 22px !important;
  height: 22px !important;
  color: #ff8c00 !important;
  flex-shrink: 0 !important;
}

.nav__mega-banner-ico svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  fill: currentColor !important;
}

.nav__mega-banner p {
  margin: 0 !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  line-height: 1.2 !important;
}

.nav__mega--cities .nav__mega-grid,
.nav__mega--services .nav__mega-grid {
  background: #fff !important;
  padding: 14px 18px 10px !important;
}

.nav__mega--cities .nav__mega-list a,
.nav__mega--services .nav__mega-list a {
  font-weight: 500 !important;
  color: #334155 !important;
}

.nav__mega--cities .nav__mega-list a::before,
.nav__mega--services .nav__mega-list a::before {
  display: none !important;
}

.nav__mega--cities .nav__mega-list a:hover,
.nav__mega--services .nav__mega-list a:hover {
  color: #e63312 !important;
  background: transparent !important;
  padding-left: 0.35rem !important;
}

.nav__mega-cta-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 13px 16px !important;
  background: #e63312 !important;
  color: #fff !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.nav__mega-cta-bar svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
  fill: #fff !important;
  flex-shrink: 0 !important;
}

.nav__mega-cta-bar:hover {
  background: #c41f0a !important;
  color: #fff !important;
}

@media (min-width: 981px) {
  .nav__mega--cities .nav__mega-banner,
  .nav__mega--services .nav__mega-banner,
  .nav__mega--cities .nav__mega-cta-bar,
  .nav__mega--services .nav__mega-cta-bar {
    display: flex !important;
  }

  .nav__mega--cities .nav__mega-grid,
  .nav__mega--services .nav__mega-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .nav__mega--cities .nav__mega-panel,
  .nav__mega--services .nav__mega-panel {
    border: 1px solid rgba(11, 27, 58, 0.1) !important;
    border-radius: 10px !important;
    margin: 0.35rem 0 0.6rem !important;
  }

  .nav__mega--cities .nav__mega-grid,
  .nav__mega--services .nav__mega-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    padding: 8px 12px 6px !important;
    gap: 0 !important;
  }

  .nav__mega--cities .nav__mega-col,
  .nav__mega--services .nav__mega-col {
    border-right: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .nav__mega--cities .nav__mega-list a,
  .nav__mega--services .nav__mega-list a {
    display: block !important;
    width: 100% !important;
    padding: 0.55rem 0.2rem !important;
    white-space: normal !important;
  }

  .nav__mega-banner {
    padding: 10px 12px !important;
  }

  .nav__mega-banner p {
    font-size: 0.78rem !important;
    letter-spacing: 0.05em !important;
  }

  .nav__mega-cta-bar {
    padding: 12px 12px !important;
    font-size: 0.8rem !important;
  }
}

/* Mobile: only the logo bar sticks; marquee + contact strip scroll away */
@media (max-width: 980px) {
  html,
  body {
    overflow-x: clip !important;
  }

  .tw-marquee,
  .top-strip {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
  }

  .site-header-shell {
    position: sticky !important;
    top: 0 !important;
    z-index: 1200 !important;
    background: #fff !important;
    box-shadow: 0 4px 16px rgba(11, 27, 58, 0.06) !important;
    border-bottom: 1px solid #e8eef5 !important;
    overflow: visible !important;
  }

  .site-header-ph {
    display: block;
    width: 100%;
    height: 0;
    pointer-events: none;
  }

  .site-header,
  .site-header-shell .site-header {
    position: relative !important;
    top: auto !important;
    z-index: 1200 !important;
    width: 100% !important;
    background: #ffffff !important;
  }

  .site-header.is-fixed-logo,
  .site-header-shell .site-header.is-fixed-logo {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1200 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 16px rgba(11, 27, 58, 0.1) !important;
  }
}

/* Desktop: full-width horizontal quote bar */
.quote-bar {
  background: #0b1b3a;
  padding: 1.75rem 0 1.85rem;
  position: relative;
  z-index: 8;
}

.quote-bar__card {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.quote-bar__card::before {
  display: none;
}

.quote-bar__title,
body.page-home .quote-bar__title {
  position: relative;
  z-index: 1;
  margin: 0 0 1.15rem !important;
  text-align: center;
  color: #ffffff !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  line-height: 1.25 !important;
  font-style: normal !important;
}

.quote-bar__title span {
  color: #ff8c00 !important;
  font-style: normal !important;
}

.quote-bar__title .quote-bar__accent {
  color: #ffffff !important;
  font-style: normal !important;
}

.quote-bar__form {
  position: relative;
  z-index: 1;
  margin: 0;
}

.quote-bar__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: stretch;
}

.quote-bar__row input {
  width: 100% !important;
  min-height: 48px !important;
  height: 48px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 4px !important;
  background: #162544 !important;
  color: #ffffff !important;
  font-size: 0.88rem !important;
  font-family: "Inter", sans-serif !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
}

.quote-bar__row input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.quote-bar__row input:focus {
  outline: none;
  border-color: #ff8c00 !important;
  background: #1b2e52 !important;
  box-shadow: none !important;
}

.quote-bar__submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 180px;
  min-height: 48px !important;
  height: 48px !important;
  margin-top: 0 !important;
  padding: 0 22px !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: linear-gradient(135deg, #ff8c00, #e63312) !important;
  color: #fff !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(230, 51, 18, 0.28) !important;
}

.quote-bar__submit svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.quote-bar__submit:hover {
  filter: brightness(1.06);
}

.quote-bar__error,
.quote-bar__success {
  margin: 0.75rem 0 0 !important;
  text-align: center;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.quote-bar__error {
  color: #fecaca !important;
}

.quote-bar__success {
  color: #86efac !important;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .quote-bar__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-bar__submit {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 220px;
  }
}

/* Mobile: full-width navy form like Trusted Packers */
@media (max-width: 900px) {
  .quote-bar {
    background: #1a2238;
    padding: 2rem 0 2.15rem;
    overflow: hidden;
  }

  .quote-bar::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -18%;
    width: 85%;
    height: 80%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 42%, transparent 70%);
    transform: rotate(-16deg);
    pointer-events: none;
  }

  .quote-bar .container {
    width: min(100% - 2.5rem, 420px);
  }

  .quote-bar__card {
    overflow: visible;
    max-width: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .quote-bar__card::before {
    display: none;
  }

  .quote-bar__title,
  body.page-home .quote-bar__title {
    margin: 0 0 1.5rem !important;
    font-size: clamp(1.12rem, 5vw, 1.38rem) !important;
    letter-spacing: 0.06em !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;
  }

  .quote-bar__title .quote-bar__accent {
    color: #ff8c00 !important;
  }

  .quote-bar__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quote-bar__row input {
    min-height: 50px !important;
    height: 50px !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    font-size: 0.95rem !important;
  }

  .quote-bar__row input::placeholder {
    color: rgba(255, 255, 255, 0.58);
  }

  .quote-bar__row input:focus {
    background: rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.45) !important;
  }

  .quote-bar__submit {
    width: 100% !important;
    min-height: 54px !important;
    height: 54px !important;
    margin-top: 4px !important;
    border-radius: 8px !important;
    background: #ff8c00 !important;
    box-shadow: 0 8px 22px rgba(255, 140, 0, 0.38) !important;
    font-size: 1rem !important;
    letter-spacing: 0.1em !important;
  }
}

/* Counter strip below About — Trusted Packers style */
.tw-counters {
  background: #0b1b3a;
  padding: 2.5rem 0;
}

.tw-counters__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.tw-counter-card {
  text-align: center;
  padding: 1.65rem 1.1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.tw-counter-card__ico {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  color: #ff8c00;
}

.tw-counter-card__ico svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.tw-counter-card strong {
  display: block;
  font-family: "Rajdhani", sans-serif !important;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin: 0 0 0.4rem !important;
}

.tw-counter-card > span:last-child {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .tw-counters {
    padding: 1.75rem 0;
  }

  .tw-counters__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

/* Inner pages: sticky quote form in right sidebar */
.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--page-aside-w);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 0 1rem;
}

.page-shell__main {
  min-width: 0;
  max-width: 100%;
}

.page-aside,
.city-aside,
.blog-aside,
.content-grid > aside,
.city-layout > aside,
.service-layout > aside,
.blog-layout > aside,
.about-band > aside {
  display: grid;
  gap: 1rem;
  width: var(--page-aside-w);
  max-width: var(--page-aside-w);
  position: sticky;
  top: var(--sticky-offset);
  align-self: start;
  z-index: 4;
  min-width: 0;
}

.quote-sidebar {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: linear-gradient(165deg, #0f2347 0%, #0b1b3a 55%, #09152e 100%);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem 1.25rem;
  color: #fff;
  box-shadow: 0 14px 36px rgba(11, 27, 58, 0.22);
}

.quote-sidebar__title {
  margin: 0 0 1rem;
  text-align: center;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #fff;
}

.quote-sidebar__title span {
  color: #ff8c00;
}

.quote-sidebar__title .quote-sidebar__accent {
  color: #fff;
}

.quote-sidebar__fields {
  display: grid;
  gap: 0.65rem;
}

.quote-sidebar__fields input {
  width: 100%;
  min-height: 46px;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.92rem;
}

.quote-sidebar__fields input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.quote-sidebar__fields input:focus {
  outline: none;
  border-color: rgba(255, 140, 0, 0.65);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.25);
}

.quote-sidebar__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 48px;
  margin-top: 0.15rem;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff8c00 0%, #e63312 100%);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.quote-sidebar__submit svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.quote-sidebar__submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.quote-sidebar__error,
.quote-sidebar__success {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.quote-sidebar__error {
  color: #fecaca;
}

.quote-sidebar__success {
  color: #bbf7d0;
}

body:not(.page-home) .quote-bar {
  display: none !important;
}

@media (max-width: 980px) {
  .page-shell {
    grid-template-columns: 1fr;
    width: min(100% - 1.5rem, var(--max));
    padding: 0;
  }

  /* City + city-service pages: only quote form above content on mobile */
  .city-layout > aside,
  .content-grid > aside {
    display: contents;
    position: static;
    width: auto;
    max-width: none;
    order: unset;
  }

  .city-layout > .quote-sidebar,
  .content-grid > .quote-sidebar {
    order: -3;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.35rem;
  }

  .city-layout > .city-article,
  .content-grid > .prose {
    order: -2;
  }

  .city-layout > .side-card,
  .content-grid > .side-card {
    order: -1;
    width: 100%;
    max-width: 100%;
  }

  .page-aside,
  .blog-aside,
  .service-layout > aside,
  .blog-layout > aside,
  .about-band > aside {
    position: static;
    width: 100%;
    max-width: 100%;
    order: -1;
  }

  .quote-sidebar {
    margin-bottom: 0.25rem;
  }
}

/* Header logo — unified larger sizing (overrides scattered legacy rules) */
.site-header .brand__logo,
body.page-home .site-header .brand__logo {
  height: var(--header-logo-h) !important;
  max-width: var(--header-logo-max-w) !important;
  width: auto !important;
  object-fit: contain !important;
}

.site-header {
  height: auto !important;
  min-height: calc(var(--header-logo-h) + 24px) !important;
}

.site-header__inner {
  min-height: calc(var(--header-logo-h) + 24px) !important;
  height: auto !important;
}

:root {
  --header-h: calc(var(--header-logo-h) + 24px);
}

@media (max-width: 980px) {
  :root {
    --header-logo-h: 52px;
    --header-logo-max-w: 205px;
    --header-h: 72px;
  }

  .site-header,
  .site-header-shell .site-header {
    height: var(--header-h) !important;
    min-height: var(--header-h) !important;
    max-height: var(--header-h) !important;
  }

  .site-header__inner {
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
  }
}

@media (max-width: 768px) {
  :root {
    --header-logo-h: 48px;
    --header-logo-max-w: 190px;
    --header-h: 68px;
  }
}

/* ==========================================================================
   MOBILE NAV + HEADER — final unified overrides (wins over legacy blocks)
   ========================================================================== */
@media (max-width: 980px) {
  body.nav-lock::before {
    display: none !important;
    content: none !important;
  }

  html.nav-lock,
  body.nav-lock {
    overflow: hidden !important;
  }

  .site-header-ph {
    display: none !important;
    height: 0 !important;
  }

  .site-header-shell {
    position: sticky !important;
    top: 0 !important;
    z-index: 1200 !important;
    background: #fff !important;
  }

  .site-header,
  .site-header-shell .site-header,
  .site-header.is-fixed-logo,
  .site-header-shell .site-header.is-fixed-logo {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    height: var(--header-h, 72px) !important;
    min-height: var(--header-h, 72px) !important;
    max-height: var(--header-h, 72px) !important;
    overflow: visible !important;
    z-index: 1202 !important;
    background: #fff !important;
    box-shadow: none !important;
    border-bottom: 1px solid #e8eef5 !important;
  }

  .site-header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    min-height: 0 !important;
    padding-block: 0 !important;
    gap: 0.75rem !important;
    position: relative !important;
    z-index: 1203 !important;
    background: #fff !important;
  }

  .site-header .brand,
  .brand {
    position: relative !important;
    z-index: 1204 !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    margin-right: auto !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    position: relative !important;
    z-index: 1205 !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 34px !important;
    height: auto !important;
    margin: 0 0 0 auto !important;
    padding: 10px !important;
    border: 0 !important;
    border-radius: 3px !important;
    background: #e63312 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(230, 51, 18, 0.35) !important;
  }

  .nav-toggle span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #fff !important;
    border-radius: 1px !important;
    transition: transform 0.22s ease, opacity 0.18s ease !important;
  }

  .nav-toggle.is-open {
    background: #0b1b3a !important;
    box-shadow: 0 4px 14px rgba(11, 27, 58, 0.28) !important;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  .nav-backdrop {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1190 !important;
    background: rgba(11, 27, 58, 0.46) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav-backdrop.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header-shell .nav,
  .site-header .nav,
  .nav {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: var(--nav-drawer-top, var(--header-h, 72px)) !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: min(340px, 88vw) !important;
    max-width: min(340px, 88vw) !important;
    height: calc(100dvh - var(--nav-drawer-top, var(--header-h, 72px))) !important;
    max-height: calc(100dvh - var(--nav-drawer-top, var(--header-h, 72px))) !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border: 0 !important;
    border-top: 1px solid #fee2e2 !important;
    border-radius: 0 !important;
    box-shadow: 18px 0 40px rgba(11, 27, 58, 0.16) !important;
    overflow: hidden !important;
    z-index: 1195 !important;
    transform: translateX(-105%) !important;
    opacity: 1 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.28s ease, visibility 0.28s ease !important;
  }

  .site-header-shell .nav.is-open,
  .site-header .nav.is-open,
  .nav.is-open {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header-shell .nav__scroll,
  .site-header .nav__scroll,
  .nav__scroll {
    display: block !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 8px 16px calc(20px + env(safe-area-inset-bottom, 0px)) !important;
    padding-left: max(16px, env(safe-area-inset-left, 0px)) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================================================
   MOBILE DRAWER — logo + solid close (wins over all prior nav blocks)
   ========================================================================== */
@media (min-width: 981px) {
  .nav__drawer-head {
    display: none !important;
  }
}

@media (max-width: 980px) {
  body.nav-open .site-header-shell,
  body.nav-lock .site-header-shell {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1300 !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  body.nav-open .site-header,
  body.nav-lock .site-header,
  body.nav-open .site-header-shell .site-header,
  body.nav-lock .site-header-shell .site-header {
    display: none !important;
  }

  body.nav-open .nav-backdrop,
  body.nav-lock .nav-backdrop {
    z-index: 1290 !important;
  }

  .site-header .brand,
  .brand {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .site-header .brand__logo,
  .brand__logo,
  body.page-home .site-header .brand__logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: var(--header-logo-h, 48px) !important;
    max-width: var(--header-logo-max-w, 190px) !important;
    width: auto !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    width: auto !important;
    min-width: 34px !important;
    height: auto !important;
    padding: 10px !important;
    border: 0 !important;
    border-radius: 3px !important;
    background: #e63312 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(230, 51, 18, 0.35) !important;
  }

  .nav-toggle span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #fff !important;
    border-radius: 1px !important;
    transition: transform 0.22s ease, opacity 0.18s ease !important;
  }

  .nav-toggle.is-open {
    background: #0b1b3a !important;
    box-shadow: 0 4px 14px rgba(11, 27, 58, 0.28) !important;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  .nav__drawer-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 0 0 auto !important;
    gap: 0.75rem !important;
    padding: 12px 14px !important;
    border-bottom: 1px solid #e8eef5 !important;
    background: #fff !important;
  }

  .nav__drawer-brand {
    display: inline-flex !important;
    align-items: center !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    text-decoration: none !important;
  }

  .nav__drawer-brand img {
    display: block !important;
    height: 40px !important;
    width: auto !important;
    max-width: min(170px, 52vw) !important;
  }

  .nav__drawer-close {
    display: grid !important;
    place-items: center !important;
    flex: 0 0 auto !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #e63312 !important;
    color: #fff !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(230, 51, 18, 0.35) !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
  }

  .nav__drawer-close:hover {
    background: #c42a0f !important;
    transform: scale(1.03);
  }

  .nav__drawer-close svg {
    width: 20px !important;
    height: 20px !important;
  }

  .site-header-shell .nav,
  .site-header .nav,
  .nav {
    top: var(--nav-drawer-top, var(--header-h, 72px)) !important;
    height: calc(100dvh - var(--nav-drawer-top, var(--header-h, 72px))) !important;
    max-height: calc(100dvh - var(--nav-drawer-top, var(--header-h, 72px))) !important;
  }

  body.nav-open .site-header-shell .nav,
  body.nav-open .site-header .nav,
  body.nav-open .nav,
  body.nav-lock .site-header-shell .nav,
  body.nav-lock .site-header .nav,
  body.nav-lock .nav {
    top: 0 !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    z-index: 1295 !important;
    pointer-events: auto !important;
  }

  .site-header-shell .nav__scroll,
  .site-header .nav__scroll,
  .nav__scroll {
    padding-top: 4px !important;
  }
}

/* ==========================================================================
   MEGAMENU + MOBILE DRAWER — vertical alignment + visible logo (final)
   ========================================================================== */
@media (min-width: 981px) {
  .site-header-shell {
    position: sticky !important;
    min-height: var(--header-h, 72px) !important;
  }

  .site-header-shell .nav {
    top: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    min-height: var(--header-h, 72px) !important;
    align-items: stretch !important;
  }

  .site-header-shell .nav__scroll {
    align-items: center !important;
    height: 100% !important;
    min-height: var(--header-h, 72px) !important;
  }

  .site-header-shell .nav__mega,
  .site-header-shell .nav__mega--services,
  .site-header-shell .nav__mega--cities {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin-top: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 1095 !important;
  }

  .site-header-shell .nav__mega-panel {
    display: flex !important;
    flex-direction: column !important;
    max-width: var(--max, 1200px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .nav__mega--cities .nav__mega-grid,
  .nav__mega--services .nav__mega-grid,
  .nav__mega-grid--even {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 14px 1rem 10px !important;
    align-items: start !important;
    align-content: start !important;
  }

  .nav__mega-col {
    align-self: start !important;
    min-width: 0 !important;
    padding: 0.2rem 0.85rem !important;
    border-right: 1px solid rgba(11, 27, 58, 0.08) !important;
  }

  .nav__mega-col:last-child {
    border-right: 0 !important;
  }

  .nav__mega-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.08rem !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav__mega-list a {
    display: flex !important;
    align-items: center !important;
    min-height: 2rem !important;
    padding: 0.42rem 0.35rem !important;
    line-height: 1.3 !important;
  }

  .nav__mega-banner,
  .nav__mega-cta-bar {
    flex: 0 0 auto !important;
  }
}

@media (max-width: 980px) {
  .nav__drawer-brand .brand__logo,
  .nav__drawer-brand img {
    display: block !important;
    height: 42px !important;
    max-width: min(190px, 58vw) !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: left center !important;
    filter: brightness(0) saturate(100%) invert(12%) sepia(38%) saturate(1604%) hue-rotate(186deg) brightness(92%) contrast(94%) !important;
  }

  .nav__drawer-head {
    background: #fff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 12px 14px !important;
  }

  .site-header-shell .nav__mega,
  .nav__mega {
    position: static !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav__dropdown.is-open > .nav__mega {
    display: block !important;
  }

  .nav__mega-panel {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.35rem 0 0.65rem !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }

  .nav__mega--cities .nav__mega-grid,
  .nav__mega--services .nav__mega-grid {
    display: flex !important;
    flex-direction: column !important;
    max-height: min(50vh, 360px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 6px 10px 4px !important;
  }

  .nav__mega-col {
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .nav__mega-list a {
    white-space: normal !important;
    padding: 0.55rem 0.25rem !important;
    font-size: 0.92rem !important;
  }

  .nav__mega-banner {
    padding: 10px 12px !important;
  }

  .nav__mega-cta-bar {
    padding: 11px 12px !important;
    font-size: 0.78rem !important;
  }

  .nav__dropdown > .nav__link {
    width: 100% !important;
    justify-content: space-between !important;
  }
}
