/* =============================================
   TRAYECTIS — Static Frontend Replica
   styles.css — v1.0
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  /* Brand Colors */
  --color-primary:    #0DB14B;
  --color-dark:       #2F352F;
  --color-hover:      #158246;
  --color-whatsapp:   #25D366;
  --color-bg-light:   #F6F7F6;
  --color-text:       #223225;
  --color-white:      #ffffff;

  /* Typography */
  --font-title: 'Oswald', sans-serif;
  --font-body:  'Roboto Condensed', sans-serif;

  /* Layout */
  --header-height: 80px;
  --container-max: 1200px;

  /* Transitions & Effects */
  --transition:    0.3s ease;
  --radius:        4px;
  --radius-lg:     10px;
  --shadow:        0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.25);
  --shadow-card:   0 2px 16px rgba(0,0,0,0.07);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

address { font-style: normal; }

/* =============================================
   UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-1px);
}

/* Section typography */
.section-intro {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title span { color: var(--color-primary); }

.section-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #556655;
  line-height: 1.75;
}

/* =============================================
   HEADER
   ============================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: transparent;
  transition: background-color var(--transition), box-shadow var(--transition),
              backdrop-filter var(--transition);
}

#header.scrolled {
  background-color: var(--color-dark);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

/* Logo */
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 46px;
  width: auto;
  transition: opacity var(--transition);
}
.header-logo:hover img { opacity: 0.85; }

/* ---- Navigation ---- */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 8px 13px;
  font-family: var(--font-title);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--color-primary); }

/* Dropdown */
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background-color: var(--color-dark);
  border-top: 3px solid var(--color-primary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s ease;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-left: 26px;
}

/* ---- Header Right ---- */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  border-radius: 3px;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.25);
  background-color: rgba(255,255,255,0.12);
}

.lang-btn img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
  display: inline-block;
}

/* Social icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all var(--transition);
}
.social-icons a:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.50) 0%,
    rgba(0,0,0,0.30) 50%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
  max-width: 960px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.88;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 110px;
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.45);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.88;
  max-width: 580px;
  margin: 0 auto;
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  display: block;
}

/* =============================================
   BOOKING WIDGET
   ============================================= */
#booking {
  background-color: var(--color-primary);
  padding: 28px 0;
  position: relative;
  z-index: 10;
}

.booking-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
}

.booking-field {
  flex: 1;
  min-width: 150px;
}

.booking-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.88);
  margin-bottom: 6px;
}

.booking-field select,
.booking-field input[type="date"],
.booking-field input[type="time"] {
  width: 100%;
  padding: 9px 13px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background-color: rgba(255,255,255,0.16);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  color: var(--color-white);
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.booking-field select option {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.booking-field select:focus,
.booking-field input:focus {
  outline: none;
  border-color: var(--color-white);
  background-color: rgba(255,255,255,0.24);
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator,
.booking-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.65;
  cursor: pointer;
}

.booking-checkbox {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: -6px;
}

.booking-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.booking-checkbox label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
}

.booking-btn {
  flex-shrink: 0;
  padding: 10px 32px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--color-dark);
  color: var(--color-white);
  border: 2px solid var(--color-dark);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-btn:hover {
  background-color: transparent;
  border-color: var(--color-white);
}

/* =============================================
   WHY TRAYECTIS
   ============================================= */
#why {
  background-color: var(--color-bg-light);
  padding: 88px 0;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}
.why-header .section-text {
  margin: 0 auto;
  max-width: 580px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

.feature-card {
  text-align: center;
  padding: 36px 28px;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-bottom-color: var(--color-primary);
}

.feature-icon {
  width: 68px;
  height: 68px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.55rem;
  color: var(--color-white);
  transition: background-color var(--transition), transform var(--transition);
}
.feature-card:hover .feature-icon {
  background-color: var(--color-hover);
  transform: scale(1.08) rotate(-4deg);
}

.feature-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #667766;
  line-height: 1.65;
}

.why-cta { text-align: center; }

/* =============================================
   VEHICLES
   ============================================= */
#vehicles {
  padding: 88px 0;
  background-color: var(--color-white);
}

.vehicles-header {
  text-align: center;
  margin-bottom: 64px;
}
.vehicles-header .section-text {
  margin: 0 auto;
  max-width: 540px;
}

.vehicle-card {
  display: flex;
  align-items: stretch;
  margin-bottom: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--color-white);
  transition: box-shadow var(--transition);
}
.vehicle-card:last-child { margin-bottom: 0; }
.vehicle-card:hover { box-shadow: var(--shadow-lg); }
.vehicle-card.reverse { flex-direction: row-reverse; }

.vehicle-image {
  flex: 0 0 50%;
  background-color: var(--color-bg-light);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vehicle-image img {
  max-height: 240px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}
.vehicle-card:hover .vehicle-image img { transform: scale(1.05); }

.vehicle-info {
  flex: 0 0 50%;
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vehicle-badge {
  display: inline-block;
  padding: 4px 14px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 3px;
  margin-bottom: 14px;
}

.vehicle-name {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.05;
}

.vehicle-capacity {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.spec-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background-color: var(--color-bg-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text);
  font-weight: 400;
}
.spec-tag i {
  color: var(--color-primary);
  font-size: 0.82rem;
}

.vehicle-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #556655;
  line-height: 1.72;
  margin-bottom: 28px;
}

.vehicle-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =============================================
   ADVANTAGES
   ============================================= */
#advantages { padding: 0; }

.advantage-row {
  display: flex;
  min-height: 400px;
}
.advantage-row.reverse { flex-direction: row-reverse; }

.advantage-image {
  flex: 0 0 50%;
  overflow: hidden;
  position: relative;
}
.advantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.advantage-row:hover .advantage-image img { transform: scale(1.06); }

.advantage-content {
  flex: 0 0 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  padding: 64px 72px;
}
.advantage-content.dark { background-color: var(--color-dark); }

.advantage-inner { max-width: 460px; }

.advantage-number {
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: -4px;
  user-select: none;
}

.advantage-title {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.advantage-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  margin-bottom: 30px;
}

/* =============================================
   REVIEWS
   ============================================= */
#reviews {
  background-color: var(--color-dark);
  padding: 88px 0;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}
.reviews-header .section-title { color: var(--color-white); }
.reviews-header .section-intro { color: rgba(255,255,255,0.55); }

.reviews-slider { position: relative; overflow: hidden; }

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background-color: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition);
}
.review-card:hover {
  background-color: rgba(255,255,255,0.09);
  border-color: var(--color-primary);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--color-primary);
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0.03em;
}

.review-stars {
  display: flex;
  gap: 2px;
}
.review-stars i { color: #FFB800; font-size: 0.82rem; }

.review-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.73);
  line-height: 1.72;
  font-style: italic;
}

/* Slider controls */
.reviews-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}

.review-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.review-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.reviews-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}
.reviews-dot.active {
  background-color: var(--color-primary);
  transform: scale(1.4);
}

/* =============================================
   CTA SECTION
   ============================================= */
#cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(246, 247, 246, 0.86);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 18px;
  line-height: 1.08;
}
.cta-title span { color: var(--color-primary); }

.cta-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #445544;
  line-height: 1.72;
  max-width: 540px;
  margin: 0 auto 40px;
}

.btn-cta {
  padding: 18px 54px;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background-color: var(--color-dark);
  color: rgba(255,255,255,0.78);
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
}
.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-top {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.4fr 1fr 1fr;
  gap: 52px;
}

.footer-logo {
  margin-bottom: 22px;
}
.footer-logo img {
  height: 50px;
  width: auto;
  transition: opacity var(--transition);
}
.footer-logo a:hover img { opacity: 0.85; }

.footer-legal {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}
.footer-contact-item i {
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--color-primary); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 0;
}
.footer-links a::before {
  content: '›';
  color: var(--color-primary);
  font-size: 1.1rem;
  line-height: 1;
}
.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-social { display: flex; flex-direction: column; gap: 11px; }

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  transition: all var(--transition);
}
.footer-social-link .fs-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background-color var(--transition);
  flex-shrink: 0;
}
.footer-social-link:hover { color: var(--color-white); }
.footer-social-link:hover .fs-icon { background-color: var(--color-primary); }

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(13, 177, 75, 0.75);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--color-primary); }

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.65rem;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.42);
  transition: all var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: var(--color-white);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 42px;
  height: 42px;
  background-color: var(--color-dark);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* =============================================
   RESPONSIVE — 1100px
   ============================================= */
@media (max-width: 1100px) {
  .hero-title { font-size: 84px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .vehicle-info { padding: 40px 40px; }

  .advantage-content { padding: 56px 52px; }

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

/* =============================================
   RESPONSIVE — 900px
   ============================================= */
@media (max-width: 900px) {
  :root { --header-height: 68px; }

  .hero-title { font-size: 62px; }
  .hero-subtitle { font-size: 0.95rem; }

  /* Nav mobile */
  .header-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background-color: var(--color-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 2px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .header-nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    border-left: 3px solid var(--color-primary);
    border-radius: 0;
    margin-left: 20px;
    background-color: rgba(255,255,255,0.05);
    box-shadow: none;
    display: none;
  }
  .nav-item.open .dropdown-menu { display: block; }

  /* Vehicles */
  .vehicle-card,
  .vehicle-card.reverse { flex-direction: column; }
  .vehicle-image,
  .vehicle-info { flex: 0 0 100%; }
  .vehicle-image { padding: 36px; min-height: 260px; }
  .vehicle-info { padding: 36px 36px; }

  /* Advantages */
  .advantage-row,
  .advantage-row.reverse { flex-direction: column; }
  .advantage-image,
  .advantage-content { flex: 0 0 100%; }
  .advantage-image { min-height: 280px; }
  .advantage-content { padding: 52px 36px; }

  /* Reviews */
  .review-card { flex: 0 0 calc(50% - 12px); }

  /* Booking */
  .booking-form { flex-direction: column; }
  .booking-field { min-width: 100%; }
  .booking-btn { width: 100%; justify-content: center; }

  /* Social header */
  .social-icons { display: none; }
}

/* =============================================
   RESPONSIVE — 640px
   ============================================= */
@media (max-width: 640px) {
  .hero-title { font-size: 46px; }
  .hero-tagline { font-size: 1rem; }

  .section-title { font-size: 2rem; }
  .cta-title { font-size: 2.2rem; }

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

  .review-card { flex: 0 0 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding: 52px 0 40px; }

  .lang-switcher { display: none; }

  .vehicle-info { padding: 28px 24px; }
  .vehicle-actions { flex-direction: column; }
  .vehicle-actions .btn { width: 100%; }

  .advantage-content { padding: 44px 28px; }
  .advantage-title { font-size: 1.6rem; }

  .btn-cta { padding: 16px 32px; font-size: 0.95rem; }

  .whatsapp-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
