/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --green: #a9cb3e;
  --green-dark: #8aaa28;
  --green-light: #c5e05a;
  --green-bg: #f4f9e6;
  --red: #b14233;
  --red-dark: #8e2f23;
  --red-light: #d05244;
  --dark: #1a1a2e;
  --dark2: #2c2c44;
  --text: #2d3748;
  --text-muted: #718096;
  --text-light: #a0aec0;
  --white: #ffffff;
  --light: #f9fafb;
  --border: #e8edf2;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-h: 76px;
  --trans: 0.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Be Vietnam Pro', 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; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: all var(--trans); white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(177,66,51,.3);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(177,66,51,.45); }

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(169,203,62,.4);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

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

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

.btn-zalo {
  background: #0068FF; color: var(--white);
  box-shadow: 0 4px 16px rgba(0,104,255,.3);
}
.btn-zalo:hover { background: #004ec7; transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* =============================================
   SECTION COMMONS
   ============================================= */
.section { padding: 96px 0; }
.bg-light-green { background: var(--green-bg); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  background: rgba(169,203,62,.15); color: var(--green-dark);
  border: 1px solid rgba(169,203,62,.4);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); color: var(--dark); margin-bottom: 16px; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }

.header-inner {
  display: flex; align-items: center; gap: 28px; height: var(--header-h);
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 52px; width: auto; }

.header-nav {
  display: flex; gap: 4px; margin: 0 auto;
}
.header-nav a {
  color: var(--text-muted); font-size: .9rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all var(--trans);
}
.header-nav a:hover { color: var(--dark); background: var(--green-bg); }
.header-nav a.active { color: var(--green-dark); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--dark); font-weight: 600; font-size: .9rem;
}
.phone-icon { color: var(--green); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 999;
  background: var(--white); border-top: 2px solid var(--green-bg);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 16px 24px 24px;
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.mobile-nav a {
  padding: 12px 0; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav-footer { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.mobile-phone { color: var(--red); font-weight: 700; font-size: 1.05rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding-top: var(--header-h);
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: linear-gradient(135deg, #f0f5e4 0%, #f8fbf1 40%, #ffffff 60%, #fef5f3 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(169,203,62,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 60px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(177,66,51,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-shape {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(169,203,62,.06) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-inner {
  flex: 1; display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  padding: 60px 24px 40px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--green-dark); margin-bottom: 20px;
}
.dot-green {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(1.3);} }

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--dark); line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -.02em;
}
.hero-accent {
  color: var(--red); font-style: normal; position: relative;
}
.hero-acc-line {
  display: block; height: 4px; background: var(--green);
  border-radius: 2px; margin-top: 4px;
}
.hero-sub {
  color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px;
}
.hero-chips {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px;
}
.hero-chips li {
  background: var(--white); border: 1.5px solid var(--border);
  font-size: .82rem; font-weight: 600; padding: 6px 14px;
  border-radius: 50px; color: var(--text);
  box-shadow: var(--shadow-sm);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 24px;
  box-shadow: var(--shadow-sm); width: fit-content;
}
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--red); line-height: 1; }
.trust-item span { font-size: .78rem; color: var(--text-muted); }
.trust-sep { width: 1px; height: 32px; background: var(--border); }

.hero-visual { position: relative; }
.hero-car-wrap { position: relative; }
.hero-car-img {
  width: 100%; max-width: 640px; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.12));
  animation: floatCar 4s ease-in-out infinite;
}
@keyframes floatCar {
  0%,100%{transform: translateY(0);}
  50%{transform: translateY(-12px);}
}
.hero-card {
  position: absolute; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg); white-space: nowrap; z-index: 2;
}
.hero-card-1 { bottom: 20%; left: -20px; }
.hero-card-2 { top: 15%; right: 10px; }
.hc-icon { font-size: 1.6rem; }
.hero-card strong { display: block; font-size: .9rem; color: var(--dark); }
.hero-card small { font-size: .75rem; color: var(--text-muted); }

/* Quick Book Bar */
.quick-book-bar {
  background: var(--white);
  box-shadow: 0 -4px 30px rgba(0,0,0,.08), 0 8px 30px rgba(0,0,0,.08);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin: 0 24px;
  position: relative; z-index: 10;
}
.qb-form {
  display: flex; align-items: stretch;
  padding: 12px 12px 12px 0;
}
.qb-field {
  flex: 1; padding: 10px 20px; display: flex; flex-direction: column; gap: 3px;
}
.qb-field label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-muted);
}
.qb-field input, .qb-field select {
  border: none; outline: none; background: transparent;
  font-family: inherit; font-size: .95rem; color: var(--dark); font-weight: 500;
}
.qb-field input::placeholder { color: var(--text-light); }
.qb-divider { width: 1px; background: var(--border); margin: 8px 0; flex-shrink: 0; }
.qb-btn {
  background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius);
  padding: 0 28px; font-size: 1rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 8px;
  transition: all var(--trans); flex-shrink: 0; margin: 6px;
}
.qb-btn:hover { background: var(--red-dark); transform: translateX(2px); }

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps-row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px; align-items: center; margin-bottom: 28px;
}
.step-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  position: relative; transition: all var(--trans);
}
.step-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.step-num {
  position: absolute; top: -1px; left: 24px;
  font-size: 4.5rem; font-weight: 900;
  color: rgba(169,203,62,.1); line-height: 1; user-select: none;
}
.step-ico { font-size: 2.75rem; margin-bottom: 14px; }
.step-box h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.step-box p { color: var(--text-muted); font-size: .9rem; }
.step-arrow {
  font-size: 2rem; color: var(--green); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps-note {
  text-align: center; font-size: .9rem; color: var(--text-muted);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 24px; width: fit-content; margin: 0 auto;
}
.steps-note a { color: var(--red); font-weight: 600; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 32px;
}
.svc-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: left;
  transition: all var(--trans); position: relative;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--green); }
.svc-card.featured-svc {
  background: var(--dark); border-color: transparent; color: var(--white);
  box-shadow: var(--shadow-xl);
}
.svc-card.featured-svc h3 { color: var(--white); }
.svc-card.featured-svc p { color: rgba(255,255,255,.7); }
.svc-card.featured-svc .svc-list li { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.08); }
.svc-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--green); color: var(--white);
  font-size: .68rem; font-weight: 700; padding: 4px 12px; border-radius: 50px;
}
.svc-icon-wrap {
  width: 60px; height: 60px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 20px;
}
.svc-icon-wrap.red { background: rgba(177,66,51,.1); }
.svc-icon-wrap.green { background: rgba(169,203,62,.15); }
.svc-card h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 10px; }
.svc-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }
.svc-list { margin-bottom: 24px; }
.svc-list li {
  font-size: .85rem; padding: 7px 0; border-bottom: 1px solid var(--border);
  color: var(--text); display: flex; align-items: center; gap: 8px;
}
.svc-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.svc-trust {
  text-align: center; background: rgba(169,203,62,.1); border: 1px solid rgba(169,203,62,.3);
  border-radius: var(--radius); padding: 14px 24px; font-size: .9rem; color: #5a7a0a;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-text h2 { font-size: clamp(1.5rem,2.5vw,2rem); color: var(--dark); margin-bottom: 36px; }
.why-text .section-label { margin-bottom: 12px; }
.why-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.why-icon.red { background: rgba(177,66,51,.1); }
.why-icon.green { background: rgba(169,203,62,.12); }
.why-list strong { display: block; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.why-list p { font-size: .875rem; color: var(--text-muted); }
.why-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.why-badges span {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 50px; padding: 7px 15px; font-size: .8rem; font-weight: 600;
}
.why-visual { position: relative; }
.why-img-wrap img {
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  background: var(--green-bg);
}
.why-stat-card {
  position: absolute; bottom: -20px; left: -24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.why-stat-num { font-size: 2.5rem; font-weight: 900; color: var(--red); line-height: 1; }
.why-stat-num span { font-size: 1.5rem; }
.why-stat-card div:last-child { font-size: .85rem; color: var(--text-muted); margin-top: 4px; }

/* =============================================
   FLEET
   ============================================= */
.fleet-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 36px;
}
.fleet-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--trans);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.fleet-card.featured-fleet { border-color: var(--green); box-shadow: var(--shadow); }
.fleet-badges-row {
  display: flex; gap: 8px; padding: 14px 16px 0;
}
.fbadge {
  font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 50px;
}
.fbadge.green { background: rgba(169,203,62,.15); color: var(--green-dark); }
.fbadge.red { background: rgba(177,66,51,.1); color: var(--red); }
.fbadge.grey { background: var(--light); color: var(--text-muted); }
.fleet-img-box {
  background: linear-gradient(135deg, var(--green-bg), #f0f5e4);
  height: 180px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 8px;
}
.fleet-img-box img { height: 100%; width: 100%; object-fit: contain; transition: transform var(--trans); }
.fleet-card:hover .fleet-img-box img { transform: scale(1.06); }
.fleet-body { padding: 20px; }
.fleet-body h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.fleet-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.fleet-meta span {
  font-size: .78rem; background: var(--light); color: var(--text-muted);
  padding: 4px 10px; border-radius: 50px;
}
.fleet-price-row { display: flex; align-items: center; justify-content: space-between; }
.fleet-from { font-size: .75rem; color: var(--text-muted); }
.fleet-price { font-size: 1.2rem; font-weight: 800; color: var(--red); line-height: 1; }
.fleet-price small { font-size: .75rem; color: var(--text-muted); font-weight: 400; }
.fleet-cta-row { text-align: center; }

/* =============================================
   PRICING
   ============================================= */
.pricing-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  align-items: start; margin-bottom: 28px;
}
.price-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: all var(--trans); position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured-price {
  background: var(--dark); border-color: var(--green);
  color: var(--white); transform: scale(1.03);
  box-shadow: var(--shadow-xl), 0 0 0 4px rgba(169,203,62,.2);
}
.price-card.featured-price h3 { color: var(--white); }
.price-card.featured-price .price-sub { color: rgba(255,255,255,.6); }
.price-card.featured-price ul li { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.1); }
.price-pop {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: .7rem; font-weight: 700; padding: 5px 18px; border-radius: 50px; white-space: nowrap;
}
.price-icon { font-size: 2.5rem; margin-bottom: 14px; }
.price-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 4px; }
.price-sub { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; }
.price-tag { margin-bottom: 24px; }
.price-amt { font-size: 2.2rem; font-weight: 900; color: var(--red); display: block; line-height: 1; }
.price-card.featured-price .price-amt { color: var(--green); }
.price-unit { font-size: .85rem; color: var(--text-muted); }
.price-card ul { text-align: left; margin-bottom: 28px; }
.price-card ul li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: .875rem; color: var(--text);
}
.price-note {
  text-align: center; background: #fff8e1; border: 1px solid #ffe082;
  border-radius: var(--radius); padding: 14px 24px; font-size: .875rem; color: #795548;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-inner {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center;
}
.testi-left h2 { font-size: clamp(1.5rem,2.5vw,2rem); color: var(--dark); margin-bottom: 28px; }
.testi-left .section-label { margin-bottom: 14px; }
.big-rating { margin-bottom: 32px; }
.big-stars { font-size: 1.5rem; margin-bottom: 4px; }
.big-score { font-size: 3.5rem; font-weight: 900; color: var(--red); line-height: 1; }
.big-rating p { font-size: .875rem; color: var(--text-muted); margin-top: 4px; }
.testi-nav { display: flex; gap: 12px; }
.tbn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  font-size: 1.4rem; cursor: pointer; transition: all var(--trans);
  display: flex; align-items: center; justify-content: center;
}
.tbn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; flex-direction: column; gap: 20px; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.testi-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: all var(--trans);
  position: relative;
}
.testi-card::before {
  content: '"'; position: absolute; top: 4px; left: 20px;
  font-size: 5rem; color: rgba(169,203,62,.15); font-family: Georgia, serif; line-height: 1;
}
.testi-stars { font-size: .95rem; margin-bottom: 12px; }
.testi-card p { font-size: .95rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-ava {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: var(--white); flex-shrink: 0;
}
.testi-ava.red { background: var(--red); }
.testi-ava.green { background: var(--green); }
.testi-author strong { display: block; font-size: .9rem; color: var(--dark); }
.testi-author span { font-size: .78rem; color: var(--text-muted); }

/* =============================================
   FAQ
   ============================================= */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--trans);
  margin-bottom: 12px;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow); }
.faq-q {
  width: 100%; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: .95rem; font-weight: 600; color: var(--dark); text-align: left;
  transition: color var(--trans);
}
.faq-item.open .faq-q { color: var(--green-dark); }
.faq-ic { font-size: 1.4rem; color: var(--green); flex-shrink:0; transition: transform var(--trans); }
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-a p { padding: 0 20px 18px; color: var(--text-muted); line-height: 1.7; font-size: .9rem; }
.faq-a a { color: var(--red); font-weight: 600; }

/* =============================================
   BOOKING FORM
   ============================================= */
.booking { background: linear-gradient(135deg, var(--dark) 0%, #252545 100%); }
.booking-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start;
}
.booking-info h2 { font-size: clamp(1.5rem,2.5vw,2rem); color: var(--white); margin-bottom: 16px; }
.booking-info p { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 36px; }
.book-contacts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.book-contact-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 14px 18px; transition: all var(--trans);
}
.book-contact-item:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.bci-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.book-contact-item strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: 2px; }
.book-contact-item span { font-size: .82rem; color: rgba(255,255,255,.55); }
.book-guarantees { display: flex; flex-direction: column; gap: 10px; }
.bguarantee { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.75); font-size: .9rem; }
.bguarantee span { color: var(--green); font-weight: 700; }

.booking-form-wrap {
  background: var(--white); border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-xl);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg:last-child { margin-bottom: 0; }
.fg label { font-size: .82rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .04em; }
.req { color: var(--red); }
.fg input, .fg select, .fg textarea {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit;
  font-size: .95rem; color: var(--text); background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans); outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(169,203,62,.15);
}
.fg textarea { resize: vertical; min-height: 80px; }
.form-micro { text-align: center; margin-top: 12px; font-size: .8rem; color: var(--text-muted); }
.booking-success { text-align: center; padding: 40px 20px; }
.bs-icon { font-size: 4rem; margin-bottom: 16px; }
.booking-success h3 { font-size: 1.75rem; color: var(--dark); margin-bottom: 8px; }
.booking-success p { color: var(--text-muted); }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cd-item { display: flex; gap: 14px; align-items: flex-start; }
.cd-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.cd-icon.green { background: rgba(169,203,62,.12); }
.cd-icon.red { background: rgba(177,66,51,.08); }
.cd-item strong { display: block; font-size: .95rem; color: var(--dark); margin-bottom: 4px; }
.cd-item p, .cd-item a { font-size: .9rem; color: var(--text-muted); line-height: 1.5; }
.cd-hotline { font-size: 1.5rem; font-weight: 800; color: var(--red) !important; }
.cd-cta-row { display: flex; gap: 12px; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.fsocial {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  font-size: .82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.fsocial:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  color: var(--white); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.5); font-size: .875rem;
  padding: 5px 0; transition: color var(--trans);
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: .8rem; color: rgba(255,255,255,.3);
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom div { display: flex; gap: 12px; align-items: center; }

/* =============================================
   FLOATING CTAs
   ============================================= */
.fab-phone {
  position: fixed; bottom: 92px; right: 24px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: white; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(169,203,62,.5);
  animation: fabPulse 2.5s ease-in-out infinite;
  transition: transform var(--trans);
}
.fab-phone:hover { transform: scale(1.1); }
.fab-book {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--red); color: var(--white) !important;
  font-weight: 700; padding: 13px 22px; border-radius: 50px; font-size: .9rem;
  box-shadow: 0 4px 20px rgba(177,66,51,.45);
  transition: all var(--trans);
}
.fab-book:hover { transform: translateY(-2px) scale(1.04); }
@keyframes fabPulse {
  0%,100%{box-shadow:0 4px 20px rgba(169,203,62,.5);}
  50%{box-shadow: 0 0 0 12px rgba(169,203,62,0), 0 4px 20px rgba(169,203,62,.5);}
}

/* =============================================
   SCROLL ANIMATION
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-inner { max-width: 640px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .testi-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .header-nav, .header-actions .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .services-grid, .fleet-grid { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; }
  .price-card.featured-price { transform: scale(1); }
  .steps-row { grid-template-columns: 1fr; gap: 12px; }
  .step-arrow { display: none; }
  .faq-cols { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .qb-form { flex-direction: column; }
  .qb-divider { height: 1px; width: auto; margin: 0 12px; }
  .qb-btn { margin: 8px 12px 12px; border-radius: var(--radius-sm); padding: 14px; }
  .hero-trust { flex-wrap: wrap; }
  .hero-card { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content:center; }
  .footer-grid { grid-template-columns: 1fr; }
}
