:root {
  --primary: #ff6b35;
  --primary-dark: #e05520;
  --primary-light: #ff9f1c;
  --secondary: #ffbf69;
  --accent: #2ec4b6;
  --dark: #0d0d1a;
  --dark-2: #1a1a2e;
  --dark-3: #16213e;
  --white: #ffffff;
  --gray-light: #f8f9ff;
  --gray: #e8eaf0;
  --text-muted: #8892a4;
  --text: #2d3446;
  --green-wa: #25d366;
  --green-wa-dark: #128c7e;
  --gold: #ffd700;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,53,0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(255,107,53,0.15);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { font-size: 24px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.logo-accent { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 8px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none; padding: 8px 16px;
  border-radius: var(--radius-sm); font-weight: 500; font-size: 14px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,107,53,0.15); }
.btn-whatsapp-nav {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: white; text-decoration: none;
  padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 14px;
  transition: var(--transition); white-space: nowrap;
}
.btn-whatsapp-nav:hover { background: var(--green-wa-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center;
  padding: 100px 40px 60px;
  position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -100px; }
.shape-3 { width: 300px; height: 300px; background: var(--primary-light); top: 50%; left: 40%; }
.hero-content { flex: 1; max-width: 580px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.3);
  color: var(--primary-light); padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.7);
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; text-decoration: none; padding: 16px 32px;
  border-radius: 50px; font-weight: 700; font-size: 16px;
  transition: var(--transition); box-shadow: 0 8px 32px rgba(255,107,53,0.4);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,107,53,0.5); }
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-secondary-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-wa); color: white; text-decoration: none;
  padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 16px;
  transition: var(--transition); box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.btn-secondary-hero:hover { background: var(--green-wa-dark); transform: translateY(-3px); }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-visual {
  flex: 1; display: flex; flex-direction: column; gap: 20px;
  align-items: center; justify-content: center; position: relative; z-index: 2;
  padding-left: 40px;
}
.car-card {
  width: 100%; max-width: 340px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 20px 24px; backdrop-filter: blur(10px); transition: var(--transition);
}
.car-card:hover { transform: translateY(-4px); border-color: rgba(255,107,53,0.3); }
.premium-card { border-color: rgba(255,107,53,0.3); background: rgba(255,107,53,0.08); }
.car-card-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 700; background: rgba(255,159,28,0.2);
  color: var(--secondary); margin-bottom: 12px;
}
.car-card-badge.std { background: rgba(255,107,53,0.2); color: var(--primary-light); }
.car-icon-wrap { margin: 8px 0; }
.car-svg { width: 100%; }
.car-card-info { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.car-name { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 15px; }
.car-price { color: var(--primary-light); font-weight: 800; font-size: 20px; }
.car-price small { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.4); }

/* ============ SECTION BASE ============ */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(255,107,53,0.1); color: var(--primary);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.section-header p { color: var(--text-muted); font-size: 17px; }

/* ============ HOW IT WORKS ============ */
.how-it-works { background: var(--gray-light); }
.steps-grid { display: flex; align-items: flex-start; gap: 12px; justify-content: center; }
.step-card {
  flex: 1; max-width: 300px; background: white; border-radius: var(--radius);
  padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  font-size: 12px; font-weight: 800; color: var(--primary);
  letter-spacing: 2px; margin-bottom: 12px;
}
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-arrow {
  font-size: 28px; color: var(--primary); padding-top: 60px;
  flex-shrink: 0; font-weight: 700;
}

/* ============ HİZMETLER ============ */
.hizmetler { background: var(--white); }
.vehicles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vehicle-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: var(--transition); position: relative;
}
.vehicle-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.vehicle-card.standard { border: 2px solid var(--gray); }
.vehicle-card.premium { border: 2px solid var(--primary); }
.premium-ribbon {
  position: absolute; top: 20px; right: -32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; font-size: 11px; font-weight: 700; padding: 6px 40px;
  transform: rotate(45deg); box-shadow: 0 2px 10px rgba(255,107,53,0.4);
  text-transform: uppercase; letter-spacing: 1px;
}
.vehicle-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px; background: var(--gray-light);
}
.vehicle-card.premium .vehicle-header { background: var(--dark-2); }
.vehicle-type-badge {
  padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700;
  background: rgba(255,107,53,0.15); color: var(--primary);
}
.vehicle-type-badge.prem { background: rgba(255,107,53,0.2); color: var(--primary-light); }
.vehicle-price-tag { text-align: right; }
.price-amount { font-size: 32px; font-weight: 800; color: var(--dark); line-height: 1; }
.vehicle-card.premium .price-amount { color: var(--primary-light); }
.price-per { font-size: 14px; color: var(--text-muted); }
.vehicle-body { padding: 28px; }
.vehicle-illustration { margin-bottom: 20px; background: var(--gray-light); border-radius: var(--radius-sm); padding: 16px; }
.vehicle-card.premium .vehicle-illustration { background: var(--dark-3); }
.vehicle-body h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.vehicle-card.premium .vehicle-body h3 { color: var(--dark); }
.vehicle-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vehicle-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); }
.feat-icon { color: var(--primary); font-weight: 700; flex-shrink: 0; }
.feat-icon.gold { color: var(--gold); }
.vehicle-footer { padding: 0 28px 28px; }
.btn-book {
  display: block; text-align: center; padding: 16px;
  border-radius: 50px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: var(--transition);
}
.btn-book-std {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white; box-shadow: 0 6px 24px rgba(255,107,53,0.3);
}
.btn-book-std:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,107,53,0.4); }
.btn-book-prem {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  color: var(--primary-light); border: 2px solid var(--primary);
  box-shadow: 0 6px 24px rgba(255,107,53,0.2);
}
.btn-book-prem:hover { transform: translateY(-2px); background: var(--primary); color: white; }

/* ============ FİYAT HESAPLAYICI ============ */
.fiyatlar { background: var(--dark); color: white; }
.fiyatlar .section-header h2 { color: white; }
.fiyatlar .section-header p { color: rgba(255,255,255,0.6); }
.calculator-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.calc-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px;
}
.calc-top { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.calc-group { display: flex; flex-direction: column; gap: 8px; }
.calc-group label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.calc-group input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: white; padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 18px; font-weight: 700; font-family: 'Poppins', sans-serif;
  transition: var(--transition); width: 100%;
}
.calc-group input:focus { outline: none; border-color: var(--primary); background: rgba(255,107,53,0.1); }
.calc-toggle { display: flex; gap: 8px; }
.toggle-btn {
  flex: 1; padding: 12px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: rgba(255,255,255,0.6); font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.toggle-btn.active {
  background: var(--primary); color: white; border-color: var(--primary);
}
.toggle-btn:not(.active):hover { border-color: rgba(255,107,53,0.5); color: white; }
.calc-result { background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 16px; }
.result-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 15px; }
.result-row span:first-child { color: rgba(255,255,255,0.6); }
.result-row span:last-child { font-weight: 600; color: white; }
.result-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 8px 0; }
.result-row.total { font-size: 17px; }
.total-price { font-size: 32px; font-weight: 800; color: var(--primary-light) !important; }
.calc-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.price-table-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 32px; overflow: hidden;
}
.price-table-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; color: white; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-table td {
  padding: 14px 16px; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
}
.price-table td:first-child { font-weight: 600; color: white; }
.price-table td:nth-child(2) { color: var(--secondary); font-weight: 700; }
.price-table td:nth-child(3) { color: var(--primary-light); font-weight: 700; }
.price-table tr:hover td { background: rgba(255,107,53,0.05); }

/* ============ REZERVASYON ============ */
.rezervasyon { background: var(--gray-light); }
.rez-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.rez-method-card {
  background: white; border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md); transition: var(--transition);
}
.rez-method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rez-method-icon {
  width: 72px; height: 72px; border-radius: var(--radius);
  background: rgba(37,211,102,0.1); color: var(--green-wa);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.rez-method-icon.email-icon { background: rgba(255,107,53,0.1); color: var(--primary); }
.rez-method-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.rez-method-card > p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }
.wa-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.wa-step {
  display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text);
  background: var(--gray-light); padding: 12px 16px; border-radius: var(--radius-sm);
}
.wa-step span { font-weight: 700; color: var(--green-wa); flex-shrink: 0; }
.btn-wa-big {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--green-wa), var(--green-wa-dark));
  color: white; text-decoration: none; padding: 18px 28px;
  border-radius: 50px; font-weight: 700; font-size: 16px;
  transition: var(--transition); box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  margin-bottom: 12px;
}
.btn-wa-big:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.4); }
.phone-display { text-align: center; font-size: 15px; color: var(--text-muted); font-weight: 600; }
.rez-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif;
  font-size: 14px; transition: var(--transition); background: var(--white); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.vehicle-select-btns { display: flex; flex-direction: column; gap: 8px; }
.vsel-btn {
  padding: 12px 16px; border: 1.5px solid var(--gray); border-radius: var(--radius-sm);
  background: white; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition); text-align: left; color: var(--text);
}
.vsel-btn.active { border-color: var(--primary); background: rgba(255,107,53,0.06); color: var(--primary); }
.vsel-btn:hover:not(.active) { border-color: var(--primary-light); }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; border: none; padding: 16px 28px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: var(--transition); box-shadow: 0 8px 32px rgba(255,107,53,0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,107,53,0.4); }
.form-success {
  text-align: center; padding: 32px; background: rgba(46,196,182,0.1);
  border-radius: var(--radius); border: 1px solid rgba(46,196,182,0.3);
}
.form-success .success-icon {
  width: 60px; height: 60px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  color: white; margin: 0 auto 16px; font-weight: 700;
}
.form-success h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.form-success p { color: var(--text-muted); font-size: 15px; }
.hidden { display: none !important; }

/* MAP */
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
#map { height: 450px; width: 100%; }
.map-controls {
  background: white; padding: 20px 24px; display: flex;
  align-items: center; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--gray);
}
.map-info {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted); flex: 1;
}
.btn-map-wa {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: white; border: none;
  padding: 12px 20px; border-radius: 50px; font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: var(--transition);
}
.btn-map-wa:hover { background: var(--green-wa-dark); }

/* ============ SLOGAN BANDI ============ */
.slogan-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 0; overflow: hidden;
}
.slogan-track {
  display: flex; gap: 48px; padding: 20px 0;
  animation: scrollTrack 20s linear infinite;
  white-space: nowrap;
}
.slogan-track span {
  font-size: 15px; font-weight: 700; color: white; flex-shrink: 0;
  opacity: 0.9;
}
@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ İLETİŞİM ============ */
.iletisim { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card {
  background: var(--gray-light); border-radius: var(--radius); padding: 28px 20px;
  text-align: center; text-decoration: none; color: var(--text);
  transition: var(--transition); border: 2px solid transparent;
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow-md); }
.contact-card.wa:hover { border-color: var(--green-wa); }
.contact-icon {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: white; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: var(--shadow-sm);
}
.contact-card.wa .contact-icon { color: var(--green-wa); }
.contact-card.mail .contact-icon { color: var(--primary); }
.contact-card.web .contact-icon { color: var(--accent); }
.contact-card.hours .contact-icon { color: var(--primary-light); }
.contact-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.contact-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.contact-action { font-size: 13px; font-weight: 700; color: var(--primary); }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: var(--transition);
}
.social-btn.wa { background: rgba(37,211,102,0.15); color: var(--green-wa); }
.social-btn.wa:hover { background: var(--green-wa); color: white; }
.social-btn.mail { background: rgba(255,107,53,0.15); color: var(--primary); }
.social-btn.mail:hover { background: var(--primary); color: white; }
.footer-links h5, .footer-contact-info h5 {
  font-size: 14px; font-weight: 700; color: white; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-info p {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; margin-bottom: 8px;
}
.footer-contact-info svg { flex-shrink: 0; opacity: 0.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-slogan { color: rgba(255,255,255,0.4); font-style: italic; }

/* ============ FLOATING WHATSAPP ============ */
.floating-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; background: var(--green-wa);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  animation: pulse-wa 2.5s ease-in-out infinite;
  transition: var(--transition);
}
.floating-wa:hover {
  transform: scale(1.1); animation: none;
  box-shadow: 0 12px 40px rgba(37,211,102,0.7);
}
.floating-wa-tooltip {
  position: absolute; right: 72px; background: var(--dark); color: white;
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition);
}
.floating-wa-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--dark);
}
.floating-wa:hover .floating-wa-tooltip { opacity: 1; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .vehicles-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .calculator-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 100px 24px 60px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { padding-left: 0; margin-top: 40px; width: 100%; }
  .car-card { max-width: 100%; }
  .nav-links { display: none; }
  .btn-whatsapp-nav { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; }
  .rez-methods { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary-hero { width: 100%; justify-content: center; }
}

/* NAV MOBILE OPEN */
.nav-links.open {
  display: flex; flex-direction: column; position: fixed;
  top: 70px; left: 0; right: 0; background: rgba(13,13,26,0.98);
  padding: 20px; gap: 4px; border-bottom: 1px solid rgba(255,107,53,0.2);
}
.nav-links.open a { padding: 14px 20px; border-radius: var(--radius-sm); }
