/* ===== Dindigul Cabs — Premium Taxi Website ===== */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Poppins-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-600.woff2') format('woff2');
}

:root {
  --red: #B91C1C;
  --red-dark: #7f1d1d;
  --red-light: #dc2626;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --charcoal: #1a1a1a;
  --charcoal-2: #242424;
  --charcoal-3: #333;
  --gray-bg: #f7f7f8;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --white: #ffffff;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --green: #25D366;
  --green-dark: #128C7E;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; font-weight: 700; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }

.section-title { text-align: center; margin-bottom: 12px; }

.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--charcoal);
}

.section-title .accent-line {
  width: 60px; height: 4px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 16px auto 48px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(185,28,28,.35); }

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--red); }

.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--charcoal-3); transform: translateY(-2px); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ===== Top Contact Bar ===== */
.top-bar {
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 0;
  font-size: .85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.top-bar a { color: var(--white); transition: var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.top-bar a:hover { color: var(--gold-light); }

.top-bar .phone-links { display: inline-flex; gap: 12px; }

.top-bar-badge {
  background: var(--red);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .5px;
}

.top-bar-right { display: flex; align-items: center; gap: 12px; }

.wa-mini {
  background: var(--green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: .8rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.wa-mini:hover { background: var(--green-dark); color: var(--white); }

/* ===== Header / Navigation ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo img { height: 56px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-call {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.nav-call:hover { background: var(--red-dark); transform: translateY(-2px); }

.nav-wa {
  background: var(--green);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.nav-wa:hover { background: var(--green-dark); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  width: 26px; height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== Hero Slider ===== */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--charcoal);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,.85) 0%, rgba(26,26,26,.55) 50%, rgba(26,26,26,.3) 100%);
}

.slide-vehicle {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 380px;
  max-width: 40%;
  border-radius: var(--radius-lg);
  height: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  border: 4px solid rgba(255,255,255,.85);
  z-index: 2;
  opacity: 0;
  transition: opacity .8s ease .3s, transform .8s ease .3s;
/*  object-fit: cover; */
  aspect-ratio: 4/3;
}
.slide.active .slide-vehicle {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.slide-content .vehicle-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 640px;
}

.slide-content p {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 28px;
  max-width: 520px;
}

.slide-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.4);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}
.slider-arrow:hover { background: var(--red); border-color: var(--red); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dots button.active { background: var(--red); border-color: var(--red); width: 32px; border-radius: 6px; }

/* ===== Welcome Section ===== */
.welcome { background: var(--white); }

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

.welcome-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.welcome-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 20px; }

.welcome-text .lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
  list-style: none;
}

.welcome-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--charcoal);
}

.welcome-features .check {
  width: 24px; height: 24px;
  background: var(--red-50);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

/* ===== Our Cars Section ===== */
.cars-section { background: var(--gray-bg); }

.car-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  transition: var(--transition);
}

.car-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.car-card.reverse .car-img { order: 2; }

.car-img {
  overflow: hidden;
  min-height: 320px;
}

.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.car-card:hover .car-img img { transform: scale(1.05); }

.car-info { padding: 48px; display: flex; flex-direction: column; justify-content: center; }

.car-info .car-label {
  color: var(--red);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.car-info h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }

.car-info p { color: var(--gray-700); margin-bottom: 24px; font-size: 1.02rem; }

.car-features { list-style: none; margin-bottom: 32px; }

.car-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .95rem;
  color: var(--charcoal);
}

.car-features .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.car-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Why Choose Us ===== */
.why-choose { background: var(--white); }

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--red-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--red-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon { background: var(--red); transform: scale(1.1); }
.feature-card:hover .feature-icon span { filter: grayscale(1) brightness(2.5); }

.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }

.feature-card p { color: var(--gray-500); font-size: .92rem; }

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pexels/pexels-28860264.png') center/cover;
  opacity: .12;
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }

.cta-section p { font-size: 1.1rem; margin-bottom: 32px; opacity: .9; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Services Page ===== */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-3) 100%);
  color: var(--white);
  padding: 60px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pexels/pexels-7365981.jpeg') center/cover;
  opacity: .15;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }

.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; }

.breadcrumb {
  margin-top: 16px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.service-card img { width: 100%; height: 240px; object-fit: cover; }

.service-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }

.service-card .service-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--red-100);
  line-height: 1;
  margin-bottom: 8px;
}

.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }

.service-card p { color: var(--gray-700); margin-bottom: 24px; flex: 1; }

.service-card .car-buttons { margin-top: auto; }

/* ===== Gallery Page ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(185,28,28,.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item .gallery-overlay span {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
}

.gallery-item .zoom-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--red);
  transition: var(--transition);
  z-index: 2;
}

.gallery-item:hover .zoom-icon { transform: translate(-50%, -50%) scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: var(--red); }

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

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

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover { box-shadow: var(--shadow); border-color: var(--red-light); }

.contact-card .icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--white);
}

.contact-card .icon.green { background: var(--green); }
.contact-card .icon.gold { background: var(--gold); }
.contact-card .icon.dark { background: var(--charcoal); }

.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }

.contact-card p, .contact-card a { color: var(--gray-700); font-size: .95rem; }
.contact-card a:hover { color: var(--red); }

.contact-buttons-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.contact-buttons-stack .btn { justify-content: center; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-wrap .form-sub { color: var(--gray-500); margin-bottom: 28px; font-size: .95rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; }

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

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--gray-bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
}

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

/* Map */
.map-section { padding: 0 0 80px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-bg) 0%, var(--gray-100) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  gap: 12px;
}

.map-placeholder .map-pin { font-size: 3rem; }

.map-placeholder h3 { font-size: 1.4rem; color: var(--charcoal); }

.map-placeholder p { color: var(--gray-700); font-size: 1.05rem; }

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img { height: 56px; margin-bottom: 16px; }

.footer-brand p { font-size: .92rem; margin-bottom: 12px; }

.footer-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: .8rem;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-size: .92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 8px; margin-bottom: 12px; font-size: .92rem; }
.footer-contact-item strong { color: var(--white); }

.footer-buttons { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.footer-buttons .btn { padding: 10px 18px; font-size: .85rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .88rem;
}

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

/* ===== Floating Buttons ===== */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--transition);
  text-decoration: none;
}

.float-wa:hover { transform: scale(1.1); background: var(--green-dark); }

.float-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.float-call {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(185,28,28,.4);
  transition: var(--transition);
}

.float-call:hover { transform: scale(1.1); background: var(--red-dark); }

.float-call::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: pulse 2s infinite;
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 32px; }
  .car-card { grid-template-columns: 1fr; }
  .car-card.reverse .car-img { order: 0; }
  .car-img { min-height: 240px; }
  .car-info { padding: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 28px;
    gap: 0;
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    transition: right .3s ease;
    z-index: 1050;
  }

  .nav-links.open { right: 0; }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 1rem; }

  .hamburger { display: flex; }

  .nav-actions .nav-call, .nav-actions .nav-wa { display: none; }

  .top-bar .container { justify-content: center; text-align: center; }
  .top-bar-left, .top-bar-right { justify-content: center; }

  .hero { height: 480px; }
  .slide-vehicle { width: 200px; max-width: 40%; right: 16px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1.1rem; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }

  .section { padding: 56px 0; }
  .welcome-features { grid-template-columns: 1fr; }

  .float-call { display: flex; }
  .float-wa { bottom: 88px; }
  .float-call { bottom: 88px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .slide-content h1 { font-size: 1.6rem; }
  .slide-content p { font-size: .95rem; }
  .slide-vehicle { display: none; }
  .car-info { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
  .top-bar { font-size: .78rem; }
  .top-bar-left { gap: 8px; }
  .logo img { height: 44px; }
  .float-wa, .float-call { width: 50px; height: 50px; font-size: 1.3rem; }
}
