:root {
  --bg: #eef8fc;
  --bg-soft: #f7fcff;
  --dark: #061826;
  --dark-2: #082033;
  --cyan: #00d5ff;
  --cyan-2: #6feaff;
  --blue: #0b6bff;
  --text: #071827;
  --muted: #5f7080;
  --muted-light: #b6cad7;
  --white: #ffffff;
  --line: #d6e8f0;
  --shadow: 0 18px 50px rgba(4, 35, 58, .11);
  --radius-lg: 28px;
  --radius-md: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 100;
  width: min(1180px, 100% - 48px);
  margin: 20px auto 0;
}

nav {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,213,255,.18);
  border-radius: 22px;
  padding: 12px 14px 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 10px 36px rgba(3,30,49,.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 112px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #34485b;
  font-size: 14.5px;
  font-weight: 650;
  padding: 10px 2px;
  transition: color .22s ease, transform .22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: navSelect .34s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 0 18px rgba(0,213,255,.55);
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: .75;
  transform: translateX(-50%);
  transition: width .24s ease;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a.active::before {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--bg-soft);
  color: var(--dark);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 999px;
  transition: transform .24s ease, opacity .2s ease;
}

.menu-toggle:hover { border-color: var(--cyan); transform: translateY(-1px); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0,213,255,.12);
}

.btn-dark:hover { background: #0b2940; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  padding: 14px 26px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
}

.btn-outline:hover { border-color: var(--cyan); color: #005d78; transform: translateY(-1px); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 0;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: -180px -120px auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,213,255,.28), transparent 64%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: -118px;
  right: 0;
  width: 68%;
  height: 118%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 28%, black 55%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 28%, black 55%);
  z-index: 0;
  filter: saturate(.9) contrast(1.05) hue-rotate(186deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 92px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #008cb4;
  margin-bottom: 12px;
}

h1, h2, h3 { color: var(--dark); }

.hero h1,
.page-hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 6.1vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.03em;
}

.cyan { color: #009ed0; }

.lead {
  margin-top: 26px;
  max-width: 465px;
  font-size: 15.5px;
  line-height: 1.68;
  color: #3c5264;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.mini-stack { display: flex; align-items: center; }

.mini-stack span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--dark);
}

.mini-stack span:nth-child(2) { margin-left: -13px; background: var(--dark); color: var(--white); }
.mini-stack span:nth-child(3) { margin-left: -13px; background: var(--cyan); color: var(--dark); }

.hero-trust p {
  font-size: 14px;
  color: #3c5264;
  line-height: 1.5;
}

.feature-bar {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius-lg);
  padding: 42px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -40px;
  box-shadow: 0 26px 70px rgba(4,25,41,.22);
}

.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 4px 28px;
}

.feature + .feature { border-left: 1px solid rgba(255,255,255,.12); }

.feature .icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  color: var(--cyan);
}

.feature h3 {
  color: var(--white);
  font-size: 16.5px;
  font-weight: 850;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted-light);
  font-size: 13.5px;
  line-height: 1.55;
}

section { padding: 90px 0 100px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.section-head h2 {
  max-width: 720px;
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.car-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0,213,255,.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.car-card:hover {
  border-color: rgba(0,213,255,.4);
  box-shadow: 0 24px 70px rgba(4, 35, 58, .16);
  transform: translateY(-4px);
}

.car-media {
  position: relative;
  aspect-ratio: 1 / .72;
  overflow: hidden;
}

.car-media img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.car-card:hover .car-media img,
.gallery-card:hover img { transform: scale(1.05); }

.car-media::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,20,32,.52), transparent 58%);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(6,24,38,.9);
  color: var(--white);
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rate {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  border-radius: 14px;
  background: var(--cyan);
  color: var(--dark);
  padding: 12px 14px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
}

.rate small {
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.car-body { padding: 24px; }

.car-body h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.car-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
}

.specs li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.specs strong {
  display: block;
  color: var(--dark);
  font-size: 13.5px;
  margin-bottom: 3px;
}

.dark-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: var(--white);
}

.dark-section .section-head h2,
.dark-section h3 { color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  padding: 14px 26px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.28);
}

.btn-outline-light:hover { border-color: var(--cyan); transform: translateY(-1px); }

.experience-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: stretch;
}

.city-card,
.gallery-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

.city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,20,32,.82), rgba(4,20,32,.1));
}

.city-copy,
.gallery-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 30px;
}

.city-copy p,
.gallery-copy p {
  color: #d7e7ef;
  max-width: 520px;
  font-size: 14.5px;
  line-height: 1.65;
  margin-top: 10px;
}

.steps { display: grid; gap: 18px; }

.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 24px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.step p {
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
}

.page-hero .lead { max-width: 650px; }

.contact-band { padding: 84px 0; }

.contact-card {
  background: var(--white);
  border: 1px solid rgba(0,213,255,.16);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.contact-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 520px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 15px;
  align-content: center;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
  font-weight: 850;
}

.contact-list small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.gallery-card {
  min-height: 360px;
  box-shadow: var(--shadow);
}

.gallery-card h3 { color: var(--white); }

footer {
  background: var(--dark);
  color: var(--muted-light);
  padding: 58px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

footer .brand {
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

footer p { font-size: 14px; line-height: 1.7; max-width: 330px; }

footer h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 850;
  margin-bottom: 18px;
}

footer ul { list-style: none; }
footer li { margin-bottom: 12px; }

footer a {
  color: var(--muted-light);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

footer a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

.image-credit {
  color: #7f94a2;
  font-size: 11.5px;
  line-height: 1.6;
  margin-top: 18px;
}

.image-credit a { font-size: inherit; text-decoration: underline; text-underline-offset: 3px; }

@keyframes navSelect {
  from { opacity: 0; transform: scaleX(.35); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes menuItemIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top;
    transition: max-height .32s ease, opacity .24s ease, transform .24s ease;
  }

  .nav-links.open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links.open li {
    animation: menuItemIn .24s ease both;
  }

  .nav-links.open li:nth-child(2) { animation-delay: .03s; }
  .nav-links.open li:nth-child(3) { animation-delay: .06s; }
  .nav-links.open li:nth-child(4) { animation-delay: .09s; }

  .nav-links a { display: block; padding: 14px 14px; border-radius: 12px; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active {
    background: linear-gradient(90deg, rgba(0,213,255,.18), rgba(11,107,255,.1));
    color: #006c91;
  }
  .nav-links a::before { display: none; }
  .menu-toggle { display: block; }
  .feature-bar { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .feature:nth-child(3) { border-left: none; }
  .fleet-grid, .experience-grid, .split-grid, .contact-card, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-wrap { width: calc(100% - 24px); top: 10px; margin-top: 12px; }
  nav { padding: 9px 9px 9px 13px; border-radius: 18px; gap: 8px; }
  .brand-mark { width: 82px; }
  .nav-actions { gap: 8px; }
  .btn-dark { padding: 11px 13px; font-size: 12.5px; border-radius: 12px; }
  .menu-toggle { width: 40px; height: 40px; border-radius: 12px; }
  .container { width: calc(100% - 32px); }
  .hero { padding-top: 24px; }
  .hero-bg {
    position: static;
    width: 100%;
    height: 300px;
    mask-image: none;
    -webkit-mask-image: none;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
  }
  .hero h1, .page-hero h1 { font-size: clamp(36px, 10.8vw, 46px); }
  .lead { font-size: 14.5px; line-height: 1.62; }
  .hero-actions { flex-wrap: wrap; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { align-items: flex-start; gap: 12px; margin-top: 30px; }
  .feature-bar { grid-template-columns: 1fr; margin-top: 30px; padding: 28px 8px; border-radius: 22px; }
  .feature { padding: 6px 20px; }
  .feature + .feature { border-left: none; }
  section { padding: 70px 0 76px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .specs { grid-template-columns: 1fr; }
  .car-body { padding: 20px; }
  .city-card, .gallery-card { min-height: 370px; }
  .city-copy, .gallery-copy, .contact-card { padding: 26px; }
  .contact-list a,
  .contact-list span { align-items: flex-start; flex-direction: column; gap: 7px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 380px) {
  .btn-dark { padding: 10px 11px; font-size: 12px; }
  .brand-mark { width: 74px; }
  .hero h1, .page-hero h1 { font-size: 34px; }
}
