:root {
  --bg: #0f172a;
  --bg-2: #0a1222;
  --text: #f8fafc;
  --muted: #c7d3e0;
  --accent: #ff6b00;
  --accent-2: #ff9a1a;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-strong: rgba(255, 255, 255, 0.16);
  --border: rgba(255, 255, 255, 0.2);
  --shadow: 0 20px 40px rgba(3, 7, 18, 0.45);
  --shadow-soft: 0 12px 25px rgba(3, 7, 18, 0.3);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: min(1180px, calc(100vw - 1.5rem));
  --t: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 107, 0, 0.26), transparent 25%),
    radial-gradient(circle at 85% 0%, rgba(45, 99, 255, 0.2), transparent 25%),
    linear-gradient(180deg, #0f172a 0%, #0a1326 48%, #0c182d 100%);
  line-height: 1.6;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 136, 0, 0.12), transparent 30%),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.05), transparent 30%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  width: min(1180px, calc(100vw - 1rem));
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.55));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.site-header.scrolled {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.75));
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #1f1308;
  background: linear-gradient(135deg, #ffd08a, #ff8e1b);
}

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

.brand-text strong {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.brand-text small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
}

.site-nav a.active,
.site-nav a:hover {
  color: #fff;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.site-nav a.active::after,
.site-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
}

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

.btn-primary {
  color: #2d1a08;
  background: linear-gradient(135deg, #ffc88a, #ff6b00 62%, #ff9a1a);
  box-shadow: 0 16px 32px rgba(255, 107, 0, 0.38);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-sm {
  min-height: 42px;
  padding: 0.65rem 1rem;
}

.btn-block {
  width: 100%;
}

.ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 600ms linear;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(16);
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  margin-top: 0.5rem;
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(9, 15, 28, 0.86), rgba(9, 15, 28, 0.4)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/File:Force%20Traveller,%20Leh-Manali%20Highway.jpg")
      center/cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 107, 0, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6.2rem 0;
}

.glass-card,
.hero-glass,
.trust-glass,
.service-card,
.fleet-card,
.point-card,
.testimonial-card,
.contact-form,
.contact-info,
.service-detail,
.cta-glass {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--glass-strong), var(--glass));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero-glass {
  max-width: 700px;
  padding: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: #ffd39e;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
strong {
  font-family: "Poppins", sans-serif;
}

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

h1 {
  font-size: clamp(2.3rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.typing-chip {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1.4rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.typing-chip strong {
  color: #ffd39e;
  min-width: 15ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.trust-bar {
  margin-top: -2rem;
  position: relative;
  z-index: 4;
}

.trust-glass {
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  text-align: center;
  border-radius: 999px;
}

.trust-glass span {
  font-weight: 700;
  color: #ffe2c1;
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.service-grid,
.fleet-grid,
.point-grid,
.footer-grid,
.feature-row {
  display: grid;
  gap: 1rem;
}

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

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 650ms ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card > div {
  padding: 1rem;
}

.carousel {
  position: relative;
}

.carousel-track {
  position: relative;
  min-height: 430px;
}

.carousel-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 450ms ease, transform 450ms ease, visibility 450ms;
}

.carousel-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.carousel-item img {
  width: 100%;
  height: 430px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.testimonials .carousel-track {
  min-height: 250px;
}

.image-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: linear-gradient(180deg, rgba(8, 13, 24, 0.08), rgba(8, 13, 24, 0.9));
}

.image-overlay h3 {
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.62);
  color: #fff;
  font-size: 1.9rem;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width var(--t), background var(--t);
}

.carousel-dots button.active {
  width: 26px;
  background: linear-gradient(90deg, #ffd2a8, var(--accent));
}

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

.fleet-card {
  overflow: hidden;
}

.fleet-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 550ms ease;
}

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

.fleet-card > div {
  padding: 1rem;
}

.split-grid,
.contact-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: center;
}

.text-soft {
  color: var(--muted);
}

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

.point-card {
  padding: 1.2rem;
}

.testimonial-card {
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card p {
  color: #f3f7ff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 0.9rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.cta-banner {
  background:
    linear-gradient(120deg, rgba(255, 107, 0, 0.18), rgba(18, 32, 68, 0.7)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/File:Himalayas%20of%20India.jpg") center/cover;
}

.cta-glass {
  padding: 2rem;
  text-align: center;
}

.contact-link {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.7rem;
  color: #ffd6ae;
  font-weight: 700;
}

.contact-form,
.contact-info {
  padding: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.85rem 0.95rem;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 153, 74, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2);
}

.inner-hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  align-items: end;
  margin-top: 0.5rem;
}

.inner-hero-bg,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
}

.about-bg {
  background: url("https://commons.wikimedia.org/wiki/Special:FilePath/File:Trekkers%20On%20Himalayas!!.jpg") center/cover;
}

.services-bg {
  background: url("https://commons.wikimedia.org/wiki/Special:FilePath/File:Valley%20of%20flowers%20Uttarakhand.jpg") center/cover;
}

.contact-bg {
  background: url("https://commons.wikimedia.org/wiki/Special:FilePath/File:Har%20ki%20Pauri,%20Haridwar%203.jpg") center/cover;
}

.inner-hero-overlay {
  background: linear-gradient(180deg, rgba(8, 13, 24, 0.45), rgba(8, 13, 24, 0.9));
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}

.inner-hero-content .glass-card {
  max-width: 740px;
  padding: 1.8rem;
}

.image-stack {
  display: grid;
  gap: 1rem;
}

.image-stack img {
  border-radius: var(--radius-xl);
  min-height: 220px;
  object-fit: cover;
}

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

.feature-row .glass-card {
  padding: 1.2rem;
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}

.service-detail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.map-wrap {
  padding: 0;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.98), rgba(6, 11, 20, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-grid h3 {
  margin-bottom: 1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  gap: 0.7rem;
}

.floating-actions a {
  min-width: 126px;
  border-radius: 999px;
  text-align: center;
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: #24150b;
  background: linear-gradient(135deg, #fff6dc, #ffb76d);
  box-shadow: var(--shadow-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 6, 14, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal="left"] {
  transform: translateX(26px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-grid,
  .footer-grid,
  .split-grid,
  .contact-preview,
  .feature-row,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail img {
    height: 280px;
  }
}

@media (max-width: 840px) {
  .site-header {
    width: calc(100vw - 0.7rem);
    top: 6px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0.6rem;
    right: 0.6rem;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 16, 31, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--t), transform var(--t), visibility var(--t);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .trust-glass {
    border-radius: var(--radius-lg);
    justify-content: flex-start;
  }

  .carousel-track {
    min-height: 350px;
  }

  .carousel-item img {
    height: 350px;
  }

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

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-sm {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4.2rem 0;
  }

  .service-grid,
  .fleet-grid,
  .point-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 5rem 0;
  }

  .hero-glass {
    padding: 1.2rem;
  }

  .floating-actions {
    right: 0.7rem;
    left: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-actions a {
    min-width: 0;
  }
}
