:root {
  --sand: #0b0f14;
  --deep: #e9edf3;
  --accent: #d4af37;
  --accent-2: #b8860b;
  --teal: #38b2ac;
  --ink: #0a0d12;
  --muted: #a0a6b2;
  --card: #121821;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.25), transparent 45%),
    radial-gradient(circle at 85% 5%, rgba(56, 178, 172, 0.2), transparent 40%),
    radial-gradient(circle at 20% 90%, rgba(184, 134, 11, 0.2), transparent 45%),
    linear-gradient(135deg, #0b0f14, #121926);
  color: var(--deep);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

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

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

html {
  scroll-behavior: smooth;
}

.hero {
  padding: 7rem 6vw 4rem;
  background: linear-gradient(120deg, #0f141c, #171f2b);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  opacity: 0.45;
  z-index: 0;
}

.hero::before {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 70%);
  top: -120px;
  right: 8%;
}

.hero::after {
  background: radial-gradient(circle, rgba(56, 178, 172, 0.28), transparent 70%);
  bottom: -160px;
  left: 2%;
}

.parallax-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 70%);
  top: 25%;
  right: 40%;
  z-index: 0;
  opacity: 0.5;
}

.guru-matrix {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
}

.guru-matrix span {
  position: absolute;
  top: -20%;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: rgba(212, 175, 55, 0.55);
  text-transform: uppercase;
  animation: guru-drop 6s linear infinite;
}

.guru-matrix span:nth-child(1) {
  left: 8%;
  animation-delay: 0s;
}
.guru-matrix span:nth-child(2) {
  left: 18%;
  animation-delay: 1s;
}
.guru-matrix span:nth-child(3) {
  left: 28%;
  animation-delay: 2.2s;
}
.guru-matrix span:nth-child(4) {
  left: 38%;
  animation-delay: 0.6s;
}
.guru-matrix span:nth-child(5) {
  left: 48%;
  animation-delay: 1.6s;
}
.guru-matrix span:nth-child(6) {
  left: 58%;
  animation-delay: 2.8s;
}
.guru-matrix span:nth-child(7) {
  left: 68%;
  animation-delay: 0.3s;
}
.guru-matrix span:nth-child(8) {
  left: 78%;
  animation-delay: 1.2s;
}
.guru-matrix span:nth-child(9) {
  left: 88%;
  animation-delay: 2.4s;
}
.guru-matrix span:nth-child(10) {
  left: 12%;
  animation-delay: 3.1s;
}
.guru-matrix span:nth-child(11) {
  left: 42%;
  animation-delay: 3.6s;
}
.guru-matrix span:nth-child(12) {
  left: 72%;
  animation-delay: 4.2s;
}

.hero::marker {
  content: "";
}

.hero::before,
.hero::after,
.parallax-orb {
  transform: translate3d(0, var(--parallax-shift, 0), 0);
  transition: transform 0.1s linear;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1rem 6vw 0;
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  animation: slide-down 0.7s ease both;
  position: relative;
  z-index: 1;
  background: rgba(15, 20, 28, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  border-radius: 18px;
  pointer-events: auto;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a222d, #0f141c);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(233, 237, 243, 0.2);
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  cursor: pointer;
  color: var(--deep);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--deep);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.primary-btn,
.ghost-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f14;
  box-shadow: 0 16px 30px rgba(212, 175, 55, 0.25);
}

.ghost-btn {
  border: 1px solid rgba(233, 237, 243, 0.16);
  color: var(--deep);
  background: rgba(18, 24, 33, 0.6);
  backdrop-filter: blur(6px);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(212, 175, 55, 0.2);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0.75rem 0 1.2rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}

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

.trust-number {
  font-weight: 700;
  font-size: 1.2rem;
}

.trust-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: linear-gradient(160deg, rgba(18, 24, 33, 0.95), #121821);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 28px 50px rgba(5, 8, 12, 0.6);
  animation: float-in 0.9s ease 0.2s both;
}

.hero-image {
  height: 260px;
}

.placeholder {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
      -45deg,
      rgba(233, 237, 243, 0.08),
      rgba(233, 237, 243, 0.08) 12px,
      rgba(233, 237, 243, 0.03) 12px,
      rgba(233, 237, 243, 0.03) 24px
    ),
    #111722;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.ai-placeholder {
  background-size: cover;
  background-position: center;
  color: #f3f6f8;
}

.ai-placeholder span {
  background: rgba(10, 13, 18, 0.6);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.ai-hero {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 500'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23131923'/><stop offset='1' stop-color='%232b3443'/></linearGradient><linearGradient id='a' x1='0' y1='1' x2='1' y2='0'><stop offset='0' stop-color='%23d4af37'/><stop offset='1' stop-color='%2338b2ac'/></linearGradient></defs><rect width='900' height='500' fill='url(%23g)'/><circle cx='140' cy='120' r='140' fill='rgba(212,175,55,0.18)'/><circle cx='760' cy='420' r='180' fill='rgba(56,178,172,0.2)'/><path d='M0 360 C160 300 320 340 480 300 C640 260 760 240 900 280 L900 500 L0 500 Z' fill='url(%23a)' opacity='0.35'/></svg>");
}

.ai-hatchback {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 400'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23101724'/><stop offset='1' stop-color='%23293340'/></linearGradient></defs><rect width='700' height='400' fill='url(%23g)'/><rect x='80' y='220' width='300' height='70' rx='18' fill='rgba(212,175,55,0.35)'/><rect x='140' y='180' width='180' height='60' rx='16' fill='rgba(56,178,172,0.35)'/><circle cx='160' cy='300' r='28' fill='rgba(233,237,243,0.7)'/><circle cx='320' cy='300' r='28' fill='rgba(233,237,243,0.7)'/></svg>");
}

.ai-sedan {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 400'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23111825'/><stop offset='1' stop-color='%232c3647'/></linearGradient></defs><rect width='700' height='400' fill='url(%23g)'/><rect x='70' y='220' width='360' height='70' rx='18' fill='rgba(212,175,55,0.3)'/><rect x='170' y='175' width='200' height='70' rx='18' fill='rgba(56,178,172,0.3)'/><circle cx='170' cy='300' r='26' fill='rgba(233,237,243,0.7)'/><circle cx='360' cy='300' r='26' fill='rgba(233,237,243,0.7)'/></svg>");
}

.ai-suv {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 400'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23131a26'/><stop offset='1' stop-color='%232b3341'/></linearGradient></defs><rect width='700' height='400' fill='url(%23g)'/><rect x='60' y='210' width='380' height='80' rx='18' fill='rgba(212,175,55,0.28)'/><rect x='150' y='165' width='230' height='70' rx='18' fill='rgba(56,178,172,0.3)'/><circle cx='170' cy='302' r='28' fill='rgba(233,237,243,0.75)'/><circle cx='360' cy='302' r='28' fill='rgba(233,237,243,0.75)'/></svg>");
}

.ai-tempo {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 400'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23101822'/><stop offset='1' stop-color='%23263442'/></linearGradient></defs><rect width='700' height='400' fill='url(%23g)'/><rect x='70' y='195' width='420' height='95' rx='20' fill='rgba(212,175,55,0.3)'/><rect x='110' y='165' width='260' height='55' rx='16' fill='rgba(56,178,172,0.35)'/><circle cx='180' cy='305' r='26' fill='rgba(233,237,243,0.7)'/><circle cx='360' cy='305' r='26' fill='rgba(233,237,243,0.7)'/><circle cx='470' cy='305' r='26' fill='rgba(233,237,243,0.7)'/></svg>");
}

.hero-card-body {
  padding: 1.8rem;
}

.card-title {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.section {
  padding: 4rem 6vw;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-top: 0.6rem;
}

.section-header.split {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}

.section-note {
  max-width: 360px;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-grid article,
.service-cards article,
.contact-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(233, 237, 243, 0.08);
  box-shadow: 0 18px 32px rgba(5, 8, 12, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-grid article:hover,
.service-cards article:hover,
.contact-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(15, 21, 23, 0.16);
}

.services {
  background: linear-gradient(120deg, #0f141c, #121b26);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.fleet-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid rgba(233, 237, 243, 0.08);
  box-shadow: 0 18px 34px rgba(5, 8, 12, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(15, 21, 23, 0.16);
}

.fleet-details {
  list-style: none;
  margin-top: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.fleet-image {
  height: 140px;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing {
  background: linear-gradient(120deg, #0f141c, #151f2c);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: var(--card);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(233, 237, 243, 0.08);
  box-shadow: 0 18px 34px rgba(5, 8, 12, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  margin: 0.6rem 0 0.8rem;
  color: var(--accent);
}

.pricing-note {
  margin-top: 1.5rem;
  color: var(--muted);
}

.route {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(56, 178, 172, 0.22);
  background: rgba(18, 24, 33, 0.7);
  backdrop-filter: blur(6px);
}

.testimonial {
  background: linear-gradient(120deg, #0f141c, #171f2b);
}

.testimonial-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 18px 32px rgba(5, 8, 12, 0.55);
  max-width: 720px;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.quote-name {
  margin-top: 1rem;
  color: var(--muted);
}

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

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form {
  background: var(--card);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 22px 38px rgba(5, 8, 12, 0.55);
  border: 1px solid rgba(233, 237, 243, 0.08);
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(233, 237, 243, 0.12);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  background: rgba(16, 24, 35, 0.9);
  color: var(--deep);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(233, 237, 243, 0.6);
}

.contact-form button {
  border: none;
  cursor: pointer;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-form .ghost-btn {
  background: transparent;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-note a {
  color: var(--teal);
  font-weight: 600;
}

.map-frame {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 38px rgba(5, 8, 12, 0.55);
  border: 1px solid rgba(233, 237, 243, 0.08);
}

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
}

.contact-link a {
  color: var(--teal);
  font-weight: 600;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-weight: 600;
}

.icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  border-radius: 6px;
}

.whatsapp-icon {
  background:
    radial-gradient(circle at 35% 35%, #ffffff 0 32%, transparent 33%),
    radial-gradient(circle at 70% 72%, #ffffff 0 12%, transparent 13%),
    linear-gradient(135deg, #25d366, #128c7e);
}

.phone-icon {
  background:
    radial-gradient(circle at 40% 40%, #ffffff 0 18%, transparent 19%),
    linear-gradient(135deg, #38b2ac, #1f6f6a);
}

.map-icon {
  background:
    radial-gradient(circle at 50% 40%, #ffffff 0 18%, transparent 19%),
    linear-gradient(135deg, #d4af37, #b8860b);
}

.footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(233, 237, 243, 0.16);
  background: rgba(18, 24, 33, 0.8);
  color: var(--deep);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-copy > * {
  animation: fade-up 0.7s ease both;
}

.hero-copy > :nth-child(1) {
  animation-delay: 0.05s;
}

.hero-copy > :nth-child(2) {
  animation-delay: 0.15s;
}

.hero-copy > :nth-child(3) {
  animation-delay: 0.25s;
}

.hero-copy > :nth-child(4) {
  animation-delay: 0.35s;
}

.hero-copy > :nth-child(5) {
  animation-delay: 0.45s;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes guru-drop {
  0% {
    transform: translateY(-20%) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(140%) translateX(12px);
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .section-header.split,
  .feature-grid,
  .service-cards,
  .fleet-grid,
  .route-list,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    display: none;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav.is-open {
    flex-wrap: wrap;
  }

  .nav.is-open .nav-actions {
    display: flex;
  }

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

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

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