:root {
  --bg: #070b14;
  --bg-soft: #0f172a;
  --card: rgba(17, 25, 40, 0.75);
  --text: #f5f7ff;
  --muted: #a4adc8;
  --primary: #4f8cff;
  --primary-2: #75e6ff;
  --line: rgba(255, 255, 255, 0.1);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 5% 10%, #101d42 0%, var(--bg) 35%, #04060e 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.section {
  padding: 5rem 0;
}

.bg-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

.glow-1 {
  background: #4f8cff;
  top: -80px;
  left: -80px;
}

.glow-2 {
  background: #7f5cff;
  right: -80px;
  bottom: 100px;
}

.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(5, 10, 20, 0.65);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

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

.logo {
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.logo span {
  color: var(--primary-2);
  text-shadow: 0 0 18px rgba(117, 230, 255, 0.45);
}

.logo small {
  font-size: 0.72rem;
  letter-spacing: 1.1px;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.92;
}

nav a.active {
  color: var(--primary-2);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
}

.btn {
  border: 0;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  color: #07111f;
  padding: 0.86rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(79, 140, 255, 0.25);
}

.btn-sm {
  padding: 0.65rem 1rem;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(117, 230, 255, 0.45);
}

.pill {
  display: inline-block;
  border: 1px solid rgba(117, 230, 255, 0.35);
  color: var(--primary-2);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.hero {
  padding: 5.4rem 0 4rem;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  margin-bottom: 0.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.stats {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.stats h3 {
  font-size: 1.55rem;
}

.stats p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.hero-card img {
  width: 100%;
  display: block;
  height: 300px;
  object-fit: cover;
}

.hero-card-info {
  padding: 1rem;
}

.hero-card-info p {
  color: var(--primary-2);
  font-size: 0.86rem;
}

.hero-card-info h4 {
  margin: 0.35rem 0;
}

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

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
}

.fleet-filters {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.55rem 1rem;
  border-radius: 10px;
  cursor: pointer;
}

.filter-btn.active {
  border-color: var(--primary-2);
  background: rgba(117, 230, 255, 0.12);
}

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

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

.car-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.car-card:hover {
  transform: translateY(-5px);
  border-color: rgba(117, 230, 255, 0.4);
}

.car-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #0b1326;
}

.car-gallery .gallery-main {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.9), rgba(8, 14, 28, 0.92));
  display: block;
  padding: 0.35rem;
  cursor: zoom-in;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  padding: 0.65rem;
}

.gallery-thumb {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.gallery-thumb.active {
  border-color: var(--primary-2);
}

.gallery-thumb img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  background: #0b1326;
  display: block;
}

.car-body {
  padding: 1rem;
}

.car-body p {
  color: var(--muted);
  margin: 0.45rem 0 0.8rem;
}

.car-meta {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.car-meta span {
  border: 1px solid var(--line);
  padding: 0.26rem 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.service-card i {
  font-size: 1.35rem;
  color: var(--primary-2);
  margin-bottom: 0.8rem;
}

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

.testimonial-swiper {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.testimonial {
  padding: 2rem;
}

.testimonial p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.swiper-pagination-bullet-active {
  background: var(--primary-2) !important;
}

.cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: linear-gradient(120deg, rgba(79, 140, 255, 0.15), rgba(117, 230, 255, 0.08));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-form {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cta-form input {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 44px;
  padding: 0 0.75rem;
  min-width: 190px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
  margin-top: 2.5rem;
  background: linear-gradient(120deg, rgba(12, 20, 36, 0.9), rgba(8, 14, 28, 0.92));
}

.footer-grid {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid rgba(117, 230, 255, 0.12);
  border-radius: 14px;
  padding: 0.75rem 1rem;
}

.footer p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1rem;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.map-section {
  padding-top: 0;
}

.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-whatsapp {
  background: linear-gradient(120deg, #25d366, #7af0a6);
  color: #04260f;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(120deg, #25d366, #7af0a6);
  color: #05240f;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
  z-index: 20;
}

.phone-float {
  position: fixed;
  right: 18px;
  bottom: 82px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(120deg, #4f8cff, #75e6ff);
  color: #061426;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 12px 24px rgba(79, 140, 255, 0.35);
  z-index: 20;
}

.hero-card img.hero-rotating {
  transition: opacity 0.45s ease;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  border-color: rgba(117, 230, 255, 0.5);
  color: var(--primary-2);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #091226;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1rem;
    display: none;
  }

  nav.show {
    display: flex;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}
