:root {
  --bg: #060e1a;
  --bg-2: #0b1522;
  --bg-3: #130b18;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(11, 16, 28, 0.92);
  --border: rgba(255, 255, 255, 0.13);
  --text: #f6f1ef;
  --muted: rgba(246, 241, 239, 0.74);
  --accent: #ff657f;
  --accent-2: #ffb28d;
  --accent-3: #ffc96d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.32);
  --shadow-3d: 0 40px 100px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(255,101,127,0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1200px, calc(100vw - 2rem));
}

/* === PARTICLES CANVAS === */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 101, 127, 0.24), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(255, 201, 109, 0.14), transparent 28%),
    radial-gradient(circle at 50% 92%, rgba(101, 151, 255, 0.12), transparent 24%),
    linear-gradient(160deg, var(--bg), var(--bg-2) 46%, var(--bg-3));
  font-family: "Manrope", "Noto Sans Devanagari", sans-serif;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 82%);
  opacity: 0.14;
}

body::after {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 101, 127, 0.14), transparent 26%),
    radial-gradient(circle at 90% 80%, rgba(255, 201, 109, 0.08), transparent 22%);
  filter: blur(30px);
  opacity: 0.75;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

.page-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding: 1rem 0 2rem;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(10, 15, 25, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
}

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

.brand-badge {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 20%),
    linear-gradient(145deg, #ff8e8e, #b9113c 58%, #651124);
  box-shadow: 0 16px 26px rgba(185, 17, 60, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-name {
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  font-size: 1.02rem;
  line-height: 1.1;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(246, 241, 239, 0.8);
  font-size: 0.94rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: inline-flex;
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.lang-option {
  min-width: 3rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: rgba(246, 241, 239, 0.78);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-option:hover,
.lang-option:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.lang-option.is-active {
  color: #10111b;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  box-shadow: 0 10px 18px rgba(255, 185, 123, 0.28);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease;
  cursor: pointer;
}

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

.button-primary {
  color: #120b0e;
  background: linear-gradient(135deg, #ffd0bf 0%, #ff8798 30%, #ff5f79 100%);
  box-shadow: 0 18px 30px rgba(255, 95, 121, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 36px rgba(255, 95, 121, 0.35);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.button-link {
  padding-inline: 0.3rem;
  color: rgba(246, 241, 239, 0.88);
}

.button-small {
  padding: 0.78rem 1rem;
}

.button-block {
  width: 100%;
}

.section {
  scroll-margin-top: 6.5rem;
  padding: 4.8rem 0 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding: 3rem 2rem;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  transform-origin: center 75%;
  transform: scale(1.02);
  animation: heroBgDrift 20s ease-in-out infinite alternate;
  filter: brightness(0.65) saturate(1.1) contrast(1.1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 50%, transparent 0%, rgba(6,14,26,0.65) 60%),
    linear-gradient(90deg, rgba(6,14,26,0.95) 0%, rgba(6,14,26,0.6) 45%, transparent 100%),
    linear-gradient(0deg, rgba(6,14,26,0.85) 0%, transparent 25%);
}

@keyframes heroBgDrift {
  from { transform: scale(1.05) translateX(1%); }
  to   { transform: scale(1.15) translateX(-4%); }
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 1rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent-2);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  text-wrap: balance;
}

.lede,
.section-heading p,
.contact-card p,
.form-hint,
.route-item span,
.step-item p,
.card-copy,
.faq-answer,
.fleet-copy,
.promise-copy {
  color: var(--muted);
}

.lede {
  max-width: 62ch;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
}

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

.hero-contact-links,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-pill {
  gap: 0.7rem;
}

.contact-pill strong {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.contact-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
  fill: currentColor;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.hero-pills span,
.coverage-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(246, 241, 239, 0.88);
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  perspective: 1600px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.82;
  animation: drift 8s ease-in-out infinite;
}

.orb-large {
  width: 22rem;
  height: 22rem;
  top: 2%;
  left: 12%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.34), transparent 22%),
    radial-gradient(circle, rgba(255, 101, 127, 0.34), rgba(185, 17, 60, 0.08) 68%, transparent 70%);
}

.orb-small {
  width: 13rem;
  height: 13rem;
  right: 3%;
  bottom: 12%;
  animation-delay: -3s;
  background: radial-gradient(circle at 35% 35%, rgba(255, 201, 109, 0.45), rgba(255, 201, 109, 0.05) 70%);
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 540px;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, filter 0.25s ease;
  --rx: 8deg;
  --ry: -14deg;
  --tx: 0px;
  --ty: 0px;
  transform: translate3d(var(--tx), var(--ty), 0) rotateX(var(--rx)) rotateY(var(--ry));
}

.glass-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(12, 14, 24, 0.66);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.08));
  opacity: 0.8;
}

.driving-bg {
  animation: heroBgDrift 6s ease-in-out infinite alternate;
  filter: brightness(0.85) saturate(1.2);
}





.route-card {
  width: min(18rem, 62%);
  padding: 1rem 1.05rem 1.15rem;
  display: grid;
  gap: 0.22rem;
  transform-style: preserve-3d;
}

.route-card strong {
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  font-size: 1.2rem;
  line-height: 1.15;
}

.card-kicker {
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.route-card-top {
  top: 10%;
  right: -1%;
  transform: translate3d(0, 0, 85px) rotate(10deg);
}

.route-card-bottom {
  left: 0;
  bottom: 8%;
  transform: translate3d(0, 0, 110px) rotate(-8deg);
}

.section-heading {
  max-width: 60rem;
  margin-bottom: 1.7rem;
}

.section-heading.compact {
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 14ch;
}

.section-heading p {
  margin: 0.85rem 0 0;
  max-width: 65ch;
  font-size: 1.02rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.service-card,
.fleet-card,
.pricing-card,
.promise-card,
.route-item,
.step-item,
.faq-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(11, 16, 28, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.service-card,
.fleet-card,
.pricing-card,
.promise-card {
  padding: 1.2rem;
  min-height: 12.5rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(800px) translateZ(0);
  transition: transform 0.28s cubic-bezier(0.23,1,0.32,1), border-color 0.24s ease, box-shadow 0.28s ease;
  display: grid;
  align-content: start;
  gap: 0.15rem;
  will-change: transform;
}

.service-card:hover,
.fleet-card:hover,
.pricing-card:hover,
.promise-card:hover,
.route-item:hover,
.step-item:hover {
  transform: perspective(800px) translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.02);
  border-color: rgba(255, 180, 141, 0.3);
  box-shadow: var(--shadow-3d);
}

/* Service card image header */
.service-card-img {
  width: calc(100% + 2.4rem);
  height: 140px;
  object-fit: cover;
  margin: -1.2rem -1.2rem 1rem;
  border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0;
  filter: brightness(0.8) saturate(1.1);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.service-card:hover .service-card-img {
  filter: brightness(0.95) saturate(1.3);
  transform: scale(1.04);
}

/* Fleet card image */
.fleet-card-img {
  width: calc(100% + 2.4rem);
  height: 120px;
  object-fit: cover;
  margin: -1.2rem -1.2rem 1rem;
  border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0;
  filter: brightness(0.75) saturate(1.1);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.fleet-card:hover .fleet-card-img {
  filter: brightness(0.9) saturate(1.2);
  transform: scale(1.05);
}

.card-badge {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 138, 156, 0.95), rgba(255, 201, 109, 0.8));
  color: #201015;
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(255, 121, 138, 0.22);
}

.service-card h3,
.fleet-card h3,
.pricing-card h3,
.promise-card h3 {
  margin: 0.95rem 0 0.45rem;
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

.service-card p,
.fleet-card p,
.pricing-card p,
.promise-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-subtitle {
  margin: 0.2rem 0 0.95rem;
  color: rgba(246, 241, 239, 0.78);
  font-size: 0.95rem;
}

.pricing-rate {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.7rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-rate strong {
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  font-size: 1.01rem;
  text-align: right;
}

.pricing-rate-soft {
  background: rgba(255, 255, 255, 0.035);
}

.pricing-label {
  color: rgba(246, 241, 239, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
}

.pricing-notes {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(246, 241, 239, 0.8);
  box-shadow: var(--shadow-soft);
}

.fleet-meta {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  color: rgba(246, 241, 239, 0.86);
}

.split-section,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.split-panel,
.contact-panel {
  padding: 1.45rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(8, 12, 22, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
}

.split-panel-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    linear-gradient(160deg, rgba(23, 13, 25, 0.82), rgba(9, 13, 22, 0.88));
}

.route-list {
  display: grid;
  gap: 0.85rem;
}

.route-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  padding: 1rem 1.1rem;
  align-items: start;
}

.route-index,
.step-index {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 104, 129, 0.94), rgba(255, 201, 109, 0.82));
  color: #1c1012;
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  font-weight: 800;
}

.route-item strong,
.step-item h3 {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  font-size: 1.06rem;
}

.coverage-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.coverage-cloud span {
  padding: 0.6rem 0.88rem;
  font-size: 0.88rem;
}

.step-list {
  display: grid;
  gap: 0.85rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent-2);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  margin: 0;
  padding: 0 1.1rem 1rem;
}

.contact-grid {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 0.85rem;
}

.contact-card address {
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
}

.booking-form {
  display: grid;
  gap: 0.95rem;
}

.form-head p {
  margin: 0.35rem 0 0;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: rgba(246, 241, 239, 0.9);
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(246, 241, 239, 0.42);
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(255, 145, 161, 0.44);
  box-shadow: 0 0 0 4px rgba(255, 101, 127, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-hint {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", "Noto Sans Devanagari", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(246, 241, 239, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%) translateY(20px);
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(12, 16, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  color: var(--text);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 80;
}

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



.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 75;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.floating-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 15, 25, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  font-weight: 700;
  color: var(--text);
}

.floating-contact-item:first-child {
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(10, 15, 25, 0.9)),
    rgba(10, 15, 25, 0.88);
  border-color: rgba(37, 211, 102, 0.28);
}

.floating-contact-item:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(101, 151, 255, 0.2), rgba(10, 15, 25, 0.92)),
    rgba(10, 15, 25, 0.88);
  border-color: rgba(101, 151, 255, 0.24);
}

.floating-contact-item:last-child {
  background:
    linear-gradient(135deg, rgba(255, 101, 127, 0.2), rgba(10, 15, 25, 0.92)),
    rgba(10, 15, 25, 0.88);
  border-color: rgba(255, 101, 127, 0.24);
}

/* Reveal animation is only enabled when JavaScript is active. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes drift {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(0, -14px, 0) scale(1.04); }
}

/* === 3D DEPTH ENHANCEMENTS === */
.split-panel,
.contact-panel {
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.split-panel:hover,
.contact-panel:hover {
  transform: perspective(1200px) translateY(-4px) rotateX(1.5deg);
  box-shadow: var(--shadow-3d);
}

/* Floating animation for hero cards */
.route-card-top {
  animation: floatCardA 6s ease-in-out infinite;
}

.route-card-bottom {
  animation: floatCardB 7s ease-in-out infinite;
}

@keyframes floatCardA {
  0%, 100% { transform: translate3d(0, 0, 85px) rotate(10deg); }
  50%       { transform: translate3d(0, -10px, 85px) rotate(10deg); }
}

@keyframes floatCardB {
  0%, 100% { transform: translate3d(0, 0, 110px) rotate(-8deg); }
  50%       { transform: translate3d(0, -12px, 110px) rotate(-8deg); }
}

/* Glowing accent line on service cards */
.service-card::after,
.fleet-card::after,
.pricing-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::after,
.fleet-card:hover::after,
.pricing-card:hover::after {
  opacity: 1;
}

@media (max-width: 1080px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .header-actions {
    width: auto;
    justify-content: flex-end;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 3rem 1.5rem 2rem;
    grid-template-columns: 1fr;
  }
  
  .hero-bg-overlay {
    background:
      linear-gradient(0deg, rgba(6,14,26,0.95) 0%, rgba(6,14,26,0.85) 45%, rgba(6,14,26,0.7) 100%);
  }

  .hero-copy {
    padding-left: 0;
  }

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

  .hero-contact-links .button,
  .contact-actions .button {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-visual {
    display: none;
  }



  .floating-contact {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.85rem;
    flex-direction: row;
  }

  .floating-contact-item {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw, calc(100vw - 1rem));
    padding-top: 0.5rem;
  }

  .site-header {
    top: 0.5rem;
    padding: 0.75rem;
    border-radius: 20px;
  }

  .brand-tag {
    display: none;
  }

  .brand-badge {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.8rem;
  }

  .brand-name {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions .button {
    display: none;
  }

  .lang-option {
    min-width: 2.4rem;
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
  }

  .hero {
    gap: 1.2rem;
    padding: 2.5rem 1rem 1.5rem;
    margin-top: 0.5rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }



  .hero-stage {
    min-height: 420px;
    --rx: 6deg;
    --ry: -10deg;
  }





  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
