:root {
  --bg: #0d0d0d;
  --bg-soft: #161616;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f7f4eb;
  --muted: #c8c3b5;
  --gold: #c9a646;
  --gold-soft: rgba(201, 166, 70, 0.18);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --max-width: 1180px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 166, 70, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(120, 18, 18, 0.24), transparent 22%),
    linear-gradient(180deg, #060606 0%, #121212 52%, #090909 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
  opacity: 0.25;
}

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

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

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 22px;
  margin-top: 18px;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.brand span,
.brand small {
  display: block;
}

.brand span {
  font-weight: 600;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-menu a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

.hero,
.inner-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(120deg, rgba(201, 166, 70, 0.1), transparent 52%);
  border: 1px solid var(--border);
  border-radius: 40px;
  margin-top: 28px;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding: 72px 56px;
  min-height: 78vh;
  align-items: center;
}

.inner-hero {
  padding: 72px 48px 58px;
  text-align: center;
}

.hero::after,
.inner-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -38% auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 166, 70, 0.3), transparent 72%);
  filter: blur(18px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.06;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 10ch;
}

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

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text,
.inner-hero p {
  font-size: 1.1rem;
  max-width: 56ch;
}

.hero-actions,
.quick-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

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

.button-gold {
  background: linear-gradient(135deg, #f0cd71, var(--gold));
  color: #101010;
  box-shadow: 0 16px 30px rgba(201, 166, 70, 0.28);
}

.button-outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.logo-orb {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.logo-orb::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(201, 166, 70, 0.22);
}

.logo-orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.55));
}

.car-stage {
  position: absolute;
  bottom: 6%;
  left: 2%;
  right: 2%;
  height: 120px;
  overflow: hidden;
}

.car-track {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.car-silhouette {
  position: absolute;
  bottom: 18px;
  left: -10%;
  width: 220px;
  height: 70px;
  animation: drive 8s ease-in-out infinite;
}

.car-roof,
.car-body,
.wheel {
  position: absolute;
  display: block;
}

.car-roof {
  top: 10px;
  left: 42px;
  width: 120px;
  height: 28px;
  border: 3px solid rgba(201, 166, 70, 0.9);
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
}

.car-body {
  bottom: 12px;
  left: 18px;
  width: 184px;
  height: 34px;
  background: linear-gradient(180deg, #161616, #383838);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px 34px 14px 14px;
}

.wheel {
  bottom: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 4px solid #0a0a0a;
  background: radial-gradient(circle, #999 10%, #2e2e2e 48%, #0b0b0b 49%);
}

.wheel-left {
  left: 44px;
}

.wheel-right {
  right: 24px;
}

.section {
  padding: 76px 0 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.centered {
  text-align: center;
}

.feature-grid,
.service-grid {
  display: grid;
  gap: 22px;
}

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

.feature-card,
.service-card,
.split-panel,
.contact-card,
.cta,
.testimonials,
.mission-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.service-card,
.contact-card,
.mission-card {
  padding: 28px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.split-copy,
.split-panel {
  min-width: 0;
}

.split-panel {
  padding: 30px;
}

.stats-panel,
.testimonials,
.mission-panel {
  display: grid;
  gap: 18px;
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

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

.service-card {
  min-height: 200px;
}

.service-card-large {
  min-height: 240px;
}

.check-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 166, 70, 0.15);
}

.compact {
  margin-top: 18px;
}

.testimonials blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.7;
}

.testimonials span {
  color: var(--gold);
  font-size: 0.9rem;
}

.cta {
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
  padding: 48px 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.contact-details p,
.footer p {
  margin: 0;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-form .full-width,
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 166, 70, 0.8);
  box-shadow: 0 0 0 4px rgba(201, 166, 70, 0.15);
}

.form-note {
  margin: 0;
  min-height: 24px;
  color: var(--gold);
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(0.82);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 0 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 600;
}

.text-link::after {
  content: "\2192";
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #28d467, #119b45);
  color: white;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(17, 155, 69, 0.32);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes drive {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(115%) translateY(-4px);
  }
}

@media (max-width: 960px) {
  .hero,
  .section-split,
  .contact-layout,
  .feature-grid.four,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
    padding: 56px 24px;
  }

  .inner-hero {
    padding: 56px 24px 44px;
  }

  h1 {
    max-width: 100%;
  }

  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    margin-top: 18px;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

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

  .nav-menu .button {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    top: 10px;
    padding: 14px 16px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .button,
  .whatsapp-float {
    width: 100%;
  }

  .hero-actions,
  .quick-contact-actions {
    flex-direction: column;
  }

  .logo-orb {
    width: 100%;
    max-width: 320px;
  }
}
