/* Base reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f3f7fb;
  --bg-deep: #0b2c48;
  --primary: #0088cc;
  --primary-soft: #7dd3fc;
  --primary-dark: #005a8c;
  --accent: #fbbf24;
  --glass: rgba(255, 255, 255, 0.72);
  --border-subtle: rgba(148, 163, 184, 0.35);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.2);
  --radius-lg: 1.2rem;
  --radius-md: 0.9rem;
  --radius-pill: 999px;
  --transition: 0.22s ease;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #e0f2fe 0, #f1f5f9 45%, #e2e8f0 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  max-width: 1120px;
  margin: 0 auto;
  backdrop-filter: blur(18px);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.9));
  border-radius: 999px;
  margin-top: 0.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, var(--primary-soft), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eff6ff;
  font-weight: 700;
  font-size: 0.85rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  margin-left: 0.6rem;
}

.brand-name {
  color: #e5f2ff;
  font-weight: 600;
  font-size: 0.9rem;
}

.brand-sub {
  color: rgba(191, 219, 254, 0.9);
  font-size: 0.78rem;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-link {
  color: #e5f2ff;
  text-decoration: none;
  font-size: 0.82rem;
  opacity: 0.9;
}

.nav-link:hover {
  opacity: 1;
}

.nav-cta {
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: #f9fafb;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 600;
}

.lang-switch {
  display: flex;
  gap: 0.3rem;
  margin-left: 0.4rem;
}

.lang-btn {
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.4);
  color: #e5e7eb;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.5rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.lang-btn.active {
  background: #e0f2fe;
  color: #0f172a;
  border-color: transparent;
}

/* HERO */
.hero {
  position: relative;
  max-width: 1120px;
  margin: 1.8rem auto 1.2rem;
  padding: 2.2rem 1.5rem 2.4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.55), transparent 55%),
    radial-gradient(circle at bottom right, rgba(8, 47, 73, 0.95), #020617);
  border-radius: 2rem;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  color: #e0f2fe;
  z-index: 1;
}

.hero-text {
  align-self: center;
}

.hero-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 0.95rem;
  color: #e0f2fe;
  opacity: 0.95;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 0.7rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

.hero-meta span::before {
  content: "• ";
}

/* HERO car glass card */
.hero-car-glass {
  width: 100%;
  max-width: 320px;
  border-radius: 1.6rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-badge {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 0.7rem;
}

.hero-car-main {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 1.1rem;
  padding: 0.8rem 0.9rem;
  position: relative;
  overflow: hidden;
}

.hero-car-main::after {
  content: "";
  position: absolute;
  inset: auto -50px -50px auto;
  width: 160px;
  height: 90px;
  background: radial-gradient(circle at 30% 0, #e0f2fe, transparent 60%);
  opacity: 0.4;
}

.hero-car-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.6rem;
}

.hero-car-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.hero-car-sub {
  font-size: 0.82rem;
  color: #cbd5f5;
}

.hero-car-list {
  list-style: none;
  font-size: 0.82rem;
  color: #e5e7eb;
}

.hero-car-list li + li {
  margin-top: 0.15rem;
}

.hero-tagline {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: #bfdbfe;
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn.primary {
  background: radial-gradient(circle at top left, var(--primary-soft), var(--primary));
  color: #0f172a;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(8, 47, 73, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(8, 47, 73, 0.75);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(148, 163, 184, 0.6);
  color: #e0f2fe;
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.65);
}

.btn.outline {
  background: transparent;
  border-color: rgba(191, 219, 254, 0.9);
  color: #e0f2fe;
}

.btn.outline:hover {
  background: rgba(15, 23, 42, 0.55);
}

.btn.wide {
  width: 100%;
}

/* Sections */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem 2rem;
}

.section-header {
  max-width: 640px;
  margin-bottom: 1.2rem;
}

.section-header h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.7rem;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.four {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.card.glass {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.78));
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.distance {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0.1rem 0 0.2rem;
}

.price span {
  font-weight: 500;
  opacity: 0.8;
}

.note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.section-footnote {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Booking */
.booking {
  margin-top: 0.5rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(191, 219, 254, 0.9), rgba(224, 231, 255, 0.9));
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.25);
}

.booking .section-header h2 {
  color: #0f172a;
}

.booking .section-header p {
  color: #1f2933;
}

.booking-form {
  margin-top: 0.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: #0f172a;
}

input,
textarea {
  border-radius: 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.45rem 0.55rem;
  font: inherit;
  background: rgba(248, 250, 252, 0.95);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  border-color: transparent;
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #111827;
}

/* Contact */
.contact-wrap {
  margin-top: 0.4rem;
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
  font-size: 0.9rem;
}

.contact-card p + p {
  margin-top: 0.3rem;
}

.contact-card a {
  color: var(--primary-dark);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-small {
  opacity: 0.85;
}

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #bbf7d0, #16a34a);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.6rem;
  color: #f9fafb;
  z-index: 25;
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 60px rgba(22, 163, 74, 0.75);
}

/* Fade-up animation on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    border-radius: 1.5rem;
    padding-inline: 0.9rem;
  }
}

@media (max-width: 768px) {
  .nav {
    margin-top: 0.4rem;
  }

  .nav-right {
    gap: 0.5rem;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    padding-inline: 1rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero-card {
    order: -1;
  }

  .hero-meta {
    flex-direction: column;
  }

  .booking {
    border-radius: 1.1rem;
  }

  .fab-whatsapp {
    right: 0.9rem;
    bottom: 0.9rem;
  }
}

@media (max-width: 520px) {
  .nav {
    flex-direction: row;
    gap: 0.7rem;
  }

  .nav-right {
    font-size: 0.78rem;
  }

  .nav-cta {
    padding-inline: 0.7rem;
  }

  .hero-inner {
    gap: 1.3rem;
  }

  .hero-pill {
    font-size: 0.76rem;
  }
}
