/* ============================================================
   S.M. Travels — Master Stylesheet
   Theme: Red + White + Black | Mobile-First | Premium Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --red:          #E31E24;
  --red-dark:     #B91C1C;
  --red-light:    #FF4444;
  --black:        #0D0D0D;
  --dark:         #1A1A1A;
  --dark2:        #262626;
  --white:        #FFFFFF;
  --off-white:    #F9FAFB;
  --light:        #F3F4F6;
  --gray:         #6B7280;
  --gray-lt:      #E5E7EB;
  --text:         #1F2937;
  --text-lt:      #6B7280;

  --grad-red:     linear-gradient(135deg, #E31E24 0%, #B91C1C 100%);
  --grad-dark:    linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  --grad-hero:    linear-gradient(120deg, rgba(0,0,0,.88) 0%, rgba(183,28,28,.18) 100%);

  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.18);
  --shadow-red:   0 6px 24px rgba(227,30,36,.35);

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --trans: all .3s ease;
  --trans-fast: all .18s ease;

  --header-h: 68px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; border: none; }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; }

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container  { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.fw-800     { font-weight: 800; }
section     { padding: 80px 0; }

.section-tag {
  display: inline-block;
  background: rgba(227,30,36,.1);
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--r-full);
  border-left: 3px solid var(--red);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-lt);
  max-width: 580px;
  line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .2px;
}
.btn-primary {
  background: var(--grad-red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(227,30,36,.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--black); transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,.4); }
.btn-sm  { padding: 9px 20px; font-size: .88rem; }
.btn-lg  { padding: 16px 38px; font-size: 1.1rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.15rem; }

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--trans);
}
.header.scrolled {
  background: rgba(10,10,10,.99);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--grad-red);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-size: 1.2rem; font-weight: 800; color: var(--white); letter-spacing: -.4px; }
.logo-sub  { font-size: .65rem; color: var(--red); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
/* Menu */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: var(--trans);
  position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-call, .nav-wa {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 15px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  transition: var(--trans);
}
.nav-call { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.18); }
.nav-call:hover { background: rgba(255,255,255,.2); }
.nav-wa   { background: #25D366; color: var(--white); }
.nav-wa:hover { background: #1ebe5c; }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   6. HERO — HOME
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1600&q=80') center/cover no-repeat;
  opacity: .32;
  transform: scale(1.04);
  transition: opacity .5s;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--grad-hero);
}
.hero-container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(227,30,36,.18);
  border: 1px solid rgba(227,30,36,.35);
  color: #FF7070;
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: .8rem; font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 14px;
}
.hero h1 .red { color: var(--red); }
.hero .hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.78); margin-bottom: 8px; }
.hero-loc {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.55); font-size: .85rem; margin-bottom: 30px;
}
.hero-loc i { color: var(--red); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat .num {
  font-size: 2rem; font-weight: 900; color: var(--white);
  display: block; line-height: 1;
}
.hero-stat .num span { color: var(--red); }
.hero-stat .lbl { font-size: .68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; }

/* Booking form in hero */
.hero-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero-form h3 { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.hero-form p { color: rgba(255,255,255,.55); font-size: .82rem; margin-bottom: 20px; }

/* ============================================================
   7. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: calc(var(--header-h) + 48px) 0 52px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .22;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.92) 0%, rgba(183,28,28,.12) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); font-weight: 900; margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 1.05rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 14px;
}
.breadcrumb a   { color: var(--red); font-size: .82rem; }
.breadcrumb span { color: rgba(255,255,255,.45); font-size: .82rem; }
.breadcrumb i   { color: rgba(255,255,255,.25); font-size: .65rem; }

/* ============================================================
   8. FORMS
   ============================================================ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.8); margin-bottom: 5px; }
.form-control {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  color: var(--white);
  font-size: .88rem;
  transition: var(--trans);
}
.form-control::placeholder { color: rgba(255,255,255,.35); }
.form-control:focus {
  border-color: var(--red);
  background: rgba(227,30,36,.08);
  box-shadow: 0 0 0 3px rgba(227,30,36,.12);
}
.form-control option { background: #1a1a1a; color: var(--white); }
/* Light form variant */
.form-light .form-group label { color: var(--text); }
.form-light .form-control { background: var(--light); border-color: var(--gray-lt); color: var(--text); }
.form-light .form-control::placeholder { color: var(--gray); }
.form-light .form-control:focus { border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px rgba(227,30,36,.1); }
.form-light .form-control option { background: var(--white); color: var(--text); }

/* ============================================================
   9. CAR CARDS
   ============================================================ */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; }
.car-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-lt);
  transition: var(--trans);
}
.car-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(227,30,36,.22); }
.car-img {
  position: relative; height: 210px; overflow: hidden;
  background: linear-gradient(135deg,#1a1a1a,#2d2d2d);
  display: flex; align-items: center; justify-content: center;
}
.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.car-card:hover .car-img img { transform: scale(1.06); }
.car-img-placeholder {
  font-size: 64px; opacity: .4;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.car-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--grad-red); color: var(--white);
  padding: 4px 12px; border-radius: var(--r-full);
  font-size: .7rem; font-weight: 700;
}
.car-body { padding: 20px; }
.car-name { font-size: 1.2rem; font-weight: 800; color: var(--black); margin-bottom: 2px; }
.car-cat { font-size: .68rem; color: var(--red); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 12px; }
.car-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 12px; }
.car-price .amt { font-size: 1.65rem; font-weight: 900; color: var(--red); }
.car-price .unit { font-size: .82rem; color: var(--gray); }
.car-feats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.car-feat {
  display: flex; align-items: center; gap: 4px;
  font-size: .7rem; color: var(--text-lt);
  background: var(--light); padding: 4px 10px;
  border-radius: var(--r-full); font-weight: 500;
}
.car-feat i { color: var(--red); font-size: .62rem; }
.car-actions { display: flex; gap: 8px; }
.car-actions .btn { flex: 1; font-size: .78rem; padding: 9px 12px; }

/* ============================================================
   10. SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.svc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-lt);
  transition: var(--trans);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--grad-red);
  border-radius: 4px 0 0 4px;
  transition: var(--trans);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(227,30,36,.15); }
.svc-icon {
  width: 60px; height: 60px;
  background: rgba(227,30,36,.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--red);
  margin-bottom: 18px;
  transition: var(--trans);
}
.svc-card:hover .svc-icon { background: var(--red); color: var(--white); transform: scale(1.1) rotate(5deg); }
.svc-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.svc-card p  { font-size: .88rem; color: var(--text-lt); line-height: 1.75; margin-bottom: 18px; }
.svc-card ul { margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.svc-card ul li { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--text-lt); }
.svc-card ul li i { color: var(--red); font-size: .7rem; }

/* ============================================================
   11. WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  text-align: center; padding: 32px 20px;
  border-radius: var(--r-lg); background: var(--white);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-lt);
  transition: var(--trans);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(227,30,36,.2); }
.why-icon {
  width: 70px; height: 70px; margin: 0 auto 14px;
  background: rgba(227,30,36,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--red);
  transition: var(--trans);
}
.why-card:hover .why-icon { background: var(--red); color: var(--white); }
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 7px; }
.why-card p  { font-size: .82rem; color: var(--text-lt); line-height: 1.65; }

/* ============================================================
   12. PRICING / PLAN CARDS (Self Drive)
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.plan-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-lt);
  transition: var(--trans);
  position: relative;
}
.plan-card.featured { border-color: var(--red); }
.plan-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-red); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: 4px 18px;
  border-radius: var(--r-full); white-space: nowrap;
}
.plan-card:hover { border-color: var(--red); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-name { font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.plan-price .cur  { font-size: 1.4rem; font-weight: 700; color: var(--red); }
.plan-price .amt  { font-size: 2.8rem; font-weight: 900; color: var(--red); line-height: 1; }
.plan-price .per  { font-size: .85rem; color: var(--gray); }
.plan-desc { font-size: .85rem; color: var(--text-lt); margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--gray-lt); }
.plan-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.plan-feat  { display: flex; align-items: center; gap: 9px; font-size: .88rem; color: var(--text); }
.plan-feat i { color: #16a34a; }
.plan-feat.cross i { color: #dc2626; }

/* ============================================================
   13. GALLERY
   ============================================================ */
.gallery-filter { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 22px; border-radius: var(--r-full);
  font-size: .85rem; font-weight: 600;
  background: var(--light); color: var(--text);
  border: 1.5px solid var(--gray-lt); cursor: pointer;
  transition: var(--trans); font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.gallery-item {
  border-radius: var(--r-md); overflow: hidden;
  cursor: pointer; position: relative;
  aspect-ratio: 4/3; background: var(--light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-ov {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transition: var(--trans);
  color: var(--white);
}
.gallery-ov i   { font-size: 28px; }
.gallery-ov span { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.gallery-item:hover img   { transform: scale(1.08); }
.gallery-item:hover .gallery-ov { opacity: 1; }
/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.95);
  align-items: center; justify-content: center; padding: 20px;
}
.lightbox.show { display: flex; }
.lb-img { max-width: 90%; max-height: 85vh; border-radius: var(--r-md); box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1); border: none;
  border-radius: 50%; color: var(--white); font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.lb-close:hover { background: var(--red); }

/* ============================================================
   14. CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 52px; align-items: start; }
.contact-info h3 { font-size: 1.6rem; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.contact-info > p { color: var(--text-lt); margin-bottom: 28px; font-size: .95rem; line-height: 1.75; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.c-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(227,30,36,.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red);
}
.c-text h4 { font-size: .95rem; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.c-text p, .c-text a { font-size: .88rem; color: var(--text-lt); transition: var(--trans); }
.c-text a:hover { color: var(--red); }
.map-wrap { margin-top: 28px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; }

/* ============================================================
   15. CTA SECTION
   ============================================================ */
.cta-sec {
  background: var(--grad-red); padding: 64px 0;
  position: relative; overflow: hidden; text-align: center;
}
.cta-sec::before {
  content: ''; position: absolute;
  top: -50%; right: -8%; width: 440px; height: 440px;
  background: rgba(255,255,255,.07); border-radius: 50%;
}
.cta-sec::after {
  content: ''; position: absolute;
  bottom: -50%; left: -6%; width: 340px; height: 340px;
  background: rgba(0,0,0,.1); border-radius: 50%;
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--white); margin-bottom: 10px; }
.cta-inner p  { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 30px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer { background: var(--black); color: var(--white); padding-top: 64px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 52px;
}
.f-brand p { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.75; margin: 14px 0 20px; }
.f-socials { display: flex; gap: 10px; }
.f-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px; transition: var(--trans);
}
.f-social:hover { background: var(--red); transform: translateY(-2px); }
.footer-col h4 {
  font-size: .95rem; font-weight: 700; color: var(--white);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,.06);
  position: relative;
}
.footer-col h4::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 28px; height: 2px;
  background: var(--red);
}
.f-links { display: flex; flex-direction: column; gap: 9px; }
.f-links a {
  color: rgba(255,255,255,.55); font-size: .85rem;
  display: flex; align-items: center; gap: 7px; transition: var(--trans);
}
.f-links a i { font-size: .62rem; color: var(--red); }
.f-links a:hover { color: var(--white); padding-left: 4px; }
.f-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.f-ci-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(227,30,36,.14);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--red);
}
.f-contact-item p, .f-contact-item a {
  font-size: .82rem; color: rgba(255,255,255,.6);
  line-height: 1.5; transition: var(--trans);
}
.f-contact-item a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-bottom span { color: var(--red); }

/* ============================================================
   17. FLOATING ELEMENTS
   ============================================================ */
/* WhatsApp bubble */
.float-wa {
  position: fixed; bottom: 88px; right: 22px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white); font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.42);
  transition: var(--trans);
  animation: pulse-wa 2.5s ease infinite;
}
.float-wa:hover { transform: scale(1.12); background: #1ebe5c; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 6px 38px rgba(37,211,102,.7); }
}
/* Mobile bottom bar */
.bottom-bar {
  display: none; position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--black);
  border-top: 2px solid var(--red);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
}
.bb-inner { display: flex; align-items: center; justify-content: space-around; }
.bb-btn {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px;
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px;
  padding: 4px 16px; transition: var(--trans);
}
.bb-btn i { font-size: 20px; }
.bb-btn.call { color: #60a5fa; }
.bb-btn.wa   { color: #4ade80; }
.bb-btn.book {
  color: var(--white); background: var(--red);
  border-radius: var(--r-full); padding: 8px 22px;
  box-shadow: var(--shadow-red);
}

/* ============================================================
   18. SELF-DRIVE FEATURE STRIP
   ============================================================ */
.sd-highlight {
  background: var(--grad-dark); border-radius: var(--r-xl);
  padding: 48px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.sd-price-big { font-size: 4.5rem; font-weight: 900; color: var(--red); line-height: 1; }
.sd-price-big span { font-size: 1.4rem; color: rgba(255,255,255,.5); font-weight: 400; }
.sd-highlight h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.sd-highlight p  { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 20px; }
.sd-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.sd-feat  { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.8); }
.sd-feat i { color: #4ade80; }

/* ============================================================
   19. SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.show { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity .65s ease; }
.fade-in.show { opacity: 1; }

/* ============================================================
   20. MISCELLANEOUS
   ============================================================ */
/* Booking form wrapper (dark) */
.bk-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 38px;
  backdrop-filter: blur(10px);
}
.bk-wrap h3 { color: var(--white); font-size: 1.35rem; font-weight: 800; margin-bottom: 4px; }
.bk-wrap .sub { color: rgba(255,255,255,.5); font-size: .82rem; margin-bottom: 22px; }
/* Testimonial card */
.testi-card {
  background: var(--white); border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-lt);
}
.testi-stars { color: #F59E0B; font-size: .85rem; margin-bottom: 10px; }
.testi-text  { color: var(--text-lt); font-size: .88rem; line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-red); display: flex;
  align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: .88rem; flex-shrink: 0;
}
.t-name  { font-size: .88rem; font-weight: 700; color: var(--black); }
.t-place { font-size: .72rem; color: var(--text-lt); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }

/* Info strip */
.info-strip {
  background: var(--red); padding: 14px 0;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.info-strip-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: .85rem; font-weight: 500; }
.info-strip-item i { font-size: 15px; }

/* ============================================================
   21. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-grid       { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .hero-container { grid-template-columns: 1fr; max-width: 680px; gap: 40px; }
  .hero-form      { display: none; } /* hide form at tablet, show booking section below */
}
@media (max-width: 900px) {
  .nav-menu {
    display: none; position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(13,13,13,.98);
    flex-direction: column; padding: 16px;
    border-bottom: 2px solid var(--red);
    backdrop-filter: blur(16px); gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; padding: 11px 14px; border-radius: var(--r-md); }
  .nav-call span, .nav-wa span { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section  { padding: 56px 0; }
}
@media (max-width: 768px) {
  .hero h1  { font-size: 1.9rem; }
  .hero-stats { gap: 20px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .why-grid   { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .bottom-bar { display: block; }
  .float-wa   { bottom: 76px; }
  body        { padding-bottom: 58px; }
  .bk-wrap    { padding: 24px 18px; }
  .cta-btns   { flex-direction: column; align-items: center; }
  .sd-highlight { grid-template-columns: 1fr; padding: 30px 22px; }
  .plan-card.featured { transform: none; }
}
@media (max-width: 560px) {
  .why-grid    { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .nav-wa      { display: none; }
  .info-strip  { gap: 18px; justify-content: flex-start; padding: 12px 20px; }
}
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
