/*
Theme Name: DZ-Car-Rent
Theme URI: https://ltzlocation.com
Author: Mohamed Aid
Author URI: https://ltzlocation.com
Description: Theme professionnel pour LTZ Location - Location de voitures en Algérie
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ltz-location
*/

/* ========== RESET & BASE ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --ltz-red: #e63946;
  --ltz-red-dark: #d32f3e;
  --ltz-dark: #0f172a;
  --ltz-dark2: #1e293b;
  --ltz-gray: #64748b;
  --ltz-light: #f8fafc;
  --ltz-border: #e2e8f0;
  --ltz-topbar-bg: #1a1a6e;
  --ltz-topbar-text: #ffffff;
}

/* ========== TOP BAR ========== */
.ltz-topbar {
  background: var(--ltz-topbar-bg);
  color: var(--ltz-topbar-text);
  font-size: 13px;
  padding: 8px 0;
  font-family: 'Open Sans', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: transform 0.3s ease;
}
.ltz-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ltz-topbar-left {
  flex: 1;
  min-width: 0;
}
.ltz-topbar-slogan {
  font-style: italic;
  opacity: 0.9;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ltz-topbar-custom-field {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 18px;
  white-space: nowrap;
}
.ltz-topbar-custom-field a {
  text-decoration: none;
  transition: opacity 0.2s;
}
.ltz-topbar-custom-field a:hover {
  opacity: 0.8;
}
.ltz-topbar-custom-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.ltz-topbar-custom-field::before {
  content: '|';
  opacity: 0.4;
  margin-right: 4px;
  color: var(--ltz-topbar-text);
}
.ltz-topbar-center {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ltz-topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ltz-topbar-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.ltz-topbar-phone:hover {
  opacity: 0.8;
  color: var(--ltz-topbar-text);
}
.ltz-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ltz-topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--ltz-topbar-text);
  transition: all 0.2s;
  text-decoration: none;
}
.ltz-topbar-social:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-1px);
  color: var(--ltz-topbar-text);
}

* { box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ========== HEADER / NAV ========== */
.ltz-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s;
  background: var(--ltz-header-bg, #ffffff);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.ltz-header.scrolled {
  background: var(--ltz-header-bg, #ffffff);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 8px 0;
}

/* Logo */
.ltz-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ltz-logo-wrap img,
.ltz-logo-wrap .custom-logo {
  max-height: 52px;
  width: auto;
  display: block;
}
.ltz-logo-img {
  max-height: 52px;
  width: auto;
}

/* Active nav link */
.ltz-nav-active { color: var(--ltz-red) !important; }

/* WordPress menu reset */
.ltz-nav-links li { list-style: none; }
.ltz-nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 8px 0;
  min-width: 200px;
  z-index: 1001;
}
.ltz-nav-links li:hover > .sub-menu { display: block; }
.ltz-nav-links .sub-menu li { padding: 0; }
.ltz-nav-links .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ltz-dark) !important;
  transition: background 0.2s;
}
.ltz-nav-links .sub-menu a:hover { background: var(--ltz-light); color: var(--ltz-red) !important; }
.ltz-nav-links > li { position: relative; }

.ltz-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ltz-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ltz-header-fields {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  flex: 1;
  min-width: 0;
}
.ltz-header-custom-field {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
  padding: 4px 10px;
  border-left: 1px solid var(--ltz-border);
}
.ltz-header-custom-field:first-child {
  border-left: none;
  padding-left: 0;
}
.ltz-header-custom-field a {
  text-decoration: none;
  transition: opacity 0.2s;
}
.ltz-header-custom-field a:hover {
  opacity: 0.7;
}
.ltz-header-custom-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ltz-header-fields {
    flex-wrap: wrap;
    gap: 2px;
    margin-left: 0;
    margin-top: 2px;
  }
  .ltz-header-custom-field {
    font-size: 11px !important;
    padding: 2px 6px;
  }
}
.ltz-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.ltz-logo span { color: var(--ltz-red); }
.ltz-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ltz-nav-link {
  color: var(--ltz-header-text, #1a1a2e);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}
.ltz-nav-link:hover { color: var(--ltz-red); }

.ltz-nav-cta {
  background: var(--ltz-red);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}
.ltz-nav-cta:hover {
  background: var(--ltz-red-dark);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.ltz-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.ltz-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ltz-header-text, #1a1a2e);
  margin: 6px 0;
  transition: all 0.3s;
}

/* ========== BUTTONS ========== */
.ltz-btn-primary {
  display: inline-block;
  background: var(--ltz-red);
  color: #fff;
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
  font-family: 'Open Sans', sans-serif;
}
.ltz-btn-primary:hover {
  background: var(--ltz-red-dark);
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.5);
  transform: translateY(-2px);
  color: #fff;
}
.ltz-btn-outline {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Open Sans', sans-serif;
}
.ltz-btn-outline:hover {
  background: #fff;
  color: #111;
}
.ltz-btn-secondary {
  display: inline-block;
  background: var(--ltz-border);
  color: var(--ltz-dark);
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Open Sans', sans-serif;
}
.ltz-btn-secondary:hover {
  background: #fff;
  transform: translateY(-2px);
}
.ltz-btn-white {
  display: block;
  width: 100%;
  text-align: center;
  background: #fff;
  color: var(--ltz-dark);
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Open Sans', sans-serif;
}
.ltz-btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* ========== HERO ========== */
.ltz-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 156px 20px 80px;
}
.ltz-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ltz-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ltz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.5), transparent);
}
.ltz-hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  color: #fff;
}
.ltz-hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(230, 57, 70, 0.2);
  border: 1px solid rgba(230, 57, 70, 0.5);
  color: var(--ltz-red);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.ltz-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  margin-top: 0;
}
.ltz-hero h1 span { color: var(--ltz-red); }
.ltz-hero-desc {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 32px;
  line-height: 1.7;
}
.ltz-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== SECTION LABELS ========== */
.ltz-section-label {
  text-align: center;
  color: var(--ltz-red);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}
.ltz-section-title {
  text-align: center;
  font-size: 40px;
  color: var(--ltz-dark);
  margin-bottom: 20px;
  margin-top: 0;
}
.ltz-section-desc {
  text-align: center;
  color: var(--ltz-gray);
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto 50px;
}

/* ========== AIRPORT SERVICE ========== */
.ltz-airport {
  background: var(--ltz-dark);
  padding: 80px 20px;
  overflow: hidden;
}
.ltz-airport-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ltz-airport-vip {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ltz-red);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}
.ltz-airport h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 0;
}
.ltz-airport-text {
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.ltz-airport-img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 4px solid var(--ltz-dark2);
  transform: rotate(2deg);
  transition: transform 0.5s;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ltz-airport-img:hover { transform: rotate(0deg); }

/* ========== VEHICLES ========== */
.ltz-vehicles {
  padding: 100px 20px;
  background: var(--ltz-light);
}
.ltz-vehicles-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ltz-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.ltz-vehicle-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.ltz-vehicle-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
.ltz-vehicle-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.ltz-vehicle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.ltz-vehicle-card:hover .ltz-vehicle-img-wrap img {
  transform: scale(1.1);
}
.ltz-vehicle-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ltz-vehicle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.ltz-vehicle-card:hover .ltz-vehicle-overlay { opacity: 1; }
.ltz-vehicle-overlay a {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ltz-red);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.3s;
}
.ltz-vehicle-overlay a:hover { background: var(--ltz-red-dark); }
.ltz-vehicle-info {
  padding: 24px;
  flex-grow: 1;
}
.ltz-vehicle-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
  margin-top: 0;
  color: var(--ltz-dark);
}
.ltz-vehicle-info p {
  color: var(--ltz-gray);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}
.ltz-vehicle-bar {
  height: 3px;
  background: #f1f5f9;
  margin: 0 24px 20px;
  border-radius: 4px;
  overflow: hidden;
}
.ltz-vehicle-bar-fill {
  height: 100%;
  width: 0;
  background: var(--ltz-red);
  transition: width 0.7s ease-out;
}
.ltz-vehicle-card:hover .ltz-vehicle-bar-fill { width: 100%; }

/* ========== WHY CHOOSE US ========== */
.ltz-why {
  padding: 100px 20px;
  background: #fff;
}
.ltz-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ltz-why h3 {
  font-size: 40px;
  color: var(--ltz-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 8px;
}
.ltz-why h3 span { color: var(--ltz-red); }
.ltz-why-text {
  color: var(--ltz-gray);
  font-size: 17px;
  margin-bottom: 32px;
}
.ltz-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s;
  border: 1px solid transparent;
  margin-bottom: 8px;
}
.ltz-feature:hover {
  background: var(--ltz-light);
  border-color: #f1f5f9;
}
.ltz-feature-icon {
  background: rgba(230, 57, 70, 0.1);
  color: var(--ltz-red);
  padding: 14px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ltz-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--ltz-red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ltz-feature h4 {
  font-size: 18px;
  margin-bottom: 4px;
  margin-top: 0;
  color: var(--ltz-dark2);
}
.ltz-feature p {
  color: var(--ltz-gray);
  font-size: 14px;
  margin: 0;
}
.ltz-why-image {
  position: relative;
}
.ltz-why-image-bg {
  position: absolute;
  inset: -16px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 24px;
  transform: rotate(3deg);
  z-index: 0;
}
.ltz-why-image img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.ltz-satisfaction {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 20px 24px;
  border-radius: 14px;
  border-left: 4px solid var(--ltz-red);
  display: flex;
  align-items: center;
  gap: 16px;
}
.ltz-satisfaction-icon {
  background: #dcfce7;
  padding: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ltz-satisfaction-icon svg {
  width: 24px;
  height: 24px;
  stroke: #16a34a;
  fill: none;
  stroke-width: 2.5;
}
.ltz-satisfaction strong {
  display: block;
  font-size: 16px;
  color: var(--ltz-dark);
}
.ltz-satisfaction span {
  color: var(--ltz-gray);
  font-size: 13px;
}

/* ========== CONTACT ========== */
.ltz-contact {
  padding: 100px 20px;
  background: var(--ltz-light);
}
.ltz-contact-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.ltz-contact-box {
  background: var(--ltz-dark);
  color: #fff;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.ltz-contact-box h4 {
  font-size: 26px;
  margin-bottom: 16px;
  margin-top: 0;
}
.ltz-contact-box > p {
  color: #94a3b8;
  font-size: 16px;
  margin-bottom: 40px;
}
.ltz-contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.ltz-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ltz-contact-item-icon {
  background: rgba(230, 57, 70, 0.2);
  padding: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ltz-contact-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--ltz-red);
  fill: none;
  stroke-width: 2;
}
.ltz-contact-item small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ltz-contact-item strong {
  font-size: 18px;
  font-weight: 700;
}
.ltz-contact-cta {
  padding-top: 32px;
  border-top: 1px solid #334155;
}

/* ========== CTA FINAL ========== */
.ltz-cta-final {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

/* ========== FOOTER ========== */
.ltz-footer {
  background: var(--ltz-footer-bg, var(--ltz-dark));
  color: var(--ltz-footer-text, #94a3b8);
  padding: 60px 20px 30px;
}
.ltz-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.ltz-footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.ltz-footer-brand span { color: var(--ltz-red); }
.ltz-footer p { font-size: 14px; line-height: 1.7; }
.ltz-footer h5 {
  color: var(--ltz-footer-text, #fff);
  font-size: 16px;
  margin-bottom: 16px;
  margin-top: 0;
}
.ltz-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ltz-footer li { margin-bottom: 10px; }
.ltz-footer a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.3s;
}
.ltz-footer a:hover { color: var(--ltz-red); }
.ltz-footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 13px;
}

/* ========== FOOTER SOCIALS ========== */
.ltz-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.ltz-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--ltz-footer-text);
  transition: all 0.2s;
}
.ltz-footer-socials a:hover {
  background: var(--ltz-red);
  transform: translateY(-2px);
}

/* ========== FLOATING CTA BUTTON ========== */
.ltz-floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ltz-red);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 8px 28px rgba(230,57,70,0.4);
  transition: all 0.3s;
  text-decoration: none;
  animation: ltz-pulse-float 3s infinite;
}
.ltz-floating-cta:hover {
  background: var(--ltz-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(230,57,70,0.5);
  color: #fff;
}
.ltz-floating-cta svg {
  flex-shrink: 0;
}
@keyframes ltz-pulse-float {
  0%, 100% { box-shadow: 0 8px 28px rgba(230,57,70,0.4); }
  50% { box-shadow: 0 8px 36px rgba(230,57,70,0.6); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .ltz-vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .ltz-airport-inner { grid-template-columns: 1fr; }
  .ltz-why-inner { grid-template-columns: 1fr; }
  .ltz-footer-inner { grid-template-columns: 1fr; }
  .ltz-hero h1 { font-size: 42px; }
}
@media (max-width: 768px) {
  .ltz-nav-links { display: none; }
  .ltz-menu-toggle { display: block; }
  .ltz-nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .ltz-nav-links.active .ltz-nav-link { color: var(--ltz-dark); }
  .ltz-topbar-inner { flex-wrap: wrap; justify-content: center; gap: 4px; }
  .ltz-topbar-left {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 4px;
  }
  .ltz-topbar-slogan { display: none; }
  .ltz-topbar-custom-field {
    margin-left: 0;
    font-size: 11px !important;
  }
  .ltz-topbar-custom-field::before { display: none; }
  .ltz-topbar-center { gap: 12px; }
  .ltz-topbar-phone span { font-size: 11px; }
}
@media (max-width: 640px) {
  .ltz-vehicles-grid { grid-template-columns: 1fr; }
  .ltz-hero h1 { font-size: 32px; }
  .ltz-hero-buttons { flex-direction: column; }
  .ltz-section-title { font-size: 28px; }
  .ltz-airport h2 { font-size: 28px; }
  .ltz-why h3 { font-size: 28px; }
  .ltz-contact-box { padding: 28px; }
  .ltz-satisfaction { left: 16px; right: 16px; bottom: 16px; }
  .ltz-hero { min-height: auto; padding: 100px 20px 60px; }
  .ltz-floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 14px; }
  .ltz-floating-cta span { display: none; }
  .ltz-floating-cta { padding: 14px; border-radius: 50%; }
}
