:root {
  --red: #d70006;
  --red-deep: #9f0004;
  --black: #080808;
  --ink: #181818;
  --muted: #6d6d6d;
  --soft: #f7f7f4;
  --line: rgba(8, 8, 8, 0.12);
  --shadow: 0 24px 70px rgba(8, 8, 8, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
}

main {
  overflow-x: hidden;
}

body.menu-open,
body.loading {
  overflow: hidden;
}

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

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

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

.container-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-bottom-color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  transform: skewX(-10deg);
}

.loader-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 4px;
  background: var(--red);
  animation: loaderRun 1.2s ease-in-out infinite alternate;
}

@keyframes loaderRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(130%);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: #fff;
}

.site-header.scrolled .main-nav {
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
}

.site-header.scrolled .brand-emblem {
  border-color: var(--red);
}

.top-strip {
  background: rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
}

.top-strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip p,
.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.top-actions a,
.top-strip p {
  color: rgba(255, 255, 255, 0.86);
}

.top-strip i {
  color: var(--red);
}

.main-nav {
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: var(--red);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  transform: skewX(-10deg);
  box-shadow: 8px 8px 0 rgba(215, 0, 6, 0.18);
}

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

.brand-lockup strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.brand-lockup small {
  margin-top: 2px;
  font-size: 0.74rem;
  color: currentColor;
  opacity: 0.72;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  background: var(--red);
  color: #fff;
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 0;
  background: var(--red);
  color: #fff;
  place-items: center;
  padding: 11px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: #fff;
  margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  position: relative;
  height: 85vh;
  min-height: 650px;
  max-height: 850px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.55), rgba(8, 8, 8, 0.08)),
    url("https://img.gaadicdn.com/images/carexteriorimages/930x620/Tata/Harrier-EV/9564/1759821423250/front-view-118.jpg") center / cover;
}

.hero-video,
.hero-scrim,
.hero-track-lines {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.7) contrast(1.1) grayscale(0.2);
}

.hero-section.video-failed {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.34)),
    url("https://img.gaadicdn.com/images/carexteriorimages/930x620/Tata/Harrier-EV/9564/1759821423250/front-view-118.jpg") center / cover;
}

.hero-section.video-failed .hero-video {
  display: none;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.68) 42%, rgba(8, 8, 8, 0.24) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.75) 0%, rgba(8, 8, 8, 0.05) 34%, rgba(8, 8, 8, 0.38) 100%);
}

.hero-track-lines {
  opacity: 0.34;
  background-image:
    linear-gradient(115deg, transparent 0 43%, rgba(215, 0, 6, 0.85) 43% 43.35%, transparent 43.35% 100%),
    linear-gradient(115deg, transparent 0 70%, rgba(255, 255, 255, 0.32) 70% 70.2%, transparent 70.2% 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 58px;
  padding-top: 112px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.service-copy h2,
.experience-copy h2,
.book-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: 0.95;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  margin-top: 15px;
  font-size: 6rem;
  max-width: 670px;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-primary,
.btn-ghost {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 10px 12px 0 rgba(215, 0, 6, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-3px);
}

.btn-primary:hover {
  box-shadow: 14px 16px 0 rgba(215, 0, 6, 0.2);
}

.hero-panel {
  align-self: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-head,
.pulse-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-head {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  text-transform: uppercase;
}

.panel-head i {
  color: var(--red);
}

.pulse-row {
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.pulse-row:last-child {
  border-bottom: 0;
}

.pulse-row strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.1rem;
  line-height: 1;
}

.pulse-row span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-bottom-bar {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 56px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-bottom-bar span {
  display: grid;
  place-items: center;
  min-width: 0;
  border-right: 1px solid var(--line);
}

.hero-bottom-bar span:first-child {
  background: var(--red);
  color: #fff;
}

.quick-lane {
  background: var(--black);
  color: #fff;
}

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

.quick-card {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s ease, transform 0.25s ease;
}

.quick-card:hover {
  background: var(--red);
  transform: translateY(-4px);
}

.quick-card i {
  font-size: 1.5rem;
  color: var(--red);
  transition: color 0.25s ease;
}

.quick-card:hover i {
  color: #fff;
}

.quick-card span {
  font-weight: 800;
  text-transform: uppercase;
}

.quick-card strong {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.section-shell {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.service-copy h2,
.experience-copy h2,
.book-copy h2,
.contact-panel h2 {
  margin-top: 12px;
  font-size: 4rem;
  text-transform: uppercase;
}

.section-heading p,
.service-copy p,
.experience-copy p,
.book-copy p,
.contact-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.vehicle-filter,
.book-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.filter-btn,
.book-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  color: var(--black);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover,
.book-tab.active,
.book-tab:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

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

.vehicle-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(8, 8, 8, 0.08);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.25s ease;
}

.vehicle-card.is-hidden {
  display: none;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.vehicle-image {
  position: relative;
  aspect-ratio: 1.22;
  background: linear-gradient(135deg, #fff, #ececea);
  overflow: hidden;
}

.vehicle-image::after {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 42%;
  background: linear-gradient(90deg, rgba(215, 0, 6, 0.12), rgba(8, 8, 8, 0.1));
  transform: skewY(-6deg);
  transform-origin: left bottom;
}

.vehicle-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.06);
}

.vehicle-image span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-image-red {
  background: linear-gradient(135deg, #fff4f4, #efefef);
}

.vehicle-image-dark {
  background: linear-gradient(135deg, #efefef, #d8d8d8);
}

.vehicle-body {
  display: grid;
  gap: 15px;
  padding: 22px;
}

.vehicle-type {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-body h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vehicle-body p:not(.vehicle-type) {
  margin: 0;
  min-height: 76px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.vehicle-specs span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.vehicle-specs i {
  color: var(--red);
}

.services-section {
  background:
    linear-gradient(90deg, #fff 0 50%, var(--black) 50% 100%);
  padding: 0;
}

.service-layout {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 58px;
}

.service-copy {
  padding: 110px 0;
}

.service-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 90px 0;
}

.service-step {
  position: relative;
  min-height: 246px;
  padding: 28px;
  background: #fff;
  color: var(--black);
  border-left: 5px solid var(--red);
  overflow: hidden;
}

.service-step::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 132px;
  height: 132px;
  border: 20px solid rgba(215, 0, 6, 0.08);
  transform: rotate(12deg);
}

.service-step span {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.service-step i {
  position: absolute;
  top: 34px;
  right: 28px;
  color: var(--red);
  font-size: 1.65rem;
}

.service-step h3 {
  margin: 18px 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.network-section {
  background: var(--soft);
}

.network-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: stretch;
}

.network-map {
  position: relative;
  min-height: 500px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.leaflet-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: inherit;
}

.network-map .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: inherit;
  font-family: "Inter", sans-serif;
  background: #f4f4f1;
}

.network-map .leaflet-tile-pane {
  filter: grayscale(0.78) saturate(0.48) contrast(1.06) brightness(1.04);
}

.network-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.12);
  box-shadow: 0 16px 35px rgba(8, 8, 8, 0.14);
}

.network-map .leaflet-control-zoom a {
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--black);
  font-weight: 900;
  line-height: 38px;
}

.network-map .leaflet-control-zoom a:hover {
  background: var(--red);
  color: #fff;
}

.network-map .leaflet-control-attribution {
  font-size: 0.62rem;
  color: rgba(8, 8, 8, 0.62);
}

.map-signature {
  position: absolute;
  z-index: 420;
  left: 24px;
  bottom: 18px;
  max-width: calc(100% - 48px);
  pointer-events: none;
  color: rgba(8, 8, 8, 0.11);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.kamu-div-marker {
  width: 28px !important;
  height: 28px !important;
  margin-left: -14px !important;
  margin-top: -14px !important;
  border: 0;
  background: transparent;
}

.kamu-pin {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--black);
  border: 4px solid #fff;
  box-shadow:
    0 0 0 10px rgba(215, 0, 6, 0.15),
    0 16px 28px rgba(8, 8, 8, 0.28);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.kamu-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(215, 0, 6, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: markerPulse 1.8s ease-out infinite;
}

.kamu-div-marker.is-active .kamu-pin,
.kamu-div-marker:hover .kamu-pin {
  background: var(--red);
  transform: scale(1.14);
  box-shadow:
    0 0 0 12px rgba(215, 0, 6, 0.2),
    0 20px 32px rgba(215, 0, 6, 0.28);
}

.kamu-map-tooltip {
  padding: 7px 11px;
  background: var(--black);
  border: 0;
  border-radius: 0;
  color: #fff;
  box-shadow: 8px 8px 0 rgba(215, 0, 6, 0.16);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kamu-map-tooltip.leaflet-tooltip-top::before {
  border-top-color: var(--black);
}

.kamu-map-tooltip.leaflet-tooltip-bottom::before {
  border-bottom-color: var(--black);
}

.kamu-map-tooltip.leaflet-tooltip-left::before {
  border-left-color: var(--black);
}

.kamu-map-tooltip.leaflet-tooltip-right::before {
  border-right-color: var(--black);
}

@keyframes markerPulse {
  from {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.65);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

.network-detail {
  padding: 34px;
  background: var(--black);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.network-label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.network-detail h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.network-detail p:not(.network-label) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.network-detail ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.network-detail li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.network-detail i {
  color: var(--red);
}

.location-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.location-chip {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.location-chip strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.location-chip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.experience-layout,
.book-layout,
.contact-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.experience-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

.experience-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.experience-metrics div {
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.experience-metrics strong {
  display: block;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.experience-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.gallery-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.gallery-stack figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.gallery-stack figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-stack figure:hover img {
  transform: scale(1.06);
}

.gallery-large {
  grid-row: span 2;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.book-section {
  padding: 110px 0;
  background: var(--black);
  color: #fff;
}

.book-layout {
  grid-template-columns: 0.72fr 1.28fr;
}

.book-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.book-tabs {
  justify-content: flex-start;
  margin: 28px 0 0;
}

.book-tab {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.lead-form {
  padding: 30px;
  background: #fff;
  color: var(--black);
  box-shadow: var(--shadow);
}

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

.lead-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.lead-form span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--black);
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(215, 0, 6, 0.1);
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.contact-section {
  background: #fff;
}

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

.contact-action {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-action:hover {
  transform: translateY(-6px);
  background: var(--red);
  color: #fff;
}

.contact-action i {
  color: var(--red);
  font-size: 2rem;
}

.contact-action:hover i {
  color: #fff;
}

.contact-action span {
  font-weight: 900;
  text-transform: uppercase;
}

.contact-action strong {
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.site-footer {
  background: var(--black);
  color: #fff;
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand .brand-emblem {
  border-color: #fff;
}

.site-footer p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.75;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a:not(.brand-lockup) {
  display: block;
  margin: 11px 0;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.social-row a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.footer-bottom a {
  display: inline !important;
  margin: 0 !important;
  color: #fff !important;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(215, 0, 6, 0.9);
  text-underline-offset: 4px;
}

.footer-bottom a:hover {
  color: var(--red) !important;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 35px rgba(215, 0, 6, 0.28);
}

.floating-actions a:first-child {
  background: var(--black);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 110;
  padding: 14px 18px;
  background: var(--black);
  color: #fff;
  border-left: 4px solid var(--red);
  transform: translate(-50%, 90px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
  box-shadow: var(--shadow);
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal-up {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-panel {
    max-width: 540px;
  }

  .vehicle-grid,
  .quick-lane-grid,
  .location-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-section {
    background: var(--black);
    color: #fff;
  }

  .service-layout,
  .experience-layout,
  .book-layout,
  .network-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-copy {
    padding-bottom: 0;
  }

  .service-copy p {
    color: rgba(255, 255, 255, 0.72);
  }
}

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

  .nav-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: grid;
    position: fixed;
    top: 12px;
    right: 14px;
    z-index: 130;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--black);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu a {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-cta {
    margin-top: 12px;
    justify-content: center;
    border-bottom: 0 !important;
  }

  .hero-section {
    min-height: 640px;
  }

  .hero-content {
    width: calc(100vw - 28px);
    margin-left: 14px;
    margin-right: 14px;
    padding-top: 90px;
  }

  .hero-copy h1 {
    font-size: 4.2rem;
  }

  .hero-lead {
    font-size: 0.98rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-panel {
    display: none;
  }

  .hero-bottom-bar {
    width: 100vw;
    right: auto;
    grid-template-columns: repeat(2, 1fr);
    min-height: 88px;
    overflow: hidden;
    font-size: 0.72rem;
  }

  .hero-bottom-bar span {
    padding: 0 8px;
    text-align: center;
  }

  .section-shell,
  .book-section {
    padding: 82px 0;
  }

  .section-heading h2,
  .service-copy h2,
  .experience-copy h2,
  .book-copy h2,
  .contact-panel h2 {
    font-size: 3rem;
  }

  .service-track,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-stack {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 230px);
  }

  .gallery-large {
    grid-row: auto;
    clip-path: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container-shell {
    width: min(1180px, calc(100% - 28px));
  }

  .brand-lockup strong {
    font-size: 1.25rem;
  }

  .brand-lockup small {
    font-size: 0.68rem;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
  }

  .hero-section {
    min-height: 620px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-copy,
  .hero-lead,
  .hero-actions {
    max-width: 330px;
  }

  .hero-actions,
  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .quick-lane-grid,
  .vehicle-grid,
  .location-strip,
  .experience-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .service-copy h2,
  .experience-copy h2,
  .book-copy h2,
  .contact-panel h2 {
    font-size: 2.45rem;
  }

  .vehicle-filter,
  .book-tabs {
    justify-content: flex-start;
  }

  .filter-btn,
  .book-tab {
    flex: 1 1 calc(50% - 10px);
  }

  .network-map {
    min-height: 390px;
  }

  .map-signature {
    font-size: 2.8rem;
  }

  .network-map .kamu-map-tooltip {
    display: none;
  }

  .network-detail h3 {
    font-size: 2.55rem;
  }

  .lead-form {
    padding: 20px;
  }

  .toast {
    width: calc(100% - 32px);
    text-align: center;
  }
}

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

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}
