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

:root {
  --black: #002051;
  --ink: #072a64;
  --copy: #333333;
  --muted: #69727d;
  --yellow: #fe7b04;
  --yellow-dark: #d86400;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #dce4ee;
  --dark-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 60px rgba(0, 32, 81, 0.16);
  --max: 1220px;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--copy);
  background: var(--white);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--copy);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

.bg-video,
.section-video,
.video-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-video,
.section-video {
  z-index: -3;
  object-fit: cover;
}

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

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 160;
  width: 0;
  height: 4px;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(254, 123, 4, 0.48);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 32, 81, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 46px rgba(0, 32, 81, 0.22);
}

.site-header.is-scrolled .top-strip {
  background: #00183d;
}

.site-header.is-scrolled .brand-name,
.site-header.is-scrolled .nav-menu {
  color: var(--white);
}

.site-header.is-scrolled .brand-name small {
  color: rgba(255, 255, 255, 0.68);
}

.site-header.is-scrolled .brand-mark img {
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.75)) drop-shadow(0 12px 18px rgba(0, 0, 0, 0.26));
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--white);
}

.top-strip {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px max(20px, calc((100% - var(--max)) / 2 + 20px));
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.top-strip div,
.nav-menu,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.top-strip > div {
  display: none;
}

.top-strip a:hover {
  color: var(--yellow);
}

.nav {
  max-width: var(--max);
  min-height: 82px;
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  width: 68px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 8px 14px rgba(17, 17, 17, 0.16));
  transition: filter 0.24s ease, transform 0.24s ease;
}

.brand-name {
  display: grid;
  color: var(--black);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
}

.brand-name small {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-menu {
  justify-content: flex-end;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  padding: 12px 2px;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--yellow);
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu-contact {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--black);
}

.btn,
.nav-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary,
.nav-quote {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.btn-primary:hover,
.nav-quote:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

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

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

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--black);
}

.btn-outline:hover {
  border-color: var(--black);
}

.btn[href^="tel:"],
.btn[href*="wa.me"] {
  gap: 9px;
}

.top-strip a[href^="tel:"],
.top-strip a[href^="mailto:"],
.contact-details > a[href^="tel:"],
.contact-details > a[href^="mailto:"],
.footer-phone-pill,
.footer-contact-block a[href^="tel:"],
.footer-contact-block a[href^="mailto:"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-details > a[href^="tel:"],
.contact-details > a[href^="mailto:"],
.footer-contact-block a[href^="tel:"],
.footer-contact-block a[href^="mailto:"] {
  width: 100%;
}

.btn[href^="tel:"]::before,
.btn[href*="wa.me"]::before,
.top-strip a[href^="tel:"]::before,
.top-strip a[href^="mailto:"]::before,
.contact-details > a[href^="tel:"]::before,
.contact-details > a[href^="mailto:"]::before,
.footer-phone-pill::before,
.footer-contact-block a[href^="tel:"]::before,
.footer-contact-block a[href^="mailto:"]::before,
.whatsapp-float::before,
.call-float::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.btn[href^="tel:"]::before,
.btn[href*="wa.me"]::before {
  width: 18px;
  height: 18px;
}

.top-strip a[href^="tel:"]::before,
.top-strip a[href^="mailto:"]::before {
  width: 14px;
  height: 14px;
}

.contact-details > a[href^="tel:"]::before,
.contact-details > a[href^="mailto:"]::before,
.footer-phone-pill::before,
.footer-contact-block a[href^="tel:"]::before,
.footer-contact-block a[href^="mailto:"]::before {
  width: 17px;
  height: 17px;
}

.btn[href^="tel:"]::before,
.top-strip a[href^="tel:"]::before,
.contact-details > a[href^="tel:"]::before,
.footer-phone-pill::before,
.footer-contact-block a[href^="tel:"]::before,
.call-float::before {
  -webkit-mask-image: url("assets/icons/phone.svg");
  mask-image: url("assets/icons/phone.svg");
}

.top-strip a[href^="mailto:"]::before,
.contact-details > a[href^="mailto:"]::before,
.footer-contact-block a[href^="mailto:"]::before {
  -webkit-mask-image: url("assets/icons/email.svg");
  mask-image: url("assets/icons/email.svg");
}

.btn[href*="wa.me"]::before,
.whatsapp-float::before {
  -webkit-mask-image: url("assets/icons/whatsapp.svg");
  mask-image: url("assets/icons/whatsapp.svg");
}

.hero,
.page-hero,
.motion-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero {
  min-height: 780px;
}

.page-hero {
  min-height: 460px;
}

.compact-hero {
  min-height: 390px;
}

.hero::before,
.page-hero::before,
.motion-section::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: -3;
  background-image: url("assets/images/hero-logistics.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
  animation: truckPan 18s ease-in-out infinite alternate;
}

.motion-section::before,
.page-hero::before {
  background-image: url("assets/images/operations-loading.png");
}

.hero::after,
.page-hero::after,
.motion-section::after,
.video-tint {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.72) 43%, rgba(17, 17, 17, 0.24) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.74));
}

.video-tint {
  z-index: -1;
}

@keyframes truckPan {
  from {
    transform: scale(1.04) translate3d(-1.5%, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(2.5%, -1%, 0);
  }
}

.hero-inner,
.page-hero-inner,
.section,
.metrics-band,
.site-footer {
  padding-left: 20px;
  padding-right: 20px;
}

.hero-inner {
  max-width: var(--max);
  min-width: 0;
  min-height: 780px;
  margin: 0 auto;
  padding-top: 92px;
  padding-bottom: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 52px;
  align-items: center;
}

.page-hero-inner {
  max-width: var(--max);
  min-width: 0;
  margin: 0 auto;
  padding-top: 94px;
  padding-bottom: 82px;
  color: var(--white);
}

.hero-copy,
.hero-inner > *,
.content-grid > *,
.contact-layout > * {
  min-width: 0;
}

.hero h1,
.page-hero-inner h1 {
  margin: 0;
  max-width: 820px;
  color: var(--white);
  font-size: 82px;
  line-height: 0.94;
}

.page-hero-inner h1 {
  font-size: 56px;
  line-height: 1.03;
}

.about-hero .page-hero-inner h1 {
  max-width: 720px;
  font-size: 44px;
}

.hero-line,
.page-hero-inner p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: 34px;
}

.glass-panel,
.form-card,
.quote-page-form,
.contact-details {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-panel,
.form-card,
.quote-page-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  padding: 34px;
}

.quote-panel {
  border-top: 6px solid var(--yellow);
}

.panel-heading,
.form-card h2 {
  grid-column: 1 / -1;
}

.panel-heading span,
.feature-card span,
.service-mosaic span,
.fleet-card span,
.update-card span {
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-heading h2,
.form-card h2 {
  margin: 4px 0 4px;
  color: var(--black);
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 500;
}

label {
  display: grid;
  gap: 5px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.field-label-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.field-star {
  color: var(--yellow-dark);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #adadad;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font-size: 14px;
}

select {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9a9a9a;
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  min-height: 22px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.spam-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-field {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.captcha-question {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--yellow);
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(254, 123, 4, 0.42);
  outline-offset: 3px;
}

.metrics-band {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: -64px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  box-shadow: var(--shadow);
}

.metrics-band div {
  min-height: 132px;
  padding: 30px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.metrics-band div:last-child {
  border-right: 0;
}

.metrics-band strong {
  display: block;
  color: var(--black);
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.metrics-band span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

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

.section-muted {
  background: var(--paper);
}

.section-dark {
  background: var(--black);
  color: rgba(255, 255, 255, 0.74);
}

.section-head,
.content-grid,
.feature-grid,
.process-grid,
.gallery-strip,
.gallery-wall,
.updates-grid,
.value-grid,
.service-mosaic,
.fleet-grid,
.contact-layout,
.admin-layout,
.admin-preview,
.quote-page-form {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: 42px;
}

.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.centered {
  text-align: center;
}

.centered h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.motion-section .section-head.centered,
.gallery-home-head,
.contact-numbers-head {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.gallery-home-head .text-link {
  display: inline-block;
  margin-top: 20px;
}

.gallery-page-head {
  padding: 24px 0 18px;
  border-top: 1px solid rgba(0, 32, 81, 0.1);
  border-bottom: 1px solid rgba(0, 32, 81, 0.1);
}

.section-head h2,
.content-grid h2 {
  max-width: 800px;
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.section-head.centered h2,
.gallery-home-head h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-head h2,
.section-dark h3 {
  color: var(--white);
}

.text-link {
  position: relative;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--yellow);
}

.feature-grid,
.process-grid,
.value-grid,
.service-mosaic,
.fleet-grid,
.updates-grid,
.admin-layout {
  display: grid;
  gap: 0;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.smart-dispatch-section {
  position: relative;
  overflow: hidden;
}

.smart-dispatch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 32, 81, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 32, 81, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 72%, transparent);
  pointer-events: none;
}

.smart-dispatch-grid {
  position: relative;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.smart-dispatch-grid article,
.faq-strip details {
  background: var(--white);
  border: 1px solid rgba(0, 32, 81, 0.1);
  box-shadow: 0 18px 44px rgba(0, 32, 81, 0.08);
}

.smart-dispatch-grid article {
  padding: 30px;
  min-height: 260px;
}

.smart-dispatch-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.smart-dispatch-grid h3 {
  margin: 34px 0 12px;
  font-size: 25px;
  line-height: 1.08;
}

.smart-dispatch-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.faq-strip {
  position: relative;
  max-width: var(--max);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-strip details {
  padding: 22px 24px;
}

.faq-strip summary {
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

.faq-strip p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.feature-card,
.process-grid article,
.value-grid article,
.service-mosaic article,
.fleet-card,
.update-card {
  min-height: 230px;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card h3,
.process-grid h3,
.value-grid h3,
.service-mosaic h3,
.fleet-card h3,
.update-card h3 {
  margin: 14px 0 12px;
  font-size: 24px;
  line-height: 1.12;
}

.feature-card p,
.process-grid p,
.value-grid p,
.service-mosaic p,
.fleet-card p,
.update-card p,
.content-grid p {
  margin: 0;
  color: var(--muted);
}

.update-card {
  overflow: hidden;
}

.update-card > img {
  width: calc(100% + 68px);
  height: 190px;
  margin: -34px -34px 24px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.content-grid p + p {
  margin-top: 16px;
}

.motion-section {
  min-height: 580px;
}

.motion-section::after {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.82)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.5), rgba(17, 17, 17, 0.92));
}

.motion-section .section-head,
.motion-section .process-grid {
  position: relative;
  z-index: 2;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.process-grid article {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--dark-line);
}

.process-grid strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.gallery-strip,
.gallery-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
  align-items: stretch;
}

.gallery-strip figure,
.gallery-wall figure {
  position: relative;
  grid-column: auto;
  min-height: clamp(250px, 30vw, 390px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  border: 1px solid rgba(0, 32, 81, 0.1);
  cursor: zoom-in;
  box-shadow: 0 22px 56px rgba(0, 32, 81, 0.12);
}

.gallery-strip figure::before,
.gallery-wall figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 32, 81, 0.04), rgba(0, 32, 81, 0.68)),
    linear-gradient(90deg, rgba(0, 32, 81, 0.28), transparent 52%);
  opacity: 0.96;
  pointer-events: none;
}

.gallery-strip figure::after,
.gallery-wall figure::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 17px;
  z-index: 2;
  width: 78px;
  height: 5px;
  background: var(--yellow);
  pointer-events: none;
  transition: width 0.22s ease;
}

.gallery-strip figure:hover::after,
.gallery-wall figure:hover::after {
  width: 118px;
}

.gallery-strip img,
.gallery-wall img,
.framed-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-strip figure:hover img,
.gallery-wall figure:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-strip figcaption,
.gallery-wall figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 30px;
  z-index: 3;
  max-width: 430px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(20px, 2.1vw, 31px);
  font-weight: 700;
  line-height: 1.05;
}

.gallery-strip figcaption span,
.gallery-wall figcaption span {
  display: inline;
}

.gallery-wall.compact {
  margin-bottom: 56px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: clamp(14px, 3vw, 34px);
  background:
    radial-gradient(circle at 16% 18%, rgba(254, 123, 4, 0.18), transparent 28%),
    rgba(0, 18, 45, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.gallery-lightbox[hidden] {
  display: none;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.lightbox-layout {
  position: relative;
  width: min(100%, 1280px);
  height: min(100%, 860px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 18px;
}

.lightbox-main {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.lightbox-main img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 72px);
  object-fit: contain;
  background: #061226;
}

.lightbox-panel {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto auto auto minmax(0, 1fr);
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
}

.lightbox-brand {
  width: 78px;
  height: 58px;
  object-fit: contain;
}

.lightbox-panel h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.02;
}

.lightbox-panel [data-lightbox-counter] {
  color: var(--yellow-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav,
.lightbox-play,
.lightbox-thumb {
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 46px;
  height: 46px;
  background: var(--yellow);
  color: var(--black);
  font-size: 32px;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 66px;
  transform: translateY(-50%);
  background: rgba(0, 32, 81, 0.68);
  color: var(--white);
  font-size: 48px;
  line-height: 1;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-play {
  justify-self: start;
  min-height: 46px;
  padding: 12px 18px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.lightbox-play[aria-pressed="true"],
.lightbox-play:hover,
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--yellow);
  color: var(--black);
}

.lightbox-thumbs {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

.lightbox-thumb {
  aspect-ratio: 1.25 / 1;
  padding: 0;
  border: 3px solid transparent;
  background: var(--paper);
  opacity: 0.72;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumb.is-active {
  border-color: var(--yellow);
  opacity: 1;
}

.updates-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.content-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
}

.framed-img {
  box-shadow: var(--shadow);
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-ledger,
.office-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.about-ledger article,
.office-card {
  min-height: 220px;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-ledger span,
.office-card span {
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-ledger h3,
.office-card h3 {
  margin: 14px 0 12px;
  font-size: 26px;
  line-height: 1.1;
}

.about-ledger p,
.office-card p {
  margin: 0;
  color: var(--muted);
}

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

.head-office {
  grid-column: span 2;
  background: var(--black);
}

.head-office h3 {
  color: var(--white);
}

.head-office p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .value-grid article {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--dark-line);
}

.section-dark .value-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.service-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fleet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.segmented-control button {
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.segmented-control button[aria-pressed="true"] {
  background: var(--yellow);
}

.contact-details {
  padding: 38px;
}

.contact-details img {
  width: 118px;
  height: 108px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 12px 22px rgba(17, 17, 17, 0.12));
}

.contact-details h2 {
  margin: 0 0 12px;
  font-size: 36px;
}

.contact-details p {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-details > a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
}

.contact-actions {
  margin-top: 24px;
}

.form-card {
  grid-template-columns: 1fr 1fr;
}

.map-section iframe {
  width: 100%;
  height: 460px;
  border: 0;
}

.contact-map-form,
.contact-detail-grid,
.contact-lower-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.contact-map-form {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.contact-map-form.contact-map-full {
  display: block;
}

.contact-map-panel {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.contact-form-card {
  min-height: 560px;
  align-content: start;
}

.contact-map-full .contact-map-panel,
.contact-map-full .contact-map-panel iframe {
  min-height: 440px;
}

.contact-lower-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 30px;
  align-items: stretch;
}

.contact-detail-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-lower-grid .contact-detail-grid {
  margin-top: 0;
  grid-template-columns: 1fr;
}

.contact-studio {
  max-width: var(--max);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: stretch;
}

.contact-info-panel {
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(254, 123, 4, 0.18), transparent 44%),
    var(--black);
  color: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.contact-info-panel h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: 38px;
  line-height: 1.06;
}

.contact-info-list {
  display: grid;
  gap: 12px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 54px minmax(0, auto);
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.05);
}

.contact-info-item strong,
.contact-info-item em {
  display: block;
  font-style: normal;
}

.contact-info-item strong {
  color: var(--white);
  font-size: 14px;
}

.contact-info-item em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-pro-form {
  min-height: auto;
  border-top: 6px solid var(--yellow);
  align-content: start;
}

.contact-pro-form .captcha-field {
  min-height: 78px;
}

.contact-pro-form button[type="submit"] {
  align-self: end;
  min-height: 78px;
}

.contact-simple .contact-map-form,
.contact-simple-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.contact-map-wide {
  position: relative;
  min-height: 520px;
}

.contact-map-wide iframe {
  min-height: 520px;
}

.map-address-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  max-width: 560px;
  padding: 22px 24px;
  background: rgba(0, 32, 81, 0.94);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 32, 81, 0.24);
}

.map-address-badge strong,
.map-address-badge span {
  display: block;
}

.map-address-badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  line-height: 1.05;
}

.map-address-badge span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.contact-simple-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.contact-simple-form {
  min-height: auto;
  align-content: start;
  border-top: 6px solid var(--yellow);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-simple-form .captcha-field {
  min-height: 68px;
  padding: 10px 14px;
}

.contact-simple-form .captcha-field input {
  min-height: 34px;
  padding: 4px 0;
}

.contact-simple-form button[type="submit"] {
  align-self: stretch;
  min-height: 68px;
}

.contact-address-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-address-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-address-item:last-child {
  border-bottom: 0;
}

.contact-address-item > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #111111;
}

.contact-address-item > span::before {
  content: "";
  width: 26px;
  height: 26px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.address-location > span::before {
  -webkit-mask-image: url("assets/icons/location.svg");
  mask-image: url("assets/icons/location.svg");
}

.address-whatsapp > span::before {
  -webkit-mask-image: url("assets/icons/whatsapp.svg");
  mask-image: url("assets/icons/whatsapp.svg");
}

.address-call > span::before {
  -webkit-mask-image: url("assets/icons/phone.svg");
  mask-image: url("assets/icons/phone.svg");
}

.contact-address-item strong {
  display: block;
  color: var(--black);
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  line-height: 1.12;
}

.contact-address-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.contact-detail-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 176px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--yellow);
  color: var(--black);
}

.contact-card-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.detail-call .contact-card-icon::before {
  -webkit-mask-image: url("assets/icons/phone.svg");
  mask-image: url("assets/icons/phone.svg");
}

.detail-whatsapp .contact-card-icon::before {
  -webkit-mask-image: url("assets/icons/whatsapp.svg");
  mask-image: url("assets/icons/whatsapp.svg");
}

.detail-email .contact-card-icon::before {
  -webkit-mask-image: url("assets/icons/email.svg");
  mask-image: url("assets/icons/email.svg");
}

.detail-location .contact-card-icon::before {
  -webkit-mask-image: url("assets/icons/location.svg");
  mask-image: url("assets/icons/location.svg");
}

.contact-detail-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.contact-detail-card a,
.contact-detail-card p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.contact-detail-card a:hover {
  color: var(--black);
}

.quote-page-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 6px solid var(--yellow);
}

.quote-page-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: stretch;
}

.quote-page-layout .quote-page-form {
  max-width: none;
  margin: 0;
}

.quote-assist-panel {
  min-height: 100%;
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(254, 123, 4, 0.16), transparent 42%),
    var(--black);
  color: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.quote-assist-panel h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 38px;
  line-height: 1.06;
}

.quote-assist-panel ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.quote-assist-panel li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.quote-assist-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 3px;
  background: var(--yellow);
}

.quote-assist-contact {
  margin-top: 32px;
  display: grid;
  gap: 10px;
}

.quote-assist-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid var(--dark-line);
  color: var(--white);
  font-weight: 900;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 32, 81, 0.82);
  backdrop-filter: blur(18px);
}

.quote-modal[hidden] {
  display: none;
}

body.quote-modal-open {
  overflow: hidden;
}

.quote-modal-shell {
  position: relative;
  width: min(100%, 1080px);
  max-height: calc(100vh - 56px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.quote-modal-copy {
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(254, 123, 4, 0.18), transparent 48%),
    var(--black);
  color: rgba(255, 255, 255, 0.74);
}

.quote-modal-logo {
  width: 92px;
  height: 72px;
  object-fit: contain;
  margin: 0 0 28px;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.72)) drop-shadow(0 14px 22px rgba(0, 0, 0, 0.26));
}

.quote-modal-copy h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 40px;
  line-height: 1.04;
}

.quote-modal-copy p:last-child {
  margin-bottom: 0;
}

.quote-modal-form {
  box-shadow: none;
  border: 0;
  border-top: 6px solid var(--yellow);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--yellow);
  color: var(--black);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.admin-layout {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 62px;
}

.admin-content-form {
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--yellow);
}

.admin-content-form::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, rgba(254, 123, 4, 0.18), rgba(0, 32, 81, 0));
  pointer-events: none;
}

.admin-profile-layout {
  max-width: var(--max);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.admin-profile-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-profile-note {
  padding: 34px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.admin-profile-note h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.06;
}

.admin-profile-note p:last-child {
  margin-bottom: 0;
}

.forgot-card {
  margin-top: 20px;
}

.admin-preview {
  max-width: var(--max);
  margin: 0 auto;
}

.admin-manage-board {
  display: grid;
  gap: 28px;
}

.admin-bulk-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px;
  border: 1px solid rgba(0, 32, 81, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(0, 32, 81, 0.06);
}

.admin-bulk-bar .form-status {
  margin: 0;
  min-height: auto;
  flex: 1 1 220px;
}

.admin-check-all,
.admin-row-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.admin-check-all input,
.admin-row-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.admin-manage-list {
  display: grid;
  gap: 14px;
}

.admin-manage-item {
  position: relative;
  display: grid;
  grid-template-columns: 32px 132px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 32, 81, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.admin-manage-item:hover {
  transform: translateY(-2px);
  border-color: rgba(254, 123, 4, 0.42);
  box-shadow: 0 18px 42px rgba(0, 32, 81, 0.14);
}

.admin-manage-item img {
  width: 132px;
  height: 88px;
  object-fit: cover;
  background: var(--paper);
  border: 1px solid rgba(0, 32, 81, 0.08);
}

.admin-manage-item span,
.admin-manage-item em {
  color: var(--yellow-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-manage-item h3 {
  margin: 4px 0 6px;
  font-size: 21px;
  line-height: 1.1;
}

.admin-manage-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.admin-manage-item small {
  display: block;
  margin-top: 8px;
  color: #7d8794;
  font-size: 12px;
  font-weight: 800;
}

.admin-lock-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0, 32, 81, 0.16);
  background: rgba(0, 32, 81, 0.04);
}

.admin-manage-item .admin-delete {
  position: static;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  margin: 0;
}

.admin-restore {
  justify-self: end;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 32, 81, 0.12);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 32, 81, 0.16);
}

.admin-bin-head {
  margin-top: 28px;
  margin-bottom: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 32, 81, 0.1);
}

.admin-bin-list {
  margin-bottom: 12px;
}

.admin-bin-item {
  background: #f7f8fa;
  border-style: dashed;
}

.admin-login-section {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.admin-login-card {
  width: min(100%, 520px);
  grid-template-columns: 1fr;
}

.admin-secure-head {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.empty-state {
  padding: 24px;
  border: 1px dashed #bebebe;
  background: var(--paper);
  color: var(--muted);
  font-weight: 700;
}

.admin-delete {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 4;
  min-height: 38px;
  padding: 9px 12px;
  border: 0;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 32, 81, 0.22);
}

.update-card {
  position: relative;
}

.admin-delete-post {
  position: static;
  margin-top: 18px;
  display: inline-flex;
}

.site-footer {
  padding: 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer:not(.footer-heavy) {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 38px 20px;
}

.site-footer:not(.footer-heavy) img {
  width: 72px;
  height: 60px;
  object-fit: contain;
  float: left;
  margin: 0 15px 10px 0;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.7)) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

.site-footer:not(.footer-heavy) strong {
  display: block;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.site-footer:not(.footer-heavy) p {
  margin: 4px 0 0;
}

.site-footer:not(.footer-heavy) a:hover {
  color: var(--yellow);
}

.site-footer.footer-heavy {
  display: block;
  border-top: 6px solid var(--yellow);
}

.footer-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 20px 46px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.7fr);
  gap: 54px;
  align-items: start;
}

.footer-brand-block img {
  width: 110px;
  height: 94px;
  object-fit: contain;
  margin: 0 0 22px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.72)) drop-shadow(0 16px 26px rgba(0, 0, 0, 0.34));
}

.footer-brand-block strong {
  display: block;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.03;
}

.footer-brand-block p {
  max-width: 380px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.footer-quote,
.footer-phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--dark-line);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.footer-quote {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.footer-quote:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.footer-phone-pill:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

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

.footer-menu {
  display: grid;
  align-items: start;
  gap: 10px;
}

.footer-menu h3 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 13px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.footer-menu h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: var(--yellow);
}

.footer-menu a,
.footer-menu p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-menu a {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.footer-menu a:hover {
  color: var(--yellow);
  border-color: rgba(254, 123, 4, 0.5);
}

.footer-contact-block p {
  margin-top: 4px;
  line-height: 1.55;
}

.footer-address {
  position: relative;
  padding-left: 28px;
}

.footer-address::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--yellow);
  -webkit-mask: url("assets/icons/location.svg") center / contain no-repeat;
  mask: url("assets/icons/location.svg") center / contain no-repeat;
}

.footer-network {
  background: #071845;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.footer-network-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.footer-network strong {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-network p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.back-top {
  position: fixed;
  right: 18px;
  bottom: 148px;
  z-index: 35;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 32, 81, 0.18);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.smart-action-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 38;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 24px), 430px);
  transform: translateX(-50%);
  padding: 8px;
  background: rgba(0, 32, 81, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 58px rgba(0, 32, 81, 0.32);
  backdrop-filter: blur(16px);
}

.smart-action {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 58px;
  padding: 8px 6px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.smart-action span {
  width: 21px;
  height: 21px;
  background: var(--yellow);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.smart-action-quote span {
  width: 24px;
  height: 17px;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 58% 68%, 50% 100%, 42% 68%, 0 68%);
}

.smart-action-call span {
  -webkit-mask-image: url("assets/icons/phone.svg");
  mask-image: url("assets/icons/phone.svg");
}

.smart-action-whatsapp span {
  -webkit-mask-image: url("assets/icons/whatsapp.svg");
  mask-image: url("assets/icons/whatsapp.svg");
}

.whatsapp-float,
.call-float {
  position: fixed;
  right: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float {
  bottom: 18px;
  background: #25d366;
}

.call-float {
  bottom: 84px;
}

.whatsapp-float::before,
.call-float::before {
  width: 25px;
  height: 25px;
  background-color: var(--white);
}

.whatsapp-float:hover,
.call-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(17, 17, 17, 0.3);
}

@media (max-width: 1080px) {
  .hero-inner,
  .content-grid,
  .contact-layout,
  .quote-page-layout,
  .contact-lower-grid,
  .contact-studio,
  .admin-profile-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .feature-grid,
  .process-grid,
  .value-grid,
  .about-ledger,
  .office-grid,
  .service-mosaic,
  .fleet-grid,
  .gallery-strip,
  .gallery-wall,
  .updates-grid,
  .contact-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip,
  .gallery-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .faq-strip {
    grid-template-columns: 1fr;
  }

  .quote-modal-shell {
    grid-template-columns: 1fr;
  }

  .lightbox-layout {
    grid-template-columns: 1fr;
    height: 100%;
    overflow: auto;
  }

  .lightbox-main {
    min-height: 58vh;
  }

  .lightbox-panel {
    grid-template-rows: auto auto auto auto auto auto;
  }

  .lightbox-thumbs {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .lightbox-thumb {
    flex: 0 0 86px;
    width: 86px;
    height: 62px;
    aspect-ratio: auto;
  }
}

@media (max-width: 840px) {
  .top-strip {
    display: none;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 78px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    position: relative;
    right: auto;
    top: auto;
    z-index: 50;
    width: 48px;
    height: 48px;
  }

  .nav-menu {
    position: fixed;
    inset: 78px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    background:
      linear-gradient(135deg, rgba(254, 123, 4, 0.14), transparent 44%),
      var(--black);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 32, 81, 0.32);
    color: var(--white);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a.active,
  .nav-menu a:hover {
    background: var(--yellow);
    color: var(--black);
  }

  .mobile-menu-contact {
    display: grid;
    grid-template-columns: repeat(3, 52px);
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
    padding: 16px 0 2px;
    background: transparent;
    color: var(--white);
  }

  .mobile-menu-action {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-menu-action:hover {
    border-color: var(--yellow);
    background: var(--yellow);
  }

  .mobile-menu-action span {
    width: 22px;
    height: 22px;
    background: var(--white);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .mobile-menu-call span {
    -webkit-mask-image: url("assets/icons/phone.svg");
    mask-image: url("assets/icons/phone.svg");
  }

  .mobile-menu-email span {
    -webkit-mask-image: url("assets/icons/email.svg");
    mask-image: url("assets/icons/email.svg");
  }

  .mobile-menu-whatsapp span {
    -webkit-mask-image: url("assets/icons/whatsapp.svg");
    mask-image: url("assets/icons/whatsapp.svg");
  }

  .nav-quote {
    display: none;
  }

  .contact-simple-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 70px;
  }

  .hero h1,
  .page-hero-inner h1 {
    font-size: 48px;
  }

  .quote-panel,
  .form-card,
  .quote-page-form,
  .admin-profile-card,
  .admin-layout,
  .contact-map-form,
  .quote-modal-form {
    grid-template-columns: 1fr;
  }

  .contact-pro-form .captcha-field,
  .contact-pro-form button[type="submit"] {
    min-height: 64px;
  }

  .contact-simple-form .captcha-field,
  .contact-simple-form button[type="submit"] {
    min-height: 62px;
  }

  .contact-map-panel,
  .contact-map-panel iframe,
  .contact-form-card {
    min-height: 460px;
  }

  .metrics-band {
    margin-top: 0;
  }

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

@media (max-width: 560px) {
  .hero-inner,
  .page-hero-inner,
  .section,
  .metrics-band,
  .nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-name small {
    display: none;
  }

  .brand-mark {
    width: 70px;
    height: 54px;
  }

  .brand-name {
    font-size: 20px;
  }

  .hero h1,
  .page-hero-inner h1 {
    font-size: 38px;
  }

  .hero-line,
  .page-hero-inner p {
    font-size: 16px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-head h2,
  .content-grid h2 {
    font-size: 34px;
  }

  .about-hero .page-hero-inner h1 {
    font-size: 34px;
  }

  .split {
    display: grid;
    align-items: start;
  }

  .quote-assist-panel,
  .quote-modal-copy {
    padding: 28px;
  }

  .quote-assist-panel h2,
  .quote-modal-copy h2 {
    font-size: 30px;
  }

  .quote-modal {
    padding: 0;
  }

  .quote-modal-shell {
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
  }

  .contact-lower-grid {
    gap: 20px;
  }

  .map-address-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 18px;
  }

  .contact-address-panel,
  .admin-profile-note {
    padding: 24px;
  }

  .feature-grid,
  .process-grid,
  .value-grid,
  .about-ledger,
  .office-grid,
  .service-mosaic,
  .fleet-grid,
  .gallery-strip,
  .gallery-wall,
  .updates-grid,
  .metrics-band,
  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .smart-dispatch-grid,
  .faq-strip {
    grid-template-columns: 1fr;
  }

  .metrics-band div,
  .feature-card,
  .process-grid article,
  .value-grid article,
  .service-mosaic article,
  .fleet-card,
  .update-card,
  .contact-detail-card,
  .quote-panel,
  .form-card,
  .quote-page-form,
  .contact-details {
    padding: 26px;
  }

  .contact-detail-card {
    min-height: auto;
  }

  .contact-map-panel,
  .contact-map-panel iframe,
  .contact-form-card {
    min-height: 380px;
  }

  .gallery-strip figure,
  .gallery-wall figure {
    min-height: 285px;
  }

  .update-card > img {
    width: calc(100% + 52px);
    margin: -26px -26px 22px;
  }

  .gallery-lightbox {
    padding: 0;
  }

  .lightbox-layout {
    width: 100%;
    height: 100%;
    gap: 0;
    overflow: auto;
  }

  .lightbox-main {
    min-height: 58vh;
    border: 0;
  }

  .lightbox-main img {
    max-height: none;
  }

  .lightbox-thumbs {
    width: 100%;
    padding: 0 0 8px;
    grid-template-columns: none;
  }

  .lightbox-thumb {
    flex-basis: 76px;
    width: 76px;
    height: 56px;
  }

  .lightbox-panel {
    padding: 22px 18px 26px;
    gap: 12px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    top: 29vh;
    bottom: auto;
    width: 44px;
    height: 56px;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .lightbox-play {
    min-width: 138px;
  }

  .whatsapp-float,
  .call-float {
    display: none;
  }

  .smart-action-dock {
    display: grid;
  }

  .back-top {
    right: 16px;
    bottom: 100px;
  }

  .footer-main {
    padding: 46px 16px 34px;
  }

  .admin-manage-item {
    grid-template-columns: 28px 78px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .admin-manage-item img {
    width: 78px;
    height: 72px;
  }

  .admin-manage-item .admin-delete,
  .admin-restore,
  .admin-manage-item em {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .admin-bulk-bar {
    display: grid;
    align-items: start;
  }

  .footer-brand-block strong {
    font-size: 28px;
  }

  .footer-menu-grid,
  .footer-network-inner {
    grid-template-columns: 1fr;
  }

  .footer-network-inner {
    gap: 8px;
  }

  .footer-contact-actions,
  .footer-bottom {
    display: grid;
    align-items: start;
  }

  .footer-network-inner,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .head-office {
    grid-column: auto;
  }
}
