/* assets/css/tour.css
   Updated styles for taxi & tour booking page.
   Accent color: #eb5013
*/
:root{
  --accent: #eb5013;
  --accent-dark: #d94410;
  --muted: #666;
  --bg: #fff;
  --card-bg: #fbfbfb;
  --shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
  --max-width: 1200px;
  --radius: 12px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
}

body { background: #f6f8f9; }

/* Container & title */
.ttw-container{ max-width: var(--max-width); margin: 28px auto; padding: 0 18px 60px; }
.page-title{ text-align:center; font-size:28px; margin: 8px 0 18px; }
.page-title .accent{ color: var(--accent); font-weight:800; }

/* Main card */
.ttw-card{ background: var(--card-bg); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }

/* Tabs */
.tabs{ display:flex; gap:8px; margin-bottom:12px; }
.tab{ padding:10px 14px; border-radius:8px; background:#fff; border:none; cursor:pointer; font-weight:600; box-shadow: 0 6px 18px rgba(0,0,0,0.03); }
.tab.active{ background: linear-gradient(90deg, rgba(235,80,19,0.08), rgba(235,80,19,0.03)); color:var(--accent); }

/* Layout */
.taxi-row{ display:flex; gap:18px; align-items:flex-start; margin-bottom:16px; }
.taxi-left{ flex: 1; }
.taxi-right{ width: 280px; }

/* Labels & inputs */
label{ display:block; font-weight:600; margin-bottom:6px; color:var(--muted); font-size:13px; }
input[type="text"], input[type="date"], input[type="time"], input[type="search"], select, input[type="email"], input[type="number"]{
  width:100%; padding:10px 12px; border-radius:8px; border:1px solid #e8e8e8; background:#fff; box-sizing:border-box; font-size:14px; margin-bottom:10px;
}

/* Inline rows */
.inline-row{ display:flex; gap:10px; align-items:center; }
.inline-row .field{ flex:1; }

/* Filter panel */
.filter-panel{ background:#fff; padding:12px; border-radius:10px; box-shadow: 0 6px 18px rgba(0,0,0,0.03); }
.filter-panel h3{ margin:0 0 8px; color:var(--accent); }
.btn.small{ padding:8px 10px; border-radius:8px; cursor:pointer; }

/* Vehicles grid / vehicle card */
.vehicles-grid{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:18px; padding:6px; }
.vehicle-card{ width:260px; background:#fff; border-radius:12px; overflow:hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.04); position:relative; padding:12px; display:flex; flex-direction:column; }
.vehicle-thumb{ width:100%; height:150px; object-fit:cover; border-radius:8px; background:#f2f2f2; margin-bottom:10px; }
.v-title{ font-weight:700; font-size:16px; color:#0f1720; margin-bottom:6px; }
.vehicle-meta{ font-size:13px; color:var(--muted); margin-bottom:8px; }
.vehicle-controls{ display:flex; gap:8px; align-items:center; justify-content:space-between; margin-top:auto; }
.qty{ width:64px; padding:8px; border-radius:8px; border:1px solid #e6e6e6; text-align:center; }

/* small detail badges */
.badges{ display:flex; gap:6px; margin-bottom:8px; }
.badge{ background:#f3f3f3; padding:6px 8px; border-radius:8px; font-size:12px; color:var(--muted); }

/* Summary */
.summary-card{ background: linear-gradient(180deg, #fff, #f9fffb); border-radius:10px; padding:14px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); margin-bottom:16px; }
.summary-line{ display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px dashed rgba(0,0,0,0.04); }
.summary-line.total{ font-weight:800; font-size:18px; border-bottom:none; margin-top:8px; }

/* Buttons */
.btn{ display:inline-block; padding:8px 12px; border-radius:8px; cursor:pointer; border:none; background:#fff; }
.btn.primary{ background: linear-gradient(90deg,var(--accent),var(--accent-dark)); color:#fff; }
.btn.large{ padding:12px 20px; border-radius:26px; font-weight:800; }

/* Tour layout */
.tour-tabs{ display:flex; gap:8px; margin-bottom:12px; }
.tour-grid{ display:flex; gap:20px; }
.tour-left{ flex:1; }
.tour-right{ width:360px; }

/* tour car card */
.tour-car-card{ display:block; background:#fff; padding:8px; border-radius:8px; margin-bottom:8px; box-shadow: 0 6px 14px rgba(0,0,0,0.03); cursor:pointer; }
.tour-car-card input{ margin-right:8px; }

/* ready-made tours */
.ready-grid{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:12px; }
.ready-card{ width:300px; background:#fff; border-radius:8px; padding:12px; box-shadow: 0 6px 14px rgba(0,0,0,0.03); }

/* tour images carousel */
.tour-images-carousel{ display:flex; gap:10px; overflow-x:auto; padding:8px 0; }
.ti-slide{ flex:0 0 240px; border-radius:8px; overflow:hidden; box-shadow:0 8px 20px rgba(0,0,0,0.06); }
.ti-slide img{ display:block; width:100%; height:140px; object-fit:cover; }

/* responsive */
@media (max-width: 980px){
  .taxi-row{ flex-direction:column; }
  .taxi-right{ width:100%; }
  .tour-grid{ flex-direction:column; }
  .tour-right{ width:100%; }
  .vehicles-grid{ justify-content:center; }
}
@media (max-width: 520px){
  .vehicles-grid{ gap:10px; }
  .vehicle-card{ width:90%; }
  .ready-card{ width:100%; }
}
