@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600&display=swap');
:root {
  --ink: #0d1d2d;
  --ink2: #12283c;
  --accent: #c91f2b;
  --cream: #f6f2e9;
  --paper: #fff;
  --muted: #63707b;
  --line: #dfe3e3;
}

/* Homepage branch network */
.home-branches {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(201, 31, 43, .34), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(42, 111, 155, .2), transparent 32%),
    linear-gradient(135deg, #07131e 0%, #10283b 52%, #210a10 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.branches-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 38px;
}

.branches-heading>p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.8;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.branch-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 29, 45, .1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(13, 29, 45, .1);
  color: inherit;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.branch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 31, 43, .35);
  box-shadow: 0 24px 50px rgba(13, 29, 45, .17);
}

.branch-card>img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.branch-card:hover>img {
  transform: scale(1.045);
}

.branch-card>div {
  position: relative;
  min-height: 104px;
  padding: 28px 18px 17px;
}

.branch-card i {
  position: absolute;
  top: -19px;
  left: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef6670, var(--accent) 58%, #8f1018);
  color: #fff;
  box-shadow: 0 8px 18px rgba(201, 31, 43, .28);
}

.branch-card h3 {
  margin: 0;
  color: var(--ink);
  font: 800 clamp(15px, 1.35vw, 19px)/1.2 "Manrope", sans-serif;
}

.branch-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.branch-image-credit {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.branch-image-credit a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Gallery page */
.page-hero.gallery-hero {
  background:
    linear-gradient(90deg, rgba(7, 23, 36, .97), rgba(7, 23, 36, .78)),
    url("assets/service-household-packing.png") center 44% / cover;
}

.gallery-section {
  background:
    radial-gradient(circle at 92% 5%, rgba(201, 31, 43, .09), transparent 26%),
    #fffdf8;
}

.gallery-intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.gallery-card {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(13, 29, 45, .11);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(13, 29, 45, .11);
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(13, 29, 45, .17);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  min-height: 132px;
  padding: 23px 24px 25px;
  border-top: 4px solid var(--accent);
}

.gallery-card h3 {
  margin: 0;
  color: var(--ink);
  font: 800 clamp(17px, 1.7vw, 22px)/1.25 "Manrope", sans-serif;
}

.gallery-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

@media(max-width:1050px) {
  .branches-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media(max-width:760px) {
  .branches-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }

  .branches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .branch-card {
    border-radius: 13px;
  }

  .branch-card>div {
    min-height: 91px;
    padding: 25px 12px 13px;
  }

  .branch-card i {
    left: 12px;
    width: 34px;
    height: 34px;
  }

  .branch-card h3 {
    overflow-wrap: anywhere;
    font-size: clamp(13px, 4vw, 16px);
  }

  .branch-card p {
    font-size: 10px;
  }

  .branch-image-credit {
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    border-radius: 14px;
  }

  .gallery-card figcaption {
    min-height: 0;
    padding: 19px 18px 21px;
  }
}

/* Search-friendly service-area pages */
.area-hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(7, 23, 36, .97), rgba(7, 23, 36, .72)),
    var(--area-image) center / cover;
}

.area-hero .wrap {
  position: relative;
  z-index: 1;
}

.area-hero .hero-actions {
  margin-top: 30px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.breadcrumbs a {
  color: #fff;
  text-underline-offset: 3px;
}

.area-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.area-intro-grid h2,
.nearby-areas h2 {
  margin: 0;
  color: var(--ink);
  font: 500 clamp(36px, 4.8vw, 62px)/1.05 "Manrope", sans-serif;
  letter-spacing: -.045em;
}

.area-intro-grid h2 em,
.nearby-areas h2 em {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.area-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.area-services {
  background: var(--cream);
}

.area-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.area-service-grid article {
  padding: 28px;
  border: 1px solid rgba(13, 29, 45, .09);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 29, 45, .07);
}

.area-service-grid i {
  color: var(--accent);
  font-size: 26px;
}

.area-service-grid h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font: 700 19px/1.3 "Manrope", sans-serif;
}

.area-service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.area-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.area-steps li>span {
  color: var(--accent);
  font: 700 17px/1.4 "Manrope", sans-serif;
}

.area-steps h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font: 700 18px/1.4 "Manrope", sans-serif;
}

.area-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.nearby-areas {
  background: #f8fafb;
}

.nearby-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 35px;
}

.nearby-links a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.nearby-links a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.nearby-links span {
  color: var(--accent);
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 60px 0;
  background: var(--cream);
}

.error-page h1 {
  margin: 0 0 15px;
  color: var(--ink);
  font: 600 clamp(38px, 6vw, 70px)/1.05 "Manrope", sans-serif;
}

.error-page p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

@media(max-width:900px) {
  .area-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media(max-width:700px) {
  .area-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .area-service-grid,
  .nearby-links {
    grid-template-columns: 1fr;
  }

  .area-service-grid article {
    padding: 23px;
  }
}

.home-branches .eyebrow {
  color: #ff7c86;
}

.home-branches .branches-heading h2 {
  color: #fff;
}

.home-branches .branches-heading h2 em {
  color: #f3c1c5;
}

.home-branches .branches-heading>p {
  color: #c8d4dc;
}

@media(max-width:380px) {
  .branches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .branch-card>div {
    min-height: 84px;
    padding: 23px 10px 12px;
  }

  .branch-card i {
    left: 10px;
  }

  .branch-card h3 {
    font-size: 12px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

.topbar {
  background: #081520;
  color: #cbd3d9;
  font-size: 12px;
  letter-spacing: .08em;
}

.topbar-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-shell {
  height: 84px;
  background: #fff;
  position: sticky;
  top: var(--contact-banner-height, 42px);
  z-index: 20;
  border-bottom: 1px solid #edf0f1;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 5px 7px rgba(13, 29, 45, .2));
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid #d8a44a;
  background: var(--ink);
  color: #d8a44a;
  display: grid;
  place-items: center;
  font: italic 600 27px "Playfair Display";
  transform: rotate(45deg);
  border-radius: 4px;
}

.brand-mark::first-letter {
  transform: rotate(-45deg);
}

.brand>span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand b {
  font: 700 19px "Manrope";
  letter-spacing: .19em;
}

.brand small {
  font-size: 10px;
  font-weight: bolder;
  letter-spacing: .13em;
  margin-top: 5px;
  color: #687580;
}

.nav nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav nav a:hover {
  color: #b51622;
}

.btn {
  background: linear-gradient(135deg, #ef6670, var(--accent) 55%, #8f1018);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 23px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  border: 0;
  cursor: pointer;
  transition: .2s;
}

.btn:hover {
  background: linear-gradient(135deg, #dc4651, #b51622 55%, #730b12);
  transform: translateY(-1px);
}

.btn-small {
  padding: 13px 18px;
}

.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
}

.hero {
  min-height: 690px;
  position: relative;
  background: url('https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=2000&q=90') center/cover;
  color: white;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 31, .96) 0%, rgba(6, 19, 31, .82) 48%, rgba(6, 19, 31, .28) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
  min-height: 690px;
  padding-block: 64px;
}

.eyebrow {
  font: 700 11px "Manrope";
  letter-spacing: .2em;
  color: #a8121d;
  margin: 0 0 18px;
}

.eyebrow.light {
  color: #f4efef;
}

.hero h1,
.section h2,
.dark-section h2,
.local h2,
.cta h2 {
  font: 500 clamp(40px, 5vw, 67px)/1.03 "Manrope";
  letter-spacing: -.045em;
  margin: 0;
}

.hero h1 em,
.section h2 em,
.dark-section h2 em,
.local h2 em,
.cta h2 em {
  font-family: "Playfair Display";
  font-weight: 600;
  color: var(--accent);
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: #d7dee3;
  max-width: 650px;
  margin: 28px 0 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 7px;
}

.text-link span {
  color: var(--accent);
  margin-left: 8px;
}

.text-link.dark {
  border-color: #b9c0c5;
}

.trust-row {
  display: flex;
  gap: 25px;
  margin-top: 45px;
  color: #bec9d0;
  font-size: 13px;
}

.trust-row b {
  color: whitesmoke;
  margin-right: 5px;
}

.quote-card {
  position: relative;
  background: #fff;
  color: var(--ink);
  padding: 35px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .28);
}

.quote-card h2 {
  font: 600 30px "Manrope";
  margin: 0;
}

.quote-card>p:not(.eyebrow):not(.success) {
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0 22px;
}

.quote-card label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 13px;
}

.quote-card input,
.quote-card select {
  border: 1px solid #d8dddf;
  background: #f9faf9;
  padding: 12px;
  color: var(--ink);
  outline: none;
  font-family: "Manrope", sans-serif;
}

.quote-card input:focus,
.quote-card select:focus {
  border-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.full {
  width: 100%;
  margin-top: 4px;
}

.quote-card small {
  display: block;
  text-align: center;
  color: #8a949b;
  font-size: 9px;
  margin-top: 10px;
}

.success {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 40;
  font-size: 12px;
  color: #168150!important;
  background: #ecfaf3;
  padding: 13px 15px;
  margin: 12px 0 0!important;
  border: 1px solid rgba(22, 129, 80, .18);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(7, 55, 34, .15);
  overflow: hidden;
}

.success.is-counting::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #168150;
  transform-origin: left center;
  animation: success-countdown 4.5s linear forwards;
}

@keyframes success-countdown {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

.success.is-error {
  color: #9c2f2f!important;
  background: #fff0f0;
  border-color: rgba(156, 47, 47, .2);
}

.quote-card [type="submit"]:disabled {
  cursor: wait;
  opacity: .72;
}

.whatsapp-followup {
  position: absolute;
  right: 20px;
  bottom: 78px;
  z-index: 39;
  padding: 9px 12px;
  border-radius: 5px;
  background: #ddf8e7;
  color: #155f36;
  font: 700 10px "Manrope";
  box-shadow: 0 8px 20px rgba(21, 95, 54, .16);
}

.stats {
  background: var(--ink);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

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

.stats-grid div {
  padding: 25px 30px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font: 600 19px "Manrope";
}

.stats-grid span {
  font-size: 11px;
  color: #9eabb5;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.section {
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: saturate(.8);
}

.image-stack:before {
  content: "";
  position: absolute;
  inset: -16px 40px 40px -16px;
  border: 1px solid #dc7e86;
  z-index: -1;
}

.image-note {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: linear-gradient(135deg, #ef6670, var(--accent) 55%, #8f1018);
  color: #fff;
  padding: 23px 30px;
  min-width: 270px;
}

.image-note b,
.image-note span {
  display: block;
}

.image-note b {
  font: 600 17px "Manrope";
}

.image-note span {
  font-size: 11px;
  margin-top: 5px;
}

.about-copy>p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.check-grid span {
  font-size: 13px;
  font-weight: 600;
}

.check-grid span::first-letter {
  color: var(--accent);
}

.services {
  background: var(--cream);
}

.section-head,
.process-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.section-head>p,
.process-top>p {
  color: var(--muted);
  max-width: 380px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d8ddd9;
  border: 1px solid #d8ddd9;
}

.service-card {
  background: #fff;
  padding: 34px;
  position: relative;
  min-height: 300px;
  transition: .25s;
}

.service-card:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-5px);
  z-index: 2;
}

.service-num {
  position: absolute;
  right: 25px;
  top: 22px;
  font: 500 11px "Manrope";
  color: #a2abb0;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #e7aeb3;
  color: #b51622;
  font-size: 24px;
  margin-bottom: 28px;
}

.service-card h3 {
  font: 600 20px "Manrope";
}

.service-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.service-card:hover p {
  color: #b9c3ca;
}

.service-card a {
  position: absolute;
  bottom: 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.service-card a span {
  color: var(--accent);
  margin-left: 10px;
}

.dark-section {
  background: var(--ink);
  color: white;
  padding: 110px 0;
}

.process-top>p {
  color: #a8b4bc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #3b4955;
}

.process-grid article {
  padding: 40px 30px 10px 0;
  margin-right: 30px;
  border-right: 1px solid #3b4955;
}

.process-grid article:last-child {
  border: 0;
}

.process-grid article>span {
  font: 600 12px "Manrope";
  color: var(--accent);
}

.process-grid h3 {
  font: 600 19px "Manrope";
  margin-top: 38px;
  text-transform: capitalize;
}

.process-grid p {
  color: #a8b4bc;
  font-size: 13px;
  line-height: 1.7;
}

.promise-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.promise-grid>div>p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.promise-list>div {
  display: flex;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 27px 0;
}

.promise-list b {
  font: 600 12px "Manrope";
  color: #a8121d;
}

.promise-list span {
  display: flex;
  flex-direction: column;
}

.promise-list strong {
  font: 600 18px "Manrope";
}

.promise-list small {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

.local {
  background: #142b3e;
  color: white;
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
}

.local-grid>.local-copy {
  padding: 60px 60px 60px 0;
}

.local-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.local h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.location-city {
  white-space: nowrap;
  overflow-wrap: normal;
}

.local-copy>p:not(.eyebrow) {
  max-width: 500px;
}

.local p:not(.eyebrow) {
  color: #bdc7ce;
  line-height: 1.7;
}

.local address {
  font-style: normal;
  color: #fff;
  line-height: 1.6;
  border-left: 2px solid var(--accent);
  padding-left: 18px;
  margin: 25px 0;
}

.local-service-area {
  display: grid;
  gap: 10px;
  color: #bdc7ce;
  font-size: 12px;
}

.local-service-area span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.local-service-area i {
  width: 18px;
  color: var(--accent);
  text-align: center;
}

.local-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.map-embed {
  position: relative;
  overflow: hidden;
}

.map-embed iframe {
  display: block;
}

.local .map-embed,
.local iframe {
  width: 100%;
  height: 360px;
}

.local iframe {
  border: 0;
  filter: saturate(.55) contrast(1.05);
}

.map-open-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid #101820;
  background: #101820;
  color: #fff;
  box-shadow: 0 8px 24px rgba(7, 19, 30, .28);
  font: 700 10px "Manrope";
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: .2s;
}

.map-open-link:hover,
.map-open-link:focus-visible {
  border-color: #8f1018;
  background: linear-gradient(135deg, #ef6670, var(--accent) 55%, #8f1018);
  color: #fff;
  transform: translateY(-2px);
}

.map-open-link:hover i,
.map-open-link:focus-visible i {
  color: #fff;
}

.map-open-link i {
  color: #fff;
}

@media(max-width:600px) {
  .local-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

/* Always-visible contact details on the right side of the desktop navbar */
@media(min-width:1051px) {
  .nav {
    grid-template-columns: minmax(220px, 1fr) auto auto auto;
    grid-template-areas: "brand navigation contacts actions";
    gap: 17px;
  }

  .nav-contact-stack {
    grid-area: contacts;
    min-width: 136px;
    display: grid;
    gap: 3px;
    align-self: center;
  }

  .nav-contact-stack a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 2px 5px;
    border-radius: 4px;
    color: #111820;
    font: 700 9px/1.25 "Manrope";
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, transform .2s ease;
  }

  .nav-contact-stack i {
    width: 12px;
    color: #95111b;
    text-align: center;
  }

  .nav-contact-stack a:hover,
  .nav-contact-stack a:focus-visible {
    background: #fbe7e9;
    color: #811018;
    transform: translateX(3px);
  }
}

@media(max-width:1050px) {
  .nav-contact-stack {
    display: none;
  }
}

/* Compact customer-review presentation */
.home-reviews {
  padding-block: 52px;
}

.home-reviews .reviews-heading {
  max-width: 900px;
  margin: 0 auto 24px;
}

.home-reviews .review-carousel {
  max-width: 900px;
  margin-inline: auto;
}

.home-reviews .review-card {
  min-height: 220px;
  padding: 32px 42px;
}

.home-reviews .review-card blockquote {
  margin: 15px 0 20px;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.35;
}

.home-reviews .review-author>span {
  width: 40px;
  height: 40px;
}

/* Individual service detail pages */
.service-detail-hero {
  min-height: 480px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.service-detail-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-detail-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 31, .94), rgba(6, 19, 31, .66) 52%, rgba(6, 19, 31, .16));
}

.service-detail-hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 72px;
}

.service-detail-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 6vw, 78px);
}

.service-detail-hero-copy>p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 28px;
  color: #dce5ea;
  font-size: 17px;
  line-height: 1.7;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 80px;
  align-items: start;
}

#service-detail-description p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.service-detail-layout aside {
  padding: 32px;
  border: 1px solid rgba(201, 31, 43, .34);
  border-radius: 14px;
  background: #fbf6ec;
}

.service-detail-layout aside ul {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-detail-layout aside li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #344453;
  font-size: 13px;
  line-height: 1.55;
}

.service-detail-layout aside li i {
  margin-top: 4px;
  color: #9e111b;
}

.service-detail-benefits {
  background: var(--cream);
}

.service-detail-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-detail-benefit-grid article {
  padding: 30px;
  border: 1px solid rgba(13, 29, 45, .1);
  border-radius: 12px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-detail-benefit-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 31, 43, .65);
  box-shadow: 0 18px 38px rgba(13, 29, 45, .1);
}

.service-detail-benefit-grid article>span {
  color: #9e111b;
  font: 700 11px "Manrope";
}

.service-detail-benefit-grid h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.service-detail-benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

@media(max-width:900px) {
  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-detail-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .home-reviews {
    padding-block: 42px;
  }

  .home-reviews .review-card {
    min-height: 250px;
    padding: 25px 22px;
  }

  .home-reviews .review-card blockquote {
    font-size: 21px;
  }

  .service-detail-hero {
    min-height: 420px;
  }

  .service-detail-hero-copy {
    padding-block: 48px;
  }

  .service-detail-hero h1 {
    font-size: 43px;
  }

  .service-detail-hero-copy>p:not(.eyebrow) {
    font-size: 14px;
  }

  .service-detail-layout aside,
  .service-detail-benefit-grid article {
    padding: 24px;
  }
}

.cta {
  background: linear-gradient(135deg, #ef6670, var(--accent) 55%, #8f1018);
  color: #fff;
  padding: 70px 0;
}

.cta h2 em {
  color: #fff0f1;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.dark-btn:hover {
  background: #20384c;
}

footer {
  background: #07131e;
  color: #d3d9dd;
  padding: 75px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1.2fr;
  gap: 55px;
}

.footer-brand .brand-mark {
  background: #172b3d;
}

.footer-brand b {
  color: white;
}

.footer-grid>div:first-child>p {
  color: #8f9ba4;
  line-height: 1.7;
  max-width: 300px;
  margin-top: 25px;
  font-size: 13px;
}

.footer-grid h4 {
  color:white;
  font: 700 11px "Manrope";
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 22px;
}

.footer-grid>div>a:not(.brand) {
  display: block;
  color: #aab4bb;
  font-size: 13px;
  margin: 13px 0;
}

.footer-grid address {
  font-style: normal;
  color: #aab4bb;
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid .footer-map {
  color: #dc5963!important;
  margin-top: 18px!important;
}

.copyright {
  border-top: 1px solid #283744;
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #788692;
  font-size: 11px;
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.developer-credit img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.developer-credit a {
  color: #f28f97;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.brand-mark {
  transform: none;
}

@media(max-width:900px) {
  .nav nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    padding: 25px 30px;
    box-shadow: 0 10px 20px #0002;
  }
  .nav nav.open {
    display: flex;
  }
  .nav>.btn {
    display: none;
  }
  .menu {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    background-position: 65% center;
  }
  .quote-card {
    max-width: 600px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .promise-grid,
  .local-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .local-grid>.local-copy {
    padding-right: 0;
  }
  .local-grid {
    gap: 0;
  }
  .local .map-embed,
  .local iframe {
    height: 300px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    gap: 40px;
  }
}

@media(max-width:600px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }
  .topbar-inner span:first-child {
    display: none;
  }
  .topbar-inner {
    justify-content: center;
  }
  .nav-shell {
    height: 72px;
  }
  .brand b {
    font-size: 15px;
  }
  .brand small {
    font-size: 6.5px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 0;
  }
  .nav nav {
    top: 72px;
  }
  .hero-grid {
    padding: 55px 0;
  }
  .hero h1 {
    font-size: 44px;
  }
  .lead {
    font-size: 15px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .trust-row {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .quote-card {
    padding: 25px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid div {
    padding: 20px 13px;
  }
  .section,
  .dark-section {
    padding: 75px 0;
  }
  .split {
    gap: 65px;
  }
  .image-stack img {
    height: 420px;
  }
  .image-note {
    right: 0;
    min-width: 240px;
  }
  .check-grid,
  .service-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head,
  .process-top,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-card {
    min-height: 275px;
  }
  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid #3b4955;
    margin: 0;
  }
  .promise-grid {
    gap: 40px;
  }
  .local-grid>.local-copy {
    padding: 65px 0 35px;
  }
  .local .map-embed,
  .local iframe {
    height: 260px;
  }
  .cta h2 {
    font-size: 38px;
  }
  .footer-grid {
    gap: 35px;
  }
  .copyright {
    flex-direction: column;
    gap: 10px;
  }
}

.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 90px 0;
}

.page-hero h1 {
  font: 500 clamp(42px, 6vw, 70px)/1.05 "Manrope";
  letter-spacing: -.045em;
  margin: 0;
}

.page-hero h1 em {
  font-family: "Playfair Display";
  color: var(--accent);
}

.page-hero p:last-child {
  max-width: 650px;
  color: #b9c4cb;
  line-height: 1.7;
  margin-top: 24px;
}

.page-content {
  min-height: 420px;
}

.nav nav a.active {
  color: #b51622;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.contact-form-only {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.contact-cards article {
  border: 1px solid var(--line);
  padding: 35px;
}

.contact-cards address {
  font-style: normal;
  line-height: 1.8;
  color: var(--muted);
}

.contact-cards .map-embed,
.contact-cards iframe {
  width: 100%;
  height: 280px;
}

.contact-cards .map-embed {
  align-self: center;
}

.contact-cards iframe {
  border: 0;
}

.home-hero {
  background-image: none;
  min-height: 700px;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/hero-moving-optimized.jpg') center/cover no-repeat;
  transform: scaleX(-1);
}

.home-hero .hero-shade {
  z-index: 1;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding-block: 52px;
}

.home-hero .hero-copy {
  max-width: 650px;
}

.hero-enquiry-form {
  width: 100%;
  max-width: 470px;
  justify-self: end;
}

.contact-enquiry-form {
  width: 100%;
  max-width: 470px;
  justify-self: center;
  padding: 24px;
}

.contact-enquiry-form h2 {
  color: var(--accent);
  font-size: 25px;
}

.contact-enquiry-form>p:not(.eyebrow):not(.success) {
  margin-bottom: 14px;
}

.contact-enquiry-form label {
  margin-bottom: 9px;
}

.contact-enquiry-form input,
.contact-enquiry-form select {
  padding: 10px;
}

.home-hero .hero-copy>.eyebrow {
  font-size: 15px;
  line-height: 1.5;
  color: whitesmoke; /* MACHILIPATNAM’S BEST PACKERS AND MOVERS */
}

.home-hero .hero-copy h1 em {
  color: whitesmoke;  /* We will move everything. */
}

.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.home-intro-grid>div:last-child p {
  color: var(--muted);
  line-height: 1.8;
}

.home-benefits {
  background: var(--cream);
  padding: 0 0 100px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
}

.benefits-grid article {
  padding: 42px;
  border-right: 1px solid var(--line);
}

.benefits-grid article:last-child {
  border: 0;
}

.benefits-grid span {
  font: 700 15px "Manrope";
  color: var(--accent);
}

.benefits-grid h3 {
  font: 600 22px "Manrope";
  margin: 28px 0 12px;
}

.benefits-grid p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.home-photo {
  position: relative;
}

.home-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.home-next {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
}

.home-next h2 {
  font: 500 clamp(40px, 5vw, 64px)/1.05 "Manrope";
  letter-spacing: -.045em;
  margin: 0;
}

.home-next h2 em {
  font-family: "Playfair Display";
  color: var(--accent);
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid #41505d;
}

.next-grid a {
  display: flex;
  flex-direction: column;
  padding: 35px 30px;
  border-right: 1px solid #41505d;
  transition: .2s;
}

.next-grid a:hover {
  background: #142b3e;
}

.next-grid span {
  font-size: 11px;
  color: var(--accent);
}

.next-grid b {
  font: 600 19px "Manrope";
  margin: 28px 0 10px;
}

.next-grid small {
  color: #9facb5;
  line-height: 1.6;
}

.admin-body {
  background: #f3f1eb;
}

.admin-header {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
}

.admin-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header .wrap>div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-status {
  font-size: 11px;
  color: #9ed4b5;
}

.admin-back {
  padding: 11px 15px;
}

.admin-shell {
  padding: 65px 0;
}

.admin-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.admin-title h1 {
  font: 600 42px "Manrope";
  margin: 0;
}

.admin-title>div>p:last-child {
  color: var(--muted);
}

.admin-counts {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.admin-count {
  background: var(--ink);
  color: #fff;
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
}

.admin-count strong {
  font: 600 30px "Manrope";
  color: white;
}

.admin-count span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.admin-count-today {
  background: linear-gradient(135deg, #d93643, #a8121d);
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin: 35px 0 18px;
}

.admin-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-filters {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.admin-filters label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 145px;
}

.admin-filters label>span,
.admin-pagination label>span {
  color: #4d5a65;
  font: 700 10px "Manrope";
  text-transform: uppercase;
  letter-spacing: .08em;
}

.admin-filters .admin-search-filter {
  flex: 1;
  max-width: 440px;
  min-width: 230px;
}

.admin-filters input,
.admin-pagination select {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.admin-filters input:focus,
.admin-pagination select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 31, 43, .1);
}

.admin-clear-filters {
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: #42515d;
  cursor: pointer;
  white-space: nowrap;
}

.admin-clear-filters:hover:not(:disabled),
.admin-clear-filters:focus-visible {
  border-color: #8e9aa3;
  color: var(--ink);
}

.admin-clear-filters:disabled {
  background: #eef0f1;
  color: #92999f;
  cursor: not-allowed;
}

.admin-delete-selected {
  min-width: 160px;
  min-height: 46px;
  white-space: nowrap;
}

.admin-delete-selected:disabled {
  background: #c8cdd1;
  color: #6c757c;
  cursor: not-allowed;
  box-shadow: none;
}

.admin-export-excel {
  min-width: 160px;
  min-height: 46px;
  gap: 8px;
  background: linear-gradient(135deg, #2f8a59, #176b40);
  white-space: nowrap;
}

.admin-export-excel:hover:not(:disabled),
.admin-export-excel:focus-visible {
  background: linear-gradient(135deg, #3b9c68, #125634);
}

.admin-export-excel:disabled {
  background: #c8cdd1;
  color: #6c757c;
  cursor: not-allowed;
  box-shadow: none;
}

.admin-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  overflow: auto;
  min-height: 690px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1020px;
}

.admin-table th {
  text-align: left;
  background: #eae7df;
  padding: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.admin-submitted-heading>span {
  display: block;
}

.admin-submitted-heading #admin-sort-submitted {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8f1018;
  box-shadow: none;
  font: 700 9px/1.3 "Manrope", sans-serif;
  letter-spacing: .02em;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-transform: none;
  text-underline-offset: 3px;
  cursor: pointer;
}

.admin-submitted-heading #admin-sort-submitted:hover,
.admin-submitted-heading #admin-sort-submitted:focus-visible {
  color: #c91f2b;
  transform: none;
  box-shadow: none;
}

.admin-table td {
  padding: 18px 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.admin-table tbody tr {
  transition: background-color .18s ease;
}

.admin-table tbody tr:nth-child(odd) {
  background: #fff;
}

.admin-table tbody tr:nth-child(even) {
  background: #f5f1e9;
}

.admin-table tbody tr:hover {
  background: #edf5f8;
}

.admin-table tbody tr.is-selected {
  background: #fde8ea;
}

.admin-table .admin-select-column {
  width: 52px;
  padding-right: 8px;
  text-align: center;
}

.admin-table input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.admin-table td small {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}

.admin-phone-link {
  display: inline-flex;
  align-items: center;
  color: #125f89;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.admin-phone-link:hover,
.admin-phone-link:focus-visible {
  color: var(--accent);
}

.admin-call-status {
  color: #9a5f19 !important;
  font-size: 12px;
  line-height: 1.4;
  white-space: normal;
}

.admin-destination {
  font-size: 12px;
  line-height: 1.45;
}

.admin-call-status.is-called {
  color: #287249 !important;
}

.service-pill {
  background: #fbe8ea;
  color: #811018;
  padding: 6px 9px;
  font-size: 11px;
}

.row-actions {
  display: flex;
  gap: 8px;
}

.row-actions button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 10px;
  cursor: pointer;
}

.row-actions .edit-btn {
  color: #1a658e;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-state[hidden] {
  display: none;
}

.empty-state>span {
  font-size: 46px;
  color: var(--accent);
}

.empty-state p {
  color: var(--muted);
}

.admin-pagination {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-top: 0;
  background: #fff;
}

.admin-pagination[hidden] {
  display: none;
}

.admin-pagination label {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.admin-pagination select {
  width: 76px;
  min-height: 38px;
  padding: 7px 10px;
}

.admin-pagination p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.admin-page-controls,
.admin-page-controls>div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-page-controls button {
  min-width: 36px;
  height: 36px;
  padding: 0 11px;
  border: 1px solid var(--line);
  background: #fff;
  color: #34434f;
  cursor: pointer;
}

.admin-page-controls button:hover:not(:disabled),
.admin-page-controls button:focus-visible,
.admin-page-controls button.is-current {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.admin-page-controls button:disabled {
  color: #a2abb1;
  cursor: not-allowed;
}

.admin-page-gap {
  padding: 0 3px;
  color: var(--muted);
}

dialog {
  border: 0;
  padding: 0;
  box-shadow: 0 20px 80px #0005;
  width: min(560px, calc(100% - 30px));
}

dialog::backdrop {
  background: #07131ecc;
}

dialog form {
  padding: 35px;
}

dialog label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 15px 0;
}

dialog input,
dialog select,
dialog textarea {
  padding: 12px;
  border: 1px solid var(--line);
}

dialog textarea {
  min-height: 76px;
  resize: vertical;
  color: var(--ink);
  font: 500 13px/1.5 "Manrope", sans-serif;
  letter-spacing: normal;
  text-transform: none;
}

.dialog-head {
  display: flex;
  justify-content: space-between;
}

.dialog-head h2 {
  margin: 0;
}

.dialog-close {
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
}

.muted-btn {
  background: #d9dde0;
}

.admin-table-wrap .empty-state:not([hidden])+* {
  display: none;
}

@media(max-width:900px) {
  .home-hero,
  .home-hero-grid {
    min-height: auto;
  }
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 64px;
  }
  .hero-enquiry-form {
    max-width: 600px;
    justify-self: start;
  }
  .home-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .benefits-grid,
  .next-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid article,
  .next-grid a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-title {
    align-items: flex-start;
    gap: 25px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .admin-status {
    display: none;
  }
}

@media(max-width:600px) {
  .home-hero,
  .home-hero-grid {
    min-height: auto;
  }
  .home-hero-grid {
    gap: 36px;
    padding-block: 48px;
  }
  .home-hero::before {
    background-position: center;
  }
  .admin-header .brand small {
    display: block;
  }
  .admin-back {
    font-size: 9px;
  }
  .admin-shell {
    padding: 40px 14px;
  }
  .admin-title {
    flex-direction: column;
  }
  .admin-counts {
    width: 100%;
  }
  .admin-count {
    flex: 1;
  }
  .admin-title h1 {
    font-size: 34px;
  }
  .admin-toolbar {
    flex-direction: column;
  }
  .admin-toolbar input {
    width: 100%;
  }
}

.admin-login {
  min-height: 100vh;
  background: radial-gradient(circle at 15% 20%, #203c53 0, transparent 34%), linear-gradient(135deg, #06121d, #10283c);
  display: grid;
  place-items: center;
  padding: 30px;
}

.admin-login[hidden],
#admin-dashboard[hidden] {
  display: none;
}

.admin-login-card {
  width: min(440px, 100%);
  background: #fff;
  padding: 42px;
  box-shadow: 0 30px 100px #0008;
}

.admin-login-card>.brand {
  margin: 0 0 45px;
}

.admin-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ef6670, var(--accent) 55%, #8f1018);
  color: #fff;
  font: 600 24px "Manrope";
  margin-bottom: 25px;
}

.admin-login-card h1 {
  font: 600 38px "Manrope";
  margin: 0;
}

.admin-login-card>p:not(.eyebrow):not(.login-error) {
  color: var(--muted);
  margin: 8px 0 28px;
}

.admin-login-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 17px 0;
}

.admin-login-card input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  outline: none;
}

.admin-login-card input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #c91f2b20;
}

.password-wrap {
  display: flex;
  position: relative;
}

.password-wrap button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  border: 0;
  background: transparent;
  color: #64717b;
  cursor: pointer;
}

.password-wrap input {
  padding-right: 52px;
}

.password-visibility-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: auto;
}

.password-visibility-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#toggle-password:hover,
#toggle-password:focus-visible {
  color: var(--accent);
}

.password-visibility-hide,
#toggle-password.is-visible .password-visibility-show {
  display: none;
}

#toggle-password.is-visible .password-visibility-hide {
  display: grid;
}

.login-error {
  background: #fff0f0;
  color: #a43333;
  padding: 11px 13px;
  font-size: 12px;
  margin: 14px 0 0;
}

.back-home {
  display: block;
  text-align: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.admin-login-card .brand small {
  font-size: 7px;
}

@media(max-width:500px) {
  .admin-login {
    padding: 16px;
  }
  .admin-login-card {
    padding: 28px 22px;
  }
  .admin-login-card>.brand {
    margin-bottom: 35px;
  }
}

/* Merged from enhancements.css */
.topbar {
  display: none;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  width: 38px;
  height: 38px!important;
  display: grid!important;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  color: #fff!important;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  margin: 0!important;
  transition: transform .2s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #fff!important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
}

.social-links a[aria-label="Facebook"]:hover,
.social-links a[aria-label="Facebook"]:focus-visible {
  background: linear-gradient(135deg, #4a9cff, #1877f2 55%, #0b4fa8);
}

.social-links a[aria-label="Instagram"]:hover,
.social-links a[aria-label="Instagram"]:focus-visible {
  background: linear-gradient(135deg, #405de6, #833ab4 32%, #e1306c 65%, #fcb045);
}

.social-links a[aria-label="YouTube"]:hover,
.social-links a[aria-label="YouTube"]:focus-visible {
  background: linear-gradient(135deg, #ff5a5f, #ff0000 55%, #a80000);
}

.social-links a[aria-label="WhatsApp"]:hover,
.social-links a[aria-label="WhatsApp"]:focus-visible {
  background: linear-gradient(135deg, #55e58a, #25d366 55%, #128c4a);
}

.social-links i {
  font-size: 15px;
}

.footer-social-standalone {
  padding-top: 36px;
}

.service-icon i {
  font-size: 21px;
}

.compact-footer-address {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 32px;
  color: #aab4bb;
  font-size: 12px;
}

.compact-footer-address i {
  color: var(--accent);
}

.compact-footer-address address {
  font-style: normal;
  line-height: 1.5;
}

.compact-footer-address a {
  color: var(--accent);
  margin-left: auto;
  white-space: nowrap;
}

.home-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: .5s;
}

.gallery-card:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #07131ee8);
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card>div {
  position: absolute;
  z-index: 2;
  left: 45px;
  bottom: 38px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
}

.gallery-card>div>i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ef6670, var(--accent) 55%, #8f1018);
  color: #fff;
  font-size: 20px;
}

.gallery-card span {
  display: flex;
  flex-direction: column;
}

.gallery-card b {
  font: 600 19px "Manrope";
}

.gallery-card small {
  color: #c3cdd3;
  margin-top: 6px;
}

.benefits-grid article:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent);
  font-size: 22px;
  display: block;
  margin-bottom: 18px;
}

.benefits-grid article:nth-child(1):before {
  content: "\f49e";
}

.benefits-grid article:nth-child(2):before {
  content: "\f5fd";
}

.benefits-grid article:nth-child(3):before {
  content: "\f058";
}

@media(max-width:700px) {
  .home-gallery {
    grid-template-columns: 1fr;
  }
  .gallery-card {
    min-height: 340px;
  }
  .gallery-card>div {
    left: 24px;
    bottom: 25px;
  }
}

.home-services {
  background: #fff;
}

.expanded-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.expanded-service-grid a {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: .2s;
}

.expanded-service-grid a:hover {
  background: var(--ink);
  color: #fff;
}

.expanded-service-grid i {
  color: var(--accent);
  font-size: 23px;
}

.expanded-service-grid b {
  font: 600 18px "Manrope";
  margin: 24px 0 9px;
}

.expanded-service-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.expanded-service-grid a:hover span {
  color: #aebbc4;
}

.moving-guide {
  background: var(--ink);
  color: #fff;
  padding: 90px 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.guide-grid h2 {
  font: 500 clamp(40px, 5vw, 62px)/1.05 "Manrope";
  letter-spacing: -.045em;
  margin: 0;
}

.guide-grid h2 em {
  font-family: "Playfair Display";
  color: var(--accent);
}

.guide-grid p:last-child {
  color: #a9b5bd;
  line-height: 1.7;
}

.material-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.material-list span {
  background: #142b3e;
  padding: 18px;
  font-size: 13px;
}

.material-list i {
  color: var(--accent);
  width: 25px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-grid details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}

.faq-grid summary {
  cursor: pointer;
  font: 600 15px "Manrope";
}

.faq-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq-page {
  max-width: 900px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-grid figure {
  margin: 0;
  background: var(--ink);
  color: #fff;
}

.photo-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.photo-grid figcaption {
  padding: 18px;
  font-size: 13px;
}

.more-menu {
  position: relative;
}

.more-menu summary {
  list-style: none;
  cursor: pointer;
}

.more-menu summary::-webkit-details-marker {
  display: none;
}

.more-menu summary i {
  font-size: 9px;
  margin-left: 5px;
}

.more-menu>div {
  display: none;
  position: absolute;
  right: 0;
  top: 28px;
  background: #fff;
  min-width: 190px;
  padding: 10px;
  box-shadow: 0 15px 35px #0003;
  border: 1px solid var(--line);
  z-index: 30;
}

.more-menu[open]>div {
  display: block;
}

.more-menu>div a {
  display: block;
  padding: 10px!important;
  white-space: nowrap;
}

.more-menu>div i {
  color: var(--accent);
  width: 23px;
}

@media(max-width:900px) {
  .expanded-service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .more-menu>div {
    position: static;
    box-shadow: none;
    border: 0;
    padding-left: 15px;
  }
}

@media(max-width:600px) {
  .expanded-service-grid,
  .material-list,
  .faq-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Merged from service-locations.css */
.service-location-section {
  background: var(--cream);
}

.location-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0 18px;
  margin-bottom: 28px;
}

.location-search i {
  color: var(--accent);
}

.location-search input {
  flex: 1;
  padding: 17px 13px;
  border: 0;
  outline: none;
  background: transparent;
}

.location-search span {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.service-location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d8ddd9;
  border: 1px solid #d8ddd9;
}

.service-location-grid a {
  background: #fff;
  padding: 24px;
  min-height: 145px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: .2s;
}

.service-location-grid a:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.service-location-grid a>span {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 9px;
  color: #9ba6ad;
}

.service-location-grid i {
  color: var(--accent);
  margin-bottom: 20px;
}

.service-location-grid b {
  font: 600 14px/1.4 "Manrope";
}

.service-location-grid small {
  color: var(--muted);
  margin-top: auto;
  padding-top: 12px;
}

.service-location-grid a:hover small {
  color: #b9c4cb;
}

.location-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
}

.location-note i {
  color: var(--accent);
  margin-right: 7px;
}

@media(max-width:1000px) {
  .service-location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:700px) {
  .service-location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:450px) {
  .service-location-grid {
    grid-template-columns: 1fr;
  }
}

/* Merged from home-details.css */
.move-detail-section {
  background: #fff;
}

.move-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.move-detail-grid article {
  border: 1px solid var(--line);
  padding: 36px;
  background: #fff;
}

.move-detail-grid article>i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--accent);
  font-size: 21px;
}

.move-detail-grid h3 {
  font: 600 21px "Manrope";
  margin: 25px 0 12px;
}

.move-detail-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.move-detail-grid ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.move-detail-grid li {
  font-size: 12px;
  color: #344552;
}

.move-detail-grid li:before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  margin-right: 7px;
}

.move-prep {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  background: var(--ink);
  color: #fff;
  margin-top: 35px;
}

.move-prep>div {
  padding: 28px;
  border-right: 1px solid #344655;
}

.move-prep>div:last-child {
  border: 0;
}

.move-prep h3 {
  font: 600 19px "Manrope";
  margin: 0;
}

.move-prep span {
  font-size: 10px;
  color: var(--accent);
}

.move-prep p {
  font-size: 12px;
  line-height: 1.65;
  color: #b7c2c9;
  margin-bottom: 0;
}

@media(max-width:950px) {
  .move-prep {
    grid-template-columns: 1fr 1fr;
  }
  .move-prep>div {
    border-bottom: 1px solid #344655;
  }
}

@media(max-width:650px) {
  .move-detail-grid,
  .move-prep {
    grid-template-columns: 1fr;
  }
  .move-detail-grid ul {
    grid-template-columns: 1fr;
  }
}

/* Merged from location-preview.css */
.home-location-preview {
  background: #fff;
}

.home-location-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.home-location-chips a {
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--cream);
  font: 600 13px "Manrope";
  transition: .2s;
}

.home-location-chips a:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.home-location-chips i {
  color: var(--accent);
  margin-right: 10px;
}

.locations-button {
  margin-top: 6px;
}

@media(max-width:850px) {
  .home-location-chips {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:600px) {
  .home-location-chips {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Merged from content-expansion.css */
.relocation-information {
  background: var(--cream);
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d9ddd9;
  border: 1px solid #d9ddd9;
}

.info-columns article {
  background: #fff;
  padding: 34px;
}

.info-columns span {
  font-size: 10px;
  color: var(--accent);
}

.info-columns h3 {
  font: 600 19px/1.35 "Manrope";
  margin: 25px 0 13px;
}

.info-columns p,
.content-split p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: #fff;
}

.info-band>div {
  padding: 28px;
  border-right: 1px solid #344655;
}

.info-band i {
  color: var(--accent);
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
}

.info-band b {
  font: 600 15px "Manrope";
}

.info-band p {
  color: #aeb9c0;
  font-size: 12px;
  line-height: 1.6;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: #fff;
  padding: 55px;
  margin-top: 30px;
}

.content-split h3 {
  font: 600 27px/1.25 "Manrope";
}

.expectations {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  background: var(--ink);
  color: #fff;
  padding: 50px;
  margin-top: 30px;
}

.expectations h3 {
  font: 600 26px/1.3 "Manrope";
}

.expectations ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.expectations li {
  display: flex;
  gap: 13px;
  color: #b8c3ca;
  font-size: 12px;
  line-height: 1.6;
}

.expectations li i {
  color: var(--accent);
  margin-top: 4px;
}

.expectations li b {
  display: block;
  color: #fff;
  font-size: 13px;
}

.service-guidance {
  background: #fff;
}

.guidance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.guidance-list article {
  display: flex;
  gap: 22px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guidance-list article>i {
  color: var(--accent);
  font-size: 22px;
  width: 28px;
}

.guidance-list h3 {
  font: 600 18px "Manrope";
  margin: 0 0 10px;
}

.guidance-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.service-note {
  display: flex;
  gap: 15px;
  background: var(--cream);
  padding: 22px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}

.service-note i {
  color: var(--accent);
}

.service-note p {
  margin: 0;
}

@media(max-width:900px) {
  .info-columns {
    grid-template-columns: 1fr;
  }
  .info-band {
    grid-template-columns: 1fr 1fr;
  }
  .content-split,
  .expectations {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .guidance-list {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .info-band,
  .expectations ul {
    grid-template-columns: 1fr;
  }
  .content-split,
  .expectations {
    padding: 30px 22px;
  }
}

/* Home transport options */
.transport-showcase {
  background: #f6f2e9;
}

.transport-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.transport-visual-grid article {
  background: #fff;
  border: 1px solid #dfe3e3;
  overflow: hidden;
}

.transport-visual-grid img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.transport-visual-grid article>div {
  padding: 28px 30px 32px;
}

.transport-visual-grid span {
  font: 700 10px "Manrope";
  letter-spacing: .16em;
  color: #a8121d;
}

.transport-visual-grid h3 {
  font: 600 23px "Manrope";
  margin: 12px 0 10px;
}

.transport-visual-grid p,
.transport-type-grid p,
.transport-note p {
  color: #63707b;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.transport-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d8ddd9;
  border: 1px solid #d8ddd9;
}

.transport-type-grid article {
  display: flex;
  gap: 18px;
  background: #fff;
  padding: 26px;
  min-height: 145px;
}

.transport-type-grid i {
  color: #b51622;
  font-size: 22px;
  margin-top: 4px;
  width: 27px;
  text-align: center;
}

.transport-type-grid h3 {
  font: 600 17px "Manrope";
  margin: 0 0 8px;
}

.transport-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: #0d1d2d;
  color: #fff;
  padding: 26px 30px;
  margin-top: 24px;
}

.transport-note>i {
  color: #c91f2b;
  font-size: 20px;
}

.transport-note p {
  color: #bdc7ce;
}

.transport-note b {
  color: #fff;
}

@media(max-width:900px) {
  .transport-type-grid {
    grid-template-columns: 1fr 1fr;
  }
  .transport-note {
    grid-template-columns: auto 1fr;
  }
  .transport-note .btn {
    grid-column: 1/-1;
  }
}

@media(max-width:600px) {
  .transport-visual-grid,
  .transport-type-grid {
    grid-template-columns: 1fr;
  }
  .transport-visual-grid img {
    height: 250px;
  }
  .transport-note {
    grid-template-columns: 1fr;
  }
  .transport-note .btn {
    grid-column: auto;
  }
}

/* Detailed process page */
.process-detail-section {
  background: #fff;
  position: relative;
  z-index: 1;
  clear: both;
  overflow: hidden;
}

.process-detail-list {
  display: grid;
  gap: 80px;
}

.process-detail-list article {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 70px;
  align-items: center;
  position: relative;
  min-width: 0;
}

.process-detail-list article:nth-child(even) .process-detail-image {
  order: 2;
}

.process-detail-list article:nth-child(even) .process-detail-copy {
  order: 1;
}

.process-detail-image,
.process-detail-copy {
  min-width: 0;
}

.process-detail-image {
  position: relative;
  overflow: hidden;
  background: #0d1d2d;
}

.process-detail-image img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform .5s ease;
}

.process-detail-list article:hover .process-detail-image img {
  transform: scale(1.025);
}

.process-detail-image span {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #c91f2b;
  color: #0d1d2d;
  padding: 14px 20px;
  font: 700 11px "Manrope";
  letter-spacing: .14em;
}

.process-detail-copy h3 {
  font: 600 31px/1.25 "Manrope";
  letter-spacing: -.025em;
  margin: 0 0 20px;
}

.process-detail-copy>p:not(.eyebrow) {
  color: #63707b;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 14px;
}

.process-detail-copy ul {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid #dfe3e3;
}

.process-detail-copy li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #263848;
  font-size: 13px;
  margin: 12px 0;
}

.process-detail-copy li i {
  color: #b51622;
  width: 16px;
}

.process-preparation {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  background: #0d1d2d;
  color: #fff;
  margin-top: 90px;
  padding: 48px;
}

.process-preparation h3 {
  font: 600 30px/1.25 "Manrope";
  margin: 0;
}

.process-preparation ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.process-preparation li {
  color: #bdc7ce;
  font-size: 13px;
  line-height: 1.7;
  border-top: 1px solid #354656;
  padding-top: 15px;
}

.process-preparation li span {
  display: block;
  color: #c91f2b;
  font: 700 11px "Manrope";
  margin-bottom: 8px;
}

@media(max-width:900px) {
  .process-detail-list article {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }
  .process-detail-list article:nth-child(even) .process-detail-image,
  .process-detail-list article:nth-child(even) .process-detail-copy {
    order: 0;
  }
  .process-preparation {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .process-detail-list {
    gap: 60px;
  }
  .process-detail-image img {
    height: 300px;
  }
  .process-detail-copy h3 {
    font-size: 25px;
  }
  .process-preparation {
    padding: 30px 24px;
  }
  .process-preparation ol {
    grid-template-columns: 1fr;
  }
}

/* Expanded services page */
.service-deep-dive {
  background: #fff;
}

.service-feature-list {
  display: grid;
  gap: 70px;
}

.service-feature-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 65px;
  align-items: center;
  min-width: 0;
}

.service-feature-list article:nth-child(even) img {
  order: 2;
}

.service-feature-list img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  min-width: 0;
}

.service-feature-list article>div {
  min-width: 0;
}

.service-feature-list article>div>i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #e7aeb3;
  color: #b51622;
  font-size: 22px;
  margin-bottom: 24px;
}

.service-feature-list h3 {
  font: 600 29px/1.3 "Manrope";
  letter-spacing: -.025em;
  margin: 0 0 16px;
}

.service-feature-list article>div>p:not(.eyebrow) {
  color: #63707b;
  font-size: 14px;
  line-height: 1.8;
}

.service-feature-list ul {
  padding: 15px 0 15px 20px;
  color: #435463;
  font-size: 13px;
  line-height: 1.9;
  border-top: 1px solid #dfe3e3;
}

.service-feature-list a {
  font: 700 11px "Manrope";
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a8121d;
}

.service-planning {
  background: #f6f2e9;
}

.service-planning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d8ddd9;
  border: 1px solid #d8ddd9;
}

.service-planning-grid article {
  background: #fff;
  padding: 28px;
  min-height: 230px;
  position: relative;
}

.service-planning-grid span {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #9ca7ae;
  font: 600 11px "Manrope";
}

.service-planning-grid i {
  font-size: 24px;
  color: #b51622;
  margin: 8px 0 25px;
}

.service-planning-grid h3 {
  font: 600 19px "Manrope";
  margin: 0 0 12px;
}

.service-planning-grid p {
  color: #63707b;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.service-scope-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 42px;
  background: #0d1d2d;
  color: #fff;
  padding: 42px;
  margin-top: 28px;
}

.service-scope-band h3 {
  font: 600 25px/1.3 "Manrope";
  margin: 0;
}

.service-scope-band>p {
  color: #bdc7ce;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

@media(max-width:900px) {
  .service-feature-list article {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .service-feature-list article:nth-child(even) img {
    order: 0;
  }
  .service-planning-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-scope-band {
    grid-template-columns: 1fr 1fr;
  }
  .service-scope-band .btn {
    grid-column: 1/-1;
  }
}

@media(max-width:600px) {
  .service-feature-list {
    gap: 55px;
  }
  .service-feature-list img {
    height: 300px;
  }
  .service-feature-list h3 {
    font-size: 24px;
  }
  .service-planning-grid,
  .service-scope-band {
    grid-template-columns: 1fr;
  }
  .service-scope-band {
    padding: 30px 24px;
  }
  .service-scope-band .btn {
    grid-column: auto;
  }
}

/* Previous moving images retained on Services and Process */
.previous-image-section {
  background: #fff;
}

.previous-image-block {
  margin-top: 90px;
}

.previous-image-section .previous-image-block {
  margin-top: 0;
}

.previous-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.previous-image-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid #dfe3e3;
  overflow: hidden;
  min-width: 0;
}

.previous-image-grid img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.previous-image-grid figcaption {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px 24px;
}

.previous-image-grid figcaption>i {
  display: grid;
  place-items: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border: 1px solid #e7aeb3;
  color: #b51622;
  font-size: 18px;
}

.previous-image-grid figcaption span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.previous-image-grid figcaption b {
  font: 600 16px "Manrope";
}

.previous-image-grid figcaption small {
  color: #63707b;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 5px;
}

@media(max-width:600px) {
  .previous-image-block {
    margin-top: 65px;
  }
  .previous-image-grid {
    grid-template-columns: 1fr;
  }
  .previous-image-grid img {
    height: 250px;
  }
}

/* Glossy icon tiles and card motion */
:root {
  --glass-line: rgba(255, 255, 255, .72);
  --glass-shadow: 0 18px 45px rgba(13, 29, 45, .11);
  --glass-shadow-hover: 0 25px 55px rgba(13, 29, 45, .18);
}

.service-card,
.expanded-service-grid>a,
.move-detail-grid>article,
.faq-grid>details,
.next-grid>a,
.transport-visual-grid>article,
.transport-type-grid>article,
.info-columns>article,
.info-band>div,
.guidance-list>article,
.service-planning-grid>article,
.previous-image-grid>figure,
.process-detail-list>article,
.service-feature-list>article,
.promise-list>div,
.contact-cards>article {
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform .35s cubic-bezier(.2, .75, .25, 1), box-shadow .35s ease, border-color .35s ease, background-color .35s ease;
  animation: cardReveal .65s both;
  box-shadow: 0 8px 25px rgba(13, 29, 45, .055);
}

.service-card,
.expanded-service-grid>a,
.move-detail-grid>article,
.transport-visual-grid>article,
.transport-type-grid>article,
.info-columns>article,
.info-band>div,
.guidance-list>article,
.service-planning-grid>article,
.previous-image-grid>figure,
.contact-cards>article {
  background-image: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .72) 52%, rgba(201, 31, 43, .055));
  border-color: rgba(177, 188, 194, .62);
}

.service-card:hover,
.expanded-service-grid>a:hover,
.move-detail-grid>article:hover,
.faq-grid>details:hover,
.next-grid>a:hover,
.transport-visual-grid>article:hover,
.transport-type-grid>article:hover,
.info-columns>article:hover,
.info-band>div:hover,
.guidance-list>article:hover,
.service-planning-grid>article:hover,
.previous-image-grid>figure:hover,
.contact-cards>article:hover {
  transform: translateY(-7px) translateZ(0);
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(201, 31, 43, .7);
}

.process-detail-list>article:hover,
.service-feature-list>article:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 18px 22px rgba(13, 29, 45, .09));
}

.service-icon,
.expanded-service-grid i,
.move-detail-grid>article>i,
.transport-type-grid>article>i,
.info-band>div>i,
.guidance-list>article>i,
.service-feature-list article>div>i,
.service-planning-grid article>i,
.previous-image-grid figcaption>i,
.process-detail-copy li i {
  position: relative;
  isolation: isolate;
  background: linear-gradient(145deg, #fffdf8 0%, #f6d5d8 43%, #c91f2b 100%);
  border: 1px solid rgba(201, 31, 43, .7);
  color: #7f1119;
  box-shadow: inset 1px 1px 0 var(--glass-line), inset -3px -3px 8px rgba(137, 89, 16, .13), 0 8px 18px rgba(13, 29, 45, .14);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .82);
  transition: transform .3s cubic-bezier(.2, .75, .25, 1), box-shadow .3s ease, filter .3s ease;
}

.service-icon::after,
.expanded-service-grid i::after,
.move-detail-grid>article>i::after,
.transport-type-grid>article>i::after,
.info-band>div>i::after,
.guidance-list>article>i::after,
.service-feature-list article>div>i::after,
.previous-image-grid figcaption>i::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 12%;
  right: 12%;
  top: 8%;
  height: 38%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.service-card:hover .service-icon,
.expanded-service-grid>a:hover i,
.move-detail-grid>article:hover>i,
.transport-type-grid>article:hover>i,
.info-band>div:hover>i,
.guidance-list>article:hover>i,
.service-feature-list article:hover>div>i,
.previous-image-grid figure:hover figcaption>i {
  transform: translateY(-3px) scale(1.06);
  box-shadow: inset 1px 1px 0 #fff, 0 12px 24px rgba(174, 116, 29, .27);
  filter: saturate(1.08);
}

.previous-image-grid img,
.transport-visual-grid img,
.service-feature-list img,
.process-detail-image img,
.gallery-card img,
.home-photo img,
.image-stack img {
  transition: transform .65s cubic-bezier(.2, .75, .25, 1), filter .5s ease;
  filter: saturate(.94) contrast(1.02);
}

.previous-image-grid figure:hover img,
.transport-visual-grid article:hover img,
.service-feature-list article:hover img,
.process-detail-list article:hover .process-detail-image img,
.gallery-card:hover img,
.home-photo:hover img,
.image-stack:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.04);
}

.service-card:nth-child(2n),
.expanded-service-grid>a:nth-child(2n),
.move-detail-grid>article:nth-child(2n),
.guidance-list>article:nth-child(2n),
.previous-image-grid>figure:nth-child(2n) {
  animation-delay: .07s;
}

.service-card:nth-child(3n),
.expanded-service-grid>a:nth-child(3n),
.service-planning-grid>article:nth-child(3n) {
  animation-delay: .14s;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:600px) {
  .service-card:hover,
  .expanded-service-grid>a:hover,
  .move-detail-grid>article:hover,
  .faq-grid>details:hover,
  .next-grid>a:hover,
  .transport-visual-grid>article:hover,
  .transport-type-grid>article:hover,
  .info-columns>article:hover,
  .info-band>div:hover,
  .guidance-list>article:hover,
  .service-planning-grid>article:hover,
  .previous-image-grid>figure:hover,
  .contact-cards>article:hover {
    transform: translateY(-3px);
  }
}

@media(prefers-reduced-motion:reduce) {
  .service-card,
  .expanded-service-grid>a,
  .move-detail-grid>article,
  .faq-grid>details,
  .next-grid>a,
  .transport-visual-grid>article,
  .transport-type-grid>article,
  .info-columns>article,
  .info-band>div,
  .guidance-list>article,
  .service-planning-grid>article,
  .previous-image-grid>figure,
  .process-detail-list>article,
  .service-feature-list>article,
  .promise-list>div,
  .contact-cards>article {
    animation: none;
    transition: none;
  }
  .previous-image-grid img,
  .transport-visual-grid img,
  .service-feature-list img,
  .process-detail-image img,
  .gallery-card img,
  .home-photo img,
  .image-stack img {
    transition: none;
  }
}

/* Prevent text and animated card edges from being clipped */
.process-detail-section {
  overflow: visible;
}

main,
.wrap,
.section-head>*,
.split>*,
.hero-grid>*,
.home-intro-grid>*,
.service-grid>*,
.expanded-service-grid>*,
.process-grid>*,
.promise-grid>*,
.local-grid>*,
.footer-grid>*,
.move-detail-grid>*,
.info-columns>*,
.content-split>*,
.transport-visual-grid>*,
.transport-type-grid>*,
.process-detail-list>*,
.service-feature-list>*,
.service-planning-grid>*,
.previous-image-grid>*,
.contact-cards>* {
  min-width: 0;
}

h1,
h2,
h3,
h4,
p,
li,
a,
small,
b,
strong,
address,
figcaption {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.service-feature-list article>div,
.process-detail-copy,
.service-card,
.expanded-service-grid>a,
.move-detail-grid>article,
.guidance-list article>div,
.previous-image-grid figcaption span,
.transport-type-grid article>div,
.footer-grid>div {
  min-width: 0;
  max-width: 100%;
}

.service-feature-list h3,
.process-detail-copy h3,
.section-head h2,
.page-hero h1,
.hero h1 {
  white-space: normal;
}

@media(max-width:600px) {
  h1,
  h2,
  h3,
  h4,
  p,
  li,
  a,
  small,
  b,
  strong,
  address,
  figcaption {
    overflow-wrap: break-word;
  }
  .section-head,
  .process-top {
    width: 100%;
  }
}

/* Show complete landscape photographs without cutting their side content */
.service-feature-list img,
.process-detail-image img,
.transport-visual-grid img,
.previous-image-grid img,
.gallery-card img,
.home-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: contain;
  object-position: center;
  background: #f6f2e9;
}

.process-detail-image,
.service-feature-list article,
.transport-visual-grid article,
.previous-image-grid figure,
.gallery-card,
.home-photo {
  overflow: hidden;
}

.service-feature-list article:hover img,
.process-detail-list article:hover .process-detail-image img,
.transport-visual-grid article:hover img,
.previous-image-grid figure:hover img,
.gallery-card:hover img,
.home-photo:hover img {
  transform: none;
}

@media(max-width:900px) {
  .service-feature-list img,
  .process-detail-image img,
  .transport-visual-grid img,
  .previous-image-grid img,
  .gallery-card img,
  .home-photo img {
    height: auto;
    aspect-ratio: 3/2;
    object-fit: contain;
  }
}

@media(max-width:600px) {
  .service-feature-list img,
  .process-detail-image img,
  .transport-visual-grid img,
  .previous-image-grid img,
  .gallery-card img,
  .home-photo img {
    height: auto;
    aspect-ratio: 3/2;
    object-fit: contain;
  }
}

/* Merged from location-controls.css */
.location-toggle {
  display: flex;
  margin: 28px auto 0;
}

.location-toggle[hidden] {
  display: none;
}

/* Quick contact actions, centred navigation and scroll controls */
.nav {
  display: grid;
  grid-template-columns: minmax(255px, 1fr) auto minmax(255px, 1fr);
  grid-template-areas: "brand navigation actions";
  gap: 24px;
}

.nav>.brand {
  grid-area: brand;
  justify-self: start;
  margin-right: 0;
}

.nav>nav {
  grid-area: navigation;
  justify-self: center;
}

.nav-actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.nav-shell.is-scrolled .nav-actions {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-shell.always-show-actions .nav-actions {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(13, 29, 45, .18);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(4, 16, 27, .12);
  font: 700 12px "Manrope";
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.action-call:hover,
.action-call:focus-visible {
  background: linear-gradient(135deg, #df3d49, #c91f2b);
  border-color: #e77820;
  box-shadow: 0 12px 28px rgba(230, 108, 24, .3);
}

.action-whatsapp:hover,
.action-whatsapp:focus-visible {
  background: linear-gradient(135deg, #36d879, #119b50);
  border-color: #169e53;
  box-shadow: 0 12px 28px rgba(17, 155, 80, .3);
}

.nav-actions .contact-action {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 10px;
  box-shadow: none;
}

.hero-actions .contact-action {
  min-width: 155px;
}

.move-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  gap: 1px;
  padding: 7px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(4, 16, 27, .28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .25s ease, visibility .25s, transform .25s ease, background .25s ease;
}

.move-to-top i {
  font-size: 14px;
}

.move-to-top span {
  font: 700 8px "Manrope";
  letter-spacing: .08em;
  text-transform: uppercase;
}

.move-to-top:hover,
.move-to-top:focus-visible {
  background: linear-gradient(135deg, #df3d49, #c91f2b);
}

.move-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-notice {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  max-width: min(420px, calc(100% - 32px));
  padding: 13px 18px;
  border: 1px solid rgba(201, 31, 43, .65);
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 35px rgba(4, 16, 27, .28);
  font-size: 13px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition: opacity .25s ease, visibility .25s, transform .25s ease;
}

.contact-notice.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.title-case-input {
  text-transform: capitalize;
}

.quote-card select {
  appearance: none;
  cursor: pointer;
  padding-right: 42px;
  border-radius: 4px;
  background-color: #fbfaf6;
  background-image:
    linear-gradient(45deg, transparent 50%, #a8121d 50%),
    linear-gradient(135deg, #a8121d 50%, transparent 50%),
    linear-gradient(to right, rgba(201, 31, 43, .25), rgba(201, 31, 43, .25));
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%,
    calc(100% - 36px) 50%;
  background-size: 5px 5px, 5px 5px, 1px 58%;
  background-repeat: no-repeat;
  transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.quote-card select:hover {
  border-color: rgba(201, 31, 43, .8);
  background-color: #fffdf8;
}

.quote-card select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 31, 43, .16);
}

.quote-card select option {
  background: #fff;
  color: var(--ink);
}

/* Animated service selector */
select.enhanced-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  text-transform: none;
  letter-spacing: normal;
}

.custom-select-trigger {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 13px;
  border: 1px solid #d8dddf;
  border-radius: 4px;
  background: linear-gradient(135deg, #fff 0%, #fbfaf6 100%);
  color: #7c8790;
  font: 500 13px "Manrope";
  text-align: left;
  cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease;
}

.custom-select-trigger>i {
  color: #a8121d;
  font-size: 11px;
  transition: transform .35s cubic-bezier(.2, .8, .25, 1);
}

.custom-select-trigger:hover,
.custom-select.is-open .custom-select-trigger {
  border-color: var(--accent);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(201, 31, 43, .13);
}

.custom-select-trigger.has-value {
  color: var(--ink);
}

.custom-select-trigger.has-error {
  border-color: #c64c3f;
  box-shadow: 0 0 0 3px rgba(198, 76, 63, .12);
}

.custom-select.is-open .custom-select-trigger>i {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  left: 0;
  right: auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  bottom: calc(100% + 8px);
  z-index: 35;
  max-height: min(245px, calc(100vh - 190px));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 7px 0;
  border: 1px solid rgba(201, 31, 43, .48);
  border-radius: 7px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 48px rgba(7, 19, 30, .22);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(.975);
  transform-origin: bottom center;
  transition: opacity .28s ease, visibility .28s, transform .36s cubic-bezier(.18, .85, .25, 1);
}

.custom-select.is-open .custom-select-options {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-select-option {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr 20px;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  padding: 9px 11px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #263848;
  font: 600 12px "Manrope";
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(7px);
  transition: color .2s ease, background .24s ease, transform .24s ease, opacity .22s ease;
}

.custom-select.is-open .custom-select-option {
  opacity: 1;
  transform: translateY(0);
}

.custom-select.is-open .custom-select-option:nth-child(2) { transition-delay: .035s; }
.custom-select.is-open .custom-select-option:nth-child(3) { transition-delay: .07s; }
.custom-select.is-open .custom-select-option:nth-child(4) { transition-delay: .105s; }
.custom-select.is-open .custom-select-option:nth-child(5) { transition-delay: .14s; }

.custom-select-option::before {
  content: "";
  position: absolute;
  inset: 5px auto 5px 0;
  width: 3px;
  border-radius: 4px;
  background: linear-gradient(var(--accent), #8f1018);
  transform: scaleY(0);
  transition: transform .22s ease;
}

.custom-option-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 31, 43, .4);
  border-radius: 50%;
  background: #fdecef;
  color: #8f1018;
  font: 700 9px "Manrope";
  transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.custom-select-option>i {
  color: var(--ink);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .2s ease, transform .2s ease;
}

.custom-select.is-open .custom-select-option:hover,
.custom-select.is-open .custom-select-option:focus-visible,
.custom-select.is-open .custom-select-option[aria-selected="true"] {
  outline: 0;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(201, 31, 43, .18), rgba(246, 242, 233, .78));
  transform: translateX(0);
  transition-delay: 0s;
}

.custom-select-option:hover::before,
.custom-select-option:focus-visible::before,
.custom-select-option[aria-selected="true"]::before {
  transform: scaleY(1);
}

.custom-select-option:hover .custom-option-mark,
.custom-select-option:focus-visible .custom-option-mark,
.custom-select-option[aria-selected="true"] .custom-option-mark {
  background: linear-gradient(135deg, #ef6670, var(--accent) 60%, #8f1018);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 6px 14px rgba(143, 16, 24, .25);
}

.custom-select-option[aria-selected="true"]>i {
  opacity: 1;
  transform: scale(1);
}

@media(max-width:1050px) {
  .custom-select-options {
    max-height: min(245px, calc(100vh - 190px));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media(max-width:600px) {
  .custom-select-options {
    max-height: min(245px, calc(100vh - 170px));
  }
}

/* Homepage Why Choose Us interaction */
.benefits-grid article {
  transition: transform .3s cubic-bezier(.2, .75, .25, 1), border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.benefits-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 31, 43, .85);
  background: linear-gradient(145deg, #fff5f6, var(--cream) 62%, #f4c8cc);
  box-shadow: 0 20px 42px rgba(13, 29, 45, .14);
}

.benefits-grid article::before,
.benefits-grid article>span {
  transition: color .25s ease, transform .25s ease;
}

.benefits-grid article:hover::before,
.benefits-grid article:hover>span {
  color: #91111a;
  transform: translateY(-2px) scale(1.08);
}

/* Footer link hover feedback */
.footer-grid>div>a:not(.brand),
.copyright a {
  transition: color .22s ease, transform .22s ease;
}

.footer-grid>div>a:not(.brand):hover,
.footer-grid>div>a:not(.brand):focus-visible,
.copyright a:hover,
.copyright a:focus-visible {
  color: var(--accent)!important;
  transform: translateX(4px);
}

@media(max-width:600px) {
  .benefits-grid article:hover {
    transform: translateY(-3px);
  }

  .success {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

.brand-highlight {
  color: #b51622;
  font-family: "Playfair Display", serif;
  font-size: 1.08em;
  font-style: italic;
  font-weight: 600;
}

.action-enquiry {
  border-color: rgba(201, 31, 43, .62);
}

.action-enquiry:hover,
.action-enquiry:focus-visible,
.action-enquiry.is-active {
  background: linear-gradient(135deg, #ef6670, var(--accent) 58%, #8f1018);
  border-color: #a8121d;
  color: #fff;
  box-shadow: 0 12px 28px rgba(143, 16, 24, .26);
}

/* Refined animated mobile navigation control */
.menu {
  width: 44px;
  height: 44px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(201, 31, 43, .5);
  border-radius: 9px;
  background: linear-gradient(145deg, #fff, #fdebed);
  box-shadow: 0 7px 18px rgba(13, 29, 45, .09);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.menu:hover,
.menu:focus-visible,
.menu[aria-expanded="true"] {
  outline: 0;
  border-color: var(--accent);
  background: #fff5f6;
  box-shadow: 0 9px 22px rgba(143, 16, 24, .18);
}

.menu>span {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 4px;
  background: var(--ink);
  transform-origin: center;
  transition: opacity .22s ease, transform .32s cubic-bezier(.2, .8, .25, 1), background .22s ease;
}

.menu[aria-expanded="true"]>span {
  background: #a8121d;
}

.menu[aria-expanded="true"]>span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu[aria-expanded="true"]>span:nth-child(2) {
  opacity: 0;
  transform: scaleX(.2);
}

.menu[aria-expanded="true"]>span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

@media(max-width:1050px) {
  .nav>.menu {
    display: flex;
  }

  .nav>nav {
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    border-top: 2px solid var(--accent);
    transition: opacity .24s ease, visibility .24s, transform .3s cubic-bezier(.2, .8, .25, 1);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .nav>nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav>nav a {
    padding: 8px 10px;
    border-radius: 4px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
  }

  .nav>nav a:hover,
  .nav>nav a:focus-visible {
    background: var(--cream);
    transform: translateX(4px);
  }
}

/* Brighter responsive homepage artwork */
.home-hero::before {
  background-size: cover;
  background-position: center center;
  filter: brightness(1.2) saturate(1.06) contrast(.96);
}

.home-hero .hero-shade {
  background: linear-gradient(90deg, rgba(6, 19, 31, .9) 0%, rgba(6, 19, 31, .7) 48%, rgba(6, 19, 31, .14) 100%);
}

@media(max-width:1050px) {
  .nav>nav {
    left: 0;
    right: 0;
    width: 100%;
    min-height: auto;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 18px 22px;
    justify-self: stretch;
    border-top: 2px solid var(--accent);
    background: linear-gradient(150deg, rgba(255, 255, 255, .99), rgba(250, 245, 235, .99));
    box-shadow: 0 22px 44px rgba(7, 19, 30, .2);
  }

  .nav>nav a {
    width: min(100%, 460px);
    padding: 14px 22px;
    font-size: 16px;
    text-align: center;
  }
}

@media(max-width:600px) {
  .home-hero .lead {
    display: none;
  }

  .home-hero::before {
    background-size: cover;
    background-position: 48% center;
    filter: brightness(1.16) saturate(1.04) contrast(.98);
  }

  .home-hero .hero-shade {
    background: linear-gradient(180deg, rgba(6, 19, 31, .74) 0%, rgba(6, 19, 31, .46) 48%, rgba(6, 19, 31, .68) 100%);
  }

  .nav>nav {
    min-height: min(460px, calc(100vh - 106px));
    padding: 34px 18px;
  }

  .nav>nav a {
    width: min(100%, 340px);
    padding-block: 15px;
    font-size: 17px;
  }
}

/* Keep the moving crew's heads comfortably inside the hero crop */
.home-hero::before {
  background-position: center 30%;
}

@media(max-width:600px) {
  .home-hero::before {
    background-position: 48% 30%;
  }
}

/* Cream navigation with highlighted links */
.nav-shell {
  background: var(--cream);
  border-bottom-color: rgba(201, 31, 43, .24);
}

.nav>nav a {
  padding: 9px 12px;
  border-radius: 5px;
  transition: color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.nav>nav a:hover,
.nav>nav a:focus-visible {
  color: #7f1119;
  background: rgba(201, 31, 43, .2);
  box-shadow: inset 0 0 0 1px rgba(201, 31, 43, .34);
  transform: translateY(-1px);
  outline: none;
}

.nav>nav a.active {
  color: #7f1119;
  background: rgba(201, 31, 43, .14);
}

/* Animated SAHASTRA brand underline in navbar and footer */
.brand b {
  position: relative;
  display: inline-block;
  transform-origin: left center;
  transition: transform .3s cubic-bezier(.2, .8, .25, 1), text-shadow .3s ease, letter-spacing .3s ease;
}

.brand b::after {
  display: none;
}

.brand:hover b,
.brand:focus-visible b {
  transform: translateY(-2px) scale(1.035);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, .72),
    0 7px 16px rgba(0, 0, 0, .3);
}

.home-services-more {
  display: inline-block;
  margin-top: 26px;
}

@media(max-width:600px) {
  .home-hero h1 {
    margin-bottom: 28px;
  }

  .home-hero::before {
    background-position: 78% 28%;
  }

  .stats {
    display: none;
  }

  .home-services .expanded-service-grid>a:nth-child(n+4) {
    display: none;
  }

  .home-services-more {
    margin-top: 22px;
  }

  .home-benefits .benefits-grid {
    gap: 10px;
  }

  .home-benefits .benefits-grid article,
  .home-benefits .benefits-grid article:last-child {
    grid-template-columns: 22px 1fr;
    column-gap: 10px;
    row-gap: 12px;
    padding: 18px 20px;
  }

  .home-benefits .benefits-grid article::before {
    font-size: 18px;
  }

  .home-benefits .benefits-grid h3 {
    font-size: 18px;
  }

  .home-benefits .benefits-grid p {
    font-size: 13px;
    line-height: 1.5;
  }

  .home-process .process-grid {
    gap: 9px;
    border-top: 0;
  }

  .home-process .process-grid article,
  .home-process .process-grid article:last-child {
    padding: 17px 18px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .035);
  }

  .home-process .process-grid h3 {
    margin: 9px 0 5px;
    font-size: 17px;
  }

  .home-process .process-grid p {
    margin: 0;
    line-height: 1.5;
  }

  .local .map-embed {
    margin-bottom: 28px;
    border-radius: 8px;
  }
}

/* Wider mobile hero composition so both primary movers remain visible */
@media(max-width:600px) {
  .home-hero::before {
    background-color: var(--ink);
    background-size: auto 72%;
    background-position: 74% top;
    background-repeat: no-repeat;
  }
}

/* Light location section with dark map treatment */
.local,
.office-page-location {
  background: #f6f2e9;
  color: var(--ink);
}

.local .eyebrow.light,
.office-page-location .eyebrow.light {
  color: #a8121d;
}

.local h2,
.office-page-location h2 {
  color: var(--ink);
}

.office-page-location h1 {
  margin: 0;
  color: var(--ink);
  font: 500 clamp(40px, 5vw, 67px)/1.03 "Manrope";
  letter-spacing: -.045em;
}

.office-page-location h1 em {
  color: var(--accent);
  font-family: "Playfair Display";
  font-weight: 600;
}

.local p:not(.eyebrow),
.office-page-location p:not(.eyebrow) {
  color: var(--muted);
}

.local address,
.office-page-location address {
  color: var(--ink);
}

.local .text-link,
.office-page-location .text-link {
  color: var(--ink);
  border-color: rgba(13, 29, 45, .3);
}

.map-open-link {
  border-radius: 12px;
}

.map-open-link i {
  color: inherit;
}

/* Stronger section labels */
.eyebrow {
  font-size: 14px;
  line-height: 1.45;
}

/* Why Choose Us card spacing and plain icons */
.expanded-service-grid {
  gap: 18px;
  border: 0;
}

.expanded-service-grid>a {
  border: 1px solid var(--line);
  background: #fff;
  background-image: none;
}

.expanded-service-grid i,
.expanded-service-grid a:hover i {
  width: auto;
  height: auto;
  display: inline-block;
  align-self: flex-start;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  color: var(--accent);
}

.expanded-service-grid i::after {
  display: none;
}

/* Intro benefit cards from the supplied reference */
.home-benefits {
  background: #fff;
  padding-top: 12px;
}

.benefits-grid {
  gap: 20px;
  background: transparent;
  border: 0;
}

.benefits-grid article,
.benefits-grid article:last-child {
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 14px;
  row-gap: 22px;
  padding: 38px;
  background: var(--cream);
  border: 1px solid rgba(177, 188, 194, .55);
}

.benefits-grid article::before {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  margin: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.benefits-grid article>span {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.benefits-grid article>h3 {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
}

.benefits-grid article>p {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
}

@media(max-width:1050px) {
  .nav {
    display: flex;
    gap: 18px;
  }

  .nav>.brand {
    margin-right: auto;
  }

  .nav>nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 25px 30px;
    background: #fff;
    box-shadow: 0 10px 20px #0002;
  }

  .nav>nav.open {
    display: flex;
  }

  .nav>.menu {
    display: block;
  }

  .nav-actions,
  .nav-shell.is-scrolled .nav-actions {
    position: fixed;
    top: 50%;
    right: 10px;
    z-index: 44;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%);
  }

  .has-home-actions .nav-actions,
  .has-home-actions .nav-shell.is-scrolled .nav-actions {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(12px, -50%);
  }

  .has-home-actions.past-hero-actions .nav-actions,
  .has-home-actions.past-hero-actions .nav-shell.is-scrolled .nav-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%);
  }

  .nav-actions .contact-action {
    min-width: 118px;
    min-height: 44px;
    box-shadow: 0 8px 22px rgba(4, 16, 27, .16);
  }

  .benefits-grid article,
  .benefits-grid article:last-child {
    border: 1px solid rgba(177, 188, 194, .55);
  }
}

@media(max-width:600px) {
  .nav>nav {
    top: 72px;
  }

  .nav-actions,
  .nav-shell.is-scrolled .nav-actions {
    right: 8px;
  }

  .nav-actions .contact-action {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 50%;
  }

  .nav-actions .contact-action span {
    display: none;
  }

  .nav-actions .contact-action i {
    font-size: 18px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: row;
    gap: 10px;
  }

  .hero-actions .contact-action {
    min-width: 0;
    flex: 1;
    padding-inline: 12px;
  }

  .move-to-top {
    right: 12px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .expanded-service-grid,
  .benefits-grid {
    gap: 14px;
  }

  .benefits-grid article,
  .benefits-grid article:last-child {
    padding: 28px;
  }
}

/* Compact site rhythm */
.section,
.dark-section {
  padding: 64px 0;
}

.page-hero {
  padding: 58px 0;
}

.section-head,
.process-top {
  margin-bottom: 34px;
}

.split,
.promise-grid,
.guide-grid {
  gap: 60px;
}

.home-benefits {
  padding: 64px 0;
}

.home-services,
.home-process {
  padding-block: 64px;
}

.local-grid>.local-copy {
  padding-block: 48px;
}

.local address {
  margin-block: 18px;
}

.local-actions {
  margin-top: 22px;
}

footer {
  padding: 48px 0 20px;
}

.footer-grid {
  gap: 38px;
}

.cta,
.moving-guide {
  padding-block: 54px;
}

.process-preparation,
.previous-image-block {
  margin-top: 52px;
}

/* Compact homepage hero: hero plus stats fit within a common desktop viewport */
.home-hero,
.home-hero-grid {
  min-height: 510px;
}

.home-hero-grid {
  padding-block: 24px;
}

.home-hero h1 {
  font-size: clamp(42px, 4.5vw, 60px);
}

.home-hero .lead {
  margin: 20px 0 22px;
  line-height: 1.55;
}

.home-hero .trust-row {
  margin-top: 26px;
}

.hero-enquiry-form {
  padding: 24px;
}

.hero-enquiry-form h2 {
  font-size: 25px;
  color: var(--accent);
}

.hero-enquiry-form>p:not(.eyebrow):not(.success) {
  margin-bottom: 14px;
}

.hero-enquiry-form label {
  margin-bottom: 9px;
}

.hero-enquiry-form input,
.hero-enquiry-form select {
  padding: 10px;
}

.stats-grid div {
  padding-block: 18px;
}

/* Both quick actions use the Sahastra red highlight */
.action-call:hover,
.action-call:focus-visible,
.action-whatsapp:hover,
.action-whatsapp:focus-visible {
  background: linear-gradient(135deg, #ef6670, var(--accent) 55%, #8f1018);
  border-color: #a8121d;
  color: #fff;
  box-shadow: 0 12px 28px rgba(143, 16, 24, .3);
}

@media(max-width:900px) {
  .home-hero,
  .home-hero-grid {
    min-height: auto;
  }

  .section,
  .dark-section,
  .home-benefits,
  .home-services,
  .home-process {
    padding-block: 52px;
  }
}

@media(max-width:600px) {
  .section,
  .dark-section,
  .home-benefits,
  .home-services,
  .home-process {
    padding-block: 42px;
  }

  .page-hero {
    padding-block: 46px;
  }

  .home-hero-grid {
    padding-block: 36px;
  }

  .section-head,
  .process-top {
    margin-bottom: 26px;
  }

  footer {
    padding-top: 40px;
  }
}

/* Homepage Services section accent */
.home-services {
  background-color: #f6f2e9;
}

/* Final responsive menu overrides */

@media(max-width:1050px) {
  .nav>.menu {
    display: flex;
  }

  .nav>nav {
    display: flex;
    left: 12px;
    right: 12px;
    width: auto;
    min-height: auto;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 18px 22px;
    border-top: 2px solid var(--accent);
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(255, 255, 255, .99), rgba(250, 245, 235, .99));
    box-shadow: 0 22px 44px rgba(7, 19, 30, .2);
    overflow: hidden auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .24s ease, visibility .24s, transform .3s cubic-bezier(.2, .8, .25, 1);
  }

  .nav>nav.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav>nav a {
    width: min(100%, 460px);
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
  }
}

@media(max-width:600px) {
  .home-hero .lead {
    display: none;
  }

  .nav>nav {
    top: 72px;
    left: 8px;
    right: 8px;
    min-height: auto;
    padding: 16px 18px;
    border-radius: 16px;
  }

  .nav>nav a {
    width: min(100%, 340px);
    padding-block: 12px;
    font-size: 16px;
  }
}

/* Deluxe-inspired contact strip */
.topbar {
  background: #07131e;
  color: #eef3f6;
  letter-spacing: 0;
}

.topbar-inner {
  min-height: 72px;
  height: auto;
  gap: 24px;
  padding-block: 7px;
}

.contact-strip-intro,
.contact-strip-links,
.contact-strip-links a {
  display: flex;
  align-items: center;
}

.contact-strip-intro {
  gap: 9px;
  color: #ffb4ba;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-strip-links {
  justify-content: flex-end;
  gap: 16px;
}

.contact-strip-contact-stack {
  display: grid;
  gap: 4px;
  min-width: 145px;
}

.contact-strip-contact-stack a {
  min-height: 16px;
  margin-left: -6px;
  padding: 3px 6px;
  border-radius: 5px;
  font-size: 10px;
  line-height: 1.2;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.contact-strip-contact-stack i {
  width: 13px;
  color: #ffb4ba;
  text-align: center;
}

.contact-strip-contact-stack a:hover,
.contact-strip-contact-stack a:focus-visible {
  background: rgba(255, 180, 186, .16);
  color: #ffd1d4;
  transform: translateX(3px);
}

.contact-strip-links a {
  gap: 7px;
  color: #e8edf1;
  font-weight: 600;
  transition: color .2s ease;
}

.contact-strip-links a:hover,
.contact-strip-links a:focus-visible {
  color: #ffb4ba;
}

.contact-strip-quote {
  min-height: 54px;
  padding-inline: 16px;
  background: linear-gradient(135deg, #ef6670, var(--accent));
  color: #fff!important;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-banner {
  position:sticky;
  top: 0;
  z-index: 21;

  background: linear-gradient(90deg, #8f1018, #d32630 52%, #a4111a);
  color: #fff;
  border-bottom: 1px solid rgba(91, 4, 10, .45);
}

.contact-banner-inner,
.payment-banner-left,
.payment-banner-actions,
.payment-methods,
.payment-logo-card,
.contact-banner-links,
.contact-banner-links a,
.pay-online-button {
  display: flex;
  align-items: center;
}

.contact-banner-inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 24px;
}

.payment-banner-left {
  min-width: 0;
  gap: 12px;
}

.contact-banner-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.payment-methods {
  justify-content: flex-start;
  gap: 5px;
  min-width: 0;
}

.payment-logo-card {
  position: relative;
  width: 54px;
  height: 28px;
  flex: 0 1 54px;
  justify-content: center;
  gap: 3px;
  overflow: hidden;
  padding: 4px 6px;
  border: 1px solid rgba(15, 23, 31, .22);
  border-radius: 3px;
  background: #fff;
  color: #101820;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .16);
}

.payment-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-logo-card[aria-label="Visa"] img {
  filter: invert(20%) sepia(94%) saturate(1814%) hue-rotate(207deg) brightness(83%) contrast(103%);
}

.payment-logo-card[aria-label="PhonePe"] img {
  width: 16px;
  flex: 0 0 16px;
  filter: invert(21%) sepia(60%) saturate(2836%) hue-rotate(257deg) brightness(75%) contrast(91%);
}

.payment-logo-card[aria-label="PhonePe"] {
  gap: 1px;
  padding-inline: 3px;
}

.payment-word {
  font: 700 8px/1 "Manrope", sans-serif;
  white-space: nowrap;
}

.phonepe-word {
  color: #5f259f;
  font-size: 7px;
}

.google-pay-card img {
  filter: invert(28%) sepia(5%) saturate(761%) hue-rotate(173deg) brightness(89%) contrast(88%);
}

.paytm-card img {
  filter: invert(31%) sepia(79%) saturate(1043%) hue-rotate(172deg) brightness(87%) contrast(91%);
}

.payment-logo-circles {
  isolation: isolate;
}

.payment-circle {
  position: absolute;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.payment-logo-circles .circle-one {
  left: calc(50% - 13px);
}

.payment-logo-circles .circle-two {
  left: calc(50% - 2px);
}

.mastercard .circle-one {
  background: #eb001b;
}

.mastercard .circle-two {
  background: #f79e1b;
  mix-blend-mode: multiply;
}

.maestro .circle-one {
  background: #00a2e5;
}

.maestro .circle-two {
  background: #ed1c24;
  mix-blend-mode: multiply;
}

.circle-logo-name {
  position: relative;
  z-index: 1;
  margin-top: 1px;
  color: #fff;
  font: 700 5.5px/1 Arial, sans-serif;
  letter-spacing: -.03em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .22);
}

.net-banking-card {
  flex-direction: column;
  gap: 0;
  font: 900 11px/.78 Arial, sans-serif;
}

.net-banking-card small {
  font-size: 8px;
}

.upi-card {
  gap: 2px;
  color: #52565a;
  font: italic 800 15px/1 Arial, sans-serif;
}

.upi-card i {
  width: 8px;
  height: 17px;
  background: linear-gradient(110deg, #f58220 0 48%, transparent 49% 54%, #279447 55% 100%);
  clip-path: polygon(0 0, 48% 0, 100% 50%, 48% 100%, 0 100%, 50% 50%);
}

.contact-banner-links {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 10px;
}

.payment-banner-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 12px;
}

.contact-banner-links a {
  min-height: 32px;
  gap: 6px;
  padding: 4px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.contact-banner-links i {
  width: 12px;
  color: #fff;
  text-align: center;
}

.contact-banner-links a:hover,
.contact-banner-links a:focus-visible {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  transform: translateY(-1px);
}

.pay-online-button {
  min-height: 32px;
  justify-content: center;
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid #63a9e6;
  border-radius: 6px;
  background: linear-gradient(135deg, #67c7ff, #237ac9 55%, #15559a);
  color: #fff;
  font: 700 10px/1 "Manrope", sans-serif;
  white-space: nowrap;
  box-shadow: 0 5px 14px rgba(5, 56, 111, .28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.pay-online-button:hover,
.pay-online-button:focus-visible,
.pay-online-button.is-active {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(5, 56, 111, .38);
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-list a {
  display: flex!important;
  align-items: center;
  gap: 10px;
  margin: 0!important;
  padding: 7px 9px;
  border-radius: 6px;
  color: #d3d9dd;
  line-height: 1.45;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.footer-contact-list i {
  width: 16px;
  color: var(--accent);
  text-align: center;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  background: transparent;
  color: var(--accent);
  transform: translateX(4px);
}

/* Clickable Services link with an independent dropdown trigger */
.nav-services {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-services::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 24px;
}

@media(min-width:1051px) {
  .nav-services + a[href="location.html"] {
    margin-left: -12px;
    margin-right: 30px;
    white-space: nowrap;
  }
}

.services-main-link {
  padding-right: 5px;
}

.services-menu-toggle {
  width: 26px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.services-menu-toggle i {
  font-size: 10px;
  transition: transform .25s ease, color .2s ease;
}

.nav-services:hover .services-menu-toggle,
.nav-services:focus-within .services-menu-toggle {
  color: #a8121d;
}

.nav-services.is-open .services-menu-toggle i {
  transform: rotate(180deg);
}

@media(min-width:1051px) {
  .nav-services:hover:not(.is-click-closed) .services-menu-toggle i,
  .nav-services:focus-within:not(.is-click-closed) .services-menu-toggle i {
    transform: rotate(180deg);
  }

  .nav-services.is-click-closed .services-menu-toggle i {
    transform: rotate(0);
  }
}

.services-submenu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  z-index: 40;
  width: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(201, 31, 43, .3);
  border-radius: 12px;
  background: rgba(255, 252, 246, .99);
  box-shadow: 0 22px 55px rgba(7, 19, 30, .22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .2s ease, visibility .2s, transform .25s ease;
}

.nav-services.is-open .services-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media(min-width:1051px) {
  .nav-services:hover:not(.is-click-closed) .services-submenu,
  .nav-services:focus-within:not(.is-click-closed) .services-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-services.is-click-closed .services-submenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -8px);
  }
}

.nav>nav .services-submenu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 12px;
  text-align: left;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav>nav .services-submenu a i {
  width: 20px;
  color: #b51622;
  text-align: center;
}

.nav>nav .services-submenu a:hover,
.nav>nav .services-submenu a:focus-visible {
  background: #fbe7e9;
  color: #811018;
  transform: translateX(3px);
}

/* Distinct quick-action colours */
.contact-action.action-call {
  background: linear-gradient(135deg, #fffbea, #f8e7ad 55%, #edcf78);
  border-color: #ddbd61;
  color: #5f4512;
}

.contact-action.action-whatsapp {
  background: linear-gradient(135deg, #f0fff5, #c9f1d7);
  border-color: #91d5aa;
  color: #155f36;
}

.contact-action.action-enquiry,
.contact-action.action-enquiry.is-active {
  background: linear-gradient(135deg, #f2f9ff, #cfe9ff);
  border-color: #9bc9ed;
  color: #15527c;
}

.contact-action.action-call:hover,
.contact-action.action-call:focus-visible {
  background: linear-gradient(135deg, #fff2bd, #e9c45f 58%, #c9982f);
  border-color: #bd8c25;
  color: #4c3408;
  box-shadow: 0 12px 28px rgba(189, 140, 37, .28);
}

.contact-action.action-whatsapp:hover,
.contact-action.action-whatsapp:focus-visible {
  background: linear-gradient(135deg, #dcfbe7, #8bd6a7);
  border-color: #65bf86;
  color: #104e2d;
  box-shadow: 0 12px 28px rgba(43, 150, 84, .22);
}

.contact-action.action-enquiry:hover,
.contact-action.action-enquiry:focus-visible,
.contact-action.action-enquiry.is-active:hover {
  background: linear-gradient(135deg, #e0f2ff, #91c9f2);
  border-color: #6aafe0;
  color: #103f60;
  box-shadow: 0 12px 28px rgba(49, 133, 190, .22);
}

/* Homepage reviews carousel */
.home-reviews {
  overflow: hidden;
  background: linear-gradient(145deg, #fffdf8, #f9e5e7);
}

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.review-controls {
  display: flex;
  gap: 10px;
}

.review-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 29, 45, .2);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  background: linear-gradient(135deg, #ef6670, var(--accent) 55%, #8f1018);
  color: #fff;
  transform: translateY(-2px);
}

.review-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.review-track {
  display: flex;
  transition: transform .65s cubic-bezier(.22, .75, .25, 1);
}

.review-card {
  flex: 0 0 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(201, 31, 43, .32);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(13, 29, 45, .1);
}

.review-stars {
  color: #c91f2b;
  font-size: 18px;
  letter-spacing: .18em;
}

.review-card blockquote {
  max-width: 900px;
  margin: 22px 0 28px;
  color: var(--ink);
  font: 500 clamp(24px, 3vw, 38px)/1.35 "Playfair Display", serif;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author>span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font: 700 12px "Manrope";
}

.review-author div,
.review-author b,
.review-author small {
  display: block;
}

.review-author b {
  font: 700 13px "Manrope";
}

.review-author small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.review-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d5a8ac;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.review-dots button.is-active {
  width: 28px;
  background: linear-gradient(135deg, #ef6670, var(--accent) 55%, #8f1018);
}

/* Curved map windows */
.map-embed,
.contact-cards .map-embed,
.local .map-embed,
.office-page-location .map-embed {
  overflow: hidden;
  border-radius: 18px;
}

.map-embed iframe,
.contact-cards iframe,
.local iframe,
.office-page-location iframe {
  display: block;
  border-radius: 18px;
}

@media(max-width:1050px) {
  .topbar-inner {
    width: min(100% - 24px, 1160px);
  }

  .contact-strip-links {
    gap: 12px;
  }

  .nav-services {
    width: min(100%, 460px);
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    align-items: center;
  }

  .nav-services::after {
    display: none;
  }

  .nav>nav .nav-services>.services-main-link {
    grid-column: 2;
    width: 100%;
    text-align: center;
  }

  .services-menu-toggle {
    grid-column: 3;
    width: 46px;
    height: 46px;
  }

  .services-submenu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height .3s ease, padding .3s ease, margin .3s ease;
  }

  .nav-services:hover .services-submenu,
  .nav-services:focus-within .services-submenu {
    transform: none;
  }

  .nav-services.is-open .services-submenu {
    max-height: 450px;
    margin-top: 4px;
    padding: 10px;
    pointer-events: auto;
    transform: none;
  }

  .nav>nav .services-submenu a {
    width: 100%;
    padding: 10px;
    font-size: 12px;
    text-align: left;
  }
}

@media(max-width:760px) {
  .contact-strip-intro {
    display: none;
  }

  .topbar-inner,
  .contact-strip-links {
    justify-content: center;
  }

  .contact-banner-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 5px;
    padding-block: 6px;
  }

  .payment-banner-left {
    justify-content: flex-start;
  }

  .contact-banner-label {
    font-size: 10px;
  }

  .payment-methods {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .contact-banner-links {
    width: 100%;
    justify-content: space-between;
  }

  .payment-banner-actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .payment-banner-actions .contact-banner-links {
    width: auto;
    flex: 1 1 auto;
  }

  .contact-banner-links a {
    min-height: 22px;
    padding-block: 1px;
    font-size: 9px;
  }

}

@media(max-width:600px) {
  /* Prevent sub-pixel seams between the stacked sticky bars while scrolling. */
  .contact-banner {
    top: 0;
    margin: 0;
    box-shadow: 0 -2px 0 #8f1018, 0 2px 0 #a4111a;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .nav-shell {
    top: calc(var(--contact-banner-height, 42px) - 1px);
  }

  .contact-banner-inner {
    width: min(1160px, calc(100% - 12px));
    height: auto;
    min-height: 68px;
    padding-block: 5px;
    gap: 4px;
  }

  .topbar-inner {
    min-height: 66px;
  }

  .topbar-inner span {
    display: inline;
  }

  .contact-strip-links {
    width: 100%;
    gap: 13px;
    font-size: 10px;
  }

  .contact-strip-quote {
    min-height: 52px;
    padding-inline: 12px;
  }

  .contact-strip-contact-stack {
    min-width: 132px;
  }

  .contact-banner-label {
    font-size: clamp(7px, 2.15vw, 9px);
    letter-spacing: .03em;
  }

  .payment-methods {
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 2px;
  }

  .payment-banner-left {
    gap: 7px;
  }

  .contact-banner-links {
    width: auto;
    flex: 1 1 auto;
    justify-content: space-between;
    gap: 4px 7px;
  }

  .contact-banner-links a {
    min-width: 0;
    min-height: 18px;
    padding: 0 2px;
    font-size: clamp(7px, 2.35vw, 9px);
  }

  .contact-banner-links i {
    width: 10px;
  }

  .pay-online-button {
    min-height: 26px;
    flex: 0 0 auto;
    gap: 5px;
    padding: 6px 9px;
    font-size: clamp(7px, 2.3vw, 9px);
  }

  .payment-logo-card {
    width: clamp(22px, 7.35vw, 40px);
    height: 25px;
    flex-basis: clamp(22px, 7.35vw, 40px);
    min-width: 0;
    padding: 3px;
  }

  .payment-logo-card[aria-label="PhonePe"] img {
    width: 15px;
    flex-basis: 15px;
  }

  .payment-word {
    display: none;
  }

  .payment-circle {
    top: 6px;
    width: 15px;
    height: 15px;
  }

  .payment-logo-circles .circle-one {
    left: calc(50% - 12px);
  }

  .payment-logo-circles .circle-two {
    left: calc(50% - 2px);
  }

  .circle-logo-name {
    font-size: 4.5px;
  }

  .net-banking-card {
    font-size: 8px;
  }

  .net-banking-card small {
    font-size: 6px;
  }

  .upi-card {
    font-size: 10px;
  }

  .upi-card i {
    width: 6px;
    height: 13px;
  }

  .nav-services {
    width: min(100%, 340px);
  }

  .services-submenu {
    grid-template-columns: 1fr;
  }

  .nav-services.is-open .services-submenu {
    max-height: 620px;
  }

  .reviews-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
  }

  .review-controls {
    display: none;
  }

  .review-viewport {
    touch-action: pan-y;
  }

  .review-card {
    min-height: 330px;
    padding: 30px 24px;
  }

  .review-card blockquote {
    font-size: 24px;
  }

  .map-embed,
  .contact-cards .map-embed,
  .local .map-embed,
  .office-page-location .map-embed,
  .map-embed iframe,
  .contact-cards iframe,
  .local iframe,
  .office-page-location iframe {
    border-radius: 12px;
  }
}

/* Final desktop navbar layout */
@media(min-width:1051px) {
  .nav {
    grid-template-columns: minmax(255px, 1fr) auto minmax(255px, 1fr);
    grid-template-areas: "brand navigation actions";
    gap: 24px;
  }
}

/* Online payment page */
.payment-page {
  background:
    radial-gradient(circle at 88% 10%, rgba(35, 122, 201, .12), transparent 30%),
    linear-gradient(145deg, #fffdf8, #f7f2e8);
}

.payment-panel {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.payment-qr-card,
.bank-details-card {
  border: 1px solid rgba(177, 188, 194, .6);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 55px rgba(13, 29, 45, .12);
}

.payment-qr-card {
  padding: 22px;
  text-align: center;
}

.payment-card-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #15559a;
  font: 800 10px/1 "Manrope", sans-serif;
  letter-spacing: .15em;
}

.payment-qr-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #e1e5e8;
  border-radius: 12px;
}

.payment-qr-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.bank-details-card {
  padding: clamp(28px, 5vw, 54px);
}

.bank-details-card h2 {
  margin: 8px 0 14px;
  color: var(--ink);
  font: 600 clamp(30px, 4vw, 46px)/1.1 "Manrope", sans-serif;
  letter-spacing: -.035em;
}

.bank-details-intro {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.bank-details-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.bank-details-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.bank-details-list dt {
  color: #687580;
  font: 700 11px/1.5 "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bank-details-list dd {
  margin: 0;
  color: var(--ink);
  font: 700 14px/1.5 "Manrope", sans-serif;
}

.payment-safety-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: 9px;
  background: #eaf5ff;
  color: #15527c;
  font-size: 11px;
  line-height: 1.55;
}

.payment-safety-note i {
  margin-top: 2px;
}

@media(max-width:760px) {
  .payment-panel {
    grid-template-columns: 1fr;
  }

  .payment-qr-card {
    width: min(100%, 360px);
    justify-self: center;
  }

  .bank-details-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Why Choose Sahastra: animated route, promise circles and assurance badges */
.home-benefits {
  overflow: hidden;
  padding-block: 82px;
  background: #f3f4fb;
}

.why-choose-layout {
  display: grid;
  grid-template-columns: minmax(470px, .95fr) minmax(0, 1.05fr);
  grid-template-rows: auto auto 1fr;
  gap: clamp(54px, 7vw, 92px);
  row-gap: 0;
  align-items: center;
}

.why-orbit {
  position: relative;
  grid-column: 1;
  grid-row: 1 / 4;
  width: min(100%, 520px);
  aspect-ratio: 1;
  justify-self: center;
  filter:
    drop-shadow(0 30px 24px rgba(0, 0, 0, .27))
    drop-shadow(0 10px 10px rgba(0, 0, 0, .16));
}

.why-orbit-track {
  position: absolute;
  inset: 16.5%;
  z-index: 0;
  border: 4px dashed #111820;
  border-radius: 50%;
  animation: whyRouteRotate 18s linear infinite;
}

.why-orbit-track::after {
  content: "";
  position: absolute;
  top: 13%;
  right: -5px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #111820;
  transform: rotate(36deg);
}

.why-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 42%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe979, #ffc928);
  color: #101820;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(185, 136, 4, .2);
}

.why-orbit-core i {
  font-size: clamp(34px, 5vw, 58px);
}

.why-promise {
  position: absolute;
  z-index: 2;
  width: 176px;
  height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(201, 31, 43, .13);
  border-radius: 50%;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 44px rgba(13, 29, 45, .11);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.why-promise:hover {
  border-color: rgba(201, 31, 43, .55);
  box-shadow: 0 24px 52px rgba(13, 29, 45, .16);
}

.why-promise>span {
  position: absolute;
  top: 14px;
  left: 21px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font: 800 10px/1 "Manrope", sans-serif;
}

.why-promise>i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fbe2e5;
  color: #a8121d;
  font-size: 18px;
}

.why-promise h3 {
  max-width: 126px;
  margin: 0;
  color: var(--ink);
  font: 700 14px/1.3 "Manrope", sans-serif;
}

.why-promise-one {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.why-promise-one:hover {
  transform: translateX(-50%) translateY(-6px);
}

.why-promise-two {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.why-promise-two:hover {
  transform: translateY(-50%) translateX(6px);
}

.why-promise-three {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.why-promise-three:hover {
  transform: translateX(-50%) translateY(6px);
}

.why-promise-four {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.why-promise-four:hover {
  transform: translateY(-50%) translateX(-6px);
}

@keyframes whyRouteRotate {
  to { transform: rotate(360deg); }
}

.why-choose-kicker {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.why-choose-heading {
  grid-column: 2;
  grid-row: 2;
}

.why-choose-body {
  grid-column: 2;
  grid-row: 3;
  align-self: start;
}

.why-choose-heading h2,
.certification-heading h2 {
  margin: 10px 0 24px;
  color: var(--ink);
  font: 600 clamp(34px, 4.2vw, 54px)/1.12 "Manrope", sans-serif;
  letter-spacing: -.045em;
}

.why-choose-heading h2 em,
.certification-heading h2 em {
  color: var(--accent);
  font-family: "Playfair Display", serif;
}

.why-choose-body>p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.78;
}

.why-choose-points {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.why-choose-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.why-choose-points i {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f8d7da;
  color: #a8121d;
  font-size: 9px;
}

.why-choose-cta {
  min-width: 150px;
  text-align: center;
}

.certification-area {
  margin-top: 82px;
  padding-top: 54px;
  border-top: 1px solid rgba(177, 188, 194, .65);
}

.certification-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.certification-heading h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.8vw, 46px);
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.certification-grid article {
  padding: 26px 18px;
  border: 1px solid rgba(177, 188, 194, .58);
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
  text-align: center;
  box-shadow: 0 12px 32px rgba(13, 29, 45, .07);
  transition: transform .3s ease, box-shadow .3s ease;
}

.certification-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(13, 29, 45, .12);
}

.cert-badge {
  position: relative;
  width: 116px;
  height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0 auto 20px;
  border: 7px double #d0a83c;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6bc 0 44%, #e8bd4e 45% 58%, #6d5413 59% 62%, #f4d66e 63%);
  color: #241c08;
  box-shadow: 0 7px 18px rgba(102, 76, 10, .2);
}

.cert-badge::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  opacity: .65;
}

.cert-badge i,
.cert-badge span,
.cert-badge strong,
.cert-badge small {
  position: relative;
  z-index: 1;
}

.cert-badge i {
  font-size: 25px;
}

.cert-badge strong {
  font: 900 20px/1 "Manrope", sans-serif;
}

.cert-badge span,
.cert-badge small {
  font: 800 7px/1 "Manrope", sans-serif;
  letter-spacing: .08em;
}

.cert-badge-support {
  border-color: #3470c9;
  background: radial-gradient(circle, #f7fbff 0 51%, #8ab5ed 52% 58%, #285fae 59%);
  color: #234e91;
}

.cert-badge-trusted {
  border-color: #d5aa3d;
  background: radial-gradient(circle, #e9f4c4 0 45%, #46704c 46% 58%, #173f2a 59%);
  color: #090a0a;
}

.cert-badge-trusted i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d8b54f;
}

.certification-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font: 700 16px/1.35 "Manrope", sans-serif;
}

.certification-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

/* Shared service-detail price guide */
.service-pricing {
  background: linear-gradient(145deg, #fffdf8, #f4efe5);
}

.service-pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 50px;
}

.service-pricing-heading>p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(177, 188, 194, .72);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(13, 29, 45, .09);
  scrollbar-color: #b51622 #ece8df;
}

.pricing-table-scroll:focus-visible {
  outline: 3px solid rgba(35, 122, 201, .35);
  outline-offset: 3px;
}

.service-pricing-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 12px;
}

.service-pricing-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.service-pricing-table th,
.service-pricing-table td {
  padding: 17px 16px;
  border-right: 1px solid #e5e7e8;
  border-bottom: 1px solid #e5e7e8;
  text-align: left;
  white-space: nowrap;
}

.service-pricing-table th:last-child,
.service-pricing-table td:last-child {
  border-right: 0;
}

.service-pricing-table thead th {
  background: #12283a;
  color: #fff;
  font: 700 11px/1.35 "Manrope", sans-serif;
  letter-spacing: .025em;
}

.service-pricing-table tbody th {
  background: #fff8eb;
  color: #811018;
  font: 700 12px/1.4 "Manrope", sans-serif;
}

.service-pricing-table tbody tr:nth-child(even) td {
  background: #fafbfb;
}

.service-pricing-table thead th:first-child,
.service-pricing-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 5px 0 12px rgba(13, 29, 45, .06);
}

.service-pricing-table thead th:first-child {
  z-index: 3;
  background: #0b1b28;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.pricing-note i {
  margin-top: 2px;
  color: var(--accent);
}

@media(max-width:1000px) {
  .why-choose-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 30px;
  }

  .why-orbit {
    grid-column: 1;
    grid-row: 1;
  }

  .why-choose-kicker {
    grid-column: 1;
    grid-row: 2;
  }

  .why-choose-heading {
    grid-column: 1;
    grid-row: 3;
  }

  .why-choose-body {
    grid-column: 1;
    grid-row: 4;
  }

  .why-choose-kicker,
  .why-choose-heading,
  .why-choose-body {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .why-choose-points {
    max-width: 650px;
    margin-inline: auto;
    text-align: left;
  }

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

@media(max-width:760px) {
  .home-benefits {
    padding-block: 54px;
  }

  .why-orbit {
    grid-row: 2;
    width: min(100%, 360px);
    filter:
      drop-shadow(0 21px 17px rgba(0, 0, 0, .25))
      drop-shadow(0 7px 8px rgba(0, 0, 0, .14));
  }

  .why-choose-kicker {
    grid-row: 1;
  }

  .why-choose-heading {
    grid-row: 3;
  }

  .why-choose-body {
    grid-row: 4;
  }

  .why-promise {
    width: clamp(104px, 34vw, 128px);
    height: clamp(104px, 34vw, 128px);
    gap: 5px;
    padding: 15px;
  }

  .why-promise>span {
    top: 9px;
    left: 13px;
    width: 22px;
    height: 22px;
    font-size: 8px;
  }

  .why-promise>i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .why-promise h3 {
    max-width: 92px;
    font-size: clamp(9px, 3vw, 11px);
  }

  .why-orbit-track {
    border-width: 3px;
  }

  .why-orbit-track::after {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 12px;
  }

  .why-choose-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
    margin-bottom: 0;
  }

  .why-choose-body {
    margin-top: -18px;
  }

  .why-choose-body>p:first-child {
    margin-top: 0;
  }

  .certification-area {
    margin-top: 58px;
    padding-top: 42px;
  }

  .certification-grid {
    grid-template-columns: 1fr;
  }

  .certification-grid article {
    display: grid;
    grid-template-columns: 92px 1fr;
    column-gap: 18px;
    align-items: center;
    text-align: left;
  }

  .cert-badge {
    grid-row: 1 / 3;
    width: 92px;
    height: 92px;
    margin: 0;
  }

  .cert-badge strong {
    font-size: 15px;
  }

  .certification-grid h3 {
    align-self: end;
  }

  .certification-grid p {
    align-self: start;
  }

  .service-pricing-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-table-scroll {
    border-radius: 10px;
  }

  .service-pricing-table th,
  .service-pricing-table td {
    padding: 14px 13px;
  }
}

@media(prefers-reduced-motion:reduce) {
  .why-orbit-track {
    animation: none;
  }
}

/* Light Google Maps with a strong black backing shadow */
.map-embed,
.contact-cards .map-embed,
.local .map-embed,
.office-page-location .map-embed {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, .48),
    0 8px 18px rgba(0, 0, 0, .3);
}

.map-embed iframe,
.contact-cards iframe,
.local .map-embed iframe,
.office-page-location .map-embed iframe {
  background: #fff;
  filter: none;
}

@media(max-width:600px) {
  .map-embed,
  .contact-cards .map-embed,
  .local .map-embed,
  .office-page-location .map-embed {
    box-shadow:
      0 18px 38px rgba(0, 0, 0, .46),
      0 6px 14px rgba(0, 0, 0, .28);
  }
}

/* Compact two-column mobile footer */
@media(max-width:600px) {
  footer .footer-grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 30px 18px;
  }

  footer .footer-grid>div:first-child {
    grid-column: 1 / -1;
  }

  footer .footer-grid>div:nth-child(2) {
    grid-column: 1;
  }

  footer .footer-grid>div:nth-child(3) {
    grid-column: 2;
  }

  footer .footer-grid h4 {
    margin-bottom: 16px;
  }

  footer .footer-grid>div>a:not(.brand) {
    margin-block: 10px;
    font-size: 11px;
  }

  footer .footer-contact-list {
    gap: 8px;
  }

  footer .footer-contact-list a {
    gap: 6px;
    padding: 5px 0;
    font-size: clamp(9px, 2.8vw, 11px);
  }

  footer .footer-contact-list i {
    width: 14px;
    flex: 0 0 14px;
  }

  footer .copyright {
    margin-top: 32px;
  }
}

/* Mobile home hero order: title, enquiry form, then contact actions */
@media(max-width:600px) {
  .home-hero-grid {
    row-gap: 0;
  }

  .home-hero .hero-copy {
    display: contents;
  }

  .home-hero .hero-copy>.eyebrow {
    order: 1;
    margin-bottom: 10px;
  }

  .home-hero .hero-copy>h1 {
    order: 2;
    margin-bottom: 0;
  }

  .home-hero .hero-enquiry-form {
    order: 3;
    width: 100%;
    max-width: none;
    margin-top: 24px;
  }

  .home-hero .hero-actions {
    order: 4;
    margin-top: 16px;
  }

  .home-hero .trust-row {
    order: 5;
    margin-top: 20px;
  }

  .home-hero .lead {
    order: 6;
  }
}

/* Official WhatsApp colour for the mobile floating quick-action button */
@media(max-width:600px) {
  .nav-actions .contact-action.action-whatsapp,
  .nav-actions .contact-action.action-whatsapp:hover,
  .nav-actions .contact-action.action-whatsapp:focus-visible {
    background: #25d366;
    border-color: #1ebe5d;
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .32);
  }
}

/* Responsive admin enquiry controls */
@media(max-width:900px) {
  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-filters {
    flex-wrap: wrap;
  }

  .admin-filters .admin-search-filter {
    flex-basis: 100%;
    max-width: none;
  }

  .admin-toolbar-actions {
    align-self: flex-end;
  }

  .admin-table-wrap {
    min-height: 560px;
  }

  .admin-pagination {
    grid-template-columns: 1fr auto;
  }

  .admin-pagination p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media(max-width:600px) {
  .admin-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
  }

  .admin-filters,
  .admin-filters label,
  .admin-toolbar-actions,
  .admin-export-excel,
  .admin-delete-selected {
    width: 100%;
    max-width: none;
  }

  .admin-filters label {
    min-width: 0;
  }

  .admin-filters {
    display: contents;
  }

  .admin-toolbar-actions {
    display: contents;
  }

  .admin-filters .admin-search-filter {
    grid-column: 1 / -1;
  }

  .admin-clear-filters,
  .admin-export-excel,
  .admin-delete-selected {
    width: 100%;
    min-width: 0;
    height: 48px;
    min-height: 48px;
    margin: 0;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: end;
    line-height: 1;
  }

  .admin-clear-filters {
    grid-column: 1;
    grid-row: 3;
  }

  .admin-delete-selected {
    grid-column: 2;
    grid-row: 3;
  }

  .admin-export-excel {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  #admin-date-from,
  #admin-date-to,
  #admin-date-from::-webkit-datetime-edit,
  #admin-date-to::-webkit-datetime-edit {
    font-size: 13px;
  }

  #admin-date-from,
  #admin-date-to {
    padding-inline: 10px;
  }

  .admin-pagination {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .admin-pagination p {
    grid-column: auto;
    grid-row: auto;
  }

  .admin-page-controls {
    justify-content: space-between;
    overflow-x: auto;
  }

  .admin-page-controls>div {
    flex: 1;
    justify-content: center;
  }

  .admin-table {
    min-width: 790px;
    table-layout: fixed;
  }

  .admin-table th,
  .admin-table td {
    padding: 12px 8px;
  }

  .admin-table .admin-select-column {
    width: 40px;
    padding-inline: 6px;
  }

  .admin-table th:nth-child(2) {
    width: 115px;
  }

  .admin-table th:nth-child(3) {
    width: 140px;
  }

  .admin-table th:nth-child(4) {
    width: 165px;
  }

  .admin-table th:nth-child(5) {
    width: 105px;
  }

  .admin-table th:nth-child(6) {
    width: 145px;
  }

  .admin-table th:nth-child(7) {
    width: 70px;
  }

  .admin-table td {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .admin-table td small {
    font-size: 9px;
  }

  .admin-table td .admin-call-status,
  .admin-table td .admin-destination {
    font-size: 12px;
  }

  .service-pill {
    display: inline-block;
    padding: 5px 7px;
    line-height: 1.35;
  }

  .row-actions button {
    padding: 6px 8px;
  }
}

/* Rounded, elevated admin-panel surfaces */
.admin-body .admin-header {
  box-shadow: 0 8px 24px rgba(6, 18, 29, .22);
}

.admin-body .admin-login-card {
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.admin-body .admin-count {
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(13, 29, 45, .2);
}

.admin-body .admin-toolbar {
  padding: 16px;
  border: 1px solid rgba(13, 29, 45, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 34px rgba(13, 29, 45, .1);
}

.admin-body input,
.admin-body select,
.admin-body textarea,
.admin-body button,
.admin-body .btn {
  border-radius: 10px;
}

.admin-body .admin-filters input,
.admin-body .admin-pagination select,
.admin-body .admin-login-card input,
.admin-body dialog input,
.admin-body dialog select,
.admin-body dialog textarea {
  box-shadow: 0 6px 16px rgba(13, 29, 45, .08);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.admin-body .admin-filters input:focus,
.admin-body .admin-pagination select:focus,
.admin-body .admin-login-card input:focus,
.admin-body dialog input:focus,
.admin-body dialog select:focus,
.admin-body dialog textarea:focus {
  box-shadow: 0 0 0 3px rgba(201, 31, 43, .11), 0 9px 22px rgba(13, 29, 45, .1);
}

.admin-body .admin-clear-filters,
.admin-body .admin-export-excel,
.admin-body .admin-delete-selected,
.admin-body .admin-back,
.admin-body .row-actions button,
.admin-body .admin-page-controls button,
.admin-body .dialog-actions button,
.admin-body .empty-state .btn,
.admin-body .admin-login-card>.btn {
  box-shadow: 0 8px 18px rgba(13, 29, 45, .12);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.admin-body .admin-clear-filters:hover:not(:disabled),
.admin-body .admin-export-excel:hover:not(:disabled),
.admin-body .admin-delete-selected:hover:not(:disabled),
.admin-body .admin-back:hover,
.admin-body .row-actions button:hover,
.admin-body .admin-page-controls button:hover:not(:disabled),
.admin-body .dialog-actions button:hover:not(:disabled),
.admin-body .empty-state .btn:hover,
.admin-body .admin-login-card>.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(13, 29, 45, .17);
}

.admin-body .admin-clear-filters:disabled,
.admin-body .admin-export-excel:disabled,
.admin-body .admin-delete-selected:disabled,
.admin-body .admin-page-controls button:disabled {
  box-shadow: 0 3px 8px rgba(13, 29, 45, .07);
}

.admin-body #save-edit:disabled {
  background: #c8cdd1;
  color: #6c757c;
  cursor: not-allowed;
  box-shadow: 0 3px 8px rgba(13, 29, 45, .07);
  opacity: .78;
  transform: none;
}

.admin-body .admin-table-wrap {
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(13, 29, 45, .13);
}

.admin-body .admin-pagination {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(13, 29, 45, .1);
}

.admin-body .service-pill {
  border-radius: 7px;
  box-shadow: 0 4px 10px rgba(129, 16, 24, .11);
}

.admin-body .admin-table input[type="checkbox"] {
  border-radius: 5px;
  filter: drop-shadow(0 2px 3px rgba(13, 29, 45, .18));
}

.admin-body dialog {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

.admin-body dialog .custom-select-trigger {
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(13, 29, 45, .08);
}

.admin-body dialog .custom-select-options {
  border-radius: 14px;
}

.admin-body dialog .custom-select-option {
  border-radius: 8px;
}

.admin-body .login-error {
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(169, 61, 61, .12);
}

/* Rounded enquiry forms and controls */
.quote-card.hero-enquiry-form,
.quote-card.contact-enquiry-form {
  border-radius: 24px;
}

.quote-card input,
.quote-card select,
.quote-card .custom-select-trigger {
  border-radius: 12px;
}

.quote-card .custom-select-options {
  border-radius: 16px;
}

.quote-card .custom-select-option {
  border-radius: 9px;
}

.quote-card .btn,
.quote-card [type="submit"] {
  border-radius: 12px;
}

.quote-card .success,
.quote-card .whatsapp-followup {
  border-radius: 12px;
}

/* Clear hover highlight for every service-page enquiry action */
.service-detail-hero .btn:hover,
.service-detail-hero .btn:focus-visible {
  background: linear-gradient(135deg, #ff6b76, #c91f2b 58%, #8f1018);
  color: #fff;
  box-shadow: 0 14px 32px rgba(143, 16, 24, .38);
  transform: translateY(-3px) scale(1.02);
}

.service-detail-cta .dark-btn:hover,
.service-detail-cta .dark-btn:focus-visible {
  background: #fff;
  color: #a8121d;
  box-shadow: 0 14px 32px rgba(79, 7, 13, .3);
  transform: translateY(-3px) scale(1.02);
}

.service-detail-content .text-link {
  display: inline-flex;
  padding: 9px 13px;
  margin-left: -13px;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-detail-content .text-link:hover,
.service-detail-content .text-link:focus-visible {
  color: #a8121d;
  background: #fff;
  border-bottom-color: #a8121d;
  text-shadow: 0 0 18px rgba(201, 31, 43, .24);
  box-shadow: 0 12px 28px rgba(143, 16, 24, .24);
  transform: translateY(-2px);
}

@media(min-width:901px) {
  .admin-search-filter input::placeholder {
    font-size: 12px;
  }
}

/* Compact branch cards, balanced desktop navigation and full-image gallery */
.branch-card>div {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 25px 16px 12px;
}

.branch-card h3 {
  width: 100%;
}

@media(min-width:1051px) {
  .nav {
    grid-template-columns: minmax(230px, 1fr) auto minmax(335px, 1fr);
    gap: 16px;
  }

  .nav>nav {
    gap: 16px;
  }

  .nav-services + a[href="location.html"] {
    margin-left: 0;
    margin-right: 0;
  }

  .nav>nav>a,
  .nav>nav>.nav-services>.services-main-link {
    padding-inline: 9px;
  }
}

.gallery-section .gallery-grid {
  display: block;
  columns: 2 420px;
  column-gap: clamp(18px, 3vw, 30px);
}

.gallery-section .gallery-card {
  position: relative;
  min-height: 0;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 clamp(18px, 3vw, 30px);
  break-inside: avoid;
  border: 1px solid rgba(201, 31, 43, .22);
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 18px 45px rgba(13, 29, 45, .12);
  vertical-align: top;
}

.gallery-section .gallery-card::after {
  content: none;
  display: none;
}

.gallery-section .gallery-card img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  display: block;
  object-fit: initial;
  filter: none;
  transform: none;
}

.gallery-section .gallery-card:hover img {
  filter: none;
  transform: none;
}

.gallery-section .gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: auto;
  z-index: 3;
  width: auto;
  max-width: calc(100% - 28px);
  min-height: 0;
  margin: 0;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 10px;
  background: rgba(255, 253, 248, .9);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(13, 29, 45, .16);
  font: 700 clamp(11px, 1.15vw, 14px)/1.35 "Manrope", sans-serif;
  text-align: right;
  backdrop-filter: blur(5px);
}

@media(max-width:760px) {
  .branch-card>div {
    min-height: 62px;
    padding: 23px 11px 10px;
  }

  .gallery-section .gallery-grid {
    columns: 1;
  }

  .gallery-section .gallery-card {
    border-radius: 14px;
  }

  .gallery-section .gallery-card figcaption {
    right: 9px;
    bottom: 9px;
    max-width: calc(100% - 18px);
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 10px;
  }
}
