/* ========================================
   DAHBIA AUTO LUXE — GLOBAL STYLES
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');

:root {
  --red: #e00000;
  --red-dark: #b00000;
  --red-glow: rgba(224,0,0,0.18);
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --white: #ffffff;
  --gray-light: #f2f2f2;
  --gray-mid: #c8c8c8;
  --gray-dark: #444444;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.22);
  --shadow-red: 0 4px 24px rgba(224,0,0,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 70px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

/* ════════════════════════ PAGE-SPECIFIC NAVBAR ════════════════════════ */

/* HOME PAGE - Gradient with red accent */
.navbar-home {
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(32,10,10,0.95) 50%, rgba(10,10,10,0.95) 100%);
}

.navbar-home.scrolled {
  background: linear-gradient(90deg, rgba(10,10,10,0.98) 0%, rgba(32,10,10,0.98) 50%, rgba(10,10,10,0.98) 100%);
  box-shadow: 0 4px 32px rgba(224,0,0,0.2);
}

/* VEHICLES PAGE - Dark metallic */
.navbar-vehicles {
  background: linear-gradient(90deg, rgba(10,10,10,0.97) 0%, rgba(15,15,20,0.97) 100%);
}

.navbar-vehicles.scrolled {
  background: linear-gradient(90deg, rgba(10,10,10,0.99) 0%, rgba(15,15,20,0.99) 100%);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

/* CONTACT PAGE - Premium dark with subtle red */
.navbar-contact {
  background: linear-gradient(90deg, rgba(10,10,10,0.96) 0%, rgba(26,10,10,0.96) 100%);
}

.navbar-contact.scrolled {
  background: linear-gradient(90deg, rgba(10,10,10,0.98) 0%, rgba(26,10,10,0.98) 100%);
  box-shadow: 0 4px 32px rgba(224,0,0,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-logo:hover {
  transform: scale(1.03);
}

.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition);
  filter: brightness(1) drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.nav-logo:hover .nav-logo-img {
  filter: brightness(1.15) drop-shadow(0 4px 16px rgba(224,0,0,0.5));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .brand {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 700;
}

.nav-logo-text .sub {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 22px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background var(--transition) !important;
  font-size: 11px !important;
}

.nav-cta:hover { background: var(--red-dark) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  clip-path: none;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  width: 100%;
  justify-content: center;
  border-radius: 0;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ========================================
   SECTION COMMONS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  position: relative;
  padding: 0 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--red);
}

.section-label::before { right: 100%; }
.section-label::after { left: 100%; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 4px;
  line-height: 1;
  color: var(--black);
}

.section-title span { color: var(--red); }

.section-subtitle {
  margin-top: 14px;
  font-size: 15px;
  color: var(--gray-dark);
  font-weight: 300;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   HERO — INDEX
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.65) 55%, rgba(10,10,10,0.2) 100%),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1800&q=80') center/cover no-repeat;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,0,0,0.15);
  border: 1px solid rgba(224,0,0,0.4);
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 740px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.9;
  letter-spacing: 6px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .line-red { color: var(--red); display: block; }

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  background: rgba(10,10,10,0.92);
  border-top: 2px solid var(--red);
}

.hero-stat {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}

.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(224,0,0,0.08); }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* ========================================
   WHY US
   ======================================== */
.why-us {
  padding: 100px 5%;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: 'LUXE';
  position: absolute;
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(255,255,255,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 20px;
}

.why-us .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.why-card {
  background: var(--black-card);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.why-card:hover {
  background: #1a1a1a;
  border-left-color: var(--red);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 56px; height: 56px;
  background: rgba(224,0,0,0.12);
  border: 1px solid rgba(224,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--red);
  box-shadow: var(--shadow-red);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}

/* ========================================
   FEATURED VEHICLES
   ======================================== */
.featured {
  padding: 100px 5%;
  background: var(--gray-light);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  padding: 80px 5%;
  background: var(--red);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-banner::before { top: -100px; left: -60px; }
.cta-banner::after { bottom: -100px; right: -60px; }

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 36px;
}

.cta-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.cta-number {
  background: rgba(0,0,0,0.25);
  color: var(--white);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  cursor: pointer;
}

.cta-number:hover {
  background: rgba(0,0,0,0.5);
}

/* ========================================
   VEHICLES PAGE
   ======================================== */
.vehicles-hero {
  height: 340px;
  background:
    linear-gradient(to right, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.3) 100%),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 50px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.vehicles-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.vehicles-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  color: var(--white);
  letter-spacing: 6px;
  line-height: 1;
}

.vehicles-hero-content h1 span { color: var(--red); }

.vehicles-hero-content p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* Filter tabs */
.vehicles-filters {
  background: var(--black);
  padding: 0 5%;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vehicles-filters::-webkit-scrollbar { display: none; }

.filter-btn {
  padding: 18px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.filter-btn:hover { color: var(--white); }
.filter-btn.active { color: var(--red); border-bottom-color: var(--red); }

/* Vehicle sections */
.vehicles-section {
  padding: 80px 5%;
}

.vehicles-section.dark {
  background: var(--black);
}

.vehicles-section.dark .section-title { color: var(--white); }

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

/* ========================================
   VEHICLE CARD
   ======================================== */
.vehicle-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}

.vehicles-section.dark .vehicle-card {
  background: var(--black-card);
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.vehicle-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #f5f5f5;
}

.vehicles-section.dark .vehicle-card-img {
  background: #1a1a1a;
}

.vehicle-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-card-img img {
  transform: scale(1.06);
}

.vehicle-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.vehicle-tag.premium { background: #1a1a1a; }
.vehicles-section.dark .vehicle-tag.premium { background: var(--white); color: var(--black); }

.vehicle-card-body {
  padding: 22px 24px;
}

.vehicle-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.vehicle-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.1;
}

.vehicles-section.dark .vehicle-name { color: var(--white); }

.vehicle-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.vehicles-section.dark .vehicle-specs { border-bottom-color: rgba(255,255,255,0.07); }

.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-dark);
  font-weight: 500;
}

.vehicles-section.dark .vehicle-spec { color: rgba(255,255,255,0.5); }

.vehicle-spec-icon {
  font-size: 14px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
  height: 300px;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(224,0,0,0.3) 100%),
    url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1600&q=80') center/cover;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 50px;
  position: relative;
  margin-top: 80px;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  color: var(--white);
  letter-spacing: 6px;
  line-height: 1;
}

.contact-hero h1 span { color: var(--red); }

.contact-page {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: var(--black);
}

.contact-info h2 span { color: var(--red); }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--gray-light);
  border-left: 3px solid var(--red);
  transition: var(--transition);
  text-decoration: none;
}

.contact-card:hover {
  background: var(--red);
  transform: translateX(6px);
}

.contact-card:hover .cc-title,
.contact-card:hover .cc-value {
  color: var(--white);
}

.cc-icon {
  font-size: 24px;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}

.cc-title {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 2px;
}

.cc-value {
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
}

.contact-social {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}

.social-snapchat { background: #FFFC00; color: var(--black) !important; }
.social-snapchat:hover { background: #e6e300; transform: translateY(-2px); }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-instagram:hover { opacity: 0.85; transform: translateY(-2px); }
.social-tiktok { background: var(--black); border: 1px solid rgba(255,255,255,0.15); }
.social-tiktok:hover { background: #1a1a1a; transform: translateY(-2px); }

/* Contact form */
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.contact-form-wrap h2 span { color: var(--red); }

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--gray-light);
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: var(--transition);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--red-glow);
}

/* Map */
.map-section {
  padding: 0 5% 80px;
}

.map-section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-align: center;
}

.map-section h2 span { color: var(--red); }

.map-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border: 3px solid var(--red);
  position: relative;
}

.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(20%);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--black);
  border-top: 3px solid var(--red);
}

.footer-top {
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .nav-logo { margin-bottom: 20px; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  padding: 20px 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

.footer-bottom p span { color: var(--red); }

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-main-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  color: white;
}

.wa-main-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.6);
}

.wa-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.wa-menu.open { display: flex; }

.wa-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  border-radius: 30px;
  transition: var(--transition);
  animation: slideIn 0.25s ease forwards;
}

.wa-link:hover {
  background: #25D366;
  color: var(--white);
  transform: translateX(-4px);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.wa-link-icon {
  width: 28px; height: 28px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE — COMPREHENSIVE MOBILE OPTIMIZATION
   ======================================== */

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-page { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* ── NAVBAR ── */
  .navbar {
    height: 90px;
    padding: 0 4%;
  }
  .navbar.scrolled { height: 75px; }
  .nav-logo { gap: 10px; padding: 8px 0; }
  .nav-logo-img { height: 60px; }
  .nav-logo-text .brand { font-size: 16px; letter-spacing: 2px; }
  .nav-logo-text .sub { font-size: 9px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black-soft);
    padding: 16px 4%;
    border-top: 2px solid var(--red);
    flex-direction: column;
    gap: 0;
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 12px;
  }
  .hamburger { display: flex; }
  
  /* ── HERO ── */
  .hero { margin-top: 90px; min-height: 600px; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); margin-bottom: 18px; }
  .hero-badge { font-size: 10px; padding: 8px 16px; margin-bottom: 20px; }
  .hero-desc { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; padding: 16px 20px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 0 0 50%; padding: 20px 16px; border-right: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hero-stat:nth-child(even) { border-right: none; }
  .hero-stat-num { font-size: 32px; }
  
  /* ── SECTIONS ── */
  .section-title { font-size: clamp(28px, 7vw, 48px); }
  .section-label::before, .section-label::after { display: none; }
  .section-subtitle { font-size: 14px; }
  .btn { padding: 16px 24px; width: 100%; }
  
  /* ── CARDS ── */
  .vehicle-card-img { height: 200px; }
  .vehicle-card-body { padding: 18px 16px; }
  .vehicle-name { font-size: 20px; }
  .vehicle-specs { gap: 12px; }
  
  /* ── INTRO ── */
  .intro-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 5%; }
  .intro-highlights { flex-direction: column; gap: 14px; }
  
  /* ── WHY US ── */
  .why-us { padding: 60px 5%; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 28px 20px; }
  .why-icon { width: 48px; height: 48px; font-size: 22px; }
  
  /* ── FEATURED ── */
  .featured { padding: 60px 5%; }
  .featured-strip { grid-template-columns: 1fr; gap: 16px; }
  
  /* ── STEPS ── */
  .how-section { padding: 60px 5%; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .step-item { padding: 28px 16px; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .step-num { width: 56px; height: 56px; font-size: 24px; margin-bottom: 16px; }
  
  /* ── TESTIMONIALS ── */
  .testimonials { padding: 60px 5%; }
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
  .testi-card { padding: 24px 18px; }
  .testi-text { font-size: 13px; margin-bottom: 18px; }
  
  /* ── CTA BANNER ── */
  .cta-banner { padding: 50px 5%; }
  .cta-banner h2 { font-size: clamp(24px, 6vw, 42px); margin-bottom: 14px; }
  .cta-banner p { font-size: 14px; margin-bottom: 28px; }
  .cta-numbers { flex-direction: column; gap: 8px; }
  .cta-number { width: 100%; padding: 12px 16px; }
  
  /* ── VEHICLES PAGE ── */
  .vehicles-hero { height: 280px; margin-top: 90px; padding: 0 5% 30px; }
  .vehicles-hero-content h1 { font-size: clamp(32px, 8vw, 56px); }
  .filter-btn { padding: 16px 18px; font-size: 11px; }
  .vehicles-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
  
  /* ── CONTACT PAGE ── */
  .contact-hero { height: 260px; margin-top: 90px; padding: 0 5% 30px; }
  .contact-hero h1 { font-size: clamp(28px, 7vw, 48px); }
  .contact-page { grid-template-columns: 1fr; gap: 40px; padding: 50px 5%; }
  .contact-info h2, .contact-form-wrap h2 { font-size: 28px; margin-bottom: 24px; }
  .contact-cards { gap: 10px; }
  .contact-card { padding: 16px 14px; gap: 12px; }
  .cc-title { font-size: 9px; }
  .cc-value { font-size: 14px; }
  .contact-social { flex-wrap: wrap; gap: 8px; margin-top: 20px; }
  .social-btn { flex: 0 0 calc(50% - 4px); padding: 12px 14px; font-size: 11px; }
  .form-label { font-size: 10px; }
  .form-input, .form-select, .form-textarea { padding: 12px 14px; font-size: 14px; }
  .form-textarea { min-height: 110px; }
  
  /* ── MAP ── */
  .map-section { padding: 0 5% 60px; }
  .map-section h2 { font-size: 26px; margin-bottom: 20px; }
  .map-wrap { height: 300px; }
  
  /* ── FOOTER ── */
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 50px 5%; }
  .footer-col h4 { font-size: 14px; letter-spacing: 2px; }
  .footer-col ul li a { font-size: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 16px 5%; gap: 12px; }
  .footer-bottom p { font-size: 11px; }
  
  /* ── WHATSAPP FLOAT ── */
  .wa-float { bottom: 20px; right: 20px; }
  .wa-main-btn { width: 56px; height: 56px; font-size: 24px; }
  .wa-link { padding: 10px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  .navbar { height: 80px; }
  .nav-logo-img { height: 52px; }
  .hero-title { font-size: clamp(28px, 9vw, 42px); }
  .section-title { font-size: clamp(22px, 6vw, 36px); }
  .btn { padding: 14px 20px; font-size: 12px; }
  .cta-banner { padding: 40px 4%; }
  .footer-top { gap: 24px; padding: 40px 4%; }
}