/* ===================================================
   MECAR GROUP – VIP Rent a Car Premium Stylesheet
   =================================================== */

:root {
  --red: #E31837;
  --red-dark: #b8122c;
  --red-glow: rgba(227, 24, 55, 0.35);
  --red-soft: rgba(227, 24, 55, 0.12);
  --bg-deep: #101010;
  --bg-night: #1A1A1A;
  --bg-card: #222222;
  --bg-elevated: #2a2a2a;
  --text-primary: #F5F5F5;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;
  --border: rgba(255, 255, 255, 0.08);
  --border-red: rgba(227, 24, 55, 0.3);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-red: 0 8px 32px var(--red-glow);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 84px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Montserrat', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mecar { color: var(--red); }
.brand-group { color: var(--text-secondary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-red);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-soft);
}

.btn-reserve {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.85rem;
  margin-top: auto;
  font-size: 0.8rem;
}

.btn-reserve:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-whatsapp-submit {
  width: 100%;
  max-width: 480px;
  margin: 2rem auto 0;
  display: flex;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: 1.15rem 2rem;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  animation: btnGlowPulse 2.5s ease-in-out infinite;
}

.btn-whatsapp-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  animation: btnShine 3s ease-in-out infinite;
}

.btn-whatsapp-submit:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

@keyframes btnGlowPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--red-glow); }
  50% { box-shadow: 0 8px 36px var(--red-glow), 0 0 0 4px var(--red-soft); }
}

@keyframes btnShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(16, 16, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 50px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a,
.nav-link-btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after,
.nav-link-btn::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-link-btn:hover { color: var(--red); }

.nav-links a:hover::after,
.nav-link-btn:hover::after { width: 100%; }

.nav-link-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
}

.nav-link-btn::after { display: none; }

.nav-link-btn:hover {
  background: var(--red-soft);
  border-color: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 40%, var(--red-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-night) 100%);
  z-index: 0;
}

.hero-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  top: 20%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-red);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-car-stage {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 16/10;
  perspective: 1400px;
}

.hero-car-ring {
  position: absolute;
  inset: 10%;
  border: 1px solid var(--border-red);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite;
}

.hero-car-ring--inner {
  inset: 18%;
  border-style: dashed;
  border-color: rgba(227, 24, 55, 0.2);
  animation: ringRotate 14s linear infinite reverse;
}

.hero-car-glow {
  position: absolute;
  bottom: 18%; left: 50%;
  transform: translateX(-50%);
  width: 65%; height: 35%;
  background: radial-gradient(ellipse, var(--red-glow) 0%, transparent 70%);
  filter: blur(24px);
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-car-float {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: carFloat 7s ease-in-out infinite;
}

.hero-car-img {
  width: 92%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6));
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-car-shadow {
  position: absolute;
  bottom: 6%; left: 50%;
  transform: translateX(-50%);
  width: 50%; height: 14px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowPulse 7s ease-in-out infinite;
}

@keyframes carFloat {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(20px) translateY(-10px); }
  50% { transform: translateX(0) translateY(-16px); }
  75% { transform: translateX(-20px) translateY(-10px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.45; }
  50% { transform: translateX(-50%) scale(0.8); opacity: 0.25; }
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.section { padding: 5.5rem 0; }

.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 3rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p { color: var(--text-secondary); }

.services-section {
  background: var(--bg-night);
  border-top: 1px solid var(--border);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.service-card {
  flex: 1 1 300px;
  max-width: 370px;
  min-height: 255px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--border-red);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: var(--border-red);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(227, 24, 55, 0.06) 100%);
}

.service-card--featured::before { opacity: 1; }

.service-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--red-soft);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--red);
  border-color: var(--red);
}

.service-icon svg {
  width: 30px; height: 30px;
  color: var(--red);
  transition: color var(--transition);
}

.service-card:hover .service-icon svg { color: #fff; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.reservation-section {
  background: var(--bg-night);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reservation-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select {
  width: 100%;
  min-width: 0;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.form-group input.error,
.form-group select.error { border-color: var(--red); }

.form-group select.highlight {
  animation: fieldHighlight 1.5s ease;
}

@keyframes fieldHighlight {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  30%, 70% { box-shadow: 0 0 0 4px var(--red-soft); border-color: var(--red); }
}

.form-group select option { background: var(--bg-card); color: var(--text-primary); }

.flatpickr-calendar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekdays,
span.flatpickr-weekday,
.flatpickr-day {
  background: var(--bg-card);
  color: var(--text-primary);
}

.flatpickr-day:hover { background: var(--red-soft); border-color: var(--red-soft); }
.flatpickr-day.selected { background: var(--red) !important; border-color: var(--red) !important; }
.flatpickr-day.today { border-color: var(--red); }

.fleet-section { background: var(--bg-deep); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.fleet-card:hover {
  border-color: var(--border-red);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.fleet-card-image {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card-image img { transform: scale(1.06); }

.fleet-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

.fleet-badge--commercial { background: var(--bg-night); border: 1px solid var(--border-red); color: var(--red); }

.fleet-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-card-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.825rem;
  color: var(--text-secondary);
}

.fleet-features svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--red);
}

.agreements-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(227, 24, 55, 0.06), transparent 35%),
    var(--bg-night);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.agreements-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.agreements-section .container {
  position: relative;
  z-index: 1;
}

.agreements-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.agreement-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 1rem;
  min-height: 285px;
  padding: 1.25rem;
  background: linear-gradient(145deg, rgba(42, 42, 42, 0.94), rgba(34, 34, 34, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
}

.agreement-card:hover {
  border-color: var(--border-red);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.agreement-card--featured {
  min-height: 305px;
  padding: 1.45rem;
  background:
    linear-gradient(145deg, rgba(227, 24, 55, 0.2), rgba(34, 34, 34, 0.98) 48%),
    var(--bg-card);
  border-color: var(--border-red);
  box-shadow: 0 18px 50px rgba(227, 24, 55, 0.14);
}

.agreement-logo {
  aspect-ratio: 1;
  width: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.agreement-card--featured .agreement-logo { width: 118px; }

.agreement-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.agreement-content {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.agreement-badge {
  width: fit-content;
  margin-bottom: 0.15rem;
  padding: 0.25rem 0.55rem;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.agreement-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
}

.agreement-card--featured h3 { font-size: clamp(1.22rem, 1.7vw, 1.45rem); }

.agreement-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.corporate-section { background: var(--bg-deep); border-top: 1px solid var(--border); }

.corporate-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-red), transparent);
  margin: 3.5rem 0;
}

.accordion {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover { background: var(--bg-elevated); }

.accordion-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--red);
  transition: transform var(--transition);
}

.accordion-item.active .accordion-icon { transform: rotate(180deg); }

.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-item.active .accordion-panel { max-height: 400px; }

.accordion-panel ul { padding: 0 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.45rem; }

.accordion-panel li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}

.accordion-panel li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  justify-content: center;
  gap: 0.75rem;
  max-width: 1040px;
  margin-inline: auto;
}

.legal-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.legal-link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--red);
}

.legal-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-soft);
}

.reviews-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-track {
  width: 100%;
  max-width: 100%;
  display: flex;
  gap: 1.25rem;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
}

.review-card {
  flex: 0 0 calc(33.333% - 0.85rem);
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  scroll-snap-align: start;
  transition: var(--transition);
}

.review-card:hover { border-color: var(--border-red); transform: translateY(-4px); }

.review-stars { color: #FFB800; font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }

.review-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.review-card footer { display: flex; flex-direction: column; gap: 0.1rem; }
.review-card footer strong { font-size: 0.875rem; }
.review-card footer span { font-size: 0.75rem; color: var(--text-muted); }

.reviews-nav {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.reviews-nav svg { width: 18px; height: 18px; color: var(--text-primary); }

.reviews-nav:hover { background: var(--red); border-color: var(--red); }
.reviews-nav:hover svg { color: #fff; }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.reviews-dot.active { background: var(--red); width: 24px; border-radius: 4px; }

.site-footer { background: var(--bg-night); border-top: 1px solid var(--border); }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-logo {
  height: 58px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.footer-brand .brand-text { display: block; font-size: 1.4rem; margin-bottom: 1rem; }

.footer-brand p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

.footer-contact h3,
.footer-links-col h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-contact ul { display: flex; flex-direction: column; gap: 0.875rem; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-contact a:hover { color: var(--red); }

.footer-legal { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }

.footer-legal button {
  background: none;
  border: none;
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.footer-legal button:hover { color: var(--red); }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--text-secondary);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.7rem 1.25rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}

.instagram-btn svg { width: 18px; height: 18px; }

.instagram-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35); }

.footer-map iframe { display: block; filter: grayscale(40%) contrast(1.1); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: min(560px, 100%);
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition);
  box-shadow: var(--shadow);
}

.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition);
  padding: 0 0.25rem;
}

.modal-close:hover { color: var(--red); }

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.modal-body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1rem 0 0.5rem;
}

.modal-body h3:first-child { margin-top: 0; }

.modal-body h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1rem 0 0.4rem;
}

.modal-list { display: flex; flex-direction: column; gap: 0.45rem; margin: 0.75rem 0; }

.feature-modal-grid,
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-modal-card {
  min-height: 145px;
  padding: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature-modal-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.feature-modal-card p { font-size: 0.84rem; }

.modal-list li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.875rem;
}

.modal-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
}

.modal-note { margin-top: 1rem; font-size: 0.825rem; color: var(--text-muted); }
.modal-note a, .modal-body a { color: var(--red); }
.modal-action { margin-top: 1.25rem; width: 100%; }

.campaign-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  min-height: 170px;
}

.campaign-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red-soft);
  color: var(--red);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.campaign-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.campaign-card p { font-size: 0.85rem; }

.floating-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: whatsappBounce 2.5s ease-in-out infinite;
  transition: transform var(--transition);
}

.floating-whatsapp svg { width: 30px; height: 30px; color: #fff; }
.floating-whatsapp:hover { transform: scale(1.1); }

.floating-whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: whatsappPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(-3deg); }
  75% { transform: translateY(-4px) rotate(3deg); }
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .service-card { max-width: calc(50% - 0.7rem); }
  .agreements-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-card { flex: 0 0 calc(50% - 0.65rem); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg-night);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a,
  .nav-link-btn {
    width: 100%;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }

  .nav-link-btn { border: none; border-bottom: 1px solid var(--border); border-radius: 0; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }

  .hero-car-stage { max-width: 380px; }
  .service-card {
    flex-basis: 100%;
    max-width: 100%;
  }
  .agreements-grid { grid-template-columns: 1fr; }
  .agreement-card,
  .agreement-card--featured {
    grid-template-columns: 88px 1fr;
    grid-template-rows: auto;
    min-height: 0;
    padding: 1rem;
  }
  .agreement-card--featured .agreement-logo,
  .agreement-logo { width: 88px; }
  .feature-modal-grid,
  .campaign-grid {
    grid-template-columns: 1fr;
  }
  .form-grid { grid-template-columns: 1fr; }
  .reservation-form { padding: 1.5rem; }
  .review-card { flex: 0 0 85%; }
  .reviews-nav { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .floating-whatsapp { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .brand-text { font-size: 1.05rem; }
  .brand-logo { height: 42px; }
  .fleet-grid { grid-template-columns: 1fr; }
}
