:root {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f5f5f5;
  line-height: 1.6;
  font-weight: 400;
  --dark: #0f172a;
  --muted: #5b6271;
  --primary: #f26935;
  --primary-dark: #d55424;
  --accent: #5dd1ff;
  --bg: #f8f8fb;
  --soft: #ffffff;
  --soft-alt: #fef6ef;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 25px 80px rgba(15, 23, 42, 0.08);
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--dark);
  background: radial-gradient(circle at top right, rgba(93, 209, 255, 0.2), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 60%, #fff7f2 100%);
}

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

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

section {
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
}

.section.soft-bg {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 242, 0.75));
  border-radius: 32px;
  padding: 4rem clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

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

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: url("img/view-3d-car.jpg") center/cover;
  color: #fff;
  padding: 1.5rem;
  padding-bottom: 6rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.25), transparent),
    linear-gradient(135deg, rgba(5, 7, 12, 0.9), rgba(0, 0, 0, 0.4));
  z-index: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 0.5rem;
  background: rgba(8, 9, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  color: #fff;
}

.hero .nav {
  margin-top: 0.5rem;
}

.nav-links,
.nav-links a,
.brand,
.brand .tagline,
.logo {
  color: #fff;
}

.nav-links {
  background: transparent;
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.35rem;
  border-radius: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  margin: 0.5rem 0 1rem;
}

.hero-kicker {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 15px 30px rgba(242, 105, 53, 0.45);
}

.btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-stats div {
  min-width: 120px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 600;
  display: block;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.hero-card img {
  border-radius: 18px;
  height: 320px;
  width: 100%;
  object-fit: cover;
}

.hero-card__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  color: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.fleet {
  margin-top: -3rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.vehicle-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.18);
}

.vehicle-card img {
  height: 180px;
  object-fit: cover;
}

.vehicle-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.3rem 0.5rem;
}

.vehicle-card ul {
  list-style: none;
  padding: 0 1.3rem 1.5rem;
  margin: 0;
  color: var(--muted);
}

.vehicle-card ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.vehicle-card ul li:last-child {
  border-bottom: 0;
}

.price {
  font-weight: 700;
  color: var(--primary);
}

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

.services-grid article {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px rgba(15, 23, 42, 0.12);
}

.about-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: center;
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 2rem;
}

.about-content h2 {
  margin-top: 0.5rem;
}

.details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.details li {
  margin-bottom: 0.4rem;
}

.cta {
  text-align: center;
}

.cta-content {
  background: var(--dark);
  color: #fff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-content::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  top: -50px;
  right: -40px;
  filter: blur(10px);
  opacity: 0.6;
}

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

.contact-info,
.contact-form {
  background: var(--card);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-block {
  margin-top: 1.5rem;
}

.map-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

.contact-form label {
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fdfdfd;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(242, 105, 53, 0.2);
  border-color: var(--primary);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: -0.5rem;
}

.map-embed {
  margin-top: 2rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.privacy-card {
  background: var(--card);
  border-radius: 24px;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.privacy-card h3 {
  margin: 1.6rem 0 0.6rem;
  color: var(--dark);
}

.privacy-card p {
  color: var(--muted);
  margin: 0.4rem 0;
}

.privacy-card a {
  color: var(--primary);
  font-weight: 600;
}

.policy-list {
  padding-left: 1.2rem;
  color: var(--muted);
}

.policy-list li + li {
  margin-top: 0.35rem;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

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

.highlights-grid article {
  background: var(--card);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.highlights-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(242, 105, 53, 0.07), rgba(93, 209, 255, 0.07));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlights-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
}

.highlights-grid article:hover::after {
  opacity: 1;
}

.highlights-grid .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(242, 105, 53, 0.15), rgba(93, 209, 255, 0.15));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.highlights-grid svg {
  width: 26px;
  height: 26px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.gallery-grid figure {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-size: 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.testimonials-grid article {
  background: var(--card);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonials-grid article::before {
  content: "“";
  font-size: 4rem;
  color: rgba(242, 105, 53, 0.25);
  position: absolute;
  top: 0.2rem;
  left: 1rem;
}

.testimonials-grid p {
  margin-top: 1.5rem;
  color: var(--muted);
}

.testimonials-grid h3 {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--dark);
}

.floating-contact {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 99;
}

.floating-contact span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.floating-contact strong {
  font-size: 1rem;
}

.floating-contact .pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 rgba(242, 105, 53, 0.6);
  animation: pulse 2s infinite;
}

.floating-contact:hover {
  transform: translateY(-4px);
}

.partners-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(90deg, rgba(242, 105, 53, 0.12), rgba(93, 209, 255, 0.15));
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.partners-strip > span {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.logo-marquee {
  display: flex;
  gap: 2rem;
  animation: marquee 20s linear infinite;
  min-width: max-content;
  font-size: 0.95rem;
}

.logo-marquee span {
  opacity: 0.8;
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 105, 53, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(242, 105, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 105, 53, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    inset: auto 1rem 1rem;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.9);
    padding: 1.25rem;
    border-radius: 18px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-bottom: 4rem;
  }

  .fleet {
    margin-top: 0;
  }

  .floating-contact {
    position: static;
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .partners-strip {
    flex-direction: column;
    text-align: center;
  }
}
