/* ============================================
   KM CAR - Premium Car Rental Homepage
   Inspired by MabroukaCar - Clean & Professional
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* --- Colors --- */
:root {
  --primary: #fac74f;
  --primary-dark: #004494;
  --gold: #C9A84C;
  --dark: #1a1a2e;
  --gray-900: #212529;
  --gray-700: #495057;
  --gray-500: #6c757d;
  --gray-300: #dee2e6;
  --gray-100: #f8f9fa;
  --white: #ffffff;
}

.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(250, 199, 79, 0.3);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--gray-300);
}

.btn--outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--lg { padding: 0.9rem 2.25rem; font-size: 0.95rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in { animation: fadeIn 0.7s ease forwards; }
.animate-slide-up { animation: slideUp 0.7s ease forwards; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* --- Section Utils --- */
.section-header { text-align: center; margin-bottom: 3rem; }

.section-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.section-label--light { color: rgba(255,255,255,0.8); }

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

.section-title--left { text-align: left; }
.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  margin-top: 0.6rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  transition: all 0.3s ease;
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.55rem 0;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.header__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo-img {
  height: 80px;
  width: auto;
  transition: height 0.3s ease;
}

.header.is-scrolled .header__logo-img { height: 70px; }

.header__nav-list { display: flex; gap: 1.75rem; }

.header__nav-link {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  position: relative;
  padding: 0.2rem 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link.active { color: var(--white); }
.header__nav-link:hover::after,
.header__nav-link.active::after { width: 100%; }

.header.is-scrolled .header__nav-link { color: var(--gray-700); }
.header.is-scrolled .header__nav-link:hover,
.header.is-scrolled .header__nav-link.active { color: var(--primary); }

.header__actions { display: flex; align-items: center; gap: 0.75rem; }

.header__cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header.is-scrolled .header__hamburger span { background-color: var(--dark); }

.header__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.header__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 999;
  transition: right 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.mobile-menu.is-open { right: 0; }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-menu__link {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.3s ease;
}

.mobile-menu__link:hover { color: var(--primary); }

.mobile-menu__cta { padding: 0.9rem 2rem; font-size: 0.95rem; }

/* ============================================
   HERO + BOOKING (integres)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,26,0.3) 0%, rgba(10,10,26,0.5) 50%, rgba(10,10,26,0.85) 100%);
  z-index: 1;
}

/* Animated particles container */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 10rem;
}

.hero__content {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Hero Logo */
.hero__logo-wrap {
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero__logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero__logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 30px rgba(201,168,76,0.5));
}

.hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero badges */
.hero__badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  stroke: #C9A84C;
}

.hero__badge:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Booking Form */
.hero__booking {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 1100px;
  margin: 0 auto;
}

.hero__booking-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero__booking-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.hero__booking-subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.2rem;
}

.hero__booking-fields {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
}

.hero__booking-field { display: flex; flex-direction: column; }

.hero__booking-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.hero__booking-label svg {
  width: 13px;
  height: 13px;
  color: var(--primary);
}

.hero__booking-field select,
.hero__booking-field input {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--dark);
  background-color: var(--gray-100);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}

.hero__booking-field select:focus,
.hero__booking-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(250, 199, 79, 0.1);
  background-color: var(--white);
}

.hero__booking-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: fit-content;
}

.hero__booking-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(250, 199, 79, 0.3);
}

.hero__booking-btn svg { width: 16px; height: 16px; }

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 3.5rem 0;
  background-color: var(--gray-100);
}

.stats__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stats__item { text-align: center; }

.stats__number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  display: inline;
}

.stats__suffix {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stats__label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--gray-300);
}

.trust__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust__item { text-align: center; padding: 1rem; }

.trust__icon { width: 44px; height: 44px; margin: 0 auto 0.75rem; display: flex; align-items: center; justify-content: center; }
.trust__icon svg { width: 32px; height: 32px; color: var(--primary); }

.trust__title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.trust__text { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }

/* ============================================
   VEHICLES
   ============================================ */
.vehicles { padding: 4.5rem 0; }

.vehicles__container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

.vehicles__filters {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.vehicles__filter {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  background-color: var(--gray-100);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vehicles__filter:hover { color: var(--dark); background-color: var(--gray-300); }
.vehicles__filter.active { background-color: var(--primary); color: var(--white); }

.vehicles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vehicle-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-300);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.vehicle-card.is-hidden { display: none; }

.vehicle-card__image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background-color: var(--gray-100);
}

.vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-card__image img { transform: scale(1.04); }

.vehicle-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  background-color: var(--primary);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.vehicle-card__body { padding: 1rem 1.25rem 1.25rem; }

.vehicle-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.vehicle-card__specs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-300);
}

.vehicle-card__spec {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.73rem;
  color: var(--gray-500);
}

.vehicle-card__spec svg { width: 13px; height: 13px; }

.vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vehicle-card__price {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.vehicle-card__price strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ============================================
   WHY KM CAR
   ============================================ */
.why { padding: 4.5rem 0; background-color: var(--gray-100); }

.why__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.why__image { border-radius: 12px; overflow: hidden; }
.why__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

.why__text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 1.25rem; }

.why__list { margin-bottom: 1.75rem; }

.why__list-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-900);
  font-weight: 500;
}

.why__check { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 4.5rem 0; }

.services__container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(250, 199, 79, 0.08);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.service-card__icon svg { width: 24px; height: 24px; color: var(--primary); }

.service-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-card__text { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1rem; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.3s ease;
}

.service-card__link:hover { gap: 0.55rem; }
.service-card__link svg { width: 14px; height: 14px; }

/* ============================================
   AIRPORT
   ============================================ */
.airport {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.airport__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,40,85,0.92) 0%, rgba(0,30,60,0.85) 100%);
  z-index: 1;
}

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

.airport__container { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.airport__content { max-width: 560px; }

.airport__text { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; line-height: 1.7; }

.airport__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.airport__item { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.85); font-size: 0.88rem; }

.airport__pin { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ============================================
   PROCESS
   ============================================ */
.process { padding: 4.5rem 0; background-color: var(--gray-100); }

.process__container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0.5rem;
}

.process__step { text-align: center; position: relative; }

.process__number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(250, 199, 79, 0.12);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.process__line { width: 36px; height: 3px; background-color: var(--primary); margin: 0.6rem auto 0.75rem; border-radius: 2px; }

.process__step-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.process__step-text { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   BRAND STATEMENT
   ============================================ */
.brand { padding: 5rem 0; background-color: var(--dark); }

.brand__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.brand__label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.brand__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.brand__text { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

.brand__image { border-radius: 12px; overflow: hidden; }
.brand__image img { width: 100%; border-radius: 12px; object-fit: cover; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 4.5rem 0; }

.testimonials__container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.testimonials__slider { overflow: hidden; position: relative; }

.testimonials__track { display: flex; transition: transform 0.5s ease; }

.testimonial-card {
  min-width: calc(33.333% - 1rem);
  flex-shrink: 0;
  margin-right: 1.5rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-300);
}

.testimonial-card__stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }

.testimonial-card__quote {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card__author { display: flex; align-items: center; gap: 0.65rem; }

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__name {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-card__role { font-size: 0.75rem; color: var(--gray-500); }

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.testimonials__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials__btn:hover { background-color: var(--primary); border-color: var(--primary); color: var(--white); }
.testimonials__btn svg { width: 16px; height: 16px; }

.testimonials__dots { display: flex; gap: 0.4rem; }

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gray-300);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonials__dot.is-active { background-color: var(--primary); }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final { padding: 4.5rem 0; background-color: var(--gray-100); }

.cta-final__container { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }

.cta-final__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.cta-final__text { font-size: 1rem; color: var(--gray-500); margin-bottom: 1.75rem; line-height: 1.7; }

.cta-final__buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 4.5rem 0; }

.faq__container { max-width: 740px; margin: 0 auto; padding: 0 1.5rem; }

.faq__list { display: flex; flex-direction: column; gap: 0.6rem; }

.faq__item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-300);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq__question:hover { color: var(--primary); }

.faq__chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--gray-500); }
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__item.is-open .faq__answer { max-height: 150px; }

.faq__answer p { padding: 0 1.25rem 1rem; font-size: 0.85rem; color: var(--gray-500); line-height: 1.7; }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 4.5rem 0; background-color: var(--gray-100); }

.contact__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact__text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 1.75rem; }

.contact__details { display: flex; flex-direction: column; gap: 1rem; }

.contact__detail { display: flex; align-items: flex-start; gap: 0.75rem; }

.contact__detail svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.contact__detail strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.1rem;
}

.contact__detail a, .contact__detail span { font-size: 0.85rem; color: var(--gray-500); }
.contact__detail a:hover { color: var(--primary); }

.contact__form-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--gray-300);
}

.contact__form-group { margin-bottom: 1rem; }

.contact__form-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--dark);
  background-color: var(--gray-100);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(250, 199, 79, 0.1);
  background-color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background-color: var(--dark); padding-top: 3.5rem; }

.footer__container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo { height:88px; width: auto; margin-bottom: 0.75rem; }

.footer__brand-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 260px;
}

.footer__social { display: flex; gap: 0.6rem; }

.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__social-link:hover { background-color: var(--primary); border-color: var(--primary); }
.footer__social-link svg { width: 14px; height: 14px; color: rgba(255,255,255,0.6); }
.footer__social-link:hover svg { color: var(--white); }

.footer__col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer__links li { margin-bottom: 0.5rem; }

.footer__links a, .footer__links span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.footer__links a:hover { color: var(--primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.footer__copyright { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

.footer__legal { display: flex; gap: 1.25rem; }

.footer__legal a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.3s ease; }
.footer__legal a:hover { color: var(--primary); }

/* ============================================
   WHATSAPP
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
.whatsapp-btn svg { width: 26px; height: 26px; color: var(--white); }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1199px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .vehicles__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonial-card { min-width: calc(50% - 0.75rem); }
}

@media (max-width: 991px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }

  .hero__logo { height: 70px; }
  .hero__booking-fields { grid-template-columns: 1fr 1fr; }
  .hero__booking-btn { grid-column: span 2; }

  .trust__container { grid-template-columns: repeat(2, 1fr); }
  .why__container { grid-template-columns: 1fr; gap: 2rem; }
  .airport__list { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; gap: 2rem; }
  .brand__container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .brand__content { display: flex; flex-direction: column; align-items: center; }
  .contact__container { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
  .hero { min-height: auto; align-items: flex-start; }
  .hero__container { padding-top: 100px; padding-bottom: 2rem; }
  .hero__title { font-size: 1.75rem; }
  .hero__logo { height: 60px; }
  .hero__badges { gap: 0.5rem; }
  .hero__badge { padding: 0.4rem 0.75rem; font-size: 0.72rem; }
  .hero__booking { padding: 1.25rem; border-radius: 12px; margin: 0 -0.5rem; }
  .hero__booking-fields { grid-template-columns: 1fr; }
  .hero__booking-btn { grid-column: span 1; }

  .stats__container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stats__number { font-size: 1.75rem; }

  .trust__container { grid-template-columns: 1fr; gap: 0.75rem; }

  .vehicles__filters { gap: 0.3rem; }
  .vehicles__filter { padding: 0.35rem 0.8rem; font-size: 0.75rem; }
  .vehicles__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .services__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .airport { min-height: auto; padding: 3.5rem 0; }

  .brand__container { text-align: center; }

  .testimonial-card { min-width: 100%; margin-right: 0; }

  .cta-final__buttons { flex-direction: column; align-items: center; }

  .footer__main { grid-template-columns: 1fr; gap: 1.75rem; text-align: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__brand-text { max-width: 100%; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

  .whatsapp-btn { bottom: 1rem; right: 1rem; width: 48px; height: 48px; }
  .whatsapp-btn svg { width: 22px; height: 22px; }
}

@media print {
  .header, .whatsapp-btn, .mobile-menu { display: none; }
  .hero { min-height: auto; padding-top: 1rem; }
  .animate-on-scroll { opacity: 1; transform: none; }
}