﻿:root {
  --bg: #f6f1e8;
  --bg-soft: #fffaf3;
  --ink: #151a1e;
  --muted: #5f6872;
  --accent: #df6d30;
  --accent-strong: #bb5421;
  --teal: #167d7a;
  --surface: #ffffff;
  --line: rgba(21, 26, 30, 0.12);
  --shadow-soft: 0 14px 34px rgba(21, 26, 30, 0.08);
  --shadow: 0 22px 56px rgba(21, 26, 30, 0.14);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, #ffe9cf 0%, transparent 40%),
    radial-gradient(circle at 88% 16%, #d9f5f3 0%, transparent 38%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  width: min(35vw, 360px);
  height: min(35vw, 360px);
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 109, 48, 0.2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 0;
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: linear-gradient(135deg, var(--ink), #2a3138);
  color: #fff;
}

.brand-name {
  font-size: 24px;
  line-height: 1;
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: #313842;
}

.menu a {
  position: relative;
  padding: 4px 0;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.menu a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #ee9154);
  color: #fff;
  box-shadow: 0 14px 30px rgba(223, 109, 48, 0.34);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(223, 109, 48, 0.4);
}

.btn.ghost {
  border-color: var(--line);
  background: #fff;
  color: #2c343d;
}

.btn.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 26, 30, 0.28);
}

main,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 86px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 44px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1.03;
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(22, 125, 122, 0.24);
  border-radius: 999px;
  background: rgba(22, 125, 122, 0.09);
  color: #175e5b;
  font-size: 12px;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.stat-number {
  font-size: 22px;
  font-weight: 800;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgba(21, 26, 30, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
}

.hero-card-inner {
  display: grid;
  gap: 20px;
}

.hero-tag {
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #166969;
  background: rgba(22, 125, 122, 0.14);
}

.hero-visual {
  height: 230px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(140deg, #20262c 0%, #4c5965 100%);
}

.hero-visual .stripe {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(223, 109, 48, 0.46) 44%, transparent 62%);
  animation: sweep 4.2s ease-in-out infinite;
}

.hero-visual .car {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 72%;
  height: 84px;
  transform: translateX(-50%);
  border-radius: 46px 46px 20px 20px;
  background: linear-gradient(90deg, #ee8248 0%, #f8bd74 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.hero-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.hero-note span {
  color: var(--muted);
}

.trust {
  padding: 14px 0 12px;
}

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

.trust-card {
  background: var(--surface);
  border: 1px solid rgba(21, 26, 30, 0.08);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.trust-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.trust-card p {
  color: var(--muted);
  font-size: 14px;
}

.booking {
  padding: 36px 0 58px;
}

.booking-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  border: 1px solid rgba(21, 26, 30, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.booking-card h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 4.6vw, 46px);
  line-height: 1;
  margin-bottom: 6px;
}

.booking-card p {
  color: var(--muted);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 20px 0 16px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: #48515c;
  font-size: 13px;
  font-weight: 600;
}

.booking-form input,
.booking-form select {
  border: 1px solid rgba(21, 26, 30, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: rgba(223, 109, 48, 0.72);
  box-shadow: 0 0 0 4px rgba(223, 109, 48, 0.12);
}

.booking-card small {
  color: var(--muted);
}

section {
  padding: 58px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
}

.fleet-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.fleet-card,
.service-card,
.testimonial,
.contact-card,
.map-card {
  background: var(--surface);
  border: 1px solid rgba(21, 26, 30, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.fleet-card:hover,
.service-card:hover,
.testimonial:hover,
.contact-card:hover,
.map-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.fleet-card h3,
.service-card h3 {
  margin-bottom: 8px;
}

.fleet-card p,
.service-card p,
.testimonial blockquote {
  color: #444d57;
}

.fleet-card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.fleet-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(223, 109, 48, 0.16);
  color: var(--accent-strong);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 10px;
}

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

.step {
  background: linear-gradient(145deg, #171e24 0%, #252f3a 100%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.step span {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.22);
}

.step p {
  color: rgba(255, 255, 255, 0.82);
}

.testimonial blockquote {
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial figcaption {
  color: var(--muted);
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.contact-card h2 {
  margin-bottom: 8px;
}

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

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

.contact-details span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  color: var(--muted);
}

.contact-details strong {
  font-size: 15px;
}

.contact-details a {
  border-bottom: 1px dashed rgba(21, 26, 30, 0.22);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-placeholder {
  height: 280px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(22, 125, 122, 0.22), rgba(223, 109, 48, 0.16)),
    #f8fafb;
}

.map-placeholder h3 {
  margin-bottom: 6px;
}

.map-placeholder p {
  color: #42505f;
  margin-bottom: 12px;
}

.map-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: #11181f;
  color: #fff;
  padding: 42px 0 20px;
}

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

.footer-grid h4 {
  margin-bottom: 8px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid a {
  display: block;
  margin: 6px 0;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand .brand-mark {
  background: #fff;
  color: #11181f;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

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

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

@keyframes sweep {
  0% {
    transform: translateX(-62%);
  }
  50% {
    transform: translateX(62%);
  }
  100% {
    transform: translateX(-62%);
  }
}

@media (max-width: 920px) {
  .hero {
    padding-top: 70px;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 760px) {
  .menu {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: auto;
  }

  .booking-card,
  .fleet-card,
  .service-card,
  .testimonial,
  .contact-card,
  .map-card,
  .trust-card {
    padding: 20px;
  }
}
