:root {
  --brand: #6d28d9;
  --brand-dark: #4c1d95;
  --brand-darker: #3b0764;
  --brand-light: #f5f3ff;
  --brand-light2: #ede9fe;
  --text-dark: #1f2333;
  --text-muted: #5b6072;
  --border: #e5e7eb;
  --bg-soft: #f6f6f8;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 44px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand { font-weight: 800; font-size: 1.15rem; letter-spacing: 0.5px; }
.logo-text .tagline { font-size: 0.65rem; letter-spacing: 1px; opacity: 0.9; }

nav.main-nav { display: flex; gap: 28px; }
nav.main-nav a { font-size: 0.95rem; opacity: 0.92; padding: 6px 0; }
nav.main-nav a.active, nav.main-nav a:hover { opacity: 1; font-weight: 700; border-bottom: 2px solid #fff; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}
.phone-pill { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.95rem; }

/* Hero */
.hero {
  position: relative;
  background-color: #f2f2f5;
  padding: 60px 24px 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-cars-background-violet.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
}
.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
}
.booking-card {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-darker) 100%);
  border-radius: 14px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 20px 45px rgba(76,29,149,0.35);
}
.booking-card h2 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.95;
}
.booking-card h1 {
  margin: 0 0 24px;
  font-size: 1.7rem;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; margin-bottom: 6px; opacity: 0.9; }
.field select, .field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  font-size: 0.9rem;
  background: #fff;
  color: var(--text-dark);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  margin-top: 8px;
}
.btn-primary.solid {
  background: var(--brand);
  color: #fff;
}

.hero-side { position: relative; min-height: 460px; }
.badges { display: flex; gap: 16px; justify-content: flex-end; margin-bottom: 200px; flex-wrap: wrap; }
.badge {
  background: #fff;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 260px;
}
.badge .badge-title { display: flex; align-items: center; gap: 8px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.badge .badge-title .icon { color: var(--brand); }
.badge p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 60;
  color: #fff;
  font-size: 1.5rem;
}

/* Sections */
section { padding: 64px 24px; }
.section-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 10px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.cars-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.car-card img { width: 100%; height: 192px; object-fit: contain; background: #fafafa; padding: 12px; }
.car-info { padding: 18px; }
.car-info h3 { margin: 0 0 12px; font-size: 1.15rem; }
.car-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.car-spec { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-dark); }
.car-spec .dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.cta-center { text-align: center; margin-top: 36px; }
.btn-fill {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.section-soft { background: var(--bg-soft); }

.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.t-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: #d8d8dd;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #555;
  font-size: 0.85rem;
}
.t-name { font-weight: 700; font-size: 0.95rem; }
.t-role { font-size: 0.78rem; color: var(--text-muted); }
.t-stars { color: #f5b400; margin-bottom: 8px; font-size: 0.9rem; }
.t-text { font-size: 0.88rem; color: var(--text-dark); line-height: 1.5; margin: 0; }

.why-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card { text-align: center; padding: 12px; }
.why-icon {
  width: 64px; height: 64px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--brand);
  font-size: 1.5rem;
}
.why-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.why-card p { margin: 0; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* Footer */
footer.site-footer {
  background: #14141a;
  color: #cfcfd6;
  padding: 48px 24px 20px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 40px; }
.footer-logo .brand { color: #fff; font-weight: 800; font-size: 1.1rem; }
.footer-logo .tagline { font-size: 0.65rem; letter-spacing: 1px; color: #9a9aa4; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.footer-col h4 { color: #fff; font-size: 1.05rem; margin: 0 0 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: #cfcfd6; }
.footer-col ul li a:hover { color: #fff; }
.contact-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.9rem; }
.contact-line .icon { color: var(--brand); margin-top: 2px; }
.footer-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  border-top: 1px solid #2a2a33;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #8a8a94;
}

/* Contact page specific */
.contact-hero {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 70px 24px;
}
.contact-hero h1 { font-size: 2.6rem; font-weight: 800; margin: 0; }

.contact-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  padding: 56px 24px;
  background: var(--bg-soft);
}
.contact-layout h2 { font-size: 1.5rem; margin: 0 0 24px; }
.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.info-card .icon-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card strong { display: block; font-size: 0.98rem; margin-bottom: 2px; }
.info-card span, .info-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.contact-form {
  background: #fff;
  border-radius: 10px;
  padding: 26px;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-family: inherit;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.btn-send {
  width: 100%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 13px;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.map-section { padding: 56px 24px; }
.map-frame {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.map-actions a {
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-actions img { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cars-grid, .testimonials-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .about-hero-grid, .about-grid, .values-grid, .stats-grid { grid-template-columns: 1fr; }
}

/* About page */
.about-hero {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 70px 24px;
}
.about-hero h1 { font-size: 2.6rem; font-weight: 800; margin: 0 0 12px; }
.about-hero p { max-width: 640px; margin: 0 auto; opacity: 0.92; font-size: 1.05rem; }

.about-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 24px;
}
.about-grid img { border-radius: 12px; width: 100%; object-fit: cover; }
.about-text h2 { color: var(--brand); font-size: 1.9rem; margin: 0 0 16px; }
.about-text p { color: var(--text-muted); line-height: 1.7; margin: 0 0 16px; font-size: 0.95rem; }

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 24px 64px;
  text-align: center;
}
.stat-item .stat-num { font-size: 2.4rem; font-weight: 800; color: var(--brand); }
.stat-item .stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 6px; }

.values-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.value-card .why-icon { margin-bottom: 16px; }
.value-card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.value-card p { margin: 0; color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

.team-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  padding-bottom: 24px;
}
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--brand-light2);
  color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.6rem;
  margin: 28px auto 16px;
}
.team-card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.team-card .team-role { color: var(--brand); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.team-card p { margin: 0 24px; color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
