/* ============================================================
   MILESTOUR — Car Rental Website
   Theme clone: Rentor by Raddito
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --red:        #E31E24;
  --red-hover:  #c91a1f;
  --red-light:  rgba(227, 30, 36, 0.08);
  --black:      #111111;
  --dark:       #0D0D0D;
  --gray-bg:    #F5F5F5;
  --text-gray:  #666666;
  --text-light: #999999;
  --white:      #FFFFFF;
  --border:     #E5E5E5;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-pill:50px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-card:0 2px 14px rgba(0,0,0,0.06);
  --transition: 0.28s ease;
  --container:  1220px;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font); color: var(--black); background: var(--white);
        line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }
input, button, textarea { font-family: inherit; }

/* === CONTAINER === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* === SECTION LABEL PILLS === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--red-light);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-label.dark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary  { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(227,30,36,0.35); }
.btn-outline  { background: transparent; color: var(--black); border: 2px solid rgba(0,0,0,0.18); }
.btn-outline:hover { border-color: var(--black); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--white); transform: translateY(-2px); }

.btn .arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-primary .arrow  { background: rgba(0,0,0,0.22); }
.btn-outline .arrow  { background: var(--dark); color: var(--white); }
.btn-outline-white .arrow { background: var(--white); color: var(--dark); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.10); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.navbar-logo img {
  height: 88px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  border-radius: var(--radius);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link svg { width: 14px; height: 14px; opacity: 0.5; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 1100;
  padding: 90px 28px 32px;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  color: #fff !important;
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-bg);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; font-size: 20px; color: var(--black);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: url('../images/ui/hero-bg.webp') center / cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(108deg,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.72) 48%,
    rgba(0,0,0,0.18) 100%);
}
.hero-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0 20px;
}
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.09;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--red); font-weight: 800; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 38px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-divider {
  position: relative; z-index: 1;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.hero-stats {
  position: relative; z-index: 1;
  display: flex;
  gap: 52px;
  padding: 30px 0 52px;
}
.stat-item .stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features { background: var(--white); padding: 48px 0 80px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: #FAFAFA; }
.feature-icon {
  width: 50px; height: 50px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}
.feature-card .feature-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p  { font-size: 14px; color: var(--text-gray); line-height: 1.6; }

/* ============================================================
   ABOUT SECTIONS
   ============================================================ */
.about-section { padding: 80px 0; }
.about-section.gray { background: var(--gray-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 28px;
  color: var(--black);
}
.about-text h2 .muted-italic { font-style: italic; color: var(--text-light); font-weight: 700; }
.about-text h2 .red-italic   { font-style: italic; color: var(--red); font-weight: 700; }

.about-img img {
  width: 100%; height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-overlay { position: relative; }
.about-img-overlay img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.phone-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.phone-badge-left p { font-size: 12px; color: var(--text-gray); margin-bottom: 3px; }
.phone-badge-left strong { font-size: 18px; font-weight: 800; color: var(--black); }
.phone-badge-btn {
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.check-list { display: flex; flex-direction: column; gap: 20px; margin: 24px 0 32px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-circle {
  width: 24px; height: 24px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.check-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.check-item p  { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* ============================================================
   FLEET SECTION
   ============================================================ */
.fleet-section { background: var(--gray-bg); padding: 80px 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.section-header-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--black);
}
.section-header-text h2 em { font-style: italic; color: var(--red); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.car-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

/* ── Clickable thumbnail link wrapper ── */
.car-card-img-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.car-card-img-link:hover .car-card-img img { transform: scale(1.05); }

.car-card-img {
  position: relative;
  height: 218px;
  overflow: hidden;
}
.car-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.car-card:hover .car-card-img img { transform: scale(1.05); }

/* ── Car title link ── */
.car-title-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.car-title-link:hover { color: var(--red); }

.car-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
}
.badge-economy    { background:#E8F5E9; color:#2E7D32; }
.badge-sedan      { background:#E3F2FD; color:#1565C0; }
.badge-suv        { background:#FFF3E0; color:#E65100; }
.badge-pickup     { background:#F3E5F5; color:#6A1B9A; }
.badge-van        { background:#E0F7FA; color:#00838F; }
.badge-luxury     { background:#EDE7F6; color:#4527A0; }
.badge-premium    { background:#FFE8E8; color:#C62828; }
.badge-ultra      { background:#FFF8E1; color:#F9A825; }

.car-card-body { padding: 20px 22px; }
.car-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.car-title-row h3 { font-size: 18px; font-weight: 700; }

.car-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.car-spec  {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-gray);
}
.car-spec svg { flex-shrink: 0; color: #AAAAAA; }

.car-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.car-price { font-size: 22px; font-weight: 800; color: var(--black); }
.car-price span { font-size: 13px; font-weight: 500; color: var(--text-gray); }
.btn-book {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-book:hover { background: var(--red-hover); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 80px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}
.service-card:hover { background: #EBEBEB; transform: translateY(-3px); }
.service-card.featured { background: var(--red); color: var(--white); }
.service-card.featured:hover { background: var(--red-hover); }
.service-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.service-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card.featured .service-icon img { filter: brightness(0) invert(1); }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.service-card p  { font-size: 13px; color: var(--text-gray); line-height: 1.65; margin-bottom: 18px; }
.service-card.featured p { color: rgba(255,255,255,0.78); }
.service-learn {
  font-size: 13px; font-weight: 600; color: var(--red);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.service-learn:hover { gap: 9px; }
.service-card.featured .service-learn { color: var(--white); }

/* ============================================================
   HOW WE WORK — STEPS
   ============================================================ */
.steps-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.steps-image {
  background: url('../images/ui/steps-bg.webp') center / cover no-repeat;
}
.steps-content {
  background: var(--dark);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.steps-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 44px;
  line-height: 1.15;
}
.steps-list { display: flex; flex-direction: column; gap: 36px; }
.step-item { display: flex; gap: 22px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.step-text h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-text p  { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 80px 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-quote {
  font-size: 14px; color: var(--text-gray);
  line-height: 1.75; margin-bottom: 24px;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; color: var(--red); font-size: 18px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%; object-fit: cover;
}
.t-name { font-size: 15px; font-weight: 700; color: var(--black); }
.t-role { font-size: 12px; color: var(--text-gray); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 80px 0; background: var(--gray-bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--black);
}
.faq-left h2 em { font-style: italic; color: var(--red); }
.faq-left p { font-size: 15px; color: var(--text-gray); margin-top: 16px; line-height: 1.7; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15px; font-weight: 600;
  color: var(--black);
  cursor: pointer;
  gap: 16px;
  width: 100%; text-align: left;
  background: none; border: none;
  font-family: var(--font);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px; line-height: 1;
  color: var(--text-gray);
  transition: var(--transition);
}
.faq-item.active .faq-icon {
  background: var(--red); border-color: var(--red); color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 14px; color: var(--text-gray);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-bottom: 0;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  position: relative;
  background: url('../images/ui/hero-bg.webp') center / cover no-repeat;
  padding: 100px 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800; color: var(--white);
  margin-bottom: 14px; line-height: 1.15;
}
.cta-section p {
  font-size: 16px; color: rgba(255,255,255,0.72);
  margin-bottom: 38px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); padding-top: 68px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 88px; width: auto; margin-bottom: 20px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.75; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  font-size: 14px;
}
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.52);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--white); }
.footer-links a::before { content: '›'; color: var(--red); font-size: 16px; font-weight: 700; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.52);
}
.footer-contact-item a { color: rgba(255,255,255,0.52); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.f-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }

.newsletter-sub p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.newsletter-input {
  flex: 1; padding: 13px 20px;
  background: transparent; border: none;
  color: var(--white); font-size: 14px; outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.36); }
.newsletter-btn {
  padding: 13px 22px;
  background: var(--red); color: var(--white);
  border: none; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--red-hover); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.36);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom a { color: rgba(255,255,255,0.36); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   FLEET PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  padding: 150px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,0.58); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--red); }

.fleet-page-section { padding: 60px 0 80px; background: var(--gray-bg); }
.fleet-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--white); color: var(--text-gray);
  cursor: pointer; transition: var(--transition);
  font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.no-results {
  text-align: center; padding: 60px; color: var(--text-gray);
  display: none; grid-column: 1/-1;
}
.no-results.show { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .fleet-grid         { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps-section      { grid-template-columns: 1fr; }
  .steps-image        { height: 280px; }
  .steps-content      { padding: 56px 40px; }
  .about-grid, .about-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .faq-grid           { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .navbar-nav, .navbar-inner > .btn { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card  { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-card:last-child { border-bottom: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 32px; }
  .stat-item .stat-num { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .fleet-grid        { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats        { flex-wrap: wrap; gap: 24px; }
  .steps-content     { padding: 40px 24px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-hero {
  position: relative;
  background: url('../images/ui/hero-bg.webp') center / cover no-repeat;
  padding: 170px 0 80px;
  overflow: hidden;
}
.about-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.30) 100%);
}
.about-page-hero .container { position: relative; z-index: 1; }
.about-page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 18px;
}
.about-page-hero h1 em { font-style: italic; color: var(--red); }
.about-page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.72);
  max-width: 520px; line-height: 1.75; margin-bottom: 36px;
}
.about-stats-bar {
  display: flex; gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  margin-top: 64px;
  position: relative; z-index: 2;
}
.about-stat-item {
  flex: 1;
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.about-stat-item:last-child { border-right: none; }
.about-stat-item .num {
  font-size: 40px; font-weight: 800; color: var(--red);
  line-height: 1; margin-bottom: 6px;
}
.about-stat-item .lbl { font-size: 14px; color: var(--text-gray); font-weight: 500; }

.about-mission { padding: 96px 0 80px; }
.about-values  { padding: 80px 0; background: var(--gray-bg); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

.about-team    { padding: 80px 0; }
.team-intro { max-width: 560px; margin-bottom: 48px; }
.team-intro h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; margin-bottom: 14px; }
.team-intro h2 em { font-style: italic; color: var(--red); }
.team-intro p { font-size: 15px; color: var(--text-gray); line-height: 1.75; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-page { background: var(--gray-bg); padding-top: 72px; min-height: 100vh; }
.booking-hero {
  background: var(--dark);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.booking-hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.06;
}
.booking-hero .container { position: relative; z-index: 1; }
.booking-hero h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: var(--white); margin-bottom: 10px;
}
.booking-hero p { font-size: 15px; color: rgba(255,255,255,0.58); }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  padding: 40px 0 80px;
  align-items: start;
}

/* ── Form card ── */
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-card);
}
.booking-form-card h2 {
  font-size: 22px; font-weight: 800; margin-bottom: 6px;
}
.booking-form-card > p {
  font-size: 14px; color: var(--text-gray); margin-bottom: 36px; line-height: 1.6;
}

/* Steps indicator */
.form-steps {
  display: flex; gap: 0; margin-bottom: 40px;
  border-radius: var(--radius-pill);
  background: var(--gray-bg);
  padding: 4px;
}
.form-step-tab {
  flex: 1; padding: 10px 8px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  color: var(--text-gray);
  text-align: center; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 7px;
  border: none; background: none; font-family: var(--font);
}
.form-step-tab.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.form-step-tab .step-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.form-step-tab.active .step-dot { background: var(--red); color: var(--white); }
.form-step-tab.done   .step-dot { background: #2E7D32; color: var(--white); }

/* Form panels */
.form-panel { display: none; }
.form-panel.active { display: block; }

/* Field groups */
.field-group { margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-label {
  display: block;
  font-size: 13px; font-weight: 600; color: var(--black);
  margin-bottom: 8px;
}
.field-label span { color: var(--red); }
.field-input, .field-select, .field-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px; color: var(--black);
  font-family: var(--font);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.10);
}
.field-input.error, .field-select.error, .field-textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.10);
}
.field-input::placeholder, .field-textarea::placeholder { color: #BBBBBB; }
.field-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.field-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field-error {
  font-size: 12px; color: #e53e3e;
  margin-top: 5px; display: none;
}
.field-group.has-error .field-error { display: block; }
.field-hint { font-size: 12px; color: var(--text-gray); margin-top: 5px; }

/* Input with icon */
.field-input-wrap { position: relative; }
.field-input-wrap .field-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-gray); pointer-events: none;
}
.field-input-wrap .field-input { padding-left: 42px; }

/* Date fields pair */
.date-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Duration badge */
.duration-badge {
  background: var(--red-light);
  border: 1px dashed rgba(227,30,36,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--red); font-weight: 600;
  margin-top: 12px;
}
.duration-badge svg { flex-shrink: 0; }

/* Service type cards */
.service-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-type-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  cursor: pointer; transition: var(--transition);
  display: flex; gap: 12px; align-items: flex-start;
  position: relative;
}
.service-type-card:hover { border-color: rgba(227,30,36,0.4); }
.service-type-card.selected { border-color: var(--red); background: var(--red-light); }
.service-type-card input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.service-type-icon {
  width: 38px; height: 38px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--text-gray);
  transition: var(--transition);
}
.service-type-card.selected .service-type-icon { background: var(--red); color: white; }
.service-type-card h6 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.service-type-card p  { font-size: 12px; color: var(--text-gray); line-height: 1.5; }

/* Car select cards */
.car-select-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-height: 340px; overflow-y: auto; padding-right: 4px; }
.car-select-grid::-webkit-scrollbar { width: 4px; }
.car-select-grid::-webkit-scrollbar-track { background: var(--gray-bg); border-radius: 4px; }
.car-select-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.car-option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  cursor: pointer; transition: var(--transition);
  position: relative;
}
.car-option:hover { border-color: rgba(227,30,36,0.4); }
.car-option.selected { border-color: var(--red); background: var(--red-light); }
.car-option input[type="radio"] { position: absolute; opacity: 0; }
.car-option img { width: 100%; height: 80px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; }
.car-option-name  { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.car-option-price { font-size: 12px; color: var(--red); font-weight: 600; }
.car-check {
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.car-option.selected .car-check { opacity: 1; }

/* Form nav buttons */
.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 12px;
}
.btn-prev {
  padding: 13px 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600;
  color: var(--text-gray); cursor: pointer;
  font-family: var(--font); background: var(--white);
  transition: var(--transition);
}
.btn-prev:hover { border-color: var(--black); color: var(--black); }
.btn-next, .btn-submit {
  padding: 14px 36px;
  background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: var(--font);
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
}
.btn-next:hover, .btn-submit:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227,30,36,0.3);
}
.btn-submit { margin-left: auto; }

/* Section heading inside form */
.form-section-title {
  font-size: 15px; font-weight: 700; color: var(--black);
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.form-section-title svg { color: var(--red); }

/* ── Sidebar ── */
.booking-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.sidebar-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: var(--black); }

/* Price estimator */
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-gray);
}
.price-row:last-of-type { border-bottom: none; }
.price-row strong { color: var(--black); font-weight: 700; }
.price-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 0; border-top: 2px solid var(--dark);
  margin-top: 8px;
}
.price-total-row .total-label { font-size: 15px; font-weight: 700; }
.price-total-row .total-amount { font-size: 22px; font-weight: 800; color: var(--red); }
.price-note { font-size: 12px; color: var(--text-gray); margin-top: 10px; line-height: 1.6; }

/* Contact card */
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--red-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.contact-item-text p { font-size: 12px; color: var(--text-gray); margin-bottom: 2px; }
.contact-item-text a, .contact-item-text span {
  font-size: 14px; font-weight: 600; color: var(--black);
}
.contact-item-text a:hover { color: var(--red); }

/* Trust badges */
.trust-items { display: flex; flex-direction: column; gap: 12px; }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--black);
}
.trust-item-check {
  width: 24px; height: 24px;
  background: #E8F5E9; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #2E7D32; flex-shrink: 0;
}

/* Success state */
.booking-success {
  display: none;
  text-align: center; padding: 60px 20px;
}
.success-icon {
  width: 80px; height: 80px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: #2E7D32;
}
.booking-success h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.booking-success p  { font-size: 15px; color: var(--text-gray); line-height: 1.7; margin-bottom: 28px; }

/* Responsive */
@media (max-width: 960px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { order: -1; }
  .booking-form-card { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .field-row, .date-pair { grid-template-columns: 1fr; }
  .service-type-grid    { grid-template-columns: 1fr; }
  .car-select-grid      { grid-template-columns: 1fr; }
  .about-stats-bar      { flex-direction: column; }
  .about-stat-item      { border-right: none; border-bottom: 1px solid var(--border); }
  .values-grid          { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Hero */
.contact-page-hero {
  position: relative;
  background: url('../images/ui/hero-bg.webp') center / cover no-repeat;
  padding: 170px 0 72px;
  overflow: hidden;
}
.contact-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.68) 60%, rgba(0,0,0,0.35) 100%);
}
.contact-page-hero .container { position: relative; z-index: 1; }
.contact-page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 18px;
}
.contact-page-hero h1 em { font-style: italic; color: var(--red); }
.contact-page-hero > .container > p {
  font-size: 17px; color: rgba(255,255,255,0.70);
  max-width: 500px; line-height: 1.75; margin-bottom: 36px;
}

/* Quick contact badges in hero */
.contact-quick-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 8px;
}
.contact-quick-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 14px; font-weight: 500;
  transition: var(--transition);
}
.contact-quick-badge:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
.contact-quick-badge.whatsapp:hover { background: rgba(37,211,102,0.22); border-color: rgba(37,211,102,0.45); }

/* Channel cards */
.contact-cards-section { padding: 72px 0 0; background: var(--white); }
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-channel-card {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.channel-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.channel-icon.phone   { background: rgba(227,30,36,0.10); color: var(--red); }
.channel-icon.whatsapp{ background: rgba(37,211,102,0.12); color: #25D366; }
.channel-icon.email   { background: rgba(59,130,246,0.10); color: #3B82F6; }
.channel-icon.location{ background: rgba(245,158,11,0.10); color: #F59E0B; }
.contact-channel-card h3 { font-size: 17px; font-weight: 700; color: var(--black); }
.contact-channel-card p  { font-size: 13px; color: var(--text-gray); line-height: 1.6; flex: 1; }
.channel-link {
  font-size: 14px; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--transition);
}
.channel-link:hover { color: var(--red-hover); }
.channel-note {
  font-size: 12px; color: var(--text-gray);
  margin-top: 2px;
}

/* Main contact section */
.contact-main-section { padding: 60px 0 80px; background: var(--white); }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

/* Form card */
.contact-form-card {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
}
.contact-form-header { margin-bottom: 36px; }
.contact-form-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; margin-bottom: 12px;
}
.contact-form-header h2 em { font-style: italic; color: var(--red); }
.contact-form-header p { font-size: 15px; color: var(--text-gray); line-height: 1.7; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Preferred contact method */
.contact-pref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.contact-pref-card { cursor: pointer; }
.contact-pref-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.pref-inner {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px; font-weight: 600; color: var(--text-gray);
  background: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}
.pref-inner:hover { border-color: rgba(227,30,36,0.4); }
.contact-pref-card.selected .pref-inner {
  border-color: var(--red);
  background: var(--red-light);
  color: var(--black);
}

/* Submit button */
.contact-submit-btn {
  width: 100%;
  padding: 16px 28px;
  background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: var(--font);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 8px;
}
.contact-submit-btn:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(227,30,36,0.30);
}
.contact-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Success state */
.cf-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.cf-success-icon {
  width: 72px; height: 72px;
  background: #E8F5E9; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: #2E7D32;
}
.cf-success h4 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.cf-success p  { font-size: 15px; color: var(--text-gray); line-height: 1.7; }

/* Info column */
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }

/* Hours card */
.contact-hours-card, .contact-areas-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.contact-hours-card h4, .contact-areas-card h4 {
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px; color: var(--black);
}
.contact-hours-card h4 svg, .contact-areas-card h4 svg { color: var(--red); }
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span { color: var(--text-gray); }
.hours-row strong { color: var(--black); font-weight: 700; }
.badge-24 {
  background: #E8F5E9; color: #2E7D32;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
}

/* Areas card */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.area-city {
  font-size: 14px; font-weight: 700; color: var(--red);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.area-list { list-style: none; }
.area-list li {
  font-size: 13px; color: var(--text-gray);
  padding: 4px 0;
  display: flex; align-items: flex-start; gap: 6px;
}
.area-list li::before {
  content: '·';
  color: var(--red); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

/* Quick book CTA card */
.contact-quick-book {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.qb-icon {
  width: 48px; height: 48px;
  background: rgba(227,30,36,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.qb-content h4 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.qb-content p  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.contact-quick-book .btn { align-self: flex-start; width: auto; }

/* Map section */
.contact-map-section { background: var(--gray-bg); padding: 80px 0 0; }
.map-header { text-align: center; margin-bottom: 48px; }
.map-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; margin-bottom: 14px;
}
.map-header h2 em { font-style: italic; color: var(--red); }
.map-header p { font-size: 15px; color: var(--text-gray); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.map-embed-wrap {
  position: relative;
  line-height: 0;
}
.map-embed-wrap iframe {
  display: block; width: 100%;
  border-radius: 0;
}
.map-overlay-badge {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 14px; font-weight: 700; color: var(--black);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.map-overlay-badge svg { color: var(--red); }

/* Responsive */
@media (max-width: 1100px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-info-col  { order: -1; }
  .contact-form-card { padding: 32px 28px; }
}
@media (max-width: 768px) {
  .contact-quick-badges { flex-direction: column; align-items: flex-start; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-pref-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-form-card  { padding: 24px 20px; }
}

/* ============================================================
   CAR DETAIL PAGE  (fleet/[id].html)
   ============================================================ */

/* Dark header */
.car-detail-header {
  background: var(--dark);
  padding: 120px 0 44px;
  position: relative;
  overflow: hidden;
}
.car-detail-header::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}
.car-detail-header .container { position: relative; z-index: 1; }

/* Back link */
.back-to-fleet {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.50);
  margin-bottom: 14px;
  transition: color var(--transition);
  text-decoration: none;
}
.back-to-fleet:hover { color: rgba(255,255,255,0.90); }

/* Breadcrumb inside detail header */
.cd-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; margin-bottom: 20px;
}
.cd-breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.cd-breadcrumb a:hover { color: rgba(255,255,255,0.85); }

/* Title row */
.cd-title-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.car-detail-header h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; color: var(--white); line-height: 1.1;
}
.cd-badge {
  position: static !important;
  font-size: 13px !important;
}

/* Hero price line */
.cd-price-hero {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800; color: var(--red);
}
.cd-price-hero span { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.50); }

/* Main content area */
.car-detail-main {
  background: var(--gray-bg);
  padding: 52px 0 88px;
}
.car-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  align-items: start;
}

/* Image card */
.car-detail-img-col { position: sticky; top: 90px; }
.car-detail-img-card {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.car-detail-img-card img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--gray-bg);
}

/* Info column */
.car-detail-info-col { display: flex; flex-direction: column; gap: 20px; }

/* Price card */
.car-detail-price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.cd-price-block {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px; margin-bottom: 20px;
}
.cd-price-num {
  font-size: 38px; font-weight: 800; color: var(--red); line-height: 1;
}
.cd-price-per { font-size: 14px; color: var(--text-gray); margin-top: 4px; }

/* Specs table */
.cd-specs-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.cd-spec-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.cd-spec-row:last-child { border-bottom: none; }
.cd-spec-label {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-gray);
}
.cd-spec-label svg { color: #AAAAAA; flex-shrink: 0; }
.cd-spec-row strong { font-weight: 700; color: var(--black); }

/* Availability badge */
.cd-avail-badge {
  display: flex; align-items: center; gap: 8px;
  background: #E8F5E9;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px; font-weight: 600; color: #2E7D32;
  margin-bottom: 20px;
}
.cd-avail-badge svg { flex-shrink: 0; }

/* CTA buttons */
.cd-cta-stack { display: flex; flex-direction: column; gap: 10px; }
.cd-btn-full  { justify-content: center; width: 100%; }
.cd-btn-wa {
  background: #25D366; color: var(--white);
  border: none; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700;
  padding: 14px 28px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.cd-btn-wa:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.30);
}

/* Note card */
.cd-note-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  font-size: 14px; color: var(--text-gray); line-height: 1.7;
}
.cd-note-card a { color: var(--red); font-weight: 600; }
.cd-note-card a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 960px) {
  .car-detail-grid     { grid-template-columns: 1fr; }
  .car-detail-img-col  { position: static; }
  .car-detail-info-col { order: -1; }
  .cd-cta-stack        { flex-direction: row; }
  .cd-btn-full         { flex: 1; }
}
@media (max-width: 600px) {
  .cd-cta-stack { flex-direction: column; }
  .car-detail-header { padding: 100px 0 36px; }
}

/* ============================================================
   UTILITIES & ANIMATIONS
   ============================================================ */
.text-red   { color: var(--red); }
.mt-4       { margin-top: 16px; }
.pt-0       { padding-top: 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }

/* ============================================================
   SERVICE AREAS SECTION (index.html SEO)
   ============================================================ */
.service-areas-section {
  padding: 80px 0;
  background: var(--gray-bg);
}
.areas-intro {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.areas-intro p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.area-col {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.area-col h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-list li {
  font-size: 14px;
  color: var(--text-gray);
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.5;
}
.area-list li:last-child { border-bottom: none; }

/* Rental Types Strip */
.rental-types-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-top: 8px;
}
.rt-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.rt-item svg { color: var(--red); flex-shrink: 0; }

@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .areas-grid { grid-template-columns: 1fr; }
  .rental-types-strip { gap: 8px; }
  .rt-item { font-size: 12px; padding: 8px 14px; }
}

/* ============================================================
   FLEET PAGE SEO INTRO + WEDDING BAR
   ============================================================ */
.fleet-seo-intro {
  background: #f9f9f9;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.fleet-seo-intro p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}
.fleet-wedding-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--dark);
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 36px;
}
.fwb-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
}
.fwb-text svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.fwb-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.fwb-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
@media (max-width: 680px) {
  .fleet-wedding-bar { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   5-COLUMN FOOTER GRID
   ============================================================ */
.footer-grid-5 {
  grid-template-columns: 1.4fr 0.9fr 1fr 1fr 1.3fr;
}
@media (max-width: 1200px) {
  .footer-grid-5 { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 1100px) {
  .footer-grid-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid-5 { grid-template-columns: 1fr; gap: 32px; }
}


/* ── Car Detail SEO Sections ─────────────────────────────── */
.cd-seo-section { padding: 72px 0; background: #fff; }
.cd-seo-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.cd-seo-main h2 { font-size: clamp(22px,3vw,28px); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.3; }
.cd-seo-main h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.cd-seo-main p { font-size: 15px; color: var(--text-gray); line-height: 1.8; margin-bottom: 16px; }
.cd-why-card, .cd-links-card { background: var(--gray-bg); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.cd-why-card h4, .cd-links-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.cd-why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.cd-why-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-gray); }
.cd-why-list li::before { content: '\2713'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.cd-links-card a { display: block; font-size: 13px; font-weight: 600; color: var(--red); text-decoration: none; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.cd-links-card a:last-child { border-bottom: none; }
.cd-links-card a:hover { color: var(--dark); }
@media (max-width: 900px) { .cd-seo-grid { grid-template-columns: 1fr; } }

/* Car Detail FAQ */
.cd-faq-section { padding: 64px 0; background: var(--gray-bg); }
.cd-faq-section > .container > h2 { font-size: clamp(20px,2.5vw,26px); font-weight: 800; color: var(--dark); margin-bottom: 28px; }
.cd-faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 12px; }
.cd-faq-item { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,0,0,.07); }
.cd-faq-item summary { font-size: 15px; font-weight: 600; color: var(--dark); padding: 18px 20px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.cd-faq-item summary::-webkit-details-marker { display: none; }
.cd-faq-item summary::after { content: '+'; font-size: 20px; color: var(--red); font-weight: 400; flex-shrink: 0; margin-left: 12px; }
.cd-faq-item[open] summary::after { content: '\2212'; }
.cd-faq-answer { padding: 0 20px 18px; font-size: 14px; color: var(--text-gray); line-height: 1.75; }
.cd-faq-answer p { margin: 0; }

/* Related Cars */
.cd-related-section { padding: 72px 0; background: #fff; }

/* Compact action buttons inside car cards (related / fleet grid) */
.car-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.car-card-actions .btn {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  font-size: 13px;
  justify-content: center;
}
.car-card-actions .cd-btn-wa {
  flex: 0 0 auto;
  padding: 10px 14px;
  font-size: 13px;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.wa-float svg { flex-shrink: 0; }
@media (max-width: 480px) {
  .wa-float { bottom: 20px; right: 16px; padding: 11px 16px; font-size: 13px; }
}

/* V8 Pricing Table */
.cd-pricing-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.cd-pricing-table th { background: var(--dark); color: #fff; font-size: 13px; font-weight: 700; padding: 14px 16px; text-align: left; }
.cd-pricing-table td { padding: 13px 16px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--black); }
.cd-pricing-table tr:last-child td { border-bottom: none; }
.cd-pricing-table tr:nth-child(even) td { background: #fafafa; }
.cd-pricing-table .price-highlight { color: var(--red); font-weight: 700; }

/* V8 Booking Steps */
.cd-steps-section { padding: 64px 0; background: var(--dark); }
.cd-steps-section .section-header { margin-bottom: 40px; }
.cd-steps-section .section-label { background: rgba(227,30,36,0.15); color: #fff; }
.cd-steps-section h2 { color: #fff; }
.cd-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cd-step-item { position: relative; }
.cd-step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cd-step-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cd-step-item p { font-size: 13px; color: rgba(255,255,255,0.60); line-height: 1.65; margin: 0; }
@media (max-width: 768px) {
  .cd-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cd-steps-grid { grid-template-columns: 1fr; }
}
