/* ==========================================================================
   TAXI BUÔN HỒ - STYLESHEET (MOBILE-FIRST, DỄ ĐỌC CHO NGƯỜI TRUNG NIÊN)
   Hotline: 0935.316.769
   ========================================================================== */

/* 1. CSS VARIABLES & THEME TOKENS */
:root {
  /* Màu sắc trầm ấm, tin cậy */
  --primary-color: #006b38;       /* Xanh lá đậm thương hiệu */
  --primary-dark: #004d28;        /* Xanh lá rừng trầm */
  --primary-light: #e6f4ec;       /* Nền xanh dịu nhẹ */
  
  --accent-gold: #f39c12;         /* Vàng taxi nổi bật */
  --accent-gold-hover: #d68910;   /* Vàng taxi đậm */
  --accent-red: #d92525;          /* Đỏ nút gọi khẩn cấp */
  --accent-red-hover: #b71c1c;

  --zalo-blue: #0068ff;
  --zalo-blue-hover: #0052cc;

  /* Màu chữ độ tương phản cao cho người lớn tuổi */
  --text-primary: #121820;        /* Đen than dễ đọc */
  --text-secondary: #3b4754;      /* Xám đậm, rõ nét */
  --text-muted: #5c6975;          /* Xám trung tính */
  --text-white: #ffffff;

  /* Nền trang */
  --bg-body: #f8faf8;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f2;
  --border-color: #dbe4dd;

  /* Kích thước font chữ to, chuẩn mắt người lớn */
  --font-base: 'Be Vietnam Pro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-body: 17px;
  --font-size-lead: 20px;
  --line-height-body: 1.6;

  /* Bo góc góc cạnh, dứt khoát & Đổ bóng */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
  --shadow-call: 0 6px 20px rgba(217, 37, 37, 0.4);

  /* Container */
  --container-max: 1140px;
  --header-height: 72px;
}

/* 2. RESET & BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-base);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--text-primary);
  background-color: var(--bg-body);
  overflow-x: hidden;
  padding-bottom: 84px; /* Chừa khoảng trống cho Sticky Bottom Bar trên Mobile */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}

@media (min-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* 3. TOP ANNOUNCEMENT BAR */
.top-notice-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 5px 8px;
  font-size: clamp(11px, 2.9vw, 13px);
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-notice-bar .container {
  padding-left: 4px;
  padding-right: 4px;
}

@media (min-width: 576px) {
  .top-notice-bar {
    padding: 7px 16px;
    font-size: 14.5px;
  }
  .top-notice-bar .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.top-notice-bar .notice-highlight {
  color: var(--accent-gold);
  font-weight: 700;
}

/* 4. MAIN HEADER */
.main-header {
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  z-index: 100;
  min-height: 60px;
  height: auto;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 3px 8px rgba(0, 107, 56, 0.25);
  flex-shrink: 0;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.3px;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subtitle {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-red);
  color: #fff;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: var(--shadow-call);
  animation: pulse-border 2s infinite;
  white-space: nowrap;
}

.header-call-btn:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
}

.header-call-btn .phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: phone-ring 1.8s infinite ease-in-out;
}

@media (min-width: 576px) {
  .main-header {
    min-height: 72px;
    padding: 10px 0;
  }
  .header-inner {
    gap: 16px;
  }
  .brand-logo {
    gap: 12px;
  }
  .brand-icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .brand-title {
    font-size: 20px;
  }
  .brand-subtitle {
    font-size: 13px;
  }
  .header-call-btn {
    padding: 10px 18px;
    font-size: 16px;
    gap: 8px;
  }
}

/* 5. HERO SECTION & BANNER HIỆU ỨNG XE PHÓNG RA */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #02381f 0%, #005628 50%, #006b38 100%);
  color: #fff;
  padding: 28px 0 48px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.8;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 992px) {
  .hero-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}

/* 5.1 HERO TRUST BADGE (BỐ CỤC GÓC CẠNH HIỆN ĐẠI, KHÔNG LẠM DỤNG BO TRÒN) */
.hero-badge {
  display: inline-flex;
  align-items: stretch;
  align-self: flex-start;
  background: rgba(4, 28, 15, 0.9);
  border: 1px solid rgba(243, 156, 18, 0.45);
  border-left: 3.5px solid var(--accent-gold);
  border-radius: 4px; /* Bo góc nhẹ 4px, không dùng dạng viên thuốc */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  max-width: 100%;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.hero-badge:hover {
  border-color: rgba(243, 156, 18, 0.85);
  box-shadow: 0 4px 18px rgba(243, 156, 18, 0.25);
  transform: translateY(-1px);
}

.badge-flag {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
  color: #0c2314;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.badge-star {
  font-size: 12px;
  line-height: 1;
  color: #0c2314;
  animation: star-twinkle 2.5s infinite ease-in-out;
}

.badge-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.badge-body {
  display: flex;
  align-items: center;
  padding: 5px 12px;
  min-width: 0;
}

.badge-text {
  font-size: 13px;
  font-weight: 700;
  color: #fff4d1;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.badge-text.fade-out {
  opacity: 0;
  transform: translateY(-4px);
}

.badge-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes star-twinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25) rotate(15deg); opacity: 0.85; }
}

@media (min-width: 576px) {
  .badge-flag {
    padding: 6px 10px;
    font-size: 11.5px;
  }
  .badge-body {
    padding: 6px 14px;
  }
  .badge-text {
    font-size: 13.5px;
  }
}

.hero-title {
  font-size: clamp(24px, 6vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-title .text-gold {
  color: #ffd24d;
  display: inline-block;
}

.hero-desc {
  font-size: clamp(15.5px, 3.8vw, 19px);
  line-height: 1.55;
  color: #e6f3eb;
  font-weight: 500;
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 8px;
}

.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
}

.hero-features-list li .check-icon {
  width: 26px;
  height: 26px;
  background: #f39c12;
  color: #003c20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

@media (min-width: 576px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.btn-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #ff4444 0%, #d92525 100%);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: clamp(17px, 4.5vw, 21px);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 24px rgba(217, 37, 37, 0.45);
  border: 2px solid #ff9999;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(217, 37, 37, 0.6);
  color: #fff;
}

.btn-cta-call .call-anim-icon {
  font-size: 22px;
  animation: phone-ring 1.5s infinite ease-in-out;
}

.btn-cta-zalo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: var(--primary-dark);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  border: 2px solid #ffffff;
  transition: all 0.2s;
}

.btn-cta-zalo:hover {
  background: #f0fdf4;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-hotline-quick {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #d1ead7;
  margin-top: 4px;
}

/* ==========================================================================
   HIỆU ỨNG XE PHÓNG RA (CAR ZOOM ANIMATION)
   ========================================================================== */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 10px 0;
}

@media (min-width: 992px) {
  .hero-visual-wrapper {
    min-height: 380px;
  }
}

.car-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HÌNH KHỐI ĐA GIÁC BACKDROP NỀN CHIẾC XE (GEOMETRIC LAUNCHPAD) */
.car-geom-backdrop {
  position: absolute;
  top: 6%;
  left: 6%;
  right: 6%;
  bottom: 8%;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.22) 0%, rgba(0, 107, 56, 0.45) 55%, rgba(2, 45, 25, 0.75) 100%);
  border: 1.5px solid rgba(243, 156, 18, 0.45);
  border-radius: 6px;
  transform: skew(-5deg, -1.5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), inset 0 0 24px rgba(243, 156, 18, 0.15);
  backdrop-filter: blur(6px);
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.backdrop-hex-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.8;
}

.backdrop-speed-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 14px,
    rgba(243, 156, 18, 0.08) 14px,
    rgba(243, 156, 18, 0.08) 16px
  );
}

.backdrop-corner-tag {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffd24d;
  opacity: 0.85;
  text-transform: uppercase;
}

/* ÁNH SÁNG GẦM XE */
.car-ground-glow {
  position: absolute;
  bottom: 10px;
  left: 12%;
  width: 76%;
  height: 42px;
  background: radial-gradient(ellipse at center, rgba(243, 156, 18, 0.6) 0%, rgba(0, 107, 56, 0.35) 45%, transparent 75%);
  filter: blur(10px);
  z-index: 2;
  pointer-events: none;
  transform: scaleY(0.4);
}

.road-track {
  position: absolute;
  bottom: 12px;
  left: -10%;
  right: -10%;
  height: 24px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  border-bottom: 2px dashed rgba(243, 156, 18, 0.7);
  transform: perspective(300px) rotateX(40deg);
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.road-track::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: road-speed 1.2s infinite linear;
}

.car-image-container {
  position: relative;
  z-index: 3;
  width: 85%;
  max-width: 360px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 16px rgba(243, 156, 18, 0.3));
  animation: car-drive-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

.car-image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.speed-trails {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: trails-fade 1.6s ease-out forwards;
}

.speed-trail {
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(243, 156, 18, 0.95), transparent);
}

.trail-1 { top: 20%; left: 5%; width: 45%; }
.trail-2 { top: 50%; left: 0; width: 60%; }
.trail-3 { top: 75%; left: 10%; width: 35%; }

/* HUY HIỆU GÓC CẠNH ĐI KÈM XE (KHÔNG DÙNG BO TRÒN VIÊN THUỐC) */
.car-spec-badge {
  position: absolute;
  background: rgba(4, 26, 14, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 3px;
  padding: 6px 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  z-index: 4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  user-select: none;
}

.badge-top-right {
  top: 8px;
  right: 2%;
  border: 1.5px solid var(--accent-gold);
  color: #ffd875;
  animation: badge-pop 1.7s cubic-bezier(0.16, 1, 0.3, 1) forwards, badge-float-1 3s ease-in-out infinite alternate 1.7s;
}

.badge-bottom-left {
  bottom: 8px;
  left: 2%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 3.5px solid #2ecc71;
  color: #ffffff;
  animation: badge-pop 1.9s cubic-bezier(0.16, 1, 0.3, 1) forwards, badge-float-2 3.5s ease-in-out infinite alternate 1.9s;
}

.spec-icon {
  font-size: 13px;
  line-height: 1;
}

@keyframes badge-float-1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

@keyframes badge-float-2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* KEYFRAMES */
@keyframes car-drive-in {
  0% {
    transform: translate3d(-140%, 15%, 0) scale(0.65) rotate(-3deg);
    opacity: 0;
  }
  60% {
    transform: translate3d(8%, -2%, 0) scale(1.03) rotate(0.5deg);
    opacity: 1;
  }
  80% {
    transform: translate3d(-2%, 1%, 0) scale(0.99) rotate(-0.2deg);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes road-speed {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes trails-fade {
  0% { opacity: 0; transform: translateX(-40px); }
  40% { opacity: 0.9; }
  100% { opacity: 0.3; transform: translateX(0); }
}

@keyframes badge-pop {
  0% { opacity: 0; transform: translateY(20px) scale(0.8); }
  60% { opacity: 0; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes phone-ring {
  0% { transform: rotate(0); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-14deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-14deg); }
  50% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(217, 37, 37, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(217, 37, 37, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 37, 37, 0); }
}

/* 6. QUICK CALL BOX / ĐẶT XE NHANH 1 CHẠM */
.quick-booking-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--border-color);
}

.quick-card-header {
  text-align: center;
  margin-bottom: 20px;
}

.quick-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
}

.quick-card-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 4px;
}

.quick-routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .quick-routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .quick-routes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.route-quick-item {
  background: var(--bg-surface);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.route-quick-item:hover, .route-quick-item.active {
  background: #f0fdf4;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 81, 50, 0.1);
}

.route-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-badge-hot {
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.route-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.route-feature {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(15, 81, 50, 0.12);
  color: var(--primary-color);
  flex-shrink: 0;
}

.quick-book-action {
  margin-top: 24px;
  background: linear-gradient(135deg, #f0fdf4 0%, #e6f4ea 100%);
  border: 1.5px solid rgba(15, 81, 50, 0.22);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .quick-book-action {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    text-align: left;
  }
}

.selected-route-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.selected-route-tag {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

@media (min-width: 768px) {
  .selected-route-tag {
    justify-content: flex-start;
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.selected-route-name-wrap {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .selected-route-name-wrap {
    justify-content: flex-start;
  }
}

.selected-route-name {
  font-size: 21px;
  font-weight: 800;
  color: var(--primary-dark);
  transition: all 0.2s ease;
  line-height: 1.3;
}

.route-skeleton-loader {
  display: none;
  height: 24px;
  width: 220px;
  border-radius: 6px;
  background: linear-gradient(90deg, #bbf7d0 25%, #dcfce7 50%, #bbf7d0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.1s infinite;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.selected-route-note {
  font-size: 14px;
  color: var(--text-secondary);
}

.btn-book-instant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #0d7a46 0%, #085a32 100%);
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(13, 122, 70, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.btn-book-instant:hover {
  background: linear-gradient(135deg, #119254 0%, #0a6b3b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 122, 70, 0.45);
}

.btn-book-instant .call-anim-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-book-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.btn-book-label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #a7f3d0;
  text-transform: uppercase;
}

.btn-book-phone {
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.btn-pulse-anim {
  animation: btnPulse 0.4s ease-out;
}

@keyframes btnPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* 7. SECTION CHUNG & TYPOGRAPHY CHO NGƯỜI LỚN TUỔI */
.section-wrapper {
  padding: 50px 0;
}

.section-wrapper.bg-light {
  background-color: #f1f6f2;
}

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #edf6f0;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 3px; /* Góc cạnh dứt khoát, không dùng bo tròn viên thuốc */
  border: 1px solid rgba(0, 107, 56, 0.25);
  border-left: 4px solid var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.section-badge::before {
  content: "■";
  font-size: 8px;
  color: var(--primary-color);
  line-height: 1;
}

.section-heading {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.section-subheading {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 8. SERVICES SECTION / DỊCH VỤ XE */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: auto;
}

.service-card-cta:hover {
  color: var(--accent-red);
}

/* 9. REAL FLEET SHOWCASE / DÀN XE THỰC TẾ (image/image.png, image1.png) */
.fleet-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .fleet-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fleet-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.fleet-image-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  background: #f1f5f9;
  overflow: hidden;
}

.fleet-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: imgSkeletonShimmer 1.5s infinite;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.fleet-image-wrap.img-loaded::before {
  opacity: 0;
}

@keyframes imgSkeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (min-width: 992px) {
  .fleet-image-wrap {
    height: 300px;
  }
}

.fleet-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.4s ease;
}

.fleet-image-wrap img.is-loaded {
  opacity: 1;
}

.fleet-card:hover .fleet-image-wrap img {
  transform: scale(1.04);
}

.fleet-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 77, 40, 0.92);
  color: #fff;
  padding: 5px 12px;
  border-radius: 3px; /* Góc cạnh dứt khoát */
  border-left: 3px solid var(--accent-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}

.fleet-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fleet-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--primary-dark);
}

.fleet-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0;
}

.spec-pill {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.fleet-call-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.btn-fleet-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-red);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
}

.btn-fleet-call:hover {
  background: var(--accent-red-hover);
}

/* 10. TRANSPARENT PRICING / CHÍNH SÁCH CƯỚC PHÍ & BÁO GIÁ TRỌN GÓI */
.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .pricing-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.price-feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 4px solid var(--primary-color);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pfc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(15, 81, 50, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.pfc-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
}

.pfc-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* KHUNG CTA BÁO GIÁ TRỰC TIẾP */
.quote-cta-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #e6f4ea 100%);
  border: 1.5px solid rgba(15, 81, 50, 0.2);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

@media (min-width: 992px) {
  .quote-cta-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
  }
}

.quote-cta-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
  line-height: 1.35;
}

.quote-cta-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.quote-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .quote-cta-actions {
    flex-direction: row;
    align-items: center;
  }
}

.btn-quote-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0d7a46 0%, #085a32 100%);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(13, 122, 70, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-quote-call:hover {
  background: linear-gradient(135deg, #119254 0%, #0a6b3b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 122, 70, 0.45);
}

.quote-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.quote-btn-sub {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #a7f3d0;
  text-transform: uppercase;
}

.quote-btn-phone {
  font-size: 17.5px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.btn-quote-zalo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0068ff;
  color: #ffffff;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 104, 255, 0.25);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-quote-zalo:hover {
  background: #0056d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 104, 255, 0.35);
}

.price-note-box {
  background: #fff8e6;
  border-left: 4px solid var(--accent-gold);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: #7d5a00;
  line-height: 1.5;
}

/* 11. WHY CHOOSE US / 4 CAM KẾT VÀNG */
.commitments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .commitments-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.commit-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border-top: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.commit-num {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: 4px; /* Hình vuông góc cạnh, không dùng bo tròn 50% */
  border: 1.5px solid rgba(0, 107, 56, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
}

.commit-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.commit-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 12. TESTIMONIALS / ĐÁNH GIÁ CỦA BÀ CON */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border-color);
  border-left: 3.5px solid var(--primary-color); /* Điểm nhấn góc cạnh uy tín */
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  color: #f1c40f;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 16px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.author-place {
  font-size: 13px;
  color: var(--text-muted);
}

/* 13. FAQ ACCORDION / CÂU HỎI THƯỜNG GẶP */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
}

.faq-question:hover {
  background: #f8faf8;
}

.faq-icon {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-color);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: #fafdfa;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 0 20px 20px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 14. CTA FOOTER BANNER / GỌI LÀ CÓ NGAY */
.pre-footer-cta {
  background: linear-gradient(135deg, #004d28 0%, #006b38 100%);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}

.pre-footer-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.pre-footer-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.3;
}

.pre-footer-desc {
  font-size: 18px;
  color: #d8eedf;
}

.pre-footer-phone-big {
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 900;
  color: #ffd24d;
  letter-spacing: 1px;
  display: inline-block;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  margin: 6px 0;
}

.pre-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-red);
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pre-footer-btn:hover {
  background: var(--accent-red-hover);
  transform: scale(1.02);
}

/* 15. GLOBAL FOOTER */
.site-footer {
  background: #111d16;
  color: #c9d8ce;
  padding: 40px 0 24px;
  font-size: 15px;
  border-top: 3px solid var(--primary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 16px;
  color: #a8bea0;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list li strong {
  color: #fff;
}

.footer-col-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: #799484;
}

/* 16. STICKY MOBILE CALL BAR (CỐ ĐỊNH ĐÁY MÀN HÌNH DI ĐỘNG) */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 9999;
  border-top: 1px solid var(--border-color);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.sticky-btn-zalo {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f0f7ff;
  color: var(--zalo-blue);
  border: 1.5px solid var(--zalo-blue);
  padding: 12px 8px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.sticky-btn-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #ff3b30 0%, #d92525 100%);
  color: #fff;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 4px 12px rgba(217, 37, 37, 0.4);
  animation: pulse-border 2s infinite;
}

.sticky-btn-call .ring-icon {
  font-size: 20px;
  animation: phone-ring 1.5s infinite ease-in-out;
}

/* 17. FLOATING QUICK BUTTON CHO DESKTOP */
.desktop-floating-call {
  display: none;
}

@media (min-width: 992px) {
  .desktop-floating-call {
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    flex-direction: column;
    gap: 14px;
  }

  .float-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    font-size: 28px;
    transition: transform 0.2s;
  }

  .float-btn:hover {
    transform: scale(1.1);
  }

  .float-call {
    background: var(--accent-red);
    animation: pulse-border 2s infinite;
  }

  .float-zalo {
    background: var(--zalo-blue);
  }

  .float-btn .svg-icon {
    width: 28px;
    height: 28px;
  }
}

/* ==========================================================================
   18. VECTOR SVG ICONOGRAPHY & CLEAN SOPHISTICATED DETAILS
   (Loại bỏ hoàn toàn emoji rẻ tiền, sử dụng vector sắc nét, chuyên nghiệp)
   ========================================================================== */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.brand-icon .svg-taxi {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
}

.footer-brand-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand-title .svg-taxi {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
}

.phone-icon .svg-phone,
.call-anim-icon .svg-phone,
.ring-icon .svg-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.btn-cta-call .svg-phone {
  width: 22px;
  height: 22px;
}

.btn-cta-zalo .svg-chat {
  width: 20px;
  height: 20px;
  stroke: var(--zalo-blue);
}

/* Service Box SVGs */
.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  border: 1px solid rgba(0, 107, 56, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.25s ease;
}

.service-icon-box .service-svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary-color);
  transition: transform 0.25s ease, stroke 0.25s ease;
}

.service-card:hover .service-icon-box {
  background: #e1f3e9;
  border-color: var(--primary-color);
}

.service-card:hover .service-icon-box .service-svg {
  transform: scale(1.1);
  stroke: var(--primary-dark);
}

/* Hero Checklist SVG */
.hero-features-list li .check-icon {
  width: 22px;
  height: 22px;
  background: var(--accent-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-features-list li .check-icon .svg-check {
  stroke: #0c2314;
  width: 14px;
  height: 14px;
}

/* Floating Car Spec Badges SVG */
.car-spec-badge .spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.car-spec-badge .spec-icon .svg-bolt {
  color: #f39c12;
  width: 16px;
  height: 16px;
}

.car-spec-badge .spec-icon .svg-shield {
  stroke: #2ecc71;
  width: 16px;
  height: 16px;
}

/* Status Pulse Dot (thay thế emoji chấm xanh) */
.status-pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: 1px;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Review Stars Vector (sắc nét, vàng kim sang trọng) */
.review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 6px;
}

.review-stars .svg-star {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

/* Type Tags in Mobile Cards (Thay cho emoji xe) */
.type-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.type-tag.tag-4 {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
}

.type-tag.tag-7 {
  background: #e3f2fd;
  color: #0d47a1;
  border: 1px solid #bbdefb;
}

/* Top Announcement Bar Notice Tag */
.notice-tag {
  display: inline-block;
  background: var(--accent-gold);
  color: #0c2314;
  font-size: 10.5px;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: 2px;
  margin-right: 6px;
  letter-spacing: 0.5px;
  vertical-align: 1px;
}

/* Quick Route & Table Call Action Phone Sizing */
.price-call-action .svg-phone,
.btn-book-route .svg-phone,
.quick-action-box .btn-call-lg .svg-phone {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
}

.footer-contact-item .svg-pin,
.footer-contact-item .svg-phone {
  color: var(--accent-gold);
  stroke: var(--accent-gold);
  margin-right: 2px;
}

/* ==========================================================================
   17. LOADING SKELETON & MICRO-INTERACTIONS
   ========================================================================== */
/* Hero Car Image Container Skeleton Pulse */
.car-image-container {
  position: relative;
}

.car-image-container::before {
  content: "";
  position: absolute;
  inset: 12% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 122, 70, 0.15) 0%, transparent 70%);
  animation: heroCarSkeletonGlow 2.2s infinite ease-in-out;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroCarSkeletonGlow {
  0%, 100% { transform: scale(0.94); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

/* Skeleton Loading Shimmer Utility */
.skeleton-shimmer {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: skeletonWave 1.2s infinite ease-in-out;
}

@keyframes skeletonWave {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* NÚT BẤM KẾT NỐI (CONNECTING LOADING FEEDBACK) */
.btn-connecting {
  position: relative;
  pointer-events: none;
  opacity: 0.9;
  transform: scale(0.98) !important;
}

.btn-connecting::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btnSpin 0.5s linear infinite;
  right: 14px;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   18. SCROLL LAZY REVEAL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
.lazy-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.lazy-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay cho các item trong grid */
.services-grid .lazy-reveal:nth-child(2),
.fleet-showcase-grid .lazy-reveal:nth-child(2),
.pricing-features-grid .lazy-reveal:nth-child(2),
.commitments-grid .lazy-reveal:nth-child(2),
.reviews-grid .lazy-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.services-grid .lazy-reveal:nth-child(3),
.pricing-features-grid .lazy-reveal:nth-child(3),
.commitments-grid .lazy-reveal:nth-child(3),
.reviews-grid .lazy-reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.commitments-grid .lazy-reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .lazy-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

