/* ============================================
   BRENTACAR — Main Stylesheet
   Colors: Metallic Blue & Silver
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --blue-dark:    #0F2540;
  --blue-mid:     #1E3A5F;
  --blue-main:    #2E6DA4;
  --blue-bright:  #4A90D9;
  --blue-light:   #A8C8E8;
  --blue-pale:    #D6E8F5;

  --silver-dark:  #8A9BAD;
  --silver-mid:   #B8C9D8;
  --silver-light: #D8E4EE;
  --silver-pale:  #EEF4F9;
  --white:        #FFFFFF;

  --gradient-main: linear-gradient(135deg, #2E6DA4 0%, #4A90D9 50%, #7AB8E8 100%);
  --gradient-dark: linear-gradient(135deg, #0F2540 0%, #1E3A5F 60%, #2E6DA4 100%);
  --gradient-silver: linear-gradient(135deg, #C0D0E0 0%, #E8EEF4 50%, #D0DCE8 100%);

  --shadow-sm:  0 2px 8px #0F254014;
  --shadow-md:  0 8px 24px #0F254023;
  --shadow-lg:  0 20px 60px #0F254038;
  --shadow-xl:  0 32px 80px #0F254047;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;

}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--blue-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; border: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--silver-pale); }
::-webkit-scrollbar-thumb { background: var(--blue-main); border-radius: 3px; }

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--silver-dark); font-size: .95rem; }

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: 0 4px 20px #2E6DA466;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #2E6DA48C;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid #FFFFFF8C;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: #FFFFFF1F;
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-main);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm { padding: 8px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: #0A1825EB;
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 30px #00000040;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.logo img{
  width: 80px;
}
.logo-b {
  color: var(--blue-bright);
  font-size: 1.7rem;
}
.logo-white { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: #FFFFFFCC;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-bright);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO — SPLIT LAYOUT
   ============================================ */
.hero {
  min-height: auto;
  background: var(--gradient-dark);
  display: flex;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* navbar height */
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 35% 50%, #4A90D92E 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 85% 80%, #2E6DA426 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ─── Left Panel (Slider) ───────────────────────── */
.hero-left {
  flex: 0 0 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 32px 0px;
}

.hero-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 48px 24px;
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
  transform: translateX(20px);
}
.hero-slide.active  { opacity: 1;  transform: translateX(0); }
.hero-slide.exit    { opacity: 0;  transform: translateX(-20px); }


/* Full-bleed slide background photo */
.hs-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hs-content { 
  position: relative; 
  z-index: 2;
  background-color: rgba(192, 192, 192, 0.063); /* gris plata translúcido */
  border-radius: 8px;
  backdrop-filter: blur(4px);
  padding: 20px;
}

.hs-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: #4A90D940;
  border: 1px solid #4A90D980;
  border-radius: 100px;
  color: var(--blue-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hs-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.5px;
  display: hidden;
}
.hs-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs-desc {
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 400px;  
  
}
.hs-desc strong { color: var(--white); }

.hs-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF99;
  line-height: 1;
}
.hs-price span {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
}

.hs-code {
  display: inline-block;
  background: #FFFFFF1A;
  border: 2px dashed #FFFFFF66;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .2em;
  padding: 10px 28px;
  border-radius: var(--radius-sm);
}

/* Decorative car art — no longer used */

/* Slider navigation row — now overlaid at bottom of slider */
.hs-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: linear-gradient(to top, #00000073 0%, transparent 100%);
}

.hs-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #FFFFFF1A;
  color: var(--white);
  border: 1.5px solid #FFFFFF40;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.hs-btn:hover { background: var(--blue-main); border-color: var(--blue-main); }

.hs-dots { display: flex; gap: 8px; }
.hs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FFFFFF4D;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.hs-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* ─── Right Panel (Booking Form) ────────────────── */
.hero-right {
  flex: 0 0 50%;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px;
  position: relative;
  z-index: 2;
  overflow-y: auto;
}

.hero-booking-card {
  background: #FFFFFFF7;
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 100%;
}

.hero-booking-header {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--silver-light);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 13px;
  background: #2E6DA419;
  border: 1px solid #2E6DA440;
  border-radius: 100px;
  color: var(--blue-main);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.hero-booking-title {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  color: var(--blue-dark);
  margin-bottom: 6px;
  letter-spacing: -.5px;
}

.hero-booking-sub {
  font-size: .84rem;
  color: var(--silver-dark);
  line-height: 1.6;
}

.booking-form-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-form-title::before {
  content: '';
  width: 4px; height: 16px;
  background: var(--gradient-main);
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
}

.booking-form-vert {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-form-vert .search-btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

/* Form layout helpers */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.form-row-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.form-section-label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--blue-main);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-top: 6px;
  border-top: 1px solid var(--silver-light);
  margin-top: 2px;
}

.hs-fleet-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--blue-main);
  font-size: .84rem;
  font-weight: 600;
  transition: var(--transition);
}
.hs-fleet-link:hover { color: var(--blue-bright); }

/* ─── Shared Form Inputs ─────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 5px;
}
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--blue-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.req {
  color: #e53e3e;
  margin-left: 2px;
  font-weight: 700;
}
.extras-dropdown {
  position: relative;
}
.extras-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: var(--silver-pale);
  border: 1.5px solid var(--silver-light);
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text-main, #1a2744);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s;
}
.extras-trigger:focus,
.extras-dropdown.open .extras-trigger {
  border-color: var(--blue-main, #1a2744);
  outline: none;
}
.extras-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--blue-mid, #4a5568);
  transition: transform .2s;
}
.extras-dropdown.open .extras-arrow {
  transform: rotate(180deg);
}
.extras-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--silver-light, #dde3ee);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  padding: 8px 4px;
  z-index: 50;
}
.extras-dropdown.open .extras-panel {
  display: block;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-main, #1a2744);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  border-radius: 6px;
  transition: background .15s;
}
.check-item:hover {
  background: var(--silver-pale, #f5f7fb);
}
.check-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  appearance: checkbox;
  -webkit-appearance: checkbox;
  accent-color: var(--blue-main, #1a2744);
  cursor: pointer;
  flex-shrink: 0;
}
.form-disclaimer {
  font-size: .7rem;
  font-weight: normal;
  color: #888;
  margin-top: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: var(--silver-pale);
  border: 1.5px solid var(--silver-light);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--blue-dark);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-main);
  background: var(--white);
  box-shadow: 0 0 0 3px #2E6DA41F;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232E6DA4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.search-btn { height: 48px; }

/* ============================================
   FLEET
   ============================================ */
.fleet {
  padding: 40px 0 100px;
  background: var(--silver-pale);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { color: var(--blue-dark); margin-bottom: 12px; }
.section-header p { max-width: 520px; margin: 0 auto; font-size: 1rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: #FFFFFFA6; }
.section-header.light .section-tag { color: var(--blue-light); border-color: #A8C8E84D; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-main);
  border: 1px solid #2E6DA44D;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-mid);
  background: var(--white);
  border: 1.5px solid var(--silver-light);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-main);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px #2E6DA44D;
}

/* Cars Grid */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.car-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--silver-light);
  position: relative;
  transition: var(--transition);
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.car-card.hidden { display: none; }

.car-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gradient-main);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 2;
}
.car-badge.sedan   { background: linear-gradient(135deg, #e67e22, #f39c12); }
.car-badge.suv    { background: linear-gradient(135deg, #8e44ad, #9b59b6); }
.car-badge.pickup       { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.car-badge.microbus    { background: linear-gradient(135deg, #c0392b, #e74c3c); }

.car-img-wrap {
  height: 200px;
  background: var(--gradient-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.car-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.car-card:hover .car-photo {
  transform: scale(1.06);
}

/* SVG Car Illustrations */
.car-svg {
  width: 90%;
  height: 120px;
  position: relative;
}

/* Economy car (sedan silhouette) */
.car-svg.economy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 120'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%232E6DA4'/%3E%3Cstop offset='1' stop-color='%234A90D9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='20' y='65' width='260' height='35' rx='8' fill='url(%23g1)'/%3E%3Cpath d='M50 65 Q60 35 90 30 L210 30 Q240 35 250 65Z' fill='%231E3A5F'/%3E%3Ccircle cx='75' cy='100' r='18' fill='%230F2540' stroke='%23C0C0C0' stroke-width='3'/%3E%3Ccircle cx='75' cy='100' r='10' fill='%23C0D0E0'/%3E%3Ccircle cx='225' cy='100' r='18' fill='%230F2540' stroke='%23C0C0C0' stroke-width='3'/%3E%3Ccircle cx='225' cy='100' r='10' fill='%23C0D0E0'/%3E%3Crect x='95' y='33' width='110' height='28' rx='4' fill='%23A8C8E8' opacity='.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* SUV silhouette */
.car-svg.suv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 120'%3E%3Cdefs%3E%3ClinearGradient id='g2' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%231E3A5F'/%3E%3Cstop offset='1' stop-color='%232E6DA4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='15' y='60' width='270' height='40' rx='6' fill='url(%23g2)'/%3E%3Cpath d='M40 60 Q48 25 75 20 L225 20 Q252 25 260 60Z' fill='%230F2540'/%3E%3Ccircle cx='75' cy='100' r='18' fill='%230a1929' stroke='%23B8C9D8' stroke-width='3'/%3E%3Ccircle cx='75' cy='100' r='10' fill='%23C0D0E0'/%3E%3Ccircle cx='225' cy='100' r='18' fill='%230a1929' stroke='%23B8C9D8' stroke-width='3'/%3E%3Ccircle cx='225' cy='100' r='10' fill='%23C0D0E0'/%3E%3Crect x='80' y='23' width='140' height='32' rx='4' fill='%234A90D9' opacity='.35'/%3E%3C/svg%3E") center/contain no-repeat;
}

.car-svg.suv2::after { content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 120'%3E%3Cdefs%3E%3ClinearGradient id='g3' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%231a3a5c'/%3E%3Cstop offset='1' stop-color='%23356fa0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='10' y='58' width='280' height='42' rx='7' fill='url(%23g3)'/%3E%3Cpath d='M35 58 Q45 22 80 17 L220 17 Q255 22 265 58Z' fill='%230d2037'/%3E%3Ccircle cx='78' cy='100' r='19' fill='%230a1929' stroke='%23B8C9D8' stroke-width='3'/%3E%3Ccircle cx='78' cy='100' r='10' fill='%23C0D0E0'/%3E%3Ccircle cx='222' cy='100' r='19' fill='%230a1929' stroke='%23B8C9D8' stroke-width='3'/%3E%3Ccircle cx='222' cy='100' r='10' fill='%23C0D0E0'/%3E%3Crect x='85' y='20' width='130' height='33' rx='4' fill='%234A90D9' opacity='.3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.car-svg.luxury::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 120'%3E%3Cdefs%3E%3ClinearGradient id='gl' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%238e44ad'/%3E%3Cstop offset='1' stop-color='%232E6DA4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='25' y='68' width='250' height='32' rx='6' fill='url(%23gl)'/%3E%3Cpath d='M55 68 Q65 38 100 33 L200 33 Q235 38 245 68Z' fill='%231a0a2e'/%3E%3Ccircle cx='80' cy='100' r='17' fill='%231a0a2e' stroke='%23C0C0C0' stroke-width='3'/%3E%3Ccircle cx='80' cy='100' r='9' fill='%23D0D8E8'/%3E%3Ccircle cx='220' cy='100' r='17' fill='%231a0a2e' stroke='%23C0C0C0' stroke-width='3'/%3E%3Ccircle cx='220' cy='100' r='9' fill='%23D0D8E8'/%3E%3Crect x='105' y='36' width='90' height='27' rx='3' fill='%23A8C8E8' opacity='.4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.car-svg.luxury2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 120'%3E%3Cdefs%3E%3ClinearGradient id='gl2' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23222'/%3E%3Cstop offset='1' stop-color='%232E6DA4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='22' y='66' width='256' height='34' rx='7' fill='url(%23gl2)'/%3E%3Cpath d='M52 66 Q62 36 98 31 L202 31 Q238 36 248 66Z' fill='%23111'/%3E%3Ccircle cx='78' cy='100' r='18' fill='%23111' stroke='%23C8C8C8' stroke-width='3'/%3E%3Ccircle cx='78' cy='100' r='9' fill='%23D8E0E8'/%3E%3Ccircle cx='222' cy='100' r='18' fill='%23111' stroke='%23C8C8C8' stroke-width='3'/%3E%3Ccircle cx='222' cy='100' r='9' fill='%23D8E0E8'/%3E%3Crect x='103' y='34' width='94' height='27' rx='3' fill='%234A90D9' opacity='.35'/%3E%3C/svg%3E") center/contain no-repeat;
}

.car-svg.electric::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 120'%3E%3Cdefs%3E%3ClinearGradient id='ge' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%2327ae60'/%3E%3Cstop offset='1' stop-color='%232E6DA4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='20' y='64' width='260' height='34' rx='7' fill='url(%23ge)'/%3E%3Cpath d='M48 64 Q58 32 92 27 L208 27 Q242 32 252 64Z' fill='%230d2037'/%3E%3Ccircle cx='75' cy='98' r='18' fill='%230a1929' stroke='%232ecc71' stroke-width='3'/%3E%3Ccircle cx='75' cy='98' r='9' fill='%23D0F0D8'/%3E%3Ccircle cx='225' cy='98' r='18' fill='%230a1929' stroke='%232ecc71' stroke-width='3'/%3E%3Ccircle cx='225' cy='98' r='9' fill='%23D0F0D8'/%3E%3Crect x='97' y='30' width='106' height='30' rx='4' fill='%2327ae60' opacity='.25'/%3E%3Cpath d='M148 40 l-8 14 h8 l-8 14' stroke='%232ecc71' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.car-info { padding: 24px; }
.car-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.car-rating { color: #f0a800; font-size: .85rem; }
.car-desc { font-size: .85rem; color: var(--silver-dark); margin-bottom: 16px; }

.car-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.car-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue-mid);
  background: var(--blue-pale);
  padding: 4px 10px;
  border-radius: 100px;
}
.car-specs svg {
  width: 14px; height: 14px;
  stroke: var(--blue-main);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.car-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--silver-light);
}
.car-price { display: flex; align-items: baseline; gap: 3px; }
.price-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-dark);
}
.price-per { font-size: .8rem; color: var(--silver-dark); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, #4A90D91F 0%, transparent 70%);
  pointer-events: none;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step-card {
  flex: 1;
  background: #FFFFFF0D;
  border: 1px solid #FFFFFF1A;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.step-card:hover {
  background: #4A90D91F;
  border-color: #4A90D966;
  transform: translateY(-4px);
}

.step-icon {
  width: 72px; height: 72px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px #2E6DA466;
}
.step-icon svg {
  width: 32px; height: 32px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #FFFFFF0F;
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  pointer-events: none;
}

.step-card h3 { color: var(--white); margin-bottom: 12px; }
.step-card p { color: #FFFFFF99; font-size: .9rem; }

.step-connector {
  flex: 0 0 48px;
  height: 2px;
  background: linear-gradient(90deg, #4A90D980, #4A90D933);
  margin-top: 80px;
  position: relative;
}
.step-connector::after {
  content: '▶';
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  color: var(--blue-bright);
  font-size: .65rem;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-tag { margin-bottom: 16px; }
.why-text h2 { color: var(--blue-dark); margin-bottom: 16px; }
.why-text > p { margin-bottom: 40px; font-size: 1rem; }

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 36px; height: 36px;
  background: var(--gradient-main);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px #2E6DA44D;
}
.feature-item h4 { color: var(--blue-dark); margin-bottom: 4px; }
.feature-item p { font-size: .85rem; }

/* Why Visual */
.why-visual {
  position: relative;
  height: 420px;
}

.why-visual .logos {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.why-visual .logos img {
  width: 100%;
  max-width: 170px;
  height: 70px;
  object-fit: contain;
  padding: 10px 12px;
  border: 1.5px solid var(--silver-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  opacity: .85;
  transition: var(--transition);
}

.visual-card {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--silver-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  white-space: nowrap;
}
.why-visual .logos img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

.vc-icon { font-size: 1.8rem; }
.vc-text { display: flex; flex-direction: column; }
.vc-text strong { font-size: 1.1rem; font-weight: 800; color: var(--blue-dark); }
.vc-text span { font-size: .78rem; color: var(--silver-dark); }

.main-card {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-dark);
  border-color: transparent;
  z-index: 2;
}
.main-card .vc-text strong,
.main-card .vc-text span { color: var(--white); }
.main-card .vc-text span { color: #FFFFFFA6; }

.side-card-1 { top: 60px; left: 0; }
.side-card-2 { bottom: 60px; right: 0; }

.visual-blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  background: radial-gradient(ellipse, #4A90D91F 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--gradient-dark);
  overflow: hidden;
}

.testimonials .container {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  width: 100%;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  background: #FFFFFF0F;
  border: 1px solid #FFFFFF1A;
  border-radius: var(--radius-md);
  padding: 36px;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: #FFFFFF1A;
  border-color: #4A90D966;
}

.stars { color: #f0a800; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-card p {
  color: #FFFFFFBF;
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer strong { display: block; color: var(--white); font-size: .95rem; }
.reviewer span { font-size: .78rem; color: #FFFFFF73; }

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.t-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #FFFFFF14;
  color: var(--white);
  font-size: 1.1rem;
  border: 1.5px solid #FFFFFF33;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-nav-btn:hover {
  background: var(--blue-main);
  border-color: var(--blue-main);
}

.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FFFFFF40;
  cursor: pointer;
  transition: var(--transition);
}
.t-dot.active {
  background: var(--blue-bright);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  padding: 64px 0;
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, #FFFFFF1A 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 0% 50%, #0000001A 0%, transparent 60%);
}

.promo-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.promo-text h2 { color: var(--white); margin-bottom: 8px; }
.promo-text p { color: #FFFFFFCC; font-size: 1rem; }
.promo-text strong { color: var(--white); }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--silver-pale);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item h4 { color: var(--blue-dark); margin-bottom: 4px; }
.contact-item p { font-size: .88rem; line-height: 1.6; }

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 22px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 8px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 18px #25D36659;
}
.contact-wa-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.contact-wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px #25D36673; }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--silver-light);
}

/* ─── WhatsApp floating button ─────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 9000;
  box-shadow: 0 4px 20px #25D36680;
  transition: background .25s, transform .2s, box-shadow .25s;
  animation: waPopIn .5s ease 1s both;
}
.wa-fab svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-fab:hover { background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 8px 28px #25D36699; }
.wa-fab-label { white-space: nowrap; }
@keyframes waPopIn {
  from { opacity: 0; transform: scale(.6) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--silver-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--blue-dark);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand p {
  color: #FFFFFF80;
  font-size: .88rem;
  margin: 16px 0 24px;
  line-height: 1.7;
}

.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: #FFFFFF12;
  border: 1px solid #FFFFFF1A;
  color: #FFFFFFB3;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--blue-main);
  border-color: var(--blue-main);
  color: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: #FFFFFF80;
  font-size: .88rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--blue-bright); }

.footer-bottom {
  border-top: 1px solid #FFFFFF14;
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { color: #FFFFFF4D; font-size: .82rem; }

/* ============================================
   PARTICLES (decorative dots)
   ============================================ */
.particle {
  position: absolute;
  border-radius: 50%;
  background: #4A90D94D;
  animation: floatParticle linear infinite;
  pointer-events: none;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .5; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 280px; }
  .why-visual .logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-content: start;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0A1825F7;
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.4rem; }

  /* Hero split: stack vertically on mobile */
  .hero-split { flex-direction: column; min-height: auto; }
  .hero-right { flex: 0 0 auto; width: 100%; max-height: none; overflow-y: visible; padding: 32px 20px; justify-content: center; align-items: center; }
  .hero-left  { flex: 0 0 420px; width: 100%; }
  .hero-booking-card { max-width: 100%; }
  .hs-nav { padding: 14px 20px; }
  .hero-slide { padding: 36px 28px 28px; }

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

  .steps-grid { flex-direction: column; gap: 20px; }
  .step-connector { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .form-row-4 { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-map { height: 280px; }
  .wa-fab-label { display: none; }
  .wa-fab { padding: 14px; border-radius: 50%; }

  .promo-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-right { padding: 32px 14px 14px; }
  .hero-booking-card { padding: 24px 18px; }
  .form-row-4 { grid-template-columns: 1fr; }
  .why-visual .logos { height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-visual { height: auto; }
  .testimonial-card { padding: 24px; }
  .contact-map { height: 220px; }
  .wa-fab { bottom: calc(16px + env(safe-area-inset-bottom, 0px)); right: 16px; left: auto; }
  .hs-title { font-size: 1.8rem; }
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--gradient-main);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
