/* ═══════════════════════════════════════════════════════
   TAXI BELGE – Premium App UI Stylesheet
   Modern, Clean, and Professional Layout & Theme
══════════════════════════════════════════════════════ */

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

:root {
  /* ── Color Palette ── */
  --txb-blue:          #2563eb;
  --txb-blue-hover:    #1d4ed8;
  --txb-blue-light:    #eff6ff;
  --txb-bg:            #f8f9fb;
  --txb-white:         #ffffff;
  --txb-text:          #0f172a;
  --txb-text-muted:    #64748b;
  --txb-border:        #e2e8f0;
  --txb-green:         #16a34a;
  --txb-green-bg:      #f0fdf4;
  --txb-red:           #dc2626;
  --txb-radius:        12px;
  --txb-radius-sm:     8px;
  --txb-radius-lg:     16px;
  --txb-shadow:        0 1px 4px rgba(0,0,0,0.08);
  --txb-shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --txb-shadow-lg:     0 8px 32px rgba(0,0,0,0.12);
  --txb-sidebar-w:     220px;
  --txb-trans:         all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy aliases (maintain full PHP compatibility) */
  --txb-blue2:         var(--txb-blue-hover);
  --txb-blue3:         var(--txb-blue-light);
  --txb-blue4:         #cfe2ff;
  --txb-blue5:         #1e3a8a;
  --txb-yellow:        #f59e0b;
  --txb-yellow2:       #fef3c7;
  --txb-bg2:           #f1f5f9;
  --txb-text2:         var(--txb-text-muted);
  --txb-text3:         #94a3b8;
  --txb-navy:          #1e3a8a;
  --txb-navy0:         #1e3a8a;
  --txb-navy2:         var(--txb-blue);
  --txb-navy3:         var(--txb-blue-hover);
  --txb-gold:          #f59e0b;
  --txb-gold2:         #fef3c7;
  --txb-gray:          var(--txb-bg);
  --txb-gray2:         var(--txb-border);
}

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

body.txb-app-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--txb-bg);
  color: var(--txb-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
.txb-hero-title { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; line-height: 1.2; color: var(--txb-text); letter-spacing: -0.02em; }
.txb-hero-sub { font-size: clamp(0.95rem, 1.8vw, 1.1rem); color: var(--txb-text-muted); font-weight: 400; }

/* ═══════════════════════════════════════
   APP LAYOUT (NEW SYSTEM)
═══════════════════════════════════════ */
.txb-app-layout {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  width: 100%;
  background-color: var(--txb-bg);
}

/* Left Sidebar (Desktop) */
.txb-sidebar {
  width: var(--txb-sidebar-w);
  min-width: var(--txb-sidebar-w);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--txb-white);
  border-right: 1px solid var(--txb-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
  z-index: 100;
}

/* Sidebar Logo */
.txb-sidebar-logo {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  padding: 0 8px 24px 8px;
  border-bottom: 1px solid var(--txb-border);
  margin-bottom: 20px;
}
.txb-logo-bold {
  font-weight: 800;
  color: var(--txb-text);
}
.txb-logo-light {
  font-weight: 400;
  color: var(--txb-text);
}

/* Sidebar Nav */
.txb-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.txb-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--txb-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--txb-trans);
}

.txb-nav-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.txb-nav-item:hover {
  background-color: var(--txb-bg);
  color: var(--txb-text);
}

.txb-nav-item.active {
  background-color: var(--txb-blue);
  color: var(--txb-white) !important;
  font-weight: 600;
}

/* Sidebar Footer */
.txb-sidebar-footer {
  padding-top: 16px;
  border-top: 1px solid var(--txb-border);
}

.txb-sidebar-footer .txb-nav-item {
  color: var(--txb-text-muted);
}
.txb-sidebar-footer .txb-nav-item:hover {
  color: var(--txb-red);
  background-color: #fef2f2;
}

/* Right Content Area */
.txb-content-area {
  flex: 1;
  margin-left: var(--txb-sidebar-w);
  padding: 40px;
  min-height: 100vh;
  overflow-y: auto;
  background-color: var(--txb-bg);
}

/* ═══════════════════════════════════════
   MOBILE NAVIGATION (NEW SYSTEM)
═══════════════════════════════════════ */
.txb-mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background-color: var(--txb-white);
  border-bottom: 1px solid var(--txb-border);
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.txb-mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: var(--txb-white);
  border-top: 1px solid var(--txb-border);
  z-index: 100;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
}

.txb-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  color: var(--txb-text-muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  gap: 4px;
  transition: var(--txb-trans);
}

.txb-bottom-nav-item i {
  font-size: 18px;
}

.txb-bottom-nav-item.active {
  color: var(--txb-blue);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   CARDS & COMMON CONTAINERS
═══════════════════════════════════════ */
.txb-card {
  background: var(--txb-white);
  border-radius: 14px;
  box-shadow: var(--txb-shadow);
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.txb-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--txb-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Badges */
.txb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.txb-badge.txb-badge-blue {
  background-color: var(--txb-blue-light);
  color: var(--txb-blue);
}

.txb-badge.txb-badge-green {
  background-color: var(--txb-green-bg);
  color: var(--txb-green);
}

.txb-badge.txb-badge-red {
  background-color: #fef2f2;
  color: var(--txb-red);
}

/* Progress Bar */
.txb-progress-bar-container {
  background-color: var(--txb-border);
  height: 6px;
  border-radius: 9999px;
  overflow: hidden;
  margin: 12px 0;
}

.txb-progress-bar {
  background-color: var(--txb-blue);
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

/* ═══════════════════════════════════════
   BOOKING FLOW (STEP 1: FORM)
═══════════════════════════════════════ */
.txb-booking-form-group {
  position: relative;
  margin-bottom: 16px;
}

.txb-location-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--txb-border);
  border-radius: var(--txb-radius);
  background-color: var(--txb-white);
  transition: var(--txb-trans);
}

.txb-location-input-wrap:focus-within {
  border-color: var(--txb-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.txb-input-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--txb-text-muted);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.txb-dot-blue {
  width: 8px;
  height: 8px;
  background-color: var(--txb-blue);
  border-radius: 50%;
  display: inline-block;
}

.txb-pin-blue {
  color: var(--txb-blue);
  font-size: 14px;
}

.txb-input-field {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: var(--txb-text);
  font-weight: 500;
  background: transparent;
}

.txb-input-divider {
  height: 1px;
  background-color: var(--txb-border);
  margin: 16px 0;
}

/* Date / Time Row */
.txb-datetime-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.txb-passengers-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--txb-border);
  border-radius: var(--txb-radius);
  background-color: var(--txb-white);
  margin-bottom: 24px;
}

.txb-passengers-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--txb-text);
}

/* Buttons */
.txb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--txb-blue);
  color: var(--txb-white);
  border: none;
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--txb-trans);
  text-decoration: none;
}

.txb-btn-primary:hover {
  background-color: var(--txb-blue-hover);
}

.txb-btn-full {
  width: 100%;
}

.txb-align-right {
  display: flex;
  justify-content: flex-end;
}

/* ═══════════════════════════════════════
   VEHICLES LIST (STEP 2)
═══════════════════════════════════════ */
.txb-vehicle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--txb-white);
  border: 1px solid var(--txb-border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  transition: var(--txb-trans);
  cursor: pointer;
}

.txb-vehicle-card:hover {
  border-color: var(--txb-blue);
  box-shadow: var(--txb-shadow);
}

.txb-vehicle-card.active, .txb-vehicle-card.selected {
  border-color: var(--txb-blue);
  background-color: var(--txb-blue-light);
}

.txb-vehicle-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.txb-vehicle-image {
  width: 150px;
  height: 90px;
  object-fit: contain;
}

.txb-vehicle-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.txb-vehicle-amenities {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--txb-text-muted);
}

.txb-vehicle-right {
  text-align: right;
}

.txb-vehicle-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--txb-text);
}

.txb-vehicle-estimation {
  font-size: 12px;
  color: var(--txb-text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   TRAJETS PAGE
═══════════════════════════════════════ */
.txb-trip-card {
  position: relative;
  background-color: var(--txb-white);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--txb-border);
  box-shadow: var(--txb-shadow);
  margin-bottom: 16px;
  transition: var(--txb-trans);
}

.txb-trip-card.active {
  border: 1.5px solid var(--txb-blue);
  border-left: 5px solid var(--txb-blue);
}

.txb-trip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.txb-trip-datetime {
  font-size: 13px;
  color: var(--txb-text-muted);
  font-weight: 500;
}

.txb-trip-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--txb-text);
}

/* Route display */
.txb-trip-route {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 20px;
}

.txb-trip-route::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 3px;
  bottom: 6px;
  width: 2px;
  border-left: 2px dashed var(--txb-border);
}

.txb-route-point {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--txb-text);
}

.txb-route-point::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--txb-border);
}

.txb-route-point.origin::before {
  background-color: var(--txb-text-muted);
}

.txb-route-point.destination::before {
  background-color: var(--txb-blue);
}

/* ═══════════════════════════════════════
   PROFIL PAGE
═══════════════════════════════════════ */
.txb-profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.txb-profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--txb-blue-light);
  color: var(--txb-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.txb-profile-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.txb-profile-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--txb-text);
}

.txb-profile-badge-gold {
  background-color: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 9999px;
  width: fit-content;
}

/* Stats grid */
.txb-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.txb-stat-card {
  background-color: var(--txb-white);
  border: 1px solid var(--txb-border);
  border-radius: var(--txb-radius);
  padding: 16px;
  text-align: center;
}

.txb-stat-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--txb-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.txb-stat-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--txb-text);
}

/* Addresses list */
.txb-address-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--txb-border);
}

.txb-address-item:last-child {
  border-bottom: none;
}

.txb-address-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.txb-address-icon {
  color: var(--txb-text-muted);
}

.txb-address-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--txb-text);
}

.txb-chevron {
  color: var(--txb-text-muted);
  font-size: 14px;
}

/* Payment summary */
.txb-payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--txb-border);
  border-radius: var(--txb-radius);
  background-color: var(--txb-white);
}

.txb-payment-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.txb-visa-logo {
  font-weight: 800;
  font-style: italic;
  color: #1a1f71;
  font-size: 18px;
}

.txb-payment-details {
  font-size: 14px;
  font-weight: 500;
  color: var(--txb-text);
}

.txb-payment-expiry {
  font-size: 12px;
  color: var(--txb-text-muted);
}

/* ═══════════════════════════════════════
   CONFIRMATION PAGE
═══════════════════════════════════════ */
.txb-confirm-wrapper {
  text-align: center;
  padding: 16px 0;
}

.txb-checkmark-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--txb-blue-light);
  color: var(--txb-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.txb-confirm-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--txb-text);
  margin-bottom: 24px;
}

/* Map Placeholder Card */
.txb-map-card {
  height: 180px;
  background-color: #f1f5f9;
  border: 2px dashed var(--txb-border);
  border-radius: var(--txb-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}

.txb-map-compass {
  font-size: 32px;
  color: var(--txb-text-muted);
}

.txb-map-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 32px));
  background-color: var(--txb-blue);
  color: var(--txb-white);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--txb-shadow-md);
}

/* Driver Card */
.txb-driver-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.txb-driver-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.txb-driver-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.txb-driver-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--txb-blue-light);
  object-fit: cover;
}

.txb-driver-info {
  text-align: left;
}

.txb-driver-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--txb-text);
}

.txb-driver-sub {
  font-size: 12px;
  color: var(--txb-text-muted);
}

.txb-driver-plate {
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--txb-border);
  background-color: var(--txb-bg);
}

.txb-driver-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.txb-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--txb-white);
  border: 1px solid var(--txb-border);
  color: var(--txb-text);
  border-radius: 9999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--txb-trans);
}

.txb-btn-secondary:hover {
  background-color: var(--txb-bg);
}

/* ═══════════════════════════════════════
   LOGIN / REGISTER PAGES
═══════════════════════════════════════ */
.txb-auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: var(--txb-bg);
  padding: 24px;
}

.txb-auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--txb-white);
  border-radius: 14px;
  box-shadow: var(--txb-shadow-md);
  padding: 32px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.txb-auth-logo {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 24px;
}

.txb-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--txb-border);
  margin-bottom: 24px;
}

.txb-auth-tab {
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--txb-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--txb-trans);
}

.txb-auth-tab:hover {
  color: var(--txb-text);
}

.txb-auth-tab.active {
  color: var(--txb-blue);
  border-bottom-color: var(--txb-blue);
}

.txb-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.txb-auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.txb-auth-input-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--txb-text);
}

.txb-auth-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--txb-border);
  border-radius: var(--txb-radius-sm);
  font-size: 14px;
  color: var(--txb-text);
  outline: none;
  background-color: var(--txb-white);
  transition: var(--txb-trans);
}

.txb-auth-input:focus {
  border-color: var(--txb-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.txb-auth-forgot {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--txb-blue);
  text-decoration: none;
  text-align: right;
  margin-top: -8px;
  transition: var(--txb-trans);
}

.txb-auth-forgot:hover {
  color: var(--txb-blue-hover);
  text-decoration: underline;
}

/* ═══════════════════════════════════════
   RESPONSIVE LAYOUT BREAKPOINTS
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Layout Changes */
  .txb-app-layout {
    flex-direction: column;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .txb-sidebar {
    display: none !important;
  }

  .txb-content-area {
    margin-left: 0;
    padding: 20px;
    min-height: calc(100vh - 120px);
  }

  /* Mobile Top & Bottom Navigation Activation */
  .txb-mobile-topbar {
    display: flex;
  }

  .txb-mobile-bottom-nav {
    display: flex;
  }

  /* Stat Grid responsive adjustment */
  .txb-stat-grid {
    gap: 8px;
  }
  
  .txb-stat-card {
    padding: 12px 8px;
  }
  
  .txb-stat-value {
    font-size: 14px;
  }

  /* Vehicle Card full width-ish styling for mobile */
  .txb-vehicle-card {
    flex-direction: row;
    padding: 12px;
    gap: 12px;
  }

  .txb-vehicle-image {
    width: 90px;
    height: 60px;
  }

  .txb-vehicle-name {
    font-size: 14px;
  }

  .txb-vehicle-price {
    font-size: 16px;
  }

  /* Primary Button Pill on Mobile (full-ish width) */
  .txb-align-right {
    justify-content: center;
    width: 100%;
  }

  .txb-btn-primary {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   AUTOCOMPLETE (Nominatim fallback) + Guest contact fields
   Ajouté pour corriger : suggestions d'adresses + réservation invité
═══════════════════════════════════════ */
.txb-autocomplete-wrap,
.txb-route-row > div { position: relative; }

.txb-nomi-list,
.txb-autocomplete-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 5000;
  background: #ffffff;
  border: 1px solid var(--txb-border, #e5e7eb);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  max-height: 240px;
  overflow-y: auto;
  display: none;
}
.txb-nomi-list.open,
.txb-autocomplete-list.open { display: block; }

.txb-ac-item {
  padding: 10px 14px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111827;
}
.txb-ac-item:hover { background: #f3f4f6; }
.txb-ac-item i { color: var(--txb-blue, #2563eb); flex-shrink: 0; }

/* Google's own dropdown (.pac-container) already styled in JS, keep z-index high */
.pac-container { z-index: 999999 !important; }

/* Guest contact card (booking without login) */
.txb-guest-contact-card {
  background: #f8faff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}
.txb-guest-contact-card .txb-field-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.txb-guest-contact-card .txb-field { display: flex; flex-direction: column; gap: 6px; }
.txb-guest-contact-card .txb-field label { font-size: 12px; font-weight: 600; color: #6b7280; }
.txb-guest-contact-card .txb-field input {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  width: 100%;
}
.txb-guest-contact-card .txb-field input:focus {
  border-color: var(--txb-blue, #2563eb);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

@media (max-width: 600px) {
  .txb-guest-contact-card .txb-field-row { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════
   HOME PAGE STYLES
══════════════════════════════════════════════════════ */
.txb-home-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--txb-text);
  background: var(--txb-bg);
  overflow-x: hidden;
}
.txb-home-wrapper * { box-sizing: border-box; }
.txb-home-wrapper a { text-decoration: none; }

/* HEADER */
.txb-hp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: all 0.3s ease;
  padding: 16px 0;
}
.txb-hp-header-scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 8px 0;
}
.txb-hp-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.txb-hp-logo { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 800; color: #fff; }
.txb-hp-header-scrolled .txb-hp-logo { color: var(--txb-text); }
.txb-hp-logo-icon { font-size: 26px; }
.txb-hp-logo-text em { color: var(--txb-blue); font-style: normal; font-weight: 700; }
.txb-hp-nav { display: flex; gap: 28px; }
.txb-hp-nav a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; transition: color 0.2s; position: relative; }
.txb-hp-nav a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--txb-blue); transition:width 0.3s; }
.txb-hp-nav a:hover::after { width:100%; }
.txb-hp-header-scrolled .txb-hp-nav a { color: var(--txb-text-muted); }
.txb-hp-header-scrolled .txb-hp-nav a:hover { color: var(--txb-blue); }
.txb-hp-header-right { display: flex; align-items: center; gap: 16px; }
.txb-hp-lang-switcher { display: flex; gap: 4px; }
.txb-hp-lang-btn {
  padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.12); transition: all 0.2s;
}
.txb-hp-header-scrolled .txb-hp-lang-btn { color: var(--txb-text-muted); background: var(--txb-bg); }
.txb-hp-lang-btn:hover, .txb-hp-lang-btn.txb-hp-lang-active {
  background: var(--txb-blue); color: #fff !important;
}
.txb-hp-book-btn {
  padding: 9px 20px; border-radius: 9999px; font-size: 14px; font-weight: 600;
  background: var(--txb-blue); color: #fff !important; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; white-space: nowrap;
}
.txb-hp-book-btn:hover { background: var(--txb-blue-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.4); }
.txb-hp-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.txb-hp-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.txb-hp-header-scrolled .txb-hp-burger span { background: var(--txb-text); }
.txb-hp-mobile-menu { display: none; }

/* HERO */
.txb-hp-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 60px; overflow: hidden;
}
.txb-hp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.txb-hp-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f4e 25%, #1e3a8a 50%, #2563eb 75%, #3b82f6 100%);
}
.txb-hp-hero-gradient::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(37,99,235,0.3), transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(255,215,0,0.15), transparent 50%);
}
.txb-hp-hero-particles { position: absolute; inset: 0; overflow: hidden; }
.txb-hp-particle {
  position: absolute; bottom: -10px; border-radius: 50%; opacity: 0.5;
  animation: txbHpFloat linear infinite;
}
@keyframes txbHpFloat { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 0.6; } 90% { opacity: 0.4; } 100% { transform: translateY(-100vh) translateX(30px); opacity: 0; } }
.txb-hp-hero-city {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, rgba(10,14,39,0.6), transparent);
}
.txb-hp-hero-content { position: relative; z-index: 1; max-width: 800px; }
.txb-hp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px; color: #fff; font-size: 14px; font-weight: 500; margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.txb-hp-pulse-dot {
  width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
  animation: txbHpPulse 2s infinite;
}
@keyframes txbHpPulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); } 50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34,197,94,0); } }
.txb-hp-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.txb-hp-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem); color: rgba(255,255,255,0.85);
  font-weight: 400; line-height: 1.6; margin-bottom: 36px; max-width: 650px; margin-left: auto; margin-right: auto;
}
.txb-hp-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.txb-hp-cta-primary {
  padding: 16px 36px; border-radius: 9999px; font-size: 16px; font-weight: 700;
  background: #fff; color: var(--txb-blue) !important; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.25s; box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}
.txb-hp-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,0.4); }
.txb-hp-cta-whatsapp {
  padding: 16px 36px; border-radius: 9999px; font-size: 16px; font-weight: 700;
  background: linear-gradient(135deg, #128c7e, #25d366); color: #fff !important;
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s;
}
.txb-hp-cta-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
.txb-hp-cta-phone {
  padding: 16px 36px; border-radius: 9999px; font-size: 16px; font-weight: 700;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.3); color: #fff !important;
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s; backdrop-filter: blur(10px);
}
.txb-hp-cta-phone:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* HERO SEARCH */
.txb-hp-hero-search { max-width: 700px; margin: 0 auto; }
.txb-hp-search-card {
  background: rgba(255,255,255,0.97); border-radius: 20px; padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2); backdrop-filter: blur(20px);
}
.txb-hp-search-row { display: flex; gap: 12px; margin-bottom: 12px; }
.txb-hp-search-row:last-child { margin-bottom: 0; }
.txb-hp-search-field { flex: 1; text-align: left; }
.txb-hp-search-field label { display: block; font-size: 12px; font-weight: 700; color: var(--txb-text-muted); margin-bottom: 6px; }
.txb-hp-search-field input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--txb-border); border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--txb-text); transition: all 0.2s; }
.txb-hp-search-field input:focus { outline: none; border-color: var(--txb-blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.txb-hp-search-small { max-width: 160px; }
.txb-hp-dot-blue { color: var(--txb-blue); }
.txb-hp-search-go {
  padding: 12px 24px; border-radius: 10px; border: none; font-size: 15px; font-weight: 700;
  background: var(--txb-blue); color: #fff; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; white-space: nowrap; align-self: flex-end; height: 46px;
}
.txb-hp-search-go:hover { background: var(--txb-blue-hover); transform: scale(1.02); }
.txb-hp-hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 12px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: txbHpBounce 2s infinite; z-index: 1;
}
@keyframes txbHpBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* STATS */
.txb-hp-stats { background: #fff; padding: 60px 24px; }
.txb-hp-stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.txb-hp-stat-icon {
  width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 16px;
  background: var(--txb-blue-light); color: var(--txb-blue); display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.txb-hp-stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--txb-text); line-height: 1; }
.txb-hp-stat-label { font-size: 12px; font-weight: 700; color: var(--txb-text-muted); letter-spacing: 0.05em; margin-top: 4px; }

/* SECTIONS */
.txb-hp-section { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
.txb-hp-section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.txb-hp-section-tag {
  display: inline-block; padding: 6px 16px; background: var(--txb-blue-light); color: var(--txb-blue);
  border-radius: 9999px; font-size: 13px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em;
}
.txb-hp-section-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--txb-text); letter-spacing: -0.02em; margin-bottom: 12px; }
.txb-hp-section-head p { font-size: 16px; color: var(--txb-text-muted); line-height: 1.6; }

/* SERVICES GRID */
.txb-hp-services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.txb-hp-service-card {
  background: #fff; border-radius: 16px; padding: 28px 24px; border: 1px solid var(--txb-border);
  transition: all 0.3s; opacity: 0; transform: translateY(20px);
}
.txb-hp-service-card.txb-hp-revealed { opacity: 1; transform: translateY(0); }
.txb-hp-service-card:hover { border-color: var(--svc-color, var(--txb-blue)); box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.txb-hp-service-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 16px;
  background: color-mix(in srgb, var(--svc-color, #2563eb) 12%, transparent);
  color: var(--svc-color, var(--txb-blue)); display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.txb-hp-service-card h3 { font-size: 17px; font-weight: 700; color: var(--txb-text); margin-bottom: 8px; }
.txb-hp-service-card p { font-size: 14px; color: var(--txb-text-muted); line-height: 1.5; margin-bottom: 16px; }
.txb-hp-service-link { font-size: 13px; font-weight: 600; color: var(--txb-blue); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.txb-hp-service-link:hover { gap: 10px; }

/* FEATURES */
.txb-hp-features-section { background: #fff; max-width: none; padding: 80px 0; }
.txb-hp-features-section .txb-hp-section-head { max-width: 700px; margin: 0 auto 48px; padding: 0 24px; }
.txb-hp-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.txb-hp-feature-card {
  display: flex; gap: 16px; padding: 24px; background: var(--txb-bg); border-radius: 14px;
  border: 1px solid var(--txb-border); transition: all 0.3s; opacity: 0; transform: translateY(20px);
}
.txb-hp-feature-card.txb-hp-revealed { opacity: 1; transform: translateY(0); }
.txb-hp-feature-card:hover { border-color: var(--txb-blue); background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.txb-hp-feature-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--txb-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.txb-hp-feature-content h3 { font-size: 15px; font-weight: 700; color: var(--txb-text); margin-bottom: 4px; }
.txb-hp-feature-content p { font-size: 13px; color: var(--txb-text-muted); line-height: 1.5; }

/* QUICK BOOKING */
.txb-hp-quick-booking { padding: 60px 24px; max-width: 1280px; margin: 0 auto; }
.txb-hp-qb-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, #1a1f4e, #2563eb); box-shadow: 0 20px 60px rgba(37,99,235,0.3);
}
.txb-hp-qb-left { padding: 48px 40px; color: #fff; }
.txb-hp-qb-left h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.txb-hp-qb-left > p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 24px; }
.txb-hp-qb-list { list-style: none; padding: 0; }
.txb-hp-qb-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.9); margin-bottom: 12px; }
.txb-hp-qb-list i { color: #22c55e; font-size: 18px; }
.txb-hp-qb-right { padding: 48px 40px; background: #fff; display: flex; align-items: center; }
.txb-hp-qb-form h3 { font-size: 20px; font-weight: 700; color: var(--txb-text); margin-bottom: 20px; }
.txb-hp-qb-field { margin-bottom: 14px; }
.txb-hp-qb-field label { display: block; font-size: 12px; font-weight: 600; color: var(--txb-text-muted); margin-bottom: 6px; }
.txb-hp-qb-field input, .txb-hp-qb-field select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--txb-border); border-radius: 10px; font-size: 14px; font-family: inherit; color: var(--txb-text); }
.txb-hp-qb-field input:focus, .txb-hp-qb-field select:focus { outline: none; border-color: var(--txb-blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.txb-hp-qb-row { display: flex; gap: 12px; }
.txb-hp-qb-row .txb-hp-qb-field { flex: 1; }
.txb-hp-qb-submit {
  display: block; width: 100%; padding: 14px; border-radius: 10px; border: none; font-size: 16px; font-weight: 700;
  background: var(--txb-blue); color: #fff !important; text-align: center; cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.txb-hp-qb-submit:hover { background: var(--txb-blue-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.3); }

/* FLEET */
.txb-hp-fleet-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.txb-hp-fleet-card {
  background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--txb-border);
  transition: all 0.3s; opacity: 0; transform: translateY(20px);
}
.txb-hp-fleet-card.txb-hp-revealed { opacity: 1; transform: translateY(0); }
.txb-hp-fleet-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: var(--txb-blue); }
.txb-hp-fleet-img { position: relative; height: 140px; background: linear-gradient(135deg, #f1f5f9, #e2e8f0); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.txb-hp-fleet-emoji { font-size: 56px; z-index: 1; }
.txb-hp-fleet-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(37,99,235,0.1), transparent 70%); }
.txb-hp-fleet-info { padding: 20px; }
.txb-hp-fleet-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.txb-hp-fleet-info p { font-size: 13px; color: var(--txb-text-muted); line-height: 1.5; margin-bottom: 12px; }
.txb-hp-fleet-meta { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; }
.txb-hp-fleet-meta span { display: flex; align-items: center; gap: 6px; }
.txb-hp-fleet-meta i { color: var(--txb-blue); }

/* WHY US */
.txb-hp-why-section { background: var(--txb-bg); max-width: none; padding: 80px 0; }
.txb-hp-why-section .txb-hp-section-head { max-width: 700px; margin: 0 auto 48px; padding: 0 24px; }
.txb-hp-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.txb-hp-why-card {
  background: #fff; border-radius: 16px; padding: 28px; border: 1px solid var(--txb-border);
  transition: all 0.3s; opacity: 0; transform: translateY(20px);
}
.txb-hp-why-card.txb-hp-revealed { opacity: 1; transform: translateY(0); }
.txb-hp-why-card:hover { border-color: var(--txb-blue); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.txb-hp-why-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--txb-blue), var(--txb-blue-hover)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.txb-hp-why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.txb-hp-why-card p { font-size: 14px; color: var(--txb-text-muted); line-height: 1.5; }

/* REVIEWS */
.txb-hp-reviews-section { max-width: 1280px; margin: 0 auto; }
.txb-hp-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.txb-hp-review-card {
  background: #fff; border-radius: 16px; padding: 28px; border: 1px solid var(--txb-border);
  transition: all 0.3s; opacity: 0; transform: translateY(20px);
}
.txb-hp-review-card.txb-hp-revealed { opacity: 1; transform: translateY(0); }
.txb-hp-review-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.txb-hp-review-stars { color: #f59e0b; margin-bottom: 16px; font-size: 16px; }
.txb-hp-review-text { font-size: 15px; color: var(--txb-text); line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.txb-hp-review-author { display: flex; align-items: center; gap: 12px; }
.txb-hp-review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--txb-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700;
}
.txb-hp-review-author strong { display: block; font-size: 14px; color: var(--txb-text); }
.txb-hp-review-author span { font-size: 12px; color: var(--txb-text-muted); }

/* CTA BANNER */
.txb-hp-cta-banner {
  background: linear-gradient(135deg, #0a0e27 0%, #1e3a8a 50%, #2563eb 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.txb-hp-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.1), transparent 60%);
}
.txb-hp-cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.txb-hp-cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.txb-hp-cta-content p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.txb-hp-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.txb-hp-cta-btn-primary {
  padding: 16px 36px; border-radius: 9999px; font-size: 16px; font-weight: 700;
  background: #fff; color: var(--txb-blue) !important; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.25s;
}
.txb-hp-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.3); }
.txb-hp-cta-btn-outline {
  padding: 16px 36px; border-radius: 9999px; font-size: 16px; font-weight: 700;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.3); color: #fff !important;
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s;
}
.txb-hp-cta-btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* FAQ */
.txb-hp-faq-section { max-width: 800px; }
.txb-hp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.txb-hp-faq-item { background: #fff; border: 1px solid var(--txb-border); border-radius: 12px; overflow: hidden; opacity: 0; transform: translateY(20px); transition: all 0.3s; }
.txb-hp-faq-item.txb-hp-revealed { opacity: 1; transform: translateY(0); }
.txb-hp-faq-q { width: 100%; padding: 18px 24px; background: none; border: none; text-align: left; font-size: 15px; font-weight: 600; color: var(--txb-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.txb-hp-faq-icon { transition: transform 0.3s; color: var(--txb-text-muted); flex-shrink: 0; }
.txb-hp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.txb-hp-faq-a p { padding: 0 24px 18px; font-size: 14px; color: var(--txb-text-muted); line-height: 1.6; }

/* FOOTER */
.txb-hp-footer { background: #0a0e27; color: rgba(255,255,255,0.7); padding: 60px 24px 24px; }
.txb-hp-footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.txb-hp-footer-logo { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.txb-hp-footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.txb-hp-footer-social { display: flex; gap: 12px; }
.txb-hp-footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.2s; }
.txb-hp-footer-social a:hover { background: var(--txb-blue); color: #fff; transform: translateY(-2px); }
.txb-hp-footer-col h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.txb-hp-footer-col ul { list-style: none; padding: 0; }
.txb-hp-footer-col ul li { margin-bottom: 10px; }
.txb-hp-footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.txb-hp-footer-col ul a:hover { color: var(--txb-blue); }
.txb-hp-footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.txb-hp-footer-contact i { color: var(--txb-blue); width: 16px; }
.txb-hp-footer-wa { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; margin-top: 8px; border-radius: 10px; background: #128c7e; color: #fff !important; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.txb-hp-footer-wa:hover { background: #25d366; transform: translateY(-1px); }
.txb-hp-footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.txb-hp-footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.txb-hp-footer-legal-links { display: flex; gap: 20px; }
.txb-hp-footer-legal-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.txb-hp-footer-legal-links a:hover { color: var(--txb-blue); }

/* FLOATING BUTTONS */
.txb-hp-float-wa, .txb-hp-float-phone {
  position: fixed; bottom: 24px; z-index: 999; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: all 0.25s;
}
.txb-hp-float-wa { right: 24px; background: #25d366; }
.txb-hp-float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.4); }
.txb-hp-float-phone { right: 88px; background: var(--txb-blue); }
.txb-hp-float-phone:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,99,235,0.4); }

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .txb-hp-services-grid, .txb-hp-fleet-grid { grid-template-columns: repeat(2,1fr); }
  .txb-hp-features-grid, .txb-hp-why-grid { grid-template-columns: repeat(2,1fr); }
  .txb-hp-reviews-grid { grid-template-columns: 1fr; }
  .txb-hp-footer-inner { grid-template-columns: 1fr 1fr; }
  .txb-hp-nav { display: none; }
  .txb-hp-header-right { display: none; }
  .txb-hp-burger { display: flex; }
  .txb-hp-mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); padding: 20px; flex-direction: column; gap: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); z-index: 999; }
  .txb-hp-mobile-menu.txb-hp-mm-open { display: flex; }
  .txb-hp-mobile-menu a { color: var(--txb-text) !important; font-size: 16px; font-weight: 500; padding: 12px 0; }
  .txb-hp-lang-mobile { display: flex; margin-top: 12px; }
}
@media (max-width: 640px) {
  .txb-hp-stats-inner { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .txb-hp-services-grid, .txb-hp-fleet-grid, .txb-hp-features-grid, .txb-hp-why-grid { grid-template-columns: 1fr; }
  .txb-hp-qb-card { grid-template-columns: 1fr; }
  .txb-hp-qb-left, .txb-hp-qb-right { padding: 32px 24px; }
  .txb-hp-search-row { flex-direction: column; }
  .txb-hp-search-small { max-width: none; }
  .txb-hp-search-go { width: 100%; }
  .txb-hp-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .txb-hp-footer-bottom { flex-direction: column; text-align: center; }
  .txb-hp-float-phone { right: 24px; bottom: 88px; }
  .txb-hp-section { padding: 60px 16px; }
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES STYLES
══════════════════════════════════════════════════════ */
.txb-legal-wrap {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--txb-bg); min-height: 100vh; padding-top: 0;
}
.txb-legal-hero {
  position: relative; padding: 80px 24px 60px; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, #0a0e27 0%, #1e3a8a 50%, #2563eb 100%);
}
.txb-legal-hero-glow { position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(255,215,0,0.12), transparent 50%); }
.txb-legal-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.txb-legal-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 9999px; color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 20px; backdrop-filter: blur(10px); }
.txb-legal-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.02em; }
.txb-legal-meta { font-size: 14px; color: rgba(255,255,255,0.6); }
.txb-legal-hero-car { position: absolute; bottom: 10px; right: 5%; font-size: 48px; opacity: 0.2; }
.txb-legal-container { max-width: 900px; margin: -30px auto 0; padding: 0 24px 60px; position: relative; z-index: 2; }
.txb-legal-toc-wrap { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 4px 30px rgba(0,0,0,0.08); border: 1px solid var(--txb-border); }
.txb-legal-content { color: var(--txb-text); line-height: 1.7; }
.txb-legal-content h2, .txb-legal-content h3 { color: var(--txb-text); margin-top: 28px; margin-bottom: 12px; font-weight: 700; }
.txb-legal-content h2 { font-size: 20px; }
.txb-legal-content h3 { font-size: 17px; }
.txb-legal-content p { font-size: 15px; color: var(--txb-text); margin-bottom: 14px; line-height: 1.7; }
.txb-legal-content ul, .txb-legal-content ol { margin: 0 0 16px 20px; }
.txb-legal-content li { font-size: 15px; margin-bottom: 8px; line-height: 1.6; }
.txb-legal-content strong { color: var(--txb-text); }
.txb-legal-content a { color: var(--txb-blue); text-decoration: none; }
.txb-legal-content a:hover { text-decoration: underline; }
.txb-legal-section { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--txb-border); }
.txb-legal-section:last-child { border-bottom: none; }
.txb-legal-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.txb-legal-section-head h2 { margin: 0; font-size: 20px; font-weight: 700; color: var(--txb-text); }
.txb-legal-num { width: 32px; height: 32px; border-radius: 8px; background: var(--txb-blue-light); color: var(--txb-blue); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.txb-legal-section-head i { color: var(--txb-blue); font-size: 18px; }
.txb-legal-section-body { font-size: 15px; color: var(--txb-text); line-height: 1.7; padding-left: 44px; }
.txb-legal-section-body ul, .txb-legal-section-body ol { margin: 0 0 12px 20px; }
.txb-legal-section-body li { margin-bottom: 8px; }
.txb-legal-section-body p { margin-bottom: 12px; }
.txb-legal-footer-row { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.txb-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 9999px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; font-family: inherit; cursor: pointer; border: none; }
.txb-btn-primary { background: var(--txb-blue); color: #fff !important; }
.txb-btn-primary:hover { background: var(--txb-blue-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.3); }
.txb-btn-outline { background: #fff; color: var(--txb-blue) !important; border: 1.5px solid var(--txb-blue); }
.txb-btn-outline:hover { background: var(--txb-blue-light); }
.txb-btn-ghost { background: var(--txb-bg); color: var(--txb-text-muted) !important; }
.txb-btn-ghost:hover { background: var(--txb-border); color: var(--txb-text) !important; }

/* LEGAL HUB */
.txb-legal-hub-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 24px; }
.txb-legal-hub-card { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--txb-bg); border-radius: 14px; border: 1px solid var(--txb-border); text-decoration: none; transition: all 0.2s; }
.txb-legal-hub-card:hover { border-color: var(--txb-blue); background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transform: translateY(-2px); }
.txb-legal-hub-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--txb-blue-light); color: var(--txb-blue); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.txb-legal-hub-card h3 { font-size: 16px; font-weight: 700; color: var(--txb-text); margin: 0 0 4px; }
.txb-legal-hub-card p { font-size: 13px; color: var(--txb-text-muted); margin: 0; }

@media (max-width: 768px) {
  .txb-legal-toc-wrap { padding: 24px; }
  .txb-legal-section-body { padding-left: 0; }
  .txb-legal-hub-grid { grid-template-columns: 1fr; }
  .txb-legal-footer-row { flex-direction: column; }
  .txb-legal-btn { width: 100%; justify-content: center; }
}
