/* ═══════════════════════════════════════════════════════
   TAXI BE – Premium Frontend Styles
   Belgium's #1 Taxi Plugin
══════════════════════════════════════════════════════ */

:root {
  --txb-gold:    #FFD700;
  --txb-dark:    #0d0d1a;
  --txb-dark2:   #1a1a2e;
  --txb-dark3:   #16213e;
  --txb-red:     #e94560;
  --txb-blue:    #0f3460;
  --txb-white:   #ffffff;
  --txb-gray:    #f5f5f5;
  --txb-text:    #333;
  --txb-radius:  12px;
  --txb-shadow:  0 8px 32px rgba(0,0,0,.15);
  --txb-trans:   all 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TYPOGRAPHY ── */
.txb-hero-title { font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; line-height: 1.1; }
.txb-hero-sub   { font-size: clamp(1rem,2vw,1.25rem); opacity: .9; }

/* ─────────────────── HEADER ─────────────────── */
.txb-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(13,13,26,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,215,0,.15);
  transition: var(--txb-trans);
}
.txb-header.scrolled { background: var(--txb-dark2); box-shadow: var(--txb-shadow); }
.txb-header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px;
}
.txb-logo-text { font-size: 1.5rem; font-weight: 800; color: var(--txb-gold); letter-spacing: 1px; }
.txb-logo-img  { height: 45px; object-fit: contain; }

/* Nav */
.txb-nav ul { display: flex; list-style: none; gap: 4px; }
.txb-nav ul li a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px;
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
  text-decoration: none; transition: var(--txb-trans);
}
.txb-nav ul li a:hover, .txb-nav ul li a.active {
  color: var(--txb-gold); background: rgba(255,215,0,.08);
}

/* Header Actions */
.txb-header-actions { display: flex; align-items: center; gap: 10px; }
.txb-lang-switcher { display: flex; gap: 4px; }
.txb-lang-btn {
  font-size: .75rem; padding: 4px 8px; border-radius: 6px;
  color: rgba(255,255,255,.7); text-decoration: none; transition: var(--txb-trans);
}
.txb-lang-btn.active { color: var(--txb-gold); background: rgba(255,215,0,.1); }
.txb-lang-btn:hover  { color: var(--txb-white); }

/* Hamburger */
.txb-hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px;
}
.txb-hamburger span { display: block; width: 24px; height: 2px; background: var(--txb-white); border-radius: 2px; transition: var(--txb-trans); }
.txb-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.txb-hamburger.open span:nth-child(2) { opacity: 0; }
.txb-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────── BUTTONS ─────────────────── */
.txb-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: .9rem;
  border: none; cursor: pointer; text-decoration: none;
  transition: var(--txb-trans); white-space: nowrap;
}
.txb-btn-primary  { background: var(--txb-gold); color: #000; }
.txb-btn-primary:hover { background: #ffc200; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,.4); }
.txb-btn-whatsapp { background: #25d366; color: #fff; }
.txb-btn-whatsapp:hover { background: #20c25a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.txb-btn-phone    { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.txb-btn-phone:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.txb-btn-call     { background: var(--txb-red); color: #fff; font-size: .8rem; padding: 8px 16px; }
.txb-btn-call:hover { background: #d63354; }
.txb-btn-light    { background: rgba(255,255,255,.9); color: var(--txb-dark); }
.txb-btn-light:hover { background: #fff; transform: translateY(-2px); }

/* Pulse animation for call button */
.pulse-btn { animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(233,69,96,.4); }
  50%      { box-shadow: 0 0 0 10px rgba(233,69,96,0); }
}

/* ─────────────────── HERO ─────────────────── */
.txb-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background-size: cover; background-position: center; background-attachment: fixed;
  overflow: hidden;
}
.txb-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(13,13,26,.88) 0%,rgba(15,52,96,.7) 100%);
}
.txb-hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.txb-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 120px 24px 80px;
  color: #fff;
}
.txb-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,.15); border: 1px solid rgba(255,215,0,.3);
  color: var(--txb-gold); padding: 6px 16px; border-radius: 50px; font-size: .85rem;
  margin-bottom: 20px; animation: fadeInDown .8s ease;
}
.txb-hero-title {
  color: var(--txb-white);
  margin-bottom: 16px;
  animation: fadeInUp .8s ease .1s both;
}
.txb-hero-title span { color: var(--txb-gold); }
.txb-hero-sub { color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 600px; animation: fadeInUp .8s ease .2s both; }

/* Hero Stats */
.txb-hero-stats {
  display: flex; gap: 40px; margin-bottom: 40px;
  animation: fadeInUp .8s ease .3s both;
}
.txb-hs { text-align: center; }
.txb-hs-num { display: block; font-size: 2rem; font-weight: 800; color: var(--txb-gold); }
.txb-hs-label { font-size: .8rem; color: rgba(255,255,255,.7); }

.txb-hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeInUp .8s ease .4s both;
}

/* Scroll indicator */
.txb-hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.5); animation: bounce 2s infinite;
  font-size: 1.2rem;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ─────────────────── SECTIONS ─────────────────── */
.txb-section { padding: 80px 0; }
.txb-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.txb-section-header { text-align: center; margin-bottom: 56px; }
.txb-section-header h2 { font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 800; color: var(--txb-dark); margin-top: 12px; }
.txb-section-header-light h2 { color: var(--txb-white); }
.txb-section-tag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--txb-gold), #ff9500);
  color: #000; font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(255,215,0,.4);
}

/* ─────────────────── SERVICES ─────────────────── */
.txb-services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.txb-service-card {
  background: #fff; border-radius: var(--txb-radius);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--txb-shadow);
  transition: var(--txb-trans); border: 1px solid rgba(0,0,0,.06);
  position: relative; overflow: hidden;
}
.txb-service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,215,0,.03));
  opacity: 0; transition: var(--txb-trans);
}
.txb-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.txb-service-card:hover::before { opacity: 1; }
.txb-sc-icon {
  width: 72px; height: 72px; border-radius: 20px; display: inline-flex;
  align-items: center; justify-content: center; font-size: 1.8rem;
  margin-bottom: 20px; transition: var(--txb-trans);
}
.txb-service-card:hover .txb-sc-icon { transform: scale(1.1) rotate(5deg); }
.txb-service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--txb-dark); }
.txb-service-card p  { font-size: .9rem; color: #666; margin-bottom: 20px; }
.txb-sc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--txb-blue); font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: var(--txb-trans);
}
.txb-sc-link:hover { color: var(--txb-gold); gap: 10px; }

/* ─────────────────── FLEET ─────────────────── */
.txb-fleet { background: var(--txb-gray); }
.txb-fleet-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 24px; }
.txb-fleet-card {
  background: #fff; border-radius: var(--txb-radius);
  overflow: hidden; box-shadow: var(--txb-shadow);
  transition: var(--txb-trans);
}
.txb-fleet-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,.15); }
.txb-fc-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.txb-fc-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,26,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--txb-trans);
}
.txb-fleet-card:hover .txb-fc-overlay { opacity: 1; }
.txb-fc-info { padding: 20px; }
.txb-fc-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--txb-dark); }
.txb-fc-info p  { font-size: .85rem; color: #666; margin-bottom: 14px; }
.txb-fc-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.txb-fc-meta span { font-size: .8rem; color: #555; display: flex; align-items: center; gap: 4px; }
.txb-fc-price { color: var(--txb-gold); font-weight: 700; }

/* ─────────────────── WHY US ─────────────────── */
.txb-why-us { background: linear-gradient(135deg, var(--txb-dark2), var(--txb-dark3)); }
.txb-why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 20px; }
.txb-why-card {
  text-align: center; padding: 28px 16px;
  background: rgba(255,255,255,.05); border-radius: var(--txb-radius);
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--txb-trans);
}
.txb-why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.txb-why-icon { font-size: 2rem; margin-bottom: 12px; }
.txb-why-card h4 { color: var(--txb-white); font-size: .9rem; font-weight: 600; }

/* ─────────────────── BOOKING FORM ─────────────────── */
.txb-booking-section { background: var(--txb-white); }
.txb-booking-section .txb-section-header { margin-bottom: 40px; }

/* Steps bar */
.txb-steps-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 48px; flex-wrap: wrap;
}
.txb-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .4; transition: var(--txb-trans); cursor: default;
}
.txb-step.active, .txb-step.done { opacity: 1; }
.txb-step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--txb-gray); color: #aaa;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--txb-trans); border: 2px solid transparent;
}
.txb-step.active .txb-step-circle { background: var(--txb-gold); color: #000; border-color: var(--txb-gold); box-shadow: 0 0 0 4px rgba(255,215,0,.2); }
.txb-step.done .txb-step-circle   { background: #4caf50; color: #fff; }
.txb-step span { font-size: .75rem; font-weight: 600; color: #555; white-space: nowrap; }
.txb-step.active span { color: var(--txb-dark); }
.txb-step-line { width: 60px; height: 2px; background: var(--txb-gray); margin: 0 4px; margin-bottom: 28px; }

/* Form grid */
.txb-form { max-width: 820px; margin: 0 auto; }
.txb-form-step { display: none; animation: fadeIn .4s ease; }
.txb-form-step.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

.txb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.txb-field { display: flex; flex-direction: column; gap: 8px; }
.txb-field-full { grid-column: 1/-1; }

/* Date & Time: always behave correctly */
.txb-field-date input,
.txb-field-time input {
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.txb-field label {
  font-size: .85rem; font-weight: 600; color: #444;
  display: flex; align-items: center; gap: 6px;
}
.txb-field input, .txb-field select, .txb-field textarea {
  padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: 10px;
  font-size: .95rem; transition: var(--txb-trans); background: #fafafa;
  outline: none; font-family: inherit;
}
.txb-field input:focus, .txb-field select:focus, .txb-field textarea:focus {
  border-color: var(--txb-gold); background: #fff; box-shadow: 0 0 0 3px rgba(255,215,0,.15);
}
.txb-autocomplete-wrap { position: relative; }
.txb-search-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: #aaa; }

/* Counter */
.txb-counter { display: flex; align-items: center; gap: 0; border: 2px solid #e5e7eb; border-radius: 10px; overflow: hidden; background: #fafafa; }
.txb-cnt-btn {
  width: 44px; height: 48px; background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--txb-dark); transition: var(--txb-trans);
}
.txb-cnt-btn:hover { background: var(--txb-gold); color: #000; }
.txb-counter input { flex: 1; border: none; background: none; text-align: center; font-size: 1rem; font-weight: 700; outline: none; }

/* Price display */
.txb-price-display {
  padding: 12px 16px; background: linear-gradient(135deg,var(--txb-dark2),var(--txb-dark3));
  border-radius: 10px; color: var(--txb-gold); font-size: 1.3rem; font-weight: 800;
  text-align: center; min-height: 48px; display: flex; align-items: center; justify-content: center;
}

/* Mini map */
.txb-mini-map { height: 200px; border-radius: 12px; background: var(--txb-gray); margin-top: 20px; overflow: hidden; position: relative; }
.txb-mini-map::before { content: '🗺️ Route kaart'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #888; font-size: .9rem; }

/* Vehicles grid */
.txb-vehicles-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; }
.txb-vehicle-card input { display: none; }
.txb-vc-inner {
  border: 2px solid #e5e7eb; border-radius: 12px; padding: 20px; text-align: center;
  cursor: pointer; transition: var(--txb-trans); position: relative;
}
.txb-vc-inner:hover { border-color: var(--txb-gold); background: rgba(255,215,0,.03); }
.txb-vehicle-card input:checked + .txb-vc-inner {
  border-color: var(--txb-gold); background: rgba(255,215,0,.06);
  box-shadow: 0 0 0 3px rgba(255,215,0,.15);
}
.txb-vc-icon { font-size: 2.5rem; margin-bottom: 12px; color: var(--txb-dark); }
.txb-vc-inner h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.txb-vc-inner p  { font-size: .8rem; color: #666; margin-bottom: 10px; }
.txb-vc-meta { display: flex; justify-content: center; gap: 12px; font-size: .8rem; color: #555; }
.txb-vc-extra { color: var(--txb-gold); font-weight: 700; }
.txb-vc-check {
  position: absolute; top: 10px; right: 10px;
  color: var(--txb-gold); font-size: 1.2rem; opacity: 0; transition: var(--txb-trans);
}
.txb-vehicle-card input:checked + .txb-vc-inner .txb-vc-check { opacity: 1; }

/* Summary */
.txb-summary {
  background: var(--txb-gray); border-radius: 12px; padding: 24px;
  margin-bottom: 24px;
}
.txb-summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; font-size: .9rem; }
.txb-summary-row:last-child { border: none; font-weight: 700; font-size: 1.1rem; }

/* Payment methods */
.txb-payment-methods {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  padding: 16px; background: #f9f9f9; border-radius: 10px;
}
.txb-payment-methods span { font-size: 1.8rem; color: #555; display: flex; align-items: center; gap: 4px; }

/* Form nav */
.txb-form-nav { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.txb-btn-prev { background: var(--txb-gray); color: var(--txb-dark); }
.txb-btn-next { background: var(--txb-dark); color: var(--txb-white); }
.txb-btn-next:hover { background: var(--txb-dark2); }
.txb-btn-submit { background: #4caf50; color: #fff; }
.txb-btn-submit:hover { background: #43a047; }

/* Success message */
.txb-booking-success {
  text-align: center; padding: 60px 24px;
  animation: zoomIn .5s ease;
}
@keyframes zoomIn { from{opacity:0;transform:scale(.8)} to{opacity:1;transform:scale(1)} }
.txb-success-icon { font-size: 5rem; color: #4caf50; margin-bottom: 20px; }
.txb-booking-success h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--txb-dark); }
.txb-booking-success p  { color: #666; margin-bottom: 24px; }

/* ─────────────────── PRICE CALC ─────────────────── */
.txb-calc-section { background: var(--txb-gray); }
.txb-calc-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  background: #fff; border-radius: 16px; padding: 40px; box-shadow: var(--txb-shadow);
}
.txb-calc-inputs { display: flex; flex-direction: column; gap: 16px; }
.txb-calc-result {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 16px;
}
.txb-cr-icon { font-size: 3rem; color: var(--txb-gold); }
.txb-cr-amount { font-size: 3rem; font-weight: 800; color: var(--txb-dark); }

/* ─────────────────── CTA BANNER ─────────────────── */
.txb-cta-banner {
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--txb-dark2), var(--txb-dark3)) !important;
}
.txb-cta-inner { position: relative; z-index: 2; }
.txb-cta-banner h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--txb-white); margin-bottom: 12px; }
.txb-cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; }
.txb-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.txb-cta-particles { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

/* ─────────────────── FAQ ─────────────────── */
.txb-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.txb-faq-item {
  border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden;
  transition: var(--txb-trans);
}
.txb-faq-item:hover { border-color: var(--txb-gold); }
.txb-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; font-weight: 600; color: var(--txb-dark);
  background: #fff; transition: var(--txb-trans);
  gap: 12px;
}
.txb-faq-q:hover { background: rgba(255,215,0,.05); }
.txb-faq-icon { flex-shrink: 0; transition: var(--txb-trans); color: var(--txb-gold); }
.txb-faq-item.open .txb-faq-icon { transform: rotate(45deg); }
.txb-faq-a { display: none; padding: 0 20px 18px; color: #555; line-height: 1.7; }
.txb-faq-item.open .txb-faq-a { display: block; animation: fadeIn .3s ease; }

/* ─────────────────── TESTIMONIALS ─────────────────── */
.txb-testimonials { background: var(--txb-gray); }
.txb-reviews-slider { position: relative; overflow: hidden; }
.txb-reviews-track {
  display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.txb-review-card {
  min-width: 320px; flex: 1; background: #fff;
  border-radius: var(--txb-radius); padding: 28px;
  box-shadow: var(--txb-shadow); transition: var(--txb-trans);
}
.txb-review-card:hover { transform: translateY(-4px); }
.txb-rc-stars { color: var(--txb-gold); font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }
.txb-rc-text  { color: #444; font-size: .95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.txb-rc-author { display: flex; align-items: center; gap: 12px; }
.txb-rc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--txb-gold), var(--txb-red));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: #000;
}
.txb-rc-author strong { display: block; font-size: .9rem; }
.txb-rc-author small  { color: #888; font-size: .8rem; }
.txb-slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.txb-slide-btn {
  width: 44px; height: 44px; border-radius: 50%; background: var(--txb-white);
  border: 2px solid #e5e7eb; cursor: pointer; font-size: 1rem; color: var(--txb-dark);
  transition: var(--txb-trans); display: flex; align-items: center; justify-content: center;
}
.txb-slide-btn:hover { background: var(--txb-gold); border-color: var(--txb-gold); color: #000; }
.txb-slider-dots { display: flex; gap: 8px; }
.txb-dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; cursor: pointer; transition: var(--txb-trans); border: none; }
.txb-dot.active { background: var(--txb-gold); width: 24px; border-radius: 5px; }

/* ─────────────────── CONTACT ─────────────────── */
.txb-contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.txb-contact-info { display: flex; flex-direction: column; gap: 16px; }
.txb-ci-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: var(--txb-trans);
}
.txb-ci-card:hover { transform: translateX(6px); box-shadow: var(--txb-shadow); }
.txb-ci-card > i { font-size: 1.5rem; color: var(--txb-gold); flex-shrink: 0; }
.txb-ci-card h4  { font-size: .85rem; font-weight: 700; margin-bottom: 2px; }
.txb-ci-card a, .txb-ci-card p { font-size: .9rem; color: #555; text-decoration: none; }
.txb-ci-card a:hover { color: var(--txb-gold); }
.txb-contact-form { background: #fff; border-radius: 16px; padding: 32px; box-shadow: var(--txb-shadow); }
.txb-contact-form .txb-field { margin-bottom: 16px; }

/* ─────────────────── BOOKING STATUS ─────────────────── */
.txb-status-box { max-width: 600px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 40px; box-shadow: var(--txb-shadow); }
.txb-status-box .txb-field { margin-bottom: 16px; }
.txb-status-result { margin-top: 24px; padding: 20px; border-radius: 12px; background: var(--txb-gray); animation: fadeIn .3s ease; }

/* ─────────────────── STATS ─────────────────── */
.txb-stats-section {
  background: linear-gradient(135deg, var(--txb-dark), var(--txb-dark2));
  padding: 60px 0;
}
.txb-stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 32px; text-align: center; }
.txb-stat-card { color: #fff; }
.txb-stat-card > i { font-size: 2rem; color: var(--txb-gold); margin-bottom: 12px; display: block; }
.txb-stat-num   { font-size: 2.5rem; font-weight: 800; color: var(--txb-gold); }
.txb-stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ─────────────────── MAP ─────────────────── */
.txb-map-embed iframe  { width: 100%; height: 400px; border: none; border-radius: 16px; }
.txb-map-placeholder {
  height: 300px; background: var(--txb-gray); border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: #888; font-size: 3rem;
}
.txb-map-placeholder p { font-size: .9rem; }

/* ─────────────────── SERVICE AREAS ─────────────────── */
.txb-areas { background: var(--txb-gray); }
.txb-areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.txb-area-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 50px;
  padding: 8px 18px; font-size: .9rem; font-weight: 600; color: var(--txb-dark);
  transition: var(--txb-trans); cursor: default;
}
.txb-area-badge:hover { background: var(--txb-gold); border-color: var(--txb-gold); color: #000; transform: translateY(-2px); }

/* ─────────────────── GALLERY ─────────────────── */
.txb-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 12px; }
.txb-gal-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.txb-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.txb-gal-item:hover img { transform: scale(1.08); }

/* ─────────────────── FLOATING BUTTONS ─────────────────── */
.txb-float-wa {
  position: fixed; bottom: 30px; right: 30px; z-index: 9998;
  display: flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; border-radius: 50px;
  padding: 14px 20px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--txb-trans); animation: floatIn 1s ease .5s both;
}
.txb-float-wa:hover { background: #20c25a; transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.txb-float-wa i { font-size: 1.4rem; }
.txb-float-phone {
  position: fixed; bottom: 90px; right: 30px; z-index: 9998;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--txb-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; text-decoration: none;
  box-shadow: 0 4px 16px rgba(233,69,96,.5);
  transition: var(--txb-trans); animation: floatIn 1s ease .7s both;
}
.txb-float-phone:hover { transform: translateY(-3px) scale(1.1); }
@keyframes floatIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ─────────────────── BREADCRUMB ─────────────────── */
.txb-breadcrumb {
  padding: 80px 24px 20px; max-width: 1280px; margin: 0 auto;
  font-size: .9rem; display: flex; align-items: center; gap: 8px; color: #666;
}
.txb-breadcrumb a { color: var(--txb-blue); text-decoration: none; }
.txb-breadcrumb a:hover { color: var(--txb-gold); }
.txb-breadcrumb i { font-size: .7rem; color: #aaa; }

/* ─────────────────── FOOTER ─────────────────── */
.txb-footer {
  background: var(--txb-dark);
  color: rgba(255,255,255,.8);
  position: relative;
}
.txb-footer-wave { position: relative; height: 0; overflow: visible; }
.txb-footer-wave svg { width: 100%; height: 60px; display: block; }
.txb-footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px; max-width: 1280px; margin: 0 auto;
  padding: 60px 24px 40px;
}
.txb-footer-logo { font-size: 1.5rem; font-weight: 800; color: var(--txb-gold); margin-bottom: 12px; }
.txb-footer-brand p { font-size: .9rem; line-height: 1.6; margin-bottom: 20px; opacity: .7; }
.txb-footer-social { display: flex; gap: 10px; }
.txb-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .95rem; text-decoration: none; transition: var(--txb-trans);
}
.txb-footer-social a:hover { background: var(--txb-gold); color: #000; transform: translateY(-3px); }
.txb-footer-links h4, .txb-footer-contact h4 {
  font-size: 1rem; font-weight: 700; color: var(--txb-white); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 2px solid rgba(255,215,0,.3);
}
.txb-footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.txb-footer-links ul li a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .9rem; transition: var(--txb-trans); display: flex; align-items: center; gap: 6px; }
.txb-footer-links ul li a::before { content: '→'; color: var(--txb-gold); font-size: .7rem; }
.txb-footer-links ul li a:hover { color: var(--txb-gold); padding-left: 4px; }
.txb-footer-contact p { display: flex; align-items: center; gap: 10px; font-size: .9rem; margin-bottom: 12px; }
.txb-footer-contact i { color: var(--txb-gold); flex-shrink: 0; }
.txb-footer-contact a { color: rgba(255,255,255,.7); text-decoration: none; }
.txb-footer-contact a:hover { color: var(--txb-gold); }
.txb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px; max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.5);
}

/* ─────────────────── ANIMATIONS ─────────────────── */
@keyframes fadeInUp   { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

/* ─────────────────── RESPONSIVE ─────────────────── */
/* ════════════════════════════════════
   RESPONSIVE – TABLET (≤ 768px)
════════════════════════════════════ */
@media (max-width:768px) {
  /* Header */
  .txb-nav { position: fixed; top: 70px; left: 0; right: 0; background: var(--txb-dark2); padding: 20px; display: none; flex-direction: column; }
  .txb-nav.open { display: flex; }
  .txb-nav ul { flex-direction: column; gap: 4px; }
  .txb-hamburger { display: flex; }
  .txb-header-actions .txb-btn-call { display: none; }

  /* Booking form grid → 1 column */
  .txb-form-grid {
    grid-template-columns: 1fr !important;
  }
  .txb-field-full { grid-column: 1 !important; }

  /* Date + Time → full width, no overflow */
  .txb-field input[type="date"],
  .txb-field input[type="time"] {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  /* Counter stays readable */
  .txb-counter { max-width: 160px; }

  /* Price preview full width */
  .txb-price-preview { grid-column: 1 !important; }

  /* Other layouts */
  .txb-calc-box { grid-template-columns: 1fr; }
  .txb-contact-grid { grid-template-columns: 1fr; }
  .txb-footer-inner { grid-template-columns: 1fr; }
  .txb-hero-stats { gap: 20px; }
  .txb-float-wa span { display: none; }
  .txb-float-wa { padding: 14px; border-radius: 50%; }

  /* Steps bar */
  .txb-steps-bar { gap: 4px; overflow-x: auto; padding-bottom: 8px; flex-wrap: nowrap; justify-content: flex-start; }
  .txb-step { min-width: 56px; }
  .txb-step-line { width: 20px; min-width: 14px; flex-shrink: 1; }
  .txb-step span { font-size: .62rem; }

  /* Route info */
  .txb-route-info { flex-direction: column; gap: 6px; }
}

/* ════════════════════════════════════
   RESPONSIVE – MOBILE (≤ 480px)
════════════════════════════════════ */
@media (max-width:480px) {
  /* Hero */
  .txb-hero-btns { flex-direction: column; align-items: stretch; }
  .txb-hero-content { padding: 100px 16px 60px; }

  /* Booking form: everything full width */
  .txb-form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .txb-form { padding: 0 4px; }

  /* Date & Time inputs: fix iOS/Android overflow */
  .txb-field input[type="date"],
  .txb-field input[type="time"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 10px;
    font-size: .9rem;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* Fix the native date picker icon pushing content on some Android */
  .txb-field input[type="date"]::-webkit-calendar-picker-indicator,
  .txb-field input[type="time"]::-webkit-calendar-picker-indicator {
    margin-left: 0;
    padding: 0;
    flex-shrink: 0;
  }

  /* Counter */
  .txb-counter { max-width: 140px; }
  .txb-cnt-btn { width: 38px; height: 44px; }

  /* Vehicles cards: 1 column */
  .txb-vehicles-grid { grid-template-columns: 1fr; }
  .txb-fleet-grid { grid-template-columns: 1fr; }
  .txb-why-grid { grid-template-columns: repeat(2,1fr); }

  /* Steps: make scrollable horizontally */
  .txb-steps-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 4px 10px;
    justify-content: flex-start;
    gap: 0;
  }
  .txb-steps-bar::-webkit-scrollbar { display: none; }
  .txb-step { min-width: 70px; flex-shrink: 0; }
  .txb-step-circle { width: 40px; height: 40px; font-size: .95rem; }
  .txb-step span { font-size: .6rem; }
  .txb-step-line { width: 18px; min-width: 10px; }

  /* Form nav buttons */
  .txb-form-nav { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .txb-form-nav .txb-btn { flex: 1; min-width: 120px; justify-content: center; font-size: .85rem; padding: 11px 16px; }

  /* Booking section padding */
  .txb-booking-section .txb-container { padding: 0 12px; }

  /* Summary */
  .txb-summary-row { font-size: .82rem; }
  .txb-summary-row strong { font-size: .88rem; max-width: 60%; text-align: right; word-break: break-word; }
}
