:root {
  /* Colors */
  --color-primary: #F7E210;
  --color-primary-hover: #d9c50e;
  --color-text: #111111;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-border: #e0e0e0;
  --color-overlay: rgba(0, 0, 0, 0.4);
  --color-overlay-dark: rgba(0, 0, 0, 0.7);

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 48px;
  --spacing-xxl: 80px;

  /* Typography */
  --font-family: 'Roboto', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 36px;
  --font-size-hero: 48px;

  /* Shadows & Radius */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

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

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-hero); }
h2 { font-size: var(--font-size-xxl); }
h3 { font-size: var(--font-size-xl); }
p { margin-bottom: var(--spacing-md); color: var(--color-text-light); }

.text-center { text-align: center; }
.text-white { color: white !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 500;
  font-size: var(--font-size-base);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text);
}

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

.btn-outline {
  border: 1px solid currentColor;
  background: transparent;
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Contact Bar */
.top-bar {
  background-color: var(--color-bg-alt);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 500;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: var(--spacing-lg);
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-light);
}

.top-bar-contact a:hover {
  color: var(--color-text);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: var(--shadow-sm);
  height: 80px;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: var(--color-text);
  padding: 10px 0;
  display: block;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-text-light);
}

/* Dropdown Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  display: none;
  z-index: 1001;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--color-text);
  transition: background 0.2s;
}

.dropdown-link:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary-hover);
}

/* Contact Icon & Popover */
.contact-nav-item {
  position: relative;
}

.contact-icon-btn {
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
}

.contact-popover {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  display: none;
  z-index: 1001;
}

.contact-nav-item:hover .contact-popover {
  display: block;
}

.popover-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text);
}

.popover-link:hover {
  background: var(--color-bg-alt);
}

/* Hero Carousel */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  transition: background-image 1s ease-in-out;
  padding: 30px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.hero-buttons .btn {
  padding: 9px 18px;
  font-size: 13px;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
}

/* Reservation Widget */
.widget-card {
  background: white;
  padding: 16px;
  border-radius: var(--radius-md);
  width: 380px;
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}

.widget-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 6px;
}

.widget-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Widget-scoped compact overrides */
.widget-card .form-group {
  gap: 3px;
}

.widget-card .form-label {
  font-size: 11px;
}

.widget-card .form-input,
.widget-card .form-select {
  padding: 7px 10px;
  font-size: 13px;
  box-shadow: none;
}

.widget-card .toggle-option {
  padding: 6px 8px;
  font-size: 13px;
}

.widget-card .trip-type-toggle {
  margin-bottom: 2px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-input, .form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text);
  background: white;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(247,226,16,0.25);
}

textarea.form-input { resize: vertical; }

.trip-type-toggle {
  display: flex;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: var(--spacing-sm);
}

.toggle-option {
  flex: 1;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.toggle-option.active {
  background: white;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.row {
  display: flex;
  gap: var(--spacing-md);
}

.col {
  flex: 1;
}

/* Steps Indicator */
.steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.steps-indicator::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-border);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  background: var(--color-bg-alt);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--color-border);
  color: var(--color-text-light);
  transition: all 0.3s;
}

.step.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text);
}

.step.completed {
  background: #111;
  border-color: #111;
  color: white;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Benefits Row */
.benefits-row {
  background: white;
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-text);
}

.benefit-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

/* Card Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  height: 200px;
  background-color: #eee;
  object-fit: cover;
}

.card-content {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.card-text {
  font-size: 14px;
  margin-bottom: var(--spacing-lg);
  flex: 1;
}

/* Footer */
.footer {
  background: #111;
  color: white;
  padding: var(--spacing-xxl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-col h4 {
  color: white;
  margin-bottom: var(--spacing-lg);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: #999;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  border-top: 1px solid #333;
  padding-top: var(--spacing-lg);
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* Reservations Page Specifics */
.reservation-full-form {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.trip-summary {
  background: var(--color-bg-alt);
  padding: var(--spacing-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-lg);
  border-left: 4px solid var(--color-primary);
}

.trip-summary h3 {
  font-size: 16px;
  margin-bottom: var(--spacing-xs);
}

.trip-summary-details {
  font-size: 14px;
  color: var(--color-text-light);
}

.mobile-menu-toggle{ display:none; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 30px; }
  .widget-card { width: 340px; }
}

@media (max-width: 768px) {
  .widget-hide-mobile { display: none !important; }

  .top-bar-container{
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .top-bar-contact{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .top-bar-contact a{
    font-weight: 700;
    font-size: 14px;
  }

  .header { height: 60px; }
  
  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: var(--spacing-xl) 0;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: top 0.4s ease;
    z-index: 999;
    display: flex;
  }
  
  .nav-menu.active {
    top: 0;
  }
  
  .mobile-menu-toggle { display: block; }
  
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }
  
  .hero-overlay {
    background: rgba(0,0,0,0.6);
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
  }

  .hero-text { margin-bottom: 0; }
  .hero-text h1 { font-size: 32px; margin-bottom: var(--spacing-sm); }
  .hero-text p { font-size: 16px; margin-bottom: var(--spacing-lg); }
  .hero-buttons { justify-content: center; }

  .widget-card {
    width: 100%;
    max-width: 400px;
    padding: var(--spacing-md);
  }

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

@media (max-width: 480px) {
  .hero-text h1 { font-size: 28px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}


.nav-backdrop{
  display:none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 998;
}


.benefits-row{
  background:#fff;
  padding:60px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.benefits-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(6,1fr);
}

.benefit-item{
  position:relative;
  background:#fff;
  border-radius:18px;
  padding:18px 16px 18px 22px;
  display:flex;
  align-items:center;
  gap:14px;

  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  transition:all .25s ease;
  overflow:hidden;
}

/* LEFT BRAND STRIPE */
.benefit-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:6px;
  background:#090929;
  transition:width .25s ease;
}

.benefit-item:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 50px rgba(0,0,0,.12);
}

.benefit-item:hover::before{
  width:10px;
}

/* ICON STYLE */
.benefit-icon{
  width:60px;
  height:60px;
  border-radius:16px;
  background:#090929;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  box-shadow:0 12px 28px rgba(9,9,41,.35);
  transition:transform .2s ease;
}

.benefit-item:hover .benefit-icon{
  transform:scale(1.06);
}

.benefit-icon svg{
  width:30px;
  height:30px;
  fill:#ffffff;
}

.benefit-text{
  font-size:14px;
  font-weight:800;
  color:#111;
  line-height:1.3;
  letter-spacing:.2px;
}

.benefit-text br{ display:block; }

/* Responsive */
@media (max-width:1024px){
  .benefits-grid{ grid-template-columns:repeat(3,1fr); }
}

@media (max-width:768px){
  .benefits-grid{ grid-template-columns:repeat(3,1fr); }
  .benefit-icon{ width:54px; height:54px; }
}

@media (max-width:480px){
  .benefits-grid{ grid-template-columns:repeat(2,1fr); }
}

/* ===== Footer button compact ===== */
.footer .btn {
  padding: 7px 16px;
  font-size: 12px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero entrance */
.hero-text h1 {
  animation: fadeInUp 0.6s ease both;
}
.hero-text p {
  animation: fadeInUp 0.6s 0.12s ease both;
}
.hero-buttons {
  animation: fadeInUp 0.6s 0.22s ease both;
}
.widget-card {
  animation: fadeInUp 0.6s 0.16s ease both;
}

/* Scroll-reveal base */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESERVATIONS PAGE — new booking flow
   =================================================== */

/* ── Step Indicator ── */
.res-steps-indicator {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
}
.res-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
}
.res-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--color-text-light);
  background: white;
  transition: all 0.25s;
}
.res-step.active .res-step-num {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #111;
}
.res-step.completed .res-step-num {
  border-color: #111;
  background: #111;
  color: white;
}
.res-step-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-light);
  text-align: center;
  white-space: nowrap;
}
.res-step.active .res-step-lbl { color: var(--color-text); font-weight: 700; }
.res-step-line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  margin: 0 4px;
  margin-top: 17px; /* center with circles */
  min-width: 24px;
}

/* ── Step heading ── */
.step-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

/* ── Form error ── */
.form-error {
  color: #c0392b;
  font-size: 13px;
  padding: 10px 14px;
  background: #fff5f5;
  border: 1px solid #f5c6c6;
  border-radius: 6px;
  margin-top: 12px;
  display: none;
}

/* ── Autocomplete ── */
.autocomplete-wrapper { position: relative; width: 100%; }
.ac-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 300;
  max-height: 240px;
  overflow-y: auto;
}
.ac-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.12s;
}
.ac-item:hover { background: var(--color-bg-alt); }
.ac-group-label {
  padding: 12px 14px 6px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: #fff;
}
.ac-empty {
  padding: 12px 14px;
  color: var(--color-text-light);
  font-size: 13px;
}
.ac-selected-input {
  cursor: pointer;
  background: #fff;
}
.ac-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.ac-badge.airport  { background: #e8f4fd; }
.ac-badge.location { background: #f0f9f0; }
.ac-text { display: flex; flex-direction: column; min-width: 0; }
.ac-name { font-size: 14px; font-weight: 500; color: var(--color-text); }
.ac-sub  { font-size: 12px; color: var(--color-text-light); }
.form-input:disabled,
.form-select:disabled {
  background: #f7f7f7;
  color: #aaa;
  cursor: not-allowed;
  border-color: #e0e0e0;
  box-shadow: none;
}
.stepper-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stepper-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: white;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.stepper-btn:hover { background: #fafafa; }
.stepper-input {
  text-align: center;
  max-width: 90px;
}
.form-note {
  color: #2c3e50;
  font-size: 13px;
  padding: 10px 14px;
  background: #f3f8ff;
  border: 1px solid #d5e6ff;
  border-radius: 6px;
  margin-top: 10px;
}
.vehicle-requirements-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 12px;
  align-items: end;
  margin-bottom: 14px;
}

/* ── Vehicle cards ── */
.vehicle-options {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}
.vehicle-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.15s;
  background: white;
}
.vehicle-card:last-child { border-bottom: none; }
.vehicle-card:hover { background: #fafafa; }
.vehicle-card.selected {
  background: #fffde6;
  border-left: 3px solid var(--color-primary);
}
.vehicle-card.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.vehicle-card.disabled:hover { background: white; }
.vehicle-card-img {
  width: 120px; height: 72px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.vehicle-card-info { flex: 1; }
.vehicle-card-name  { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.vehicle-card-model { font-size: 13px; color: var(--color-text-light); margin-bottom: 6px; }
.vehicle-card-meta  { display: flex; gap: 12px; font-size: 13px; color: #555; }
.vehicle-card-price { font-size: 20px; font-weight: 700; flex-shrink: 0; text-align: right; }
.vehicle-price-type { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: var(--color-text-light); margin-top: 2px; }
.bag-rule {
  width: 100%;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed var(--color-border);
}
.bag-rule-head {
  font-size: 12px;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.bag-rule-btn {
  border: 1px solid #cdddf7;
  background: #eff5ff;
  color: #1f3d6d;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.bag-rule-btn:hover { background: #e7f0ff; }

.bag-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 5000;
}
.bag-modal.open { display: block; }
.bag-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
}
.bag-modal-dialog {
  position: relative;
  max-width: 780px;
  margin: 4vh auto;
  background: #f5f2fb;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 22px 80px rgba(0,0,0,0.35);
  overflow: hidden;
}
.bag-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  font-size: 26px;
  line-height: 1;
  background: #e4ddf4;
  color: #35246d;
  cursor: pointer;
}
.bag-modal-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.bag-modal-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: #111;
}
.bag-modal-size {
  font-size: 56px;
  font-weight: 800;
  color: #3c28ad;
  line-height: 1.05;
}
.bag-modal-sub {
  margin-top: 6px;
  color: #444;
  font-size: 14px;
}
.bag-graphic {
  width: 170px;
  height: 190px;
  border-radius: 18px;
  background: linear-gradient(145deg, #b8a8e5, #9f8cd9);
  position: relative;
  flex-shrink: 0;
}
.bag-graphic-body {
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.35);
}
.bag-graphic-wheel {
  position: absolute;
  bottom: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2e2158;
}
.bag-graphic-wheel.left { left: 28px; }
.bag-graphic-wheel.right { right: 28px; }
.bag-modal-meta {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bag-modal-note {
  border: 1px solid #d9d0f2;
  color: #4a3b78;
  background: #eee8fb;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}
.bag-modal-table-wrap {
  margin-top: 16px;
  border: 1px solid #d4caef;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.bag-modal-table {
  width: 100%;
  border-collapse: collapse;
}
.bag-modal-table th,
.bag-modal-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #ece4fb;
  font-size: 13px;
}
.bag-modal-table th {
  background: #ece4fb;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.4px;
}

/* Vehicle includes */
.vehicle-includes {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 13px;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
  color: var(--color-text-light);
}

/* ── Extras ── */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}
.extra-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.15s;
  background: white;
  display: block;
  user-select: none;
}
.extra-card:hover { border-color: #999; }
.extra-card.selected {
  border-color: var(--color-primary);
  background: #fffde6;
}
.extra-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.extra-card-name  { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.extra-card-desc  { font-size: 12px; color: var(--color-text-light); }
.extra-card-price { font-size: 14px; font-weight: 700; white-space: nowrap; }

/* ── Price bar ── */
.price-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
  margin-top: 20px;
}
.price-label-text { font-size: 14px; color: rgba(255,255,255,0.7); }
.price-amount { font-size: 22px; font-weight: 700; }

/* ── "For other" toggle row ── */
.for-other-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--color-bg-alt);
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}
/* Toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 24px;
  transition: 0.2s;
}
.switch-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}
.toggle-switch input:checked + .switch-slider { background: #111; }
.toggle-switch input:checked + .switch-slider::before { transform: translateX(20px); }

/* ── Sub label ── */
.sub-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
/* ── Passenger section ── */
.passenger-section {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-bottom: 20px;
}

/* ── Step 4 Summary ── */
.confirm-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 20px;
  align-items: start;
}
.confirm-main {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
  border: 1px solid #e9e9f1;
  border-radius: 14px;
  padding: 16px;
}
.confirm-side {
  position: sticky;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 0;
}
.summary-block {
  border: 1px solid #ececf5;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}
.summary-block-ride { border-left: 4px solid #fd9644; }
.summary-block-vehicle { border-left: 4px solid #4b7bec; }
.summary-block-contact { border-left: 4px solid #20bf6b; }
.summary-block-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  margin-bottom: 10px;
}
.summary-block-main {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.summary-block-arrow {
  font-size: 13px;
  color: #999;
  margin: 4px 0;
}
.summary-block-detail {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 5px;
}

/* ── Price breakdown ── */
.price-breakdown {
  border: 1px solid #d8dcee;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 33, 61, 0.08);
}
.breakdown-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  background: var(--color-bg-alt);
  color: var(--color-text-light);
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  border-top: 1px solid var(--color-border);
}
.breakdown-total {
  font-weight: 700;
  font-size: 16px;
  background: #f5f7ff;
}

/* ── Payment options note ── */
.payment-options-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 0;
}
.payment-option-info {
  background: #f8f9fd;
  border: 1px solid #e4e8f5;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.payment-option-info strong { font-size: 14px; }
.confirm-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.payment-actions .btn { min-width: 150px; }

/* ── Reservation responsive ── */
@media (max-width: 768px) {
  .reservation-full-form {
    padding: 18px;
  }
  .reservation-full-form .row {
    flex-direction: column;
    gap: 12px;
  }
  .reservation-full-form .col {
    width: 100%;
    min-width: 0;
  }
  .reservation-full-form .form-group[style*="max-width"] {
    max-width: 100% !important;
  }
  .reservation-full-form .step-heading {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }
  .reservation-full-form .form-label {
    font-size: 11px;
  }
  .reservation-full-form .form-input,
  .reservation-full-form .form-select {
    padding: 12px;
    font-size: 15px;
  }
  .res-step-lbl { display: none; }
  .res-step { min-width: 62px; }
  .res-step-line { min-width: 16px; margin-top: 15px; }
  .res-step-num { width: 32px; height: 32px; font-size: 13px; }
  .vehicle-card-img { width: 80px; height: 52px; }
  .vehicle-card-price { font-size: 16px; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .confirm-layout { grid-template-columns: 1fr; }
  .confirm-side { position: static; }
  .summary-grid { grid-template-columns: 1fr; }
  .payment-options-note { grid-template-columns: 1fr; }
  .vehicle-requirements-row { grid-template-columns: 1fr; }
  .bag-modal-dialog { margin: 2vh 12px; padding: 18px; }
  .bag-modal-title { font-size: 24px; }
  .bag-modal-size { font-size: 34px; }
  .bag-modal-hero { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .reservation-full-form {
    padding: 14px;
    border-radius: 10px;
  }
  .vehicle-card { flex-wrap: wrap; }
  .vehicle-card-img { width: 100%; height: 120px; }
  .extras-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .res-step { min-width: 54px; }
  .res-step-line { min-width: 12px; margin-top: 14px; }
  .res-step-num { width: 30px; height: 30px; font-size: 12px; }
  .confirm-main { padding: 12px; }
  .confirm-actions-row { flex-direction: column; align-items: stretch; }
  .payment-actions { flex-direction: column; }
  .payment-actions .btn { width: 100%; text-align: center; }
}

/* ── Widget error message ── */
.widget-error {
  font-size: 12px;
  color: #c0392b;
  background: #fdf0ed;
  border: 1px solid #f5c6c0;
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 4px;
}

/* ── Quote result in widget ── */
.quote-result-header {
  margin-bottom: 14px;
}
.quote-result-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
}
.quote-result-route {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 6px;
}
.quote-vehicles-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.quote-vehicle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--color-bg-alt);
  border-radius: 8px;
  font-size: 13px;
}
.quote-vehicle-row-name { font-weight: 600; }
.quote-vehicle-row-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}
.quote-vehicle-row-label {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 1px;
}
.quote-result-note {
  font-size: 12px;
  color: var(--color-text-light);
  background: #f0f7ff;
  border: 1px solid #cce0ff;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 14px;
}
.quote-result-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Price bar breakdown (step 2) ── */
.price-bar {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.price-bar-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.price-bar-breakdown {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 10px;
  padding-top: 8px;
}
.price-extra-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  padding: 2px 0;
}
.price-bar-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 8px;
  padding-top: 8px;
}

/* ── Confirm step extras section label ── */
.breakdown-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-text-light);
  padding: 6px 16px 2px;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

/* ── Widget premium vehicle cards (quote result) ── */
/* ── Widget quote vehicle cards – compact ── */
.wq-vehicle-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: white;
  transition: border-color 0.15s, background 0.15s;
}
.wq-vehicle-card.wq-selected {
  border-color: var(--color-primary);
  background: #fffde6;
}
.wq-vehicle-img-wrap { flex-shrink: 0; }
.wq-vehicle-img { width: 68px; height: 44px; object-fit: cover; border-radius: 4px; }
.wq-vehicle-img-placeholder { width: 68px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: var(--color-bg-alt); border-radius: 4px; }
.wq-vehicle-info { flex: 1; min-width: 0; }
.wq-vehicle-name { font-size: 13px; font-weight: 700; margin-bottom: 1px; line-height: 1.3; }
.wq-vehicle-model { font-size: 11px; color: var(--color-text-light); margin-bottom: 3px; }
.wq-vehicle-meta { display: flex; flex-wrap: wrap; gap: 6px; font-size: 11px; color: #555; }
.wq-bag-rule-tag { background: #f0f4ff; color: #3b5bdb; border-radius: 4px; padding: 1px 5px; font-size: 10px; font-weight: 600; }
.wq-vehicle-price-col { flex-shrink: 0; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.wq-vehicle-price { font-size: 16px; font-weight: 700; line-height: 1.2; }
.wq-vehicle-rate-type { font-size: 10px; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 4px; }
.wq-vehicle-card { cursor: pointer; }
.wq-vehicle-card.wq-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Widget service fee note ── */
.quote-service-fee-note {
  font-size: 11px;
  color: var(--color-text-light);
  font-style: italic;
  padding: 6px 4px 2px;
  text-align: center;
}

/* ── Extra quantity selector (child seat, extra stop) ── */
.extra-qty-controls {
  display: flex;
  gap: 4px;
}
.extra-qty-btn {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  background: white;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  color: #555;
}
.extra-qty-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.extra-qty-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

/* ── Price breakdown sidebar note ── */
.breakdown-note {
  font-size: 11px;
  color: var(--color-text-light);
  font-style: italic;
  line-height: 1.4;
  padding: 3px 16px 8px;
}

/* ── Terms & Conditions checkbox ── */
.tc-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.5;
}
.tc-checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.tc-link { color: var(--color-primary); text-decoration: underline; }
.tc-footer-link {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}
.tc-footer-link a { color: var(--color-primary); }

/* ── Pay Now warning ── */
.pay-now-warning {
  background: #fff8e1;
  border: 1px solid #f0c040;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: #7a5800;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ── Structured summary (Step 4 & Confirmation) – premium ── */
.sum-section {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}
.sum-section-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: white;
  background: var(--color-text);
  padding: 8px 16px;
  border-bottom: none;
}
.sum-section:nth-child(2) .sum-section-title { background: #1a1a2e; }
.sum-section:nth-child(3) .sum-section-title { background: #16213e; }
.sum-section:nth-child(4) .sum-section-title { background: #0f3460; }
.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 9px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  gap: 12px;
}
.sum-row:last-child { border-bottom: none; }
.sum-label { color: #888; flex-shrink: 0; min-width: 130px; font-weight: 500; font-size: 13px; }
.sum-value { text-align: right; font-weight: 600; color: var(--color-text); }
.sum-sub { font-size: 12px; color: var(--color-text-light); font-weight: 400; }
.sum-price { font-weight: 700; font-size: 16px; color: #111; }
.sum-row-total {
  background: #fffde6;
  border-top: 2px solid var(--color-primary);
}
.sum-row-total .sum-label { font-weight: 700; color: var(--color-text); font-size: 14px; }
.sum-row-total .sum-value { font-size: 20px; font-weight: 800; color: #111; }
.sum-section-price { border-left-color: var(--color-primary); }
.sum-section-price .sum-section-title { background: #111; }

/* ── Confirmation page ── */
.confirm-thankyou-header { text-align: center; margin-bottom: 24px; }
.confirm-thankyou-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: #111;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.confirm-thankyou-sub { color: var(--color-text-light); }
.confirm-notice-box {
  background: #f3f8ff;
  border: 1px solid #d5e6ff;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 4px;
}
.confirm-notice-box p { margin-bottom: 8px; color: var(--color-text); }
.confirm-notice-box p:last-child { margin-bottom: 0; }
.cfm-ref-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ── Rich text body (Terms, Privacy, etc.) ── */
.richtext-body {
  max-width: 860px;
  margin: 32px auto 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}
.richtext-body h1, .richtext-body h2, .richtext-body h3, .richtext-body h4 {
  margin-top: 28px;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--color-text);
}
.richtext-body h1 { font-size: 28px; }
.richtext-body h2 { font-size: 22px; }
.richtext-body h3 { font-size: 18px; }
.richtext-body h4 { font-size: 16px; }
.richtext-body p { margin-bottom: 14px; color: var(--color-text-light); }
.richtext-body ul, .richtext-body ol { margin: 0 0 14px 24px; color: var(--color-text-light); }
.richtext-body li { margin-bottom: 6px; }
.richtext-body a { color: var(--color-primary-hover); text-decoration: underline; }
.richtext-body strong { color: var(--color-text); }
.richtext-body blockquote {
  border-left: 3px solid var(--color-primary);
  margin: 0 0 14px;
  padding: 8px 16px;
  background: var(--color-bg-alt);
  color: var(--color-text-light);
}
.richtext-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: 14px;
}
.richtext-body th, .richtext-body td {
  border: 1px solid var(--color-border);
  padding: 8px 12px;
  text-align: left;
}
.richtext-body th { background: var(--color-bg-alt); font-weight: 600; }
.richtext-body code {
  background: var(--color-bg-alt);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
  color: #c53030;
}
.richtext-body hr { border: none; border-top: 1px solid var(--color-border); margin: 24px 0; }

/* ── Section icons (Font Awesome) ── */
.section-icon {
  font-size: 28px;
  color: white;
}
.benefit-icon .section-icon { font-size: 30px; }
.card-icon-wrap .section-icon { font-size: 36px; }

/* benefit-icon background for FA icons */
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 12px;
}

/* ── From/To pure-select inputs (click to open list, no typing) ── */
.ac-select-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.5 1.5L6 6l4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  caret-color: transparent;
}
.ac-select-input:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
