/* ===================================================================
   Siddik Autos — Home page (2026 redesign)
   Page-scoped component layer. Loaded only by frontend/home.blade.php,
   after main.css, so it may refine the shared design-system classes.
   =================================================================== */

/* ============ HERO ============ */
.hero-2026 { padding: 100px 0; min-height: auto; }
.hero-2026::before { background: linear-gradient(180deg, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.42) 55%, rgba(15,23,42,0.62) 100%); }
.hero-2026 .hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.16); border: 0.5px solid rgba(255,255,255,0.3);
  color: white; font-size: 13px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 24px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); margin-bottom: 18px;
}
.hero-2026 h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.18; color: white; text-shadow: 0 2px 20px rgba(0,0,0,0.35); margin-bottom: 12px; }
.hero-2026 p.lead { font-size: 18.5px; color: rgba(255,255,255,0.94); text-shadow: 0 1px 12px rgba(0,0,0,0.3); }

/* Hero quick-action buttons — temporary stand-in for the search widget */
.hero-cta-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-cta-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; border-radius: 8px; font-size: 16px; font-weight: 600;
  background: rgba(255,255,255,0.14); color: white; border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.hero-cta-btn .icon { font-size: 19px; }
.hero-cta-btn:hover { background: rgba(255,255,255,0.24); border-color: rgba(255,255,255,0.7); color: white; transform: translateY(-1px); }
.hero-cta-btn.hero-cta-primary { background: var(--red); border-color: var(--red); }
.hero-cta-btn.hero-cta-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
/* Mobile: full-screen hero, CTAs as 1 + 2 rows */
@media (max-width: 980px) {
  .hero-2026 {
    --nav-h: 62px;
    display: flex; align-items: center;
    min-height: calc(100vh - var(--nav-h));
    min-height: calc(100svh - var(--nav-h));
    padding: 40px 0;
  }
  .hero-2026 .container { width: 100%; }
  .hero-cta-row {
    display: flex; flex-wrap: wrap; align-items: stretch; gap: 10px; margin-top: 28px;
  }
  .hero-cta-btn { justify-content: center; flex: 1 1 0; min-width: 0; padding: 13px 14px; font-size: 15px; }
  .hero-cta-btn.hero-cta-primary { flex-basis: 100%; }
}
@media (max-width: 560px) {
  .hero-2026 { padding: 32px 0; }
  .hero-cta-btn { padding: 12px 10px; font-size: 14px; gap: 7px; }
  .hero-cta-btn .icon { font-size: 17px; }
}

/* Hero search card */
.hero-search { background: white; border-radius: 10px; box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28); overflow: hidden; }
.hero-search .booking-tabs { display: flex; gap: 4px; padding: 6px 10px 0; border-bottom: 0.5px solid var(--border); background: white; }
.hero-search .booking-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 18px; font-size: 15.5px; font-weight: 600; color: var(--text-muted);
  background: none; border: 0; border-bottom: 2px solid transparent; border-radius: 0;
}
.hero-search .booking-tab .icon { font-size: 18px; color: var(--text-muted); }
.hero-search .booking-tab.active { color: var(--navy); border-bottom-color: var(--red); }
.hero-search .booking-tab.active .icon { color: var(--red); }
.hero-search .booking-tab:hover:not(.active) { color: var(--navy); }

.hs-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) auto; align-items: stretch; gap: 0; padding: 8px 10px; }
.hs-row.hs-row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) auto; }
.hs-row .airport-field {
  border: 0; border-right: 0.5px solid var(--border); border-radius: 0;
  padding: 12px 18px; background: none;
}
.hs-row .airport-field:hover { background: var(--surface); }
.hs-row .airport-field .label { font-size: 12.5px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.4px; margin-bottom: 4px; }
.hs-row .airport-field .city { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 2px; padding-right: 20px; }
.hs-row .airport-field .sub { font-size: 13.5px; color: var(--text-muted); }
.hs-row .airport-field .caret { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 15px; color: var(--text-muted); pointer-events: none; }
.hs-row .airport-field input[type=text], .hs-row .airport-field input[type=number] { width: 100%; font-size: 18px; font-weight: 700; color: var(--navy); padding: 0; }
.hs-row .airport-field input::placeholder { font-weight: 500; color: var(--border-strong); }
.hs-search-btn {
  background: var(--navy); color: white; font-size: 16.5px; font-weight: 600;
  border-radius: 6px; padding: 0 40px; margin: 4px; border: 0; cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.hs-search-btn:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* Rent page search widget — scoped so it never touches the home page hero search */
.rent-page-search { background: white; border-radius: 10px; box-shadow: none; overflow: hidden; }
.rent-page-search .field-pin-icon { right: 34px; font-size: 13px; color: var(--text-muted); }
.rent-page-search .field-calendar-icon { font-size: 15px; color: var(--text-muted); margin-right: 4px; vertical-align: -0.15em; }
.rent-page-search .hs-search-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.rent-page-search .btn-arrow-icon { font-size: 16px; }
/* On phones the filter drawer (880px breakpoint) covers search, so drop the top search bar. */
@media (max-width: 880px) {
  .rent-search-bar { display: none; }
}

/* ============ Date range picker (pickup + drop-off, flatpickr-powered) ============ */
.date-range-host { position: absolute; width: 0; height: 0; padding: 0; border: 0; opacity: 0; pointer-events: none; }
.hs-row .airport-field.date-range-trigger { cursor: pointer; }

.flatpickr-calendar.drp-calendar {
  z-index: 10001; background: white; border: 0.5px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-xl); padding: 14px 16px 16px; width: auto !important;
  font-family: inherit;
}
.flatpickr-calendar.drp-calendar.arrowTop:before,
.flatpickr-calendar.drp-calendar.arrowTop:after { display: none; }
.drp-calendar .flatpickr-months { position: relative; margin-bottom: 6px; }
.drp-calendar .flatpickr-month { color: var(--navy); }
.drp-calendar .flatpickr-current-month { font-size: 15.5px; font-weight: 700; color: var(--navy); padding: 0; }
.drp-calendar .flatpickr-current-month .flatpickr-monthDropdown-months { font-weight: 700; color: var(--navy); }
.drp-calendar .numInputWrapper span { display: none; }
.drp-calendar .flatpickr-prev-month,
.drp-calendar .flatpickr-next-month {
  top: 2px; padding: 0; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.drp-calendar .flatpickr-prev-month:hover,
.drp-calendar .flatpickr-next-month:hover { background: var(--surface); }
.drp-calendar .flatpickr-prev-month svg,
.drp-calendar .flatpickr-next-month svg { fill: var(--navy); width: 14px; height: 14px; }
.drp-calendar .flatpickr-weekdays { margin-bottom: 2px; }
.drp-calendar span.flatpickr-weekday {
  font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--text-muted);
}
.drp-calendar .flatpickr-days { border: 0; }
.drp-calendar .dayContainer { padding-top: 2px; }
.drp-calendar .flatpickr-day {
  border-radius: 8px; color: var(--navy); font-size: 14px; font-weight: 500;
  max-width: none; height: 38px; line-height: 38px;
}
.drp-calendar .flatpickr-day:hover { background: var(--surface); border-color: transparent; }
.drp-calendar .flatpickr-day.today { border-color: var(--navy); }
.drp-calendar .flatpickr-day.prevMonthDay,
.drp-calendar .flatpickr-day.nextMonthDay { color: var(--border-strong); }
.drp-calendar .flatpickr-day.flatpickr-disabled,
.drp-calendar .flatpickr-day.flatpickr-disabled:hover { color: var(--border); background: none; cursor: not-allowed; }
.drp-calendar .flatpickr-day.inRange {
  background: var(--navy-light); box-shadow: -5px 0 0 var(--navy-light), 5px 0 0 var(--navy-light);
  border-radius: 0; border-color: transparent;
}
.drp-calendar .flatpickr-day.startRange,
.drp-calendar .flatpickr-day.endRange,
.drp-calendar .flatpickr-day.startRange:hover,
.drp-calendar .flatpickr-day.endRange:hover {
  background: var(--navy); color: white; border-color: var(--navy);
}
.drp-calendar .flatpickr-day.startRange { box-shadow: 5px 0 0 var(--navy-light); }
.drp-calendar .flatpickr-day.endRange { box-shadow: -5px 0 0 var(--navy-light); }
.drp-calendar .flatpickr-day.startRange.endRange { box-shadow: none; }
.drp-calendar.rangeMode .flatpickr-days { width: auto; }
@media (max-width: 700px) {
  .flatpickr-calendar.drp-calendar { padding: 12px; }
  .drp-calendar .flatpickr-day { height: 34px; line-height: 34px; }
}

/* ============ CORPORATE BANNER ============ */
.corp-banner {
  position: relative; overflow: hidden; border-radius: 10px;
  background: linear-gradient(90deg, var(--navy) 0%, #232A5C 100%);
  color: white; display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: center; padding: 22px 28px; min-height: 104px;
}
.corp-banner .corp-img { position: absolute; right: 200px; top: 0; bottom: 0; width: 320px; object-fit: cover; opacity: 0.55; -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 45%, black 82%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, black 45%, black 82%, transparent 100%); }
.corp-banner .corp-text { position: relative; z-index: 2; }
.corp-banner h3 { font-size: 23px; font-weight: 700; margin-bottom: 4px; line-height: 1.25; }
.corp-banner h3 .corp-accent { color: var(--gold); }
.corp-banner p { font-size: 14.5px; color: rgba(255,255,255,0.76); margin-bottom: 0;}
.corp-banner .corp-cta {
  position: relative; z-index: 2;
  border: 1px solid rgba(255,255,255,0.4); color: white; background: rgba(255,255,255,0.06);
  font-size: 15px; font-weight: 600; padding: 10px 22px; border-radius: 6px; white-space: nowrap;
  transition: all 0.18s ease;
}
.corp-banner .corp-cta:hover { background: white; color: var(--navy); border-color: white; }

/* ============ SHARED: compact section heads ============ */
.head-2026 { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.head-2026 h2 { font-size: 25px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.head-2026 .link-all { font-size: 14.5px; font-weight: 600; color: var(--text-secondary); display: inline-flex; align-items: center; gap: 5px; }
.head-2026 .link-all:hover { color: var(--red); }
.head-center { text-align: center; margin-bottom: 24px; }
.head-center h2 { font-size: 25px; font-weight: 700; color: var(--navy); }
.head-2026 .head-sub { font-size: 14px; color: var(--text-muted); margin-top: 4px; max-width: 520px; }
.head-center .head-sub { font-size: 14px; color: var(--text-muted); margin: 6px auto 0; max-width: 520px; }

/* ============ HOW-TO GUIDES (shared classes, tuned to this page) ============ */
.howto-grid { gap: 12px; }
.howto-card { border-radius: 10px; padding: 10px 14px; }
.howto-thumb { width: 66px; height: 66px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.howto-thumb > .icon { font-size: 24px; color: var(--border-strong); }
.howto-title { font-size: 15.5px; margin-bottom: 7px; }
.howto-watch { font-size: 12.5px; font-weight: 700; padding: 3px 9px; }

/* ============ TOUR PACKAGES (shared classes, tuned to this page) ============ */
.dest-grid { gap: 14px; }
.dest-card { border-radius: 10px; aspect-ratio: 4/5; }
.dest-card .info { bottom: 14px; left: 14px; right: 14px; }
.dest-card .name { font-size: 18px; margin-bottom: 3px; }
.dest-card .meta { font-size: 13.5px; }
.dest-card .price-tag { font-size: 12.5px; font-weight: 700; padding: 4px 9px; border-radius: 5px; }
.section-2026 { padding: 76px 0; }
.section-2026-tight { padding: 22px 0; }
.section-howto { padding-top: 26px; }

/* ============ HOT DEALS ============ */
.hd-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.hd-card {
  display: grid; grid-template-columns: 1fr 150px; overflow: hidden;
  background: white; border: 0.5px solid var(--border); border-radius: 10px;
  transition: all 0.18s ease;
}
.hd-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.hd-body { padding: 16px; display: flex; flex-direction: column; min-width: 0; }
.hd-tagline { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.hd-badge {
  flex-shrink: 0; min-width: 54px; text-align: center; color: white;
  border-radius: 6px; padding: 7px 8px; line-height: 1.15;
}
.hd-badge .v { display: block; font-size: 16.5px; font-weight: 700; }
.hd-badge .l { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; opacity: 0.9; }
.hd-badge-navy { background: var(--navy); }
.hd-badge-pink { background: var(--red-light); color: var(--red-dark); }
.hd-badge-gold { background: var(--gold); color: var(--navy); }
.hd-title { display: block; font-size: 15.5px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.hd-desc { display: block; font-size: 13.5px; color: var(--text-muted); line-height: 1.45; margin-top: 3px; }
.hd-foot { margin-top: auto; padding-top: 10px; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.hd-price { font-size: 13px; color: var(--text-muted); line-height: 1.3; }
.hd-price strong { display: block; font-size: 17.5px; font-weight: 700; color: var(--navy); }
.hd-link { font-size: 13.5px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 4px; }
.hd-link:hover { color: var(--red); }
.hd-media { position: relative; background: var(--surface); display: flex; align-items: center; justify-content: center; aspect-ratio: 1/1; }
.hd-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hd-media > .icon { font-size: 32px; color: var(--border-strong); }
.hd-media .hd-pill {
  position: absolute; left: 8px; right: 8px; bottom: 8px; text-align: center;
  background: var(--red); color: white; font-size: 12px; font-weight: 700;
  padding: 6px 8px; border-radius: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hd-media .hd-pill-dark { background: rgba(19,24,56,0.88); }

/* ============ SERVICE CARDS (everything under one roof) ============ */
.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.svc-card {
  background: white; border: 0.5px solid var(--border); border-radius: 10px;
  padding: 18px; display: flex; flex-direction: column; transition: all 0.18s ease;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--navy-light); }
.svc-icon { width: 42px; height: 42px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.svc-icon .icon { font-size: 21px; }
.svc-icon-green { background: var(--green-light); color: var(--green); }
.svc-icon-blue { background: #E6EEFB; color: #2563EB; }
.svc-icon-gold { background: #FDF0DA; color: #C77A05; }
.svc-icon-violet { background: #EFE9FB; color: #6D4AC7; }
.svc-card h3 { font-size: 16.5px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.svc-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.svc-link { margin-top: auto; font-size: 13.5px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; }
.svc-card:hover .svc-link { color: var(--red); }

/* ============ FILTER CHIPS ============ */
.chip-row { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px; }
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto; background: white; border: 0.5px solid var(--border);
  color: var(--text-secondary); font-size: 14.5px; font-weight: 500;
  padding: 7px 18px; border-radius: 24px; cursor: pointer; transition: all 0.15s ease;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.active { border-color: var(--red); color: var(--red); font-weight: 600; background: var(--red-light); }

/* ============ RENT VEHICLE CARD ============ */
.rent-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.rent-card { background: white; border: 0.5px solid var(--border); border-radius: 10px; overflow: hidden; display: block; transition: all 0.18s ease; }
.rent-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.rent-card .rc-thumb { position: relative; aspect-ratio: 1/1; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.rent-card .rc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rent-card .rc-thumb > .icon { font-size: 42px; color: var(--border-strong); }
.rc-tag { position: absolute; top: 8px; left: 8px; font-size: 11.5px; font-weight: 700; color: white; padding: 4px 9px; border-radius: 5px; }
.rc-tag-green { background: var(--green); }
.rc-tag-blue { background: #2563EB; }
.rent-card .rc-body { padding: 11px 13px 13px; }
.rent-card .rc-name { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rent-card .rc-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rent-card .rc-price { font-size: 15.5px; font-weight: 700; color: var(--red); }
.rent-card .rc-price small { font-size: 12.5px; font-weight: 500; color: var(--text-muted); }
.rent-card .rc-rating { font-size: 13px; font-weight: 600; color: var(--text-secondary); display: inline-flex; align-items: center; gap: 3px; }
.rent-card .rc-rating .icon { color: var(--gold); font-size: 12.5px; }

/* ============ TRUST BAR (dark) ============ */
.trust-bar {
  background: linear-gradient(90deg, var(--navy) 0%, #232A5C 100%);
  border-radius: 10px; padding: 20px 24px;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
}
.trust-bar.trust-bar-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.trust-item { display: flex; align-items: flex-start; gap: 11px; }
.trust-icon { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 19px; }
.trust-icon-green { background: rgba(107,203,133,0.16); color: var(--green-on-dark); }
.trust-icon-red { background: rgba(209,68,68,0.2); color: #FF9A9A; }
.trust-icon-blue { background: rgba(120,160,255,0.16); color: #A9C1FF; }
.trust-icon-gold { background: rgba(245,166,35,0.16); color: var(--gold); }
.trust-item h4 { font-size: 14.5px; font-weight: 700; color: white; margin-bottom: 2px; }
.trust-item p { font-size: 13px; color: rgba(255,255,255,0.66); line-height: 1.45; margin-bottom: 0; }

/* ============ STATS ROW ============ */
.stats-2026 {
  background: white; border: 0.5px solid var(--border); border-radius: 10px;
  padding: 20px 10px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow: var(--shadow-sm);
}
.stat-2026 { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 4px 12px; border-right: 0.5px solid var(--border); }
.stat-2026:last-child { border-right: 0; }
.stat-2026 .s-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.stat-2026 .s-num { font-size: 24px; font-weight: 700; color: var(--navy); line-height: 1.1; letter-spacing: -0.02em; }
.stat-2026 .s-label { font-size: 13px; color: var(--text-muted); }

/* ============ SPLIT PANELS ============ */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.split-2.split-narrow-left { grid-template-columns: 0.42fr 1fr; }
.panel-2026 { background: white; border: 0.5px solid var(--border); border-radius: 10px; padding: 18px; }
.panel-2026 .panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.panel-2026 .panel-head h3 { font-size: 17.5px; font-weight: 700; color: var(--navy); }
.panel-2026 .panel-head .link-all { font-size: 13.5px; font-weight: 600; color: var(--text-muted); display: inline-flex; align-items: center; gap: 4px; }
.panel-2026 .panel-head .link-all:hover { color: var(--red); }

/* Mini product card */
.mini-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.mini-prod { position: relative; display: block; }
.mini-prod .mp-thumb { aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--surface); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.mini-prod .mp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-prod .mp-thumb > .icon { font-size: 28px; color: var(--border-strong); }
.mini-prod .mp-name { font-size: 13.5px; font-weight: 500; color: var(--navy); line-height: 1.35; margin-bottom: 4px; min-height: 38px; }
.mini-prod .mp-price { font-size: 15px; font-weight: 700; color: var(--red); }
.mini-add {
  position: absolute; right: 0; bottom: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: white; display: flex; align-items: center; justify-content: center;
  font-size: 15px; border: 0; cursor: pointer; transition: background 0.15s ease, transform 0.15s ease;
}
.mini-add:hover { background: var(--red); transform: scale(1.08); }
.mini-add[disabled] { opacity: 0.55; cursor: default; }

/* Mini used-car card */
.mini-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.mini-car { display: block; }
.mini-car .mc-thumb { position: relative; border-radius: 8px; overflow: hidden; background: var(--surface); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.mini-car .mc-thumb img { width: 100%;}
.mini-car .mc-thumb > .icon { font-size: 28px; color: var(--border-strong); }
.mini-car .mc-thumb .heart { width: 24px; height: 24px; top: 6px; right: 6px; font-size: 12px; }
.mini-car .mc-name { font-size: 13.5px; font-weight: 500; color: var(--navy); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-car .mc-price { font-size: 15px; font-weight: 700; color: var(--navy); }

/* Mini testimonial */
.mini-testi { background: var(--surface); border-radius: 8px; padding: 14px; display: flex; flex-direction: column; }
.mini-testi .mt-stars { color: var(--gold); font-size: 13px; display: flex; gap: 1px; margin-bottom: 8px; }
.mini-testi .mt-quote { font-size: 13.5px; line-height: 1.6; color: var(--text-secondary); margin-bottom: 12px; }
.mini-testi .mt-author { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.mini-testi .mt-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 600; flex-shrink: 0; }
.mini-testi .mt-name { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.mini-testi .mt-city { font-size: 12px; color: var(--text-muted); }

/* Testimonial carousel (own section) — reuses the shared .carousel-wrap behaviour */
.carousel-track.testi-track { gap: 18px; padding-bottom: 2px; }
.carousel-track.testi-track > * { width: calc(33.333% - 12px); min-width: 300px; }
.testi-track .mini-testi { background: white; border: 0.5px solid var(--border); border-radius: 10px; padding: 22px; }
.testi-track .mt-stars { font-size: 15px; margin-bottom: 12px; }
.testi-track .mt-quote { font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.testi-track .mt-author { gap: 12px; padding-top: 14px; border-top: 0.5px solid var(--border); }
.testi-track .mt-avatar { width: 42px; height: 42px; font-size: 15px; }
.testi-track .mt-name { font-size: 15px; }

/* Brand grid inside panel */
.brand-mini-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px 8px; }
.brand-mini { text-align: center; }
.brand-mini .bm-logo { width: 50px; height: 50px; margin: 0 auto 6px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; padding: 9px; }
.brand-mini .bm-logo img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1) opacity(0.6); transition: filter 0.2s ease; }
.brand-mini:hover .bm-logo img { filter: grayscale(0) opacity(1); }
.brand-mini .bm-logo span { font-size: 14.5px; font-weight: 700; color: var(--navy); letter-spacing: -0.5px; }
.brand-mini .bm-name { font-size: 12.5px; color: var(--text-muted); }

/* Full-width variant — brands as their own section */
.brand-grid-lg { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px 12px; }
.brand-grid-lg .bm-logo { width: 64px; height: 64px; padding: 13px; margin-bottom: 8px; }
.brand-grid-lg .bm-logo span { font-size: 18px; }
.brand-grid-lg .bm-name { font-size: 13.5px; }

/* Full-width variant — used when the product / used-car grids are their own section.
   Declared after the base cards so the same-specificity overrides win. */
.mini-grid-lg { gap: 18px; }
.mini-grid-lg .mini-prod,
.mini-grid-lg .mini-car {
  background: white; border: 0.5px solid var(--border); border-radius: 10px;
  padding: 12px; transition: all 0.18s ease;
}
.mini-grid-lg .mini-prod:hover,
.mini-grid-lg .mini-car:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.mini-grid-lg .mp-thumb, .mini-grid-lg .mc-thumb { margin-bottom: 12px; }
.mini-grid-lg .mp-thumb { aspect-ratio: 4/3; }
.mini-grid-lg .mc-thumb {}
.mini-grid-lg .mp-name { font-size: 15px; font-weight: 600; min-height: 44px; }
.mini-grid-lg .mp-price { font-size: 17.5px; }
.mini-grid-lg .mini-add { right: 12px; bottom: 12px; width: 34px; height: 34px; font-size: 17px; }
.mini-grid-lg .mc-name { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.mini-grid-lg .mc-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.mini-grid-lg .mc-price { font-size: 19px; }
.mini-grid-lg .mc-thumb .heart { width: 30px; height: 30px; top: 8px; right: 8px; font-size: 15px; }

/* ============ HELP CARD + FAQ ============ */
.help-card { background: white; border: 0.5px solid var(--border); border-radius: 10px; padding: 22px; display: flex; flex-direction: column; justify-content: center; height: 100%; position: relative; overflow: hidden; }
.help-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.help-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; max-width: 220px; }
.help-card .help-btn { align-self: flex-start; background: var(--navy); color: white; font-size: 14.5px; font-weight: 600; padding: 10px 22px; border-radius: 6px; transition: background 0.18s ease; }
.help-card .help-btn:hover { background: var(--red); }
.help-card .help-art { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 66px; color: var(--navy-light); line-height: 1; pointer-events: none; }

.faq-2026 { display: flex; flex-direction: column; gap: 10px; }
.faq-2026 .faq-item { background: white; border: 0.5px solid var(--border); border-radius: 8px; padding: 14px 18px; }
.faq-2026 .faq-q { font-size: 14.5px; font-weight: 500; color: var(--navy); }
.faq-2026 .faq-q .icon { font-size: 19px; color: var(--text-muted); }
.faq-2026 .faq-item.open .faq-q { font-weight: 700; }
.faq-2026 .faq-item.open .faq-q .icon { color: var(--red); }
.faq-2026 .faq-a { font-size: 13.5px; color: var(--text-muted); }

/* ============ CTA STRIP ============ */
.cta-2026 {
  background: linear-gradient(90deg, var(--navy) 0%, #232A5C 100%);
  border-radius: 10px; padding: 26px 30px; color: white;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cta-2026 h2 { font-size: 23px; font-weight: 700; margin-bottom: 4px; }
.cta-2026 p { font-size: 14.5px; color: rgba(255,255,255,0.72); }
.cta-2026 .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-2026 .cta-primary { background: var(--red); color: white; font-size: 15.5px; font-weight: 600; padding: 11px 26px; border-radius: 6px; transition: all 0.18s ease; }
.cta-2026 .cta-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.cta-2026 .cta-ghost { border: 1px solid rgba(255,255,255,0.4); color: white; font-size: 15.5px; font-weight: 600; padding: 11px 26px; border-radius: 6px; transition: all 0.18s ease; }
.cta-2026 .cta-ghost:hover { background: white; color: var(--navy); border-color: white; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .hd-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rent-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-bar.trust-bar-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .mini-grid-lg.mini-grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mini-grid-lg.mini-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-grid-lg { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .carousel-track.testi-track > * { width: calc(50% - 9px); }
  .hs-row, .hs-row.hs-row-3 { grid-template-columns: 1fr 1fr; }
  .hs-row .airport-field { border-right: 0; border-bottom: 0.5px solid var(--border); }
  .hs-row .airport-field:nth-of-type(odd) { border-right: 0.5px solid var(--border); }
  .hs-search-btn { grid-column: span 2; padding: 14px; margin-top: 8px; }
  .split-2, .split-2.split-narrow-left { grid-template-columns: 1fr; }
  .corp-banner { grid-template-columns: 1fr; }
  .corp-banner .corp-img { right: -40px; opacity: 0.2; }
  .corp-banner .corp-cta { justify-self: start; }
}
@media (max-width: 760px) {
  .hero-2026 { padding: 34px 0 34px; }
  .hero-2026 h1 { font-size: 26px !important; }
  .hero-2026 p.lead { font-size: 15.5px; margin-bottom: 100px; }
  .hero-search .booking-tabs { overflow-x: auto; scrollbar-width: none; }
  .hero-search .booking-tabs::-webkit-scrollbar { display: none; }
  .hero-search .booking-tab { padding: 11px 12px; font-size: 14.5px; white-space: nowrap; }
  .section-2026 { padding: 60px 0; }
  .head-2026 h2, .head-center h2 { font-size: 21px; }
  /* Hot deals swipe sideways instead of stacking. */
  .hd-grid {
    display: flex; gap: 10px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    padding: 2px 16px;
  }
  .hd-grid::-webkit-scrollbar { display: none; }
  .hd-grid > * { flex: 0 0 76%; scroll-snap-align: start; }
  /* Stack the card: image on top, text below (side-by-side is too cramped on phones). */
  .hd-card { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .hd-card:hover { transform: none; }
  .hd-media { grid-row: 1; aspect-ratio: 16/9; }
  .hd-body { grid-row: 2; padding: 12px; }
  .hd-title { font-size: 14px; }
  .hd-desc { font-size: 12.5px; }
  .hd-price { font-size: 12px; }
  .hd-price strong { font-size: 15.5px; }
  .hd-link { font-size: 12.5px; }
  .hd-media .hd-pill { font-size: 10.5px; padding: 5px 6px; left: 6px; right: 6px; bottom: 6px; }
  /* Service cards swipe sideways instead of stacking into a tall 2-column block. */
  .svc-grid {
    display: flex; gap: 10px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    padding: 2px 16px;
  }
  .svc-grid::-webkit-scrollbar { display: none; }
  .svc-grid > * { flex: 0 0 62%; scroll-snap-align: start; }
  .svc-card { padding: 14px; }
  .svc-card:hover { transform: none; }
  .svc-icon { width: 36px; height: 36px; margin-bottom: 9px; }
  .svc-icon .icon { font-size: 18px; }
  .svc-card h3 { font-size: 15px; }
  .svc-card p { font-size: 12.5px; margin-bottom: 10px; }
  .svc-link { font-size: 12.5px; }
  .section-2026-tight { padding: 14px 0; }
  .section-howto { padding-top: 16px; }
  /* How-to guides become a swipeable row instead of stacked full-width cards. */
  .howto-grid {
    display: flex; gap: 10px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    padding: 2px 16px;
  }
  .howto-grid::-webkit-scrollbar { display: none; }
  .howto-grid > * { flex: 0 0 78%; scroll-snap-align: start; }
  .howto-card { padding: 8px; gap: 10px; border-radius: 10px; }
  .howto-card:hover { transform: none; }
  .howto-thumb { width: 54px; height: 54px; border-radius: 8px; }
  .howto-title { font-size: 14px; margin-bottom: 5px; }
  .howto-watch { font-size: 11.5px; padding: 2px 7px; }
  .dest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-2026 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 0; }
  .stat-2026:nth-child(2n) { border-right: 0; }
  .mini-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Inside a panel, cars and testimonials become swipeable rows instead of one huge card per row. */
  .mini-grid-3:not(.mini-grid-lg) { display: flex; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; gap: 10px; }
  .mini-grid-3:not(.mini-grid-lg)::-webkit-scrollbar { display: none; }
  .mini-grid-3:not(.mini-grid-lg) > * { flex: 0 0 46%; }
  .mini-grid-lg { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  /* Same specificity as the 980px rule above, otherwise product cards stay 3-up on phones. */
  .mini-grid-lg.mini-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-grid-lg .mini-prod, .mini-grid-lg .mini-car { padding: 9px; }
  .mini-grid-lg .mini-prod:hover, .mini-grid-lg .mini-car:hover { transform: none; }
  .mini-grid-lg .mp-thumb, .mini-grid-lg .mc-thumb { margin-bottom: 9px; }
  .mini-grid-lg .mp-name { font-size: 13.5px; min-height: 36px; }
  .mini-grid-lg .mp-price { font-size: 15.5px; }
  .mini-grid-lg .mini-add { right: 10px; bottom: 10px; width: 31px; height: 31px; font-size: 16px; }
  .carousel-track.testi-track > * { width: 84%; min-width: 0; }
  .testi-track .mini-testi { padding: 18px; }
  .brand-mini-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .brand-grid-lg { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .help-card .help-art { font-size: 44px; opacity: 0.7; }
  .cta-2026 { padding: 22px; }
}
@media (max-width: 480px) {
  .hs-row, .hs-row.hs-row-3 { grid-template-columns: 1fr; }
  .hs-row .airport-field, .hs-row .airport-field:nth-of-type(odd) { border-right: 0; }
  .hs-search-btn { grid-column: span 1; }
  .svc-grid > * { flex-basis: 74%; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar.trust-bar-5 { grid-template-columns: 1fr; }
}
