/* ============================================================
   ETG LIMO — Premium Luxury Limousine Service, Dubai
   Main Stylesheet | style.css
   Author: ETG Web Team
   ============================================================ */

/* ── 1. IMPORTS & VARIABLES ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --black:        #080808;
  --black-2:      #111111;
  --black-3:      #1a1a1a;
  --black-4:      #242424;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-dark:    #9A7A2E;
  --gold-bg:      rgba(201,168,76,0.08);
  --white:        #FFFFFF;
  --white-90:     rgba(255,255,255,0.90);
  --white-70:     rgba(255,255,255,0.70);
  --white-50:     rgba(255,255,255,0.50);
  --white-20:     rgba(255,255,255,0.20);
  --white-10:     rgba(255,255,255,0.10);
  --white-05:     rgba(255,255,255,0.05);
  --gray-100:     #f7f7f7;
  --gray-300:     #d4d4d4;
  --gray-500:     #888888;
  --gray-700:     #444444;
  --overlay:      rgba(8,8,8,0.70);
  --overlay-deep: rgba(8,8,8,0.85);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py:   100px;
  --section-py-sm: 60px;
  --container:    1240px;
  --gutter:       24px;

  /* Effects */
  --transition:      all 0.3s ease;
  --transition-slow: all 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  --shadow-gold:     0 0 40px rgba(201,168,76,0.25);
  --shadow-card:     0 20px 60px rgba(0,0,0,0.5);
  --shadow-btn:      0 8px 30px rgba(201,168,76,0.4);
  --border-gold:     1px solid rgba(201,168,76,0.30);
  --border-subtle:   1px solid rgba(255,255,255,0.08);
  --radius:          4px;
  --radius-lg:       10px;
  --radius-xl:       16px;

  /* Gradients */
  --grad-gold:     linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  --grad-dark:     linear-gradient(180deg, var(--black) 0%, var(--black-3) 100%);
  --grad-hero:     linear-gradient(to bottom, rgba(8,8,8,0.05) 0%, rgba(8,8,8,0.20) 60%, rgba(8,8,8,0.45) 100%);
  --grad-card:     linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.95) 100%);
}

/* ── 2. 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);
  background-color: var(--black);
  color: var(--white-90);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a            { text-decoration: none; color: inherit; transition: var(--transition); }
img          { display: block; max-width: 100%; height: auto; }
ul, ol       { list-style: none; }
button       { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── 3. UTILITY CLASSES ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-py) 0;
}

.section--light {
  background: var(--black-2);
}

.section--darker {
  background: var(--black-3);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--grad-gold);
  margin-bottom: 24px;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── 4. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--black);
  box-shadow: var(--shadow-btn);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.55);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-50);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-btn);
}

.btn-sm {
  padding: 11px 24px;
  font-size: 12px;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 14px;
}

.btn i { font-size: 14px; }

/* ── 5. NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-slow);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(8,8,8,0.97);
  padding: 14px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  font-weight: 900;
  font-family: var(--font-heading);
  letter-spacing: -1px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-70);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-70);
}

.nav-phone i { color: var(--gold); font-size: 12px; }

.nav-phone:hover { color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(8,8,8,0.98);
  border-top: var(--border-gold);
  padding: 24px var(--gutter);
  gap: 0;
}

.nav-mobile a {
  padding: 14px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-70);
  border-bottom: var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); }
.nav-mobile .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ── 6. PAGE HERO (Inner Pages) ── */
.page-hero {
  height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black-2);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero__bg {
  transform: scale(1.04);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 56px;
  width: 100%;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 16px;
}

.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: var(--gold); }
.page-hero__breadcrumb i { font-size: 8px; }

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.page-hero__title span { color: var(--gold); font-style: italic; }

/* ── 7. HERO (Home) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://media.base44.com/images/public/69c53e1d3ab98a3aa1945c76/24f2e8daf_generated_a2935edb.png');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.30);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__label::before,
.hero__label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title .accent {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--white-70);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__stats {
  position: absolute;
  right: 60px;
  bottom: 100px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__stat {
  text-align: right;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-50);
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white-50);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── 8. BOOKING STRIP ── */
.booking-strip {
  background: var(--black-3);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: 0;
  position: relative;
  z-index: 10;
}

.booking-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-gold);
  opacity: 0.4;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  align-items: stretch;
  min-height: 84px;
}

.booking-form__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 24px;
  border-right: var(--border-subtle);
  gap: 5px;
}

.booking-form__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.booking-form__input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  padding: 2px 0;
}

.booking-form__input::placeholder { color: var(--white-50); }

.booking-form__input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.5;
  cursor: pointer;
}

.booking-form__select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 14px;
  width: 100%;
  padding: 2px 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.booking-form__select option { background: var(--black-3); color: var(--white); }

.booking-form__btn {
  background: var(--grad-gold);
  border: none;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 40px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  justify-content: center;
}

.booking-form__btn:hover {
  background: linear-gradient(135deg, #E8C97A, #C9A84C, #9A7A2E);
  box-shadow: var(--shadow-gold);
}

/* ── 9. ABOUT / STATS ── */
.about {
  background: var(--black-2);
}

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

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.9);
}

.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--grad-gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  color: var(--black);
}

.about__badge-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.about__badge-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  padding: 28px 24px;
  background: var(--white-05);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(201,168,76,0.25);
  background: var(--gold-bg);
}

.stat-card__num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-card__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white-70);
  margin-top: 8px;
}

/* ── 10. SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--black-4);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-card {
  background: var(--black-2);
  padding: 48px 44px;
  position: relative;
  transition: var(--transition-slow);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--grad-gold);
  transition: height 0.4s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  background: var(--black-3);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--gold-bg);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card__desc {
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--white-70);
}

.service-card__feat i {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  margin-top: 32px;
  transition: var(--transition);
}

.service-card__link i { transition: transform 0.3s ease; }
.service-card__link:hover { color: var(--gold-light); }
.service-card__link:hover i { transform: translateX(6px); }

/* Full Services Page Grid */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-full-card {
  background: var(--black-2);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
}

.service-full-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-full-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.4s ease;
}

.service-full-card:hover .service-full-card__img {
  filter: brightness(0.9);
}

.service-full-card__body {
  padding: 32px 28px;
}

.service-full-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-bg);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
  margin-top: -52px;
  position: relative;
  z-index: 2;
}

.service-full-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.service-full-card__desc {
  color: var(--white-70);
  font-size: 0.93rem;
  line-height: 1.8;
}

/* ── 11. FLEET ── */
.fleet-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.fleet-filter-btn {
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: var(--border-gold);
  border-radius: 100px;
  color: var(--white-70);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.fleet-filter-btn:hover,
.fleet-filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

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

.car-card {
  background: var(--black-2);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
}

.car-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.car-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.car-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.80);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.car-card:hover .car-card__img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

.car-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.car-card__body {
  padding: 28px 24px;
}

.car-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.car-card__type {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.car-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.car-card__feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--white-70);
}

.car-card__feat i {
  color: var(--gold);
  font-size: 12px;
  width: 16px;
  text-align: center;
}

.car-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: var(--border-subtle);
}

.car-card__price {
  display: flex;
  flex-direction: column;
}

.car-card__price-from {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-50);
}

.car-card__price-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.car-card__price-unit {
  font-size: 11px;
  color: var(--white-50);
}

/* ── 12. WHY CHOOSE US ── */
.why-us {
  background: var(--black-2);
}

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

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white-05);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-feat:hover {
  border-color: rgba(201,168,76,0.3);
  background: var(--gold-bg);
}

.why-feat__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-bg);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.why-feat:hover .why-feat__icon {
  background: var(--gold);
  color: var(--black);
}

.why-feat__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.why-feat__desc {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.7;
}

.why-us__image-wrap {
  position: relative;
}

.why-us__image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  filter: brightness(0.85);
}

.why-us__ribbon {
  position: absolute;
  bottom: 40px;
  left: -28px;
  background: var(--grad-gold);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--black);
  box-shadow: var(--shadow-btn);
}

.why-us__ribbon-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.why-us__ribbon-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── 13. TESTIMONIALS ── */
.testimonials {
  background: var(--black);
  overflow: hidden;
}

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

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

.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--black-2);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.3);
}

.testimonial-card__quote {
  font-size: 48px;
  font-family: var(--font-heading);
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-card__stars i {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-card__text {
  color: var(--white-70);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--gold);
  margin-top: 2px;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.testimonials-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: var(--border-gold);
  background: transparent;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-nav button:hover {
  background: var(--gold);
  color: var(--black);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white-20);
  transition: var(--transition);
  cursor: pointer;
}

.testimonials-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* ── 14. CTA BANNER ── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.85) 0%, rgba(201,168,76,0.15) 100%);
}

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

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner__title span { color: var(--gold); font-style: italic; }

.cta-banner__desc {
  color: var(--white-70);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.9;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 15. CORPORATE PAGE ── */
.corporate-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--black-2);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-card__icon {
  width: 70px;
  height: 70px;
  background: var(--gold-bg);
  border: var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 24px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-card__icon {
  background: var(--gold);
  color: var(--black);
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.benefit-card__desc {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.8;
}

/* Corporate Account Form */
.corporate-form {
  background: var(--black-2);
  border: var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.corporate-form__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.corporate-form__subtitle {
  color: var(--white-70);
  margin-bottom: 36px;
}

/* ── 16. CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: var(--black-2);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: var(--gold-bg);
}

.contact-info-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-bg);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info-card__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-card__value a:hover { color: var(--gold); }

.contact-info-card__sub {
  font-size: 12px;
  color: var(--white-50);
}

/* Form Styles (shared) */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.form-control {
  background: var(--white-05);
  border: var(--border-subtle);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-body);
  width: 100%;
}

.form-control::placeholder { color: var(--white-30); }

.form-control:focus {
  border-color: rgba(201,168,76,0.5);
  background: var(--gold-bg);
}

textarea.form-control { resize: vertical; min-height: 130px; }

select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A84C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form-control option { background: var(--black-3); }

.form-submit {
  margin-top: 8px;
}

/* Contact Map */
.contact-map {
  margin-top: 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-subtle);
  height: 380px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) saturate(0.8);
}

/* ── 17. FOOTER ── */
footer {
  background: var(--black-2);
  border-top: var(--border-gold);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: var(--border-subtle);
}

.footer-brand p {
  color: var(--white-70);
  font-size: 0.9rem;
  line-height: 1.9;
  margin: 20px 0 28px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border: var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: var(--border-gold);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 10px;
  color: var(--gold);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.6;
}

.footer-contact-item a { color: var(--white-70); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--white-50);
}

.footer-bottom span { color: var(--gold); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--white-50);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ── 18. WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-bubble {
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
  cursor: pointer;
}

.whatsapp-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.7);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

.whatsapp-tooltip {
  background: var(--black-3);
  border: var(--border-gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: var(--shadow-card);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ── 19. SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── 20. PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(25% - 20px);
  right: calc(25% - 20px);
  height: 1px;
  background: var(--border-gold);
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-step__num {
  width: 80px;
  height: 80px;
  background: var(--black-3);
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  background: var(--black-2);
  transition: var(--transition);
}

.process-step:hover .process-step__num {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--shadow-btn);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step__desc {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.7;
}

/* ── 21. CLIENTS STRIP ── */
.clients-strip {
  padding: 48px 0;
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  overflow: hidden;
  background: var(--black-2);
}

.clients-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: clientScroll 20s linear infinite;
  width: max-content;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes clientScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-item {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white-30);
  white-space: nowrap;
  transition: var(--transition);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.client-item:hover { color: var(--gold); }

.client-sep {
  color: var(--gold);
  opacity: 0.4;
}

/* ── 22. BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white-50);
  padding: 16px 0;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); opacity: 0.5; }
.breadcrumb .current { color: var(--gold); }

/* ── 23. ALERT / TOAST ── */
.form-success {
  display: none;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  color: #25D366;
  font-size: 14px;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.form-success.show { display: flex; }

.form-error {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 4px;
}

/* ── 24. MISC ── */
.divider-gold {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
  margin: 60px 0;
}

.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--white-70); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.tag {
  display: inline-block;
  background: var(--gold-bg);
  border: var(--border-gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── 25. RESPONSIVE BREAKPOINTS ── */

/* Tablet */
@media (max-width: 1100px) {
  :root { --section-py: 80px; }

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

  .hero__stats {
    right: 32px;
    bottom: 80px;
  }

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

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before { display: none; }
}

/* Large Mobile / Small Tablet */
@media (max-width: 900px) {
  .about__inner,
  .why-us__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__badge {
    right: 16px;
    bottom: -16px;
  }

  .why-us__ribbon {
    left: 16px;
  }

  .about__image,
  .why-us__image {
    height: 380px;
  }

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

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

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

  .booking-form__field:nth-child(n+5) {
    grid-column: span 1;
  }

  .booking-form__btn {
    grid-column: 1 / -1;
    min-height: 56px;
    border-radius: 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .hero__stats {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 14px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --gutter: 20px;
  }

  /* Nav */
  .nav-links,
  .nav-phone { display: none; }

  .nav-toggle { display: flex; }

  .nav-mobile.open { display: flex; }

  /* Hero */
  .hero__title { font-size: 2.8rem; }
  .hero__desc  { font-size: 1rem; }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Booking */
  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form__field {
    border-right: none;
    border-bottom: var(--border-subtle);
  }

  .booking-form__btn {
    grid-column: 1;
    min-height: 60px;
    border-radius: 0;
  }

  /* Fleet / Cards */
  .fleet-grid,
  .services-full-grid,
  .corporate-benefits,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* About stats */
  .about__stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Why us */
  .why-us__ribbon {
    display: none;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
  }

  /* Corporate form */
  .corporate-form {
    padding: 28px 20px;
  }

  /* Form grid */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Page Hero */
  .page-hero {
    height: 280px;
  }

  .page-hero__title {
    font-size: 2.2rem;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Section titles */
  .section-title { font-size: 1.9rem; }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-bubble {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .hero__label { font-size: 10px; letter-spacing: 3px; }
  .about__stats { grid-template-columns: 1fr; }
  .fleet-filters { gap: 8px; }
  .fleet-filter-btn { padding: 8px 18px; font-size: 11px; }
  .btn { padding: 13px 24px; font-size: 12px; }
  .btn-lg { padding: 15px 32px; }
}
