:root {
  --ink: #0a0a08;
  --carbon: #12120f;
  --charcoal: #1d1b17;
  --gold: #d8ab45;
  --gold-soft: #f4d77d;
  --blue: #176fc7;
  --blue-deep: #0d3c71;
  --leaf: #2c8a5e;
  --paper: #f8f6ef;
  --white: #ffffff;
  --line: rgba(10, 10, 8, 0.12);
  --light-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 80px rgba(10, 10, 8, 0.22);
  --radius: 8px;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

::selection {
  background: rgba(216, 171, 69, 0.34);
}

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

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

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

.scroll-progress {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--leaf));
  transform: scaleX(0);
  transform-origin: left center;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(216, 171, 69, 0.12), transparent 28%),
    var(--ink);
  color: var(--gold-soft);
  transition: opacity 600ms ease, visibility 600ms ease;
}

.preloader img {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(244, 215, 125, 0.3);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 80px rgba(216, 171, 69, 0.2);
  animation: preloader-pulse 1.4s ease-in-out infinite alternate;
}

.preloader span {
  position: absolute;
  margin-top: 172px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(1160px, calc(100% - 32px));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 10, 8, 0.62);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(216, 171, 69, 0.28);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.brand,
.nav-cta {
  min-height: 62px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 0 16px 0 12px;
}

.brand-logo-wrap {
  display: block;
  width: 58px;
  height: 46px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 125, 0.64);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow:
    0 0 0 1px rgba(10, 10, 8, 0.55),
    0 10px 24px rgba(216, 171, 69, 0.18);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-display);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 0.88rem;
  font-weight: 800;
  opacity: 0.86;
  transition: background 180ms ease, opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: rgba(216, 171, 69, 0.16);
  opacity: 1;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.lang-toggle {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0 13px;
}

.site-header.is-scrolled .lang-toggle {
  border-color: rgba(10, 10, 8, 0.12);
  background: rgba(216, 171, 69, 0.12);
}

.nav-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 18px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 900;
}

.site-header.is-scrolled .nav-cta {
  border-left-color: rgba(10, 10, 8, 0.1);
  color: var(--blue-deep);
}

.nav-cta svg,
.button svg,
.strip-item svg,
.service-card svg,
.text-link svg,
.testimonial svg,
.contact-list svg,
.branch-card svg,
.floating-whatsapp svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  overflow: hidden;
  isolation: isolate;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1160px) / 2)) 48px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 10, 8, 0.92), rgba(10, 10, 8, 0.54) 46%, rgba(10, 10, 8, 0.08)),
    linear-gradient(180deg, rgba(10, 10, 8, 0.08), rgba(10, 10, 8, 0.88));
}

.hero-text {
  width: min(760px, 100%);
  padding-bottom: 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1 {
  font-family: var(--font-display);
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3.7rem, 10vw, 8.7rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}

.hero-actions,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-family: var(--font-display);
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(216, 171, 69, 0.28);
}

.button.primary:hover {
  box-shadow: 0 24px 48px rgba(216, 171, 69, 0.38);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-metrics {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 36px;
  display: grid;
  width: min(560px, calc(100% - 48px));
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 10, 8, 0.42);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-metrics div,
.fleet-card,
.project-stats div {
  padding: 20px;
}

.hero-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics strong,
.fleet-card strong {
  display: block;
  color: var(--gold-soft);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.hero-metrics span,
.fleet-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.waterline {
  position: absolute;
  right: -7%;
  bottom: 23%;
  z-index: -1;
  width: min(560px, 64vw);
  height: 160px;
  pointer-events: none;
  opacity: 0.7;
}

.waterline span {
  position: absolute;
  inset: auto 0 0;
  height: 68px;
  border: 1px solid rgba(244, 215, 125, 0.24);
  border-radius: 50%;
  transform: rotate(-7deg);
  animation: ripple 5s ease-in-out infinite;
}

.waterline span + span {
  bottom: 36px;
  animation-delay: 1.4s;
}

.hero-command {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 210px;
  width: min(360px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 10, 8, 0.48);
  color: var(--white);
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.command-head,
.command-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.command-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.command-head span,
.command-row span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.command-head strong,
.command-row strong {
  color: var(--gold-soft);
  font-family: var(--font-display);
}

.command-row {
  justify-content: flex-start;
  border-radius: var(--radius);
  padding: 11px 8px;
}

.command-row + .command-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.command-row svg {
  width: 22px;
  height: 22px;
  color: var(--gold-soft);
}

.command-row div {
  display: grid;
  gap: 2px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.strip-item {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 950;
}

.strip-item svg {
  color: var(--blue);
}

.proof-section {
  background:
    linear-gradient(180deg, rgba(216, 171, 69, 0.08), transparent 36%),
    var(--white);
}

.proof-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.proof-heading h2 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.proof-heading p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(10, 10, 8, 0.68);
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  scrollbar-width: none;
}

.proof-rail::-webkit-scrollbar {
  display: none;
}

.proof-card {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  padding: 0;
  text-align: left;
  isolation: isolate;
  box-shadow: 0 18px 42px rgba(10, 10, 8, 0.12);
}

.proof-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 18%, rgba(10, 10, 8, 0.86)),
    linear-gradient(90deg, rgba(10, 10, 8, 0.42), transparent 64%);
  content: "";
}

.proof-card img,
.proof-card video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-card--video {
  cursor: default;
}

.proof-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.proof-card-copy span {
  width: fit-content;
  margin-bottom: 10px;
  border: 1px solid rgba(244, 215, 125, 0.42);
  border-radius: 999px;
  background: rgba(10, 10, 8, 0.34);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  padding: 8px 10px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.proof-card-copy h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.06;
}

.proof-card-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.section {
  padding: 100px max(24px, calc((100vw - 1160px) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.fleet-copy h2,
.contact-copy h2 {
  font-family: var(--font-display);
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.fleet-copy p,
.contact-copy p {
  max-width: 660px;
  color: rgba(10, 10, 8, 0.68);
  font-size: 1.04rem;
}

.command-section {
  background:
    linear-gradient(135deg, rgba(216, 171, 69, 0.11), rgba(23, 111, 199, 0.08) 48%, transparent),
    var(--carbon);
  color: var(--white);
}

.command-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.platform-card {
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.platform-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  color: var(--gold-soft);
}

.platform-card h3 {
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.platform-card p {
  color: rgba(255, 255, 255, 0.68);
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(10, 10, 8, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  position: absolute;
  inset: auto -30% -42% -30%;
  height: 130px;
  background: linear-gradient(90deg, rgba(216, 171, 69, 0.18), rgba(23, 111, 199, 0.16));
  content: "";
  transform: rotate(-6deg);
}

.service-card:hover {
  border-color: rgba(216, 171, 69, 0.46);
  box-shadow: 0 28px 58px rgba(10, 10, 8, 0.12);
  transform: translateY(-8px);
}

.service-card-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  background: linear-gradient(135deg, #143b6f, #0d1731);
}

.service-card-media--light {
  background: #f5f7fb;
}

.service-card-media img {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: contain;
}

.service-card-body {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.service-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--blue);
}

.service-card h3,
.process-step h3,
.branch-card h3 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.service-card p,
.process-step p,
.branch-card p {
  color: rgba(10, 10, 8, 0.66);
}

.estimate-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(23, 111, 199, 0.09), transparent 44%),
    var(--carbon);
  color: var(--white);
}

.estimate-copy h2 {
  font-family: var(--font-display);
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5vw, 4.35rem);
  line-height: 0.98;
}

.estimate-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.68);
}

.estimate-result {
  display: grid;
  gap: 6px;
  width: min(420px, 100%);
  margin-top: 28px;
  border: 1px solid rgba(244, 215, 125, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.estimate-result span,
.estimate-result small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.estimate-result strong {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.estimate-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.estimate-form input,
.estimate-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.estimate-form input[type="range"] {
  padding: 0;
  accent-color: var(--gold);
}

.estimate-form .range-label,
.estimate-form .form-submit,
.estimate-form .quote-print-trigger {
  grid-column: 1 / -1;
}

.range-label small {
  color: rgba(255, 255, 255, 0.68);
  text-transform: none;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 42px;
  align-items: start;
  background: var(--white);
}

.booking-copy h2 {
  font-family: var(--font-display);
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5vw, 4.35rem);
  line-height: 0.98;
}

.booking-copy p:not(.eyebrow) {
  color: rgba(10, 10, 8, 0.68);
}

.booking-poster {
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(23, 111, 199, 0.08), rgba(216, 171, 69, 0.12));
  box-shadow: 0 18px 46px rgba(10, 10, 8, 0.08);
}

.booking-poster img {
  width: 100%;
  display: block;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 171, 69, 0.08), transparent 45%),
    var(--paper);
  padding: 24px;
  box-shadow: 0 18px 46px rgba(10, 10, 8, 0.08);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: rgba(10, 10, 8, 0.76);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 10, 8, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.booking-wide,
.booking-form .form-submit {
  grid-column: 1 / -1;
}

.advantage-section {
  background:
    linear-gradient(135deg, rgba(216, 171, 69, 0.1), rgba(23, 111, 199, 0.08) 46%, transparent 72%),
    var(--paper);
}

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

.advantage-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  padding: 26px;
  box-shadow: 0 18px 46px rgba(10, 10, 8, 0.07);
}

.advantage-card::before {
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--gold);
  content: "";
}

.advantage-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 800;
}

.advantage-card h3 {
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.advantage-card p {
  color: rgba(10, 10, 8, 0.66);
}

.fleet-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(216, 171, 69, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(23, 111, 199, 0.08), transparent 52%),
    var(--white);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--blue-deep);
  font-weight: 950;
}

.fleet-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fleet-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.fleet-media:hover img {
  transform: scale(1.04);
}

.fleet-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(10, 10, 8, 0.62);
  color: var(--white);
  backdrop-filter: blur(18px);
}

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

.process-section .section-heading p:not(.eyebrow),
.process-step p {
  color: rgba(255, 255, 255, 0.68);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-line {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--leaf));
  opacity: 0.78;
}

.process-step {
  position: relative;
  padding-top: 86px;
}

.process-step span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(216, 171, 69, 0.34);
  border-radius: 50%;
  background: #211f19;
  color: var(--gold-soft);
  font-weight: 950;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.03);
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--paper), #f0eee5);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 360px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-video-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: center;
  margin-top: 28px;
}

.gallery-card {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  padding: 24px;
  text-align: left;
  box-shadow: 0 18px 42px rgba(10, 10, 8, 0.12);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 20%, rgba(10, 10, 8, 0.82)),
    linear-gradient(90deg, rgba(10, 10, 8, 0.56), transparent 62%);
  content: "";
}

.gallery-card:hover {
  box-shadow: 0 28px 62px rgba(10, 10, 8, 0.2);
  transform: translateY(-6px);
}

.gallery-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.05);
}

.gallery-feature {
  grid-column: span 2;
}

.gallery-card span {
  width: fit-content;
  border: 1px solid rgba(244, 215, 125, 0.42);
  border-radius: 999px;
  background: rgba(10, 10, 8, 0.38);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  padding: 8px 10px;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.gallery-card h3 {
  max-width: 430px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  line-height: 1.05;
}

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

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

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(10, 10, 8, 0.07);
}

.story-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.story-card div {
  padding: 22px;
}

.story-card span,
.video-card span {
  display: inline-flex;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.story-card h3 {
  font-family: var(--font-display);
  margin-bottom: 10px;
}

.story-card p {
  color: rgba(10, 10, 8, 0.66);
}

.video-section,
.gallery-video-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: center;
}

.video-section {
  background:
    linear-gradient(135deg, rgba(216, 171, 69, 0.12), rgba(23, 111, 199, 0.08) 52%, transparent),
    var(--paper);
}

.video-copy h2 {
  font-family: var(--font-display);
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 0.98;
}

.video-copy p:not(.eyebrow) {
  color: rgba(10, 10, 8, 0.68);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.video-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: default;
  padding: 0;
  text-align: left;
  box-shadow: 0 16px 38px rgba(10, 10, 8, 0.08);
}

.video-card::after {
  content: none;
}

.video-card video,
.video-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--carbon);
  object-fit: cover;
}

.video-card-copy {
  padding: 18px;
}

.video-card-copy h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.video-card-copy p {
  margin-bottom: 0;
  color: rgba(10, 10, 8, 0.66);
}

.video-card span {
  color: var(--blue-deep);
  margin: 0;
}

.areas-section {
  background:
    linear-gradient(180deg, #f0eee5, var(--white));
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-grid a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 800;
  padding: 0 18px;
  box-shadow: 0 12px 28px rgba(10, 10, 8, 0.06);
  transition: transform 180ms ease, border-color 180ms ease;
}

.area-grid a:hover {
  border-color: rgba(216, 171, 69, 0.58);
  transform: translateY(-2px);
}

.trust-docs-section {
  background: var(--carbon);
  color: var(--white);
}

.trust-docs-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

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

.doc-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 26px;
}

.doc-card--poster {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.doc-card--poster img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
}

.doc-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--gold-soft);
}

.doc-card h3,
.faq-item summary {
  font-family: var(--font-display);
}

.doc-card p {
  color: rgba(255, 255, 255, 0.68);
}

.faq-section {
  background:
    linear-gradient(135deg, rgba(216, 171, 69, 0.1), transparent 42%),
    var(--paper);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(10, 10, 8, 0.06);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  border-top: 1px solid var(--line);
  color: rgba(10, 10, 8, 0.66);
  margin: 0;
  padding: 18px 22px 22px;
}

.testimonial-section {
  display: grid;
  grid-template-columns: 0.9fr repeat(2, 1fr);
  gap: 18px;
  background: var(--white);
}

.reviews-summary {
  padding-right: 24px;
}

.reviews-summary h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.reviews-summary p {
  color: rgba(10, 10, 8, 0.66);
}

.dark-ghost {
  border-color: rgba(10, 10, 8, 0.14);
  background: var(--ink);
  color: var(--white);
}

.testimonial {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 32px;
}

.testimonial svg {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--gold);
}

.testimonial p {
  font-size: 1.15rem;
}

.testimonial span {
  color: rgba(10, 10, 8, 0.62);
  font-weight: 950;
}

.branches-section {
  background:
    linear-gradient(135deg, rgba(216, 171, 69, 0.12), transparent 48%),
    var(--paper);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.branch-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 16px 38px rgba(10, 10, 8, 0.07);
}

.branch-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--blue);
}

.branch-map {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: var(--radius);
  margin: 10px 0 16px;
  filter: saturate(0.95) contrast(0.98);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(23, 111, 199, 0.16), transparent 48%),
    var(--carbon);
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.contact-list {
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
}

.contact-list a:hover {
  border-color: rgba(244, 215, 125, 0.5);
  color: var(--gold-soft);
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 171, 69, 0.24);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-soft);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #18a85d;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.mobile-action-bar {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 19;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 10, 8, 0.92);
  color: var(--white);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.mobile-action-bar a {
  display: grid;
  min-height: 58px;
  place-items: center;
  gap: 3px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.64rem;
  font-weight: 900;
  padding: 6px 2px;
}

.mobile-action-bar a:last-child {
  border-right: 0;
}

.mobile-action-bar svg {
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
}

.lead-dashboard {
  width: min(940px, calc(100% - 28px));
  max-height: 82svh;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 10, 8, 0.94);
  color: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.lead-dashboard::backdrop {
  background: rgba(10, 10, 8, 0.74);
  backdrop-filter: blur(8px);
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-head h2 {
  font-family: var(--font-display);
  margin: 0 0 20px;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.lead-list {
  display: grid;
  gap: 10px;
}

.lead-item,
.empty-leads {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
}

.lead-item {
  display: grid;
  gap: 4px;
}

.lead-item strong {
  color: var(--gold-soft);
  font-family: var(--font-display);
}

.lead-item span,
.lead-item small,
.empty-leads {
  color: rgba(255, 255, 255, 0.68);
}

.lightbox {
  width: min(1100px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 10, 8, 0.92);
  color: var(--white);
  padding: 12px;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(10, 10, 8, 0.74);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 76svh;
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
}

.lightbox p {
  margin: 12px 48px 4px 4px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(10, 10, 8, 0.72);
  color: var(--white);
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 24px max(24px, calc((100vw - 1160px) / 2));
  background: #070706;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.area-page {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--carbon);
  color: var(--white);
}

.area-page > img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
}

.area-page-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 56px max(24px, 8vw);
}

.area-page-content h1 {
  max-width: 760px;
  margin: 0;
}

.area-page-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.area-page-card {
  max-width: 620px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.area-page-card p {
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes ripple {
  0%,
  100% {
    opacity: 0.2;
    transform: rotate(-7deg) scaleX(0.86);
  }
  50% {
    opacity: 0.62;
    transform: rotate(-7deg) scaleX(1);
  }
}

@keyframes preloader-pulse {
  from {
    transform: scale(0.96);
  }
  to {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .hero-command {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(560px, 100%);
    margin-bottom: 180px;
  }

  .hero {
    min-height: 90svh;
    padding-top: 130px;
  }

  .hero-text {
    padding-bottom: 170px;
  }

  .hero-metrics,
  .platform-grid,
  .proof-rail,
  .service-grid,
  .advantage-grid,
  .estimate-section,
  .estimate-form,
  .booking-section,
  .booking-form,
  .fleet-section,
  .process-timeline,
  .story-grid,
  .gallery-video-panel,
  .video-section,
  .docs-grid,
  .testimonial-section,
  .branch-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    right: 24px;
    bottom: 28px;
  }

  .hero-metrics div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

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

  .fleet-media,
  .fleet-media img {
    min-height: 460px;
  }

  .timeline-line {
    top: 0;
    left: 42px;
    width: 1px;
    height: 100%;
  }

  .process-step {
    min-height: 132px;
    padding-top: 0;
    padding-left: 108px;
  }

  .process-step span {
    left: 0;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-summary {
    padding-right: 0;
  }

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

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

  .area-page {
    grid-template-columns: 1fr;
  }

  .area-page > img {
    min-height: 42svh;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    min-width: 0;
    gap: 9px;
    padding: 0 8px;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand-logo-wrap {
    width: 44px;
    height: 38px;
  }

  .brand strong {
    overflow: hidden;
    font-size: 0.8rem;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

  .lang-toggle {
    display: none;
  }

  .nav-cta {
    min-height: 44px;
    min-width: 44px;
    padding: 0 10px;
  }

  .nav-cta span {
    display: none;
  }

  .lang-toggle {
    min-height: 38px;
    padding: 0 10px;
  }

  .hero {
    min-height: 84svh;
    padding-inline: 16px;
    padding-top: 118px;
  }

  .hero-text {
    padding-bottom: 128px;
  }

  .hero-command {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.9rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-metrics div {
    padding: 12px 10px;
  }

  .hero-metrics div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-metrics strong {
    font-size: 1.32rem;
  }

  .hero-metrics span {
    margin-top: 6px;
    font-size: 0.62rem;
  }

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

  .strip-item {
    min-height: 70px;
    justify-content: flex-start;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .proof-section {
    padding-top: 46px;
  }

  .proof-heading,
  .section-heading {
    margin-bottom: 24px;
  }

  .proof-heading h2,
  .section-heading h2,
  .fleet-copy h2,
  .contact-copy h2,
  .video-copy h2,
  .booking-copy h2,
  .estimate-copy h2 {
    font-size: clamp(1.84rem, 9vw, 2.56rem);
    line-height: 1.02;
  }

  .proof-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .proof-card {
    min-width: 84vw;
    min-height: 320px;
    scroll-snap-align: start;
  }

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

  .video-card video,
  .video-card img {
    aspect-ratio: 4 / 5;
  }

  .estimate-form {
    padding: 18px;
  }

  .booking-form {
    padding: 18px;
  }

  .section {
    padding: 58px 16px;
  }

  .service-card {
    padding: 16px;
  }

  .service-card-media img {
    height: 236px;
  }

  .doc-card--poster img {
    min-height: 260px;
  }

  .fleet-media,
  .fleet-media img {
    min-height: 400px;
  }

  .gallery-feature,
  .gallery-wide,
  .gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-form {
    padding: 18px;
  }

  .command-section {
    display: none;
  }

  .site-footer {
    padding: 20px 16px 88px;
  }

  .area-page-content {
    padding: 36px 20px 88px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    display: grid;
  }
}
