/* ============================================
   TaxiTH - Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1976d2;
  --primary-dark: #1565c0;
  --primary-light: #e3f2fd;
  --secondary: #0d1b2a;
  --secondary-light: #1a3a4a;
  --accent: #42a5f5;
  --text: #1a1a2e;
  --text-light: #666;
  --white: #ffffff;
  --light-bg: #f0f6ff;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.3;
  font-weight: 700;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 1.85rem;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  color: var(--primary);
}

.btn-dark {
  background: var(--secondary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1rem;
  border-radius: 8px;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Section Spacing ---------- */
section {
  padding: 60px 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.6));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

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

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 50px;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 16px 20px 20px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav .btn {
  margin-top: 12px;
  width: 100%;
  border-radius: 50px;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  padding: 0;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d1b2a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/bg-taxith-com.png');
  background-size: cover;
  background-position: center bottom;
  opacity: 1;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 22, 40, 0.72) 0%,
      rgba(10, 22, 40, 0.55) 50%,
      rgba(10, 22, 40, 0.25) 100%);
  z-index: 1;
}

/* Keep hero-inner / hero-left / hero-right / hero-img-wrap hidden — not used in full-bg mode */
.hero-inner {
  display: block;
}

.hero-right {
  display: none;
}

.hero-left {
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0 48px;
}

.hero-text {
  text-align: center;
  color: var(--white);
  margin-bottom: 26px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 183, 0, 0.18);
  border: 1px solid rgba(255, 183, 0, 0.5);
  color: #ffdb6d;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.18;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 0 auto 22px;
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hide-mobile {
  display: inline;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.22);
  letter-spacing: 0.2px;
}

.hero-badge i {
  color: #ffb700;
  font-size: 0.78rem;
}

/* Hero Booking Form - Booking.com Style */
.hero-form-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.booking-com-form {
  background: #ffb700;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.form-title {
  background: #003580;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
  margin-bottom: 0;
}

.form-title i {
  font-size: 1rem;
  color: #ffb700;
}

.booking-com-form .form-row {
  display: flex;
  background: #fff;
  border-radius: 0 0 6px 6px;
  overflow: visible;
  flex-wrap: wrap;
}

.booking-com-form .form-group {
  flex: 1;
  min-width: 180px;
  border-right: 5px solid #ffb700;
  padding: 9px 14px 11px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.15s, box-shadow 0.15s;
  cursor: text;
}

.booking-com-form .form-group:hover {
  background: #f2f8ff;
}

.booking-com-form .form-group:focus-within {
  background: #fff;
  box-shadow: inset 0 0 0 3px #006ce4;
  z-index: 2;
}

.booking-com-form .form-group.submit {
  flex: 0 0 auto;
  min-width: auto;
  border-right: none;
  padding: 0;
  background: transparent;
}

.booking-com-form .form-group label {
  font-size: 11px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.booking-com-form .form-group label i {
  color: #006ce4;
  font-size: 12px;
}

.booking-com-form input {
  border: none;
  padding: 2px 0;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  outline: none;
  color: #1a1a2e;
  background: transparent;
  font-family: inherit;
}

.booking-com-form input::placeholder {
  color: #bbb;
  font-size: 13px;
  font-weight: 400;
}

.booking-com-form input:focus {
  box-shadow: none;
}

.booking-com-form input[type="date"],
.booking-com-form input[type="time"] {
  color: #1a1a2e;
}

.btn-booknow {
  background: #006ce4;
  color: #fff;
  border: none;
  padding: 0 32px;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
  letter-spacing: 0.4px;
  border-radius: 0 6px 6px 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-booknow:hover {
  background: #0057b8;
  transform: none;
}

.btn-booknow i {
  font-size: 15px;
}

@media (max-width: 991px) {
  .booking-com-form .form-group {
    min-width: 50%;
    border-right: 5px solid #ffb700;
    border-bottom: 5px solid #ffb700;
  }

  .booking-com-form .form-group:nth-child(2n) {
    border-right: none;
  }

  .booking-com-form .form-group.submit {
    min-width: 100%;
    border-bottom: none;
    border-right: none;
  }

  .btn-booknow {
    padding: 16px;
    width: 100%;
    justify-content: center;
    border-radius: 0 0 6px 6px;
  }
}

@media (max-width: 575px) {
  .booking-com-form .form-group {
    min-width: 100%;
    border-right: none;
    border-bottom: 5px solid #ffb700;
  }

  .booking-com-form .form-group:last-of-type {
    border-bottom: none;
  }

  #hero {
    min-height: auto;
  }

  .hero-bg {
    background-position: 40% bottom;
  }
}

/* ============================================
   ROUTES SECTION
   ============================================ */
#routes {
  background: var(--white);
}

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

.route-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.route-card:hover img {
  transform: scale(1.05);
}

.route-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}

.route-overlay h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.route-overlay p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.route-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.route-btn:hover {
  background: var(--primary-dark);
}

/* ============================================
   3 EASY STEPS
   ============================================ */
#steps {
  background: var(--light-bg);
}

.steps-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.08);
  border: 1.5px solid rgba(25, 118, 210, 0.08);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(25, 118, 210, 0.15);
  border-color: var(--primary);
}

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.35);
}

.step-icon-lg {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  color: var(--primary);
}

.faq-toggle i {
  transition: transform 0.3s ease;
  display: block;
}

.nav-menu a i {
  margin-right: 4px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.section-tag i {
  font-size: 0.8rem;
}

.meta-item i {
  width: 16px;
  color: var(--primary);
  font-size: 0.85rem;
}

.trust-item-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.trust-badge i {
  color: var(--primary);
}

.trust-pill i {
  color: rgba(255, 255, 255, 0.7);
}

.step-card h3 {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 700;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-arrow {
  color: var(--primary);
  font-size: 1.8rem;
  padding: 0 16px;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ============================================
   VEHICLES SECTION
   ============================================ */
#vehicles {
  background: var(--white);
}

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

.vehicle-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

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

.vehicle-img {
  height: 180px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-img img {
  transform: scale(1.05);
}

.vehicle-info {
  padding: 20px;
}

.vehicle-info h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.vehicle-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.vehicle-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-light);
}

.meta-item .icon {
  font-size: 1rem;
}

/* Vehicle card buttons */
.vehicle-btns {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.btn-vc-line,
.btn-vc-wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-vc-line {
  background: #06C755;
  color: #fff;
}

.btn-vc-wa {
  background: #6b7280;
  color: #fff;
}

.btn-vc-line:hover,
.btn-vc-wa:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-vc-book {
  width: 100%;
  justify-content: center;
}

.vehicle-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--light-bg);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
}

/* ============================================
   PROMO BANNERS (2-column)
   ============================================ */
.promo-banners {
  padding: 0 0 60px;
  background: var(--white);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.promo-card {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.promo-card:hover img {
  transform: scale(1.03);
}

.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px 20px;
  transition: background 0.3s ease;
}

.promo-card:hover .promo-card-overlay {
  background: rgba(0, 40, 80, 0.25);
}

.promo-card-overlay span {
  background: #006ce4;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 108, 228, 0.4);
}

.promo-card:hover .promo-card-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Promo CTA Card */
.promo-cta-card {
  background: linear-gradient(145deg, #0d1b2a 0%, #1a3a4a 100%);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.promo-cta-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 183, 0, 0.15);
  border: 1px solid rgba(255, 183, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffb700;
}

.promo-cta-card h3 {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.promo-cta-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.promo-cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promo-cta-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.promo-cta-badges span i {
  color: #4caf50;
  font-size: 0.78rem;
}

.promo-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-wa-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 24px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-wa-promo:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: #fff;
}

.btn-line-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 24px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-line-promo:hover {
  background: #05b04c;
  transform: translateY(-2px);
  color: #fff;
}

/* Best Taxi Thailand Banner */
.best-taxi-banner {
  padding: 48px 0;
  background: var(--white);
}

.best-taxi-banner .container {
  max-width: 1100px;
}

.best-taxi-banner a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  transition: box-shadow 0.3s, transform 0.3s;
}

.best-taxi-banner a:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.best-taxi-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-text h2 {
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ============================================
   PRICING TABLE
   ============================================ */
#pricing {
  background: var(--light-bg);
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.trust-badge .icon {
  font-size: 1.1rem;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

/* Mobile scroll hint */
.table-scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 580px;
}

thead tr {
  background: var(--secondary);
  color: var(--white);
}

thead th {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

thead th:first-child {
  text-align: left;
  background: #0b2d5c;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

tbody tr:nth-child(even) {
  background: #f8fafc;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--primary-light);
}

tbody td {
  padding: 13px 20px;
  font-size: 0.9rem;
  color: var(--text);
  text-align: center;
  border-right: 1px solid #e8eef5;
}

tbody td:last-child {
  border-right: none;
}

tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--secondary);
  white-space: nowrap;
  border-right: 2px solid #cbd5e1;
}

.price-cell {
  font-weight: 700;
  color: var(--primary);
}

.table-cta {
  text-align: center;
  margin-top: 32px;
}

/* Mobile Price Cards */
.pricing-cards-mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border: 1px solid #e8eef5;
}

.price-card-header {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e8eef5;
  background: #f8faff;
}

.price-card-header .flag {
  font-size: 0;
  /* hide emoji text */
  width: 6px;
  min-height: 22px;
  align-self: stretch;
  border-radius: 3px;
  background: linear-gradient(to bottom,
      #A51931 0% 20%,
      #fff 20% 40%,
      #2D4F9E 40% 60%,
      #fff 60% 80%,
      #A51931 80% 100%);
  flex-shrink: 0;
  display: inline-block;
}

.price-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid #f0f4f8;
}

.price-card-row:last-child {
  border-bottom: none;
}

.price-card-row .prc {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .table-scroll-hint {
    display: none;
  }

  .table-wrapper {
    display: none;
  }

  .pricing-cards-mobile {
    display: flex;
  }
}

/* ============================================
   TRUST SECTION
   ============================================ */
#trust {
  background: var(--light-bg);
  padding: 60px 0;
}

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

.trust-img-col img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: block;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.trust-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.trust-item-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-item-body {
  flex: 1;
  min-width: 0;
}

.trust-item h3 {
  font-size: 0.97rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.trust-item p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   CONTACT CTA
   ============================================ */
.contact-banner {
  background: var(--primary);
  padding: 60px 0;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-text h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.contact-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe58;
  transform: translateY(-2px);
  color: white;
}

.btn-line {
  background: #06C755;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-line:hover {
  background: #05b04c;
  transform: translateY(-2px);
  color: white;
}

.contact-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ============================================
   FAQ SECTION
   ============================================ */
#faq {
  background: var(--light-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 600;
  flex: 1;
  padding-right: 16px;
}

.faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 14px;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  color: white;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px 68px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 60px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #0a1520;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--primary);
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 45px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.trust-pill .icon {
  font-size: 0.9rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.float-btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.float-btn i {
  font-size: 1.5rem;
  color: white;
}

.float-whatsapp {
  background: #25D366;
}

.float-line {
  background: #06C755;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
#scrollTop {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.4);
  transition: var(--transition);
  z-index: 998;
}

#scrollTop.visible {
  display: flex;
}

#scrollTop:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
  }

  .steps-image {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 48px 0;
  }

  /* Override ID-specific padding that beats the `section` rule */
  #trust {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .promo-banners {
    padding: 0 0 48px;
  }

  .promo-cta-card {
    padding: 28px 20px;
    align-items: center;
    text-align: center;
  }

  .promo-cta-badges {
    justify-content: center;
  }

  .promo-cta-actions {
    justify-content: center;
  }

  .cta-banner,
  .contact-banner {
    padding: 40px 0;
  }

  .best-taxi-banner {
    padding: 24px 0;
  }

  .final-cta {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  /* Hero mobile */
  #hero {
    min-height: auto;
  }

  .hide-mobile {
    display: none;
  }

  .hero-badges {
    gap: 7px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 11px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
  }

  .hero-content {
    padding: 90px 0 40px;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 24px;
  }

  .hero-text h1 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }

  .hero-text p {
    font-size: 0.95rem;
    margin: 0 auto;
  }

  .hero-form-card {
    padding: 22px 20px;
    margin: 0 4px;
  }

  .hero-right {
    order: -1;
  }

  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner,
  .contact-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions,
  .contact-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-img-col img {
    max-width: 380px;
    margin: 0 auto;
  }

  .trust-content-col .section-header {
    text-align: center !important;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-trust {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .steps-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .routes-grid {
    grid-template-columns: 1fr;
  }

  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 80px 0 32px;
  }

  .hero-form-card {
    padding: 20px 16px;
    margin: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .promo-banners {
    padding: 0 0 40px;
  }

  .promo-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-wa-promo,
  .btn-line-promo {
    width: 100%;
    justify-content: center;
  }

  .float-buttons {
    bottom: 20px;
    right: 16px;
  }

  #scrollTop {
    right: 16px;
    bottom: 90px;
  }
}