:root {
  --ink: #111419;
  --muted: #667085;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --charcoal: #050505;
  --navy: #111419;
  --green: #0f766e;
  --saffron: #d9ad42;
  --saffron-dark: #9f6f13;
  --gold-light: #f7d780;
  --shadow: 0 22px 55px rgba(17, 20, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 10px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.26);
  transition: min-height 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.site-header.scrolled {
  min-height: 78px;
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
}

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

.site-header .logo-brand {
  border-radius: 8px;
  background: transparent;
  padding: 6px 10px;
}

.logo-brand img {
  width: auto;
  height: 66px;
  max-width: min(250px, 52vw);
  object-fit: contain;
}

.site-footer .logo-brand {
  background: transparent;
  padding: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 10px 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(217, 173, 66, 0.18);
  color: var(--gold-light);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle svg,
.btn svg,
.service-card svg,
.feature-list svg,
.process-grid svg,
.contact-method svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(88px, 12vw, 148px) clamp(20px, 5vw, 72px);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08) translate3d(0, var(--hero-parallax, 0px), 0);
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.55) 52%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fff;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content p,
.hero-actions {
  animation: heroRise 760ms ease both;
}

.hero-content h1 {
  animation-delay: 90ms;
}

.hero-content p:not(.eyebrow) {
  animation-delay: 180ms;
}

.hero-actions {
  animation-delay: 280ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-strip .eyebrow,
.fleet-band .eyebrow {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 880px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--saffron) 58%, #b77f1a);
  color: #1d1604;
  box-shadow: 0 16px 30px rgba(217, 173, 66, 0.3);
}

.btn.primary:hover {
  box-shadow: 0 20px 42px rgba(217, 173, 66, 0.42);
}

.btn.secondary {
  border-color: rgba(247, 215, 128, 0.5);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #0c0c0c;
  border-bottom: 1px solid rgba(217, 173, 66, 0.22);
}

.stats-band div {
  padding: 28px clamp(18px, 3vw, 40px);
  background:
    linear-gradient(180deg, rgba(217, 173, 66, 0.08), transparent 56%),
    #0d0e11;
  transition: transform 180ms ease, background 180ms ease;
}

.stats-band div:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(217, 173, 66, 0.16), transparent 58%),
    #111214;
}

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

.stats-band strong {
  color: var(--gold-light);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.stats-band span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.section-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--saffron-dark);
  font-weight: 900;
}

.image-panel {
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(217, 173, 66, 0.28);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-panel:hover img {
  transform: scale(1.04);
}

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

.section-heading h2 {
  color: var(--ink);
}

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

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

.service-card,
.feature-list div,
.process-grid div,
.timeline-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(17, 20, 25, 0.06);
}

.service-card {
  min-height: 245px;
  border-top: 4px solid var(--saffron);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 173, 66, 0.62);
  box-shadow: 0 22px 48px rgba(17, 20, 25, 0.12);
}

.service-card svg,
.feature-list svg,
.process-grid svg {
  margin-bottom: 22px;
  color: var(--saffron-dark);
}

.service-card p,
.feature-list p,
.process-grid p,
.timeline-grid p {
  color: var(--muted);
  margin: 12px 0 0;
}

.fleet-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(7, 32, 30, 0.88), rgba(0, 0, 0, 0.7)),
    url("assets/fleet-road.jpg") center/cover;
  background-position: center, center calc(50% + var(--section-parallax, 0px));
  background-size: auto, cover;
  color: #fff;
}

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

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

.fleet-panel {
  min-height: 236px;
  border: 1px solid rgba(247, 215, 128, 0.32);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  padding: 28px;
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.fleet-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 215, 128, 0.58);
  background: rgba(0, 0, 0, 0.38);
}

.fleet-panel span,
.vehicle-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(247, 215, 128, 0.18);
  color: var(--saffron-dark);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 10px;
  text-transform: uppercase;
}

.fleet-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.fleet-panel span {
  color: var(--gold-light);
}

.feature-list,
.process-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 70px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(217, 173, 66, 0.16), transparent 42%),
    var(--charcoal);
  color: #fff;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.page-hero {
  min-height: 440px;
  display: grid;
  align-items: end;
  padding: clamp(82px, 10vw, 126px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42)),
    url("assets/india-taj-mahal.jpg") center/cover;
  background-position: center, center calc(50% + var(--section-parallax, 0px));
  background-size: auto, cover;
}

.page-hero.compact {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42)),
    url("assets/about-journey.jpg") center/cover;
  background-position: center, center calc(50% + var(--section-parallax, 0px));
  background-size: auto, cover;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42)),
    url("assets/services-car.jpg") center/cover;
  background-position: center, center calc(50% + var(--section-parallax, 0px));
  background-size: auto, cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42)),
    url("assets/contact-travel.jpg") center/cover;
  background-position: center, center calc(50% + var(--section-parallax, 0px));
  background-size: auto, cover;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.timeline-grid span {
  color: var(--saffron-dark);
  font-weight: 900;
}

.vehicle-section {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.vehicle-grid {
  display: grid;
  gap: 24px;
}

.vehicle-grid article {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.vehicle-grid img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.vehicle-grid article:hover img {
  transform: scale(1.04);
}

.vehicle-grid article > div {
  padding: clamp(24px, 4vw, 44px);
}

.vehicle-grid p,
.vehicle-grid li {
  color: var(--muted);
}

.vehicle-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, #fff, var(--soft));
}

.contact-details h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-details p {
  color: var(--muted);
}

.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(17, 20, 25, 0.05);
}

.contact-method svg {
  flex: 0 0 auto;
  color: var(--saffron-dark);
}

.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--saffron);
  border-radius: 8px;
  background: #fff;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.js-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 760ms ease, transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.service-card.js-reveal,
.feature-list div.js-reveal,
.process-grid div.js-reveal,
.timeline-grid div.js-reveal,
.fleet-panel.js-reveal {
  transform: translate3d(0, 28px, 0) scale(0.98);
}

.service-card.js-reveal.is-visible,
.feature-list div.js-reveal.is-visible,
.process-grid div.js-reveal.is-visible,
.timeline-grid div.js-reveal.is-visible,
.fleet-panel.js-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(217, 173, 66, 0.24);
  border-color: var(--saffron);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 28px;
  padding: 48px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(217, 173, 66, 0.11), transparent 36%),
    #050505;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.site-footer a:not(.brand),
.site-footer p {
  display: block;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand img {
  height: 78px;
  max-width: min(290px, 80vw);
}

@media (max-width: 1020px) {
  .stats-band,
  .service-grid,
  .service-grid.wide,
  .feature-list,
  .process-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .vehicle-grid article {
    grid-template-columns: 1fr;
  }

  .vehicle-grid img {
    max-height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
  }

  .logo-brand img {
    height: 52px;
    max-width: min(190px, 52vw);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #050505;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

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

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

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .stats-band,
  .service-grid,
  .service-grid.wide,
  .fleet-grid,
  .feature-list,
  .process-grid,
  .timeline-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-panel,
  .image-panel img {
    min-height: 290px;
  }
}

@media (max-width: 420px) {
  .brand small {
    font-size: 0.68rem;
  }

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

  .btn {
    padding-left: 12px;
    padding-right: 12px;
  }
}

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

  .hero-media img,
  .image-panel:hover img,
  .vehicle-grid article:hover img {
    transform: none;
  }

  .js-reveal,
  .js-reveal.is-visible,
  .service-card.js-reveal,
  .feature-list div.js-reveal,
  .process-grid div.js-reveal,
  .timeline-grid div.js-reveal,
  .fleet-panel.js-reveal {
    opacity: 1;
    transform: none;
  }
}

/* WhatsApp Floating Button */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1ebe5d;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}
