/* ---------- 1. RESET ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{ margin:0; }
h1,h2,h3,h4,h5,p,figure{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font:inherit; }
input, select, textarea, button{ font-family:inherit; }
a{ text-decoration:none; }
svg{ display:block; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* ---------- 2. DESIGN TOKENS ---------- */
:root{
  --navy-950:#0E1E36;
  --navy-900:#132A4A;
  --navy-800:#1B3A63;
  --blue-600:#2A6DF4;
  --blue-100:#E7EFFE;
  --orange-500:#FF7A1F;
  --orange-600:#E8620A;
  --orange-100:#FFEDE0;
  --green-600:#1E9E52;
  --green-100:#E7F7ED;
  --sand-50:#F6F8FB;
  --sand-100:#EEF2F8;
  --ink-900:#16212E;
  --ink-700:#354152;
  --ink-500:#5C6675;
  --ink-300:#8B95A5;
  --line:#E3E8F0;
  --white:#FFFFFF;

  --font-display:'Outfit', 'Segoe UI', Arial, sans-serif;
  --font-body:'Inter', 'Segoe UI', Arial, sans-serif;

  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --shadow-sm:0 1px 2px rgba(14,30,54,.06), 0 1px 1px rgba(14,30,54,.04);
  --shadow-md:0 8px 24px rgba(14,30,54,.10);
  --shadow-lg:0 24px 60px rgba(14,30,54,.18);
  --container:1180px;
  --field-h:52px;
}

body{
  font-family:var(--font-body);
  color:var(--ink-900);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--navy-950);
  font-weight:600;
  line-height:1.2;
  letter-spacing:-.01em;
}
p{ line-height:1.65; }
a{ color:var(--blue-600); }
a:hover{ color:var(--orange-600); }
:focus-visible{ outline:3px solid var(--orange-500); outline-offset:2px; border-radius:4px; }

/* ---------- 3. LAYOUT UTILITIES ---------- */
.wrap{ max-width:var(--container); margin:0 auto; padding:0 20px; }
.section{ padding:64px 0; }
.section--tight{ padding:40px 0; }
.section--sand{ background:var(--sand-50); }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--orange-600); margin-bottom:10px;
}
.eyebrow::before{ content:''; width:18px; height:2px; background:var(--orange-500); border-radius:2px; }
.section-head{ max-width:680px; margin:0 0 32px; }
.section-head h2{ font-size:clamp(24px,3vw,32px); margin-bottom:8px; }
.section-head p{ color:var(--ink-500); font-size:16px; margin:0; }
.grid{ display:grid !important; gap:18px; }
.grid:before, .grid:after{ content:none !important; display:none !important; }
.icon{ width:1em; height:1em; flex:none; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.icon--fill{ fill:currentColor; stroke:none; }
.hidden{ display:none !important; }
.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

/* ---------- 4. HEADER ---------- */
.site-header{
  background:var(--white); border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:500;
}
.site-header-inner{
  max-width:var(--container); margin:0 auto; padding:14px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:nowrap;
}
.brand{ flex:none; display:flex; align-items:center; gap:9px; line-height:0; }
.brand img{ height:32px; width:auto; }
.brand-text{ font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--navy-950); line-height:1; }
.brand-text span{ color:var(--orange-500); }

.nav{ display:flex; align-items:center; gap:16px; flex-wrap:nowrap; min-width:0; }
.nav a{
  font-weight:600; font-size:14px; color:var(--ink-700); white-space:nowrap;
}
.nav a:hover{ color:var(--orange-600); }

.header-cta{ display:flex; align-items:center; gap:12px; flex:none; }
.header-lang{
  display:flex; align-items:center; gap:5px; font-size:13.5px; font-weight:600; color:var(--ink-500); white-space:nowrap;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:7px;
  font-family:var(--font-body); font-weight:700; font-size:14px; white-space:nowrap;
  padding:11px 18px; border-radius:999px; border:0; cursor:pointer; flex:none;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-orange{ background:var(--orange-500); color:#fff; box-shadow:0 6px 16px rgba(255,122,31,.30); }
.btn-orange:hover{ background:var(--orange-600); color:#fff; transform:translateY(-1px); }
.btn-orange:visited{ color:#fff; }
.btn-ghost{ background:var(--sand-100); color:var(--navy-950); }
.btn-ghost:hover{ background:var(--blue-100); color:var(--navy-950); }
.btn-block{ width:100%; }

.nav-toggle{
  display:none; background:none; border:0; cursor:pointer; padding:8px; flex:none;
}
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--navy-950); margin:5px 0; border-radius:2px; transition:transform .2s, opacity .2s; }

@media (max-width:1140px){
  .nav{
    position:fixed; inset:63px 0 0 0; background:var(--white); z-index:499;
    flex-direction:column; align-items:stretch; gap:0; padding:8px 20px 24px;
    transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:opacity .18s ease, transform .18s ease; overflow-y:auto;
  }
  .nav.is-open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav a{ width:100%; padding:14px 2px; border-bottom:1px solid var(--line); font-size:16px; white-space:normal; }
  .nav-toggle{ display:block; }
  .header-lang{ display:none; }
}

/* ---------- 5. HERO ---------- */
.hero-wrap{ position:relative; background:var(--navy-950); }
.hero{
  position:relative; padding:20px 0 120px;
  background:
    linear-gradient(100deg, rgba(14,30,54,.93) 0%, rgba(14,30,54,.78) 38%, rgba(14,30,54,.32) 68%, rgba(14,30,54,.12) 100%),
    url('/images/rentalcars.webp') center/cover no-repeat;
}
.hero-inner{ max-width:var(--container); margin:0 auto; padding:0 20px; }
.hero h1{ color:#fff; font-size:clamp(24px,3.2vw,40px); margin-bottom:14px; max-width:900px; }
.hero-sub{ color:rgba(255,255,255,.85); font-size:17px; margin:0; line-height:1.55; }
.hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.hero-badge{
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.22);
  color:#fff; font-size:13px; font-weight:600; padding:8px 14px; border-radius:999px;
}
.hero-badge .icon{ color:var(--orange-500); }

.hero-extras{ background:var(--navy-950); padding:12px 0 22px; }
.hero-features{
  display:flex; flex-wrap:wrap; gap:22px;
}
.hero-feature{ display:flex; align-items:center; gap:10px; color:#fff; font-size:14.5px; font-weight:600; }
.hero-feature .icon{ color:var(--blue-100); width:1.15em; height:1.15em; }
.hero-feature mark{ background:var(--green-600); color:#fff; padding:2px 6px; border-radius:4px; font-weight:700; }

.trust-strip{ margin-top:1px; }
.trust-strip p{ color:rgba(255,255,255,.65); font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; }
.trust-strip-logos{ display:flex; flex-wrap:wrap; align-items:center; gap:10px; }
.trust-strip-logos a, .trust-strip-logos .logo-chip{
  display:flex; align-items:center; justify-content:center;
  background:#fff; border-radius:8px; padding:7px 12px; height:34px;
}
.trust-strip-logos img{ height:16px; width:auto; display:block; }

/* ---------- 6. SEARCH CARD (booking engine) ---------- */
.search-wrap{ position:relative; z-index:20; margin-top:-94px; }
.search-card{
  background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  border:1px solid var(--line); padding:22px 22px 20px;
}
.search-card-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-bottom:16px; }
.search-card-head h2{ font-size:14.5px; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-500); font-weight:700; margin:0; }
.search-card-head .trustline{ font-size:13px; color:var(--ink-500); display:flex; align-items:center; gap:6px; }
.search-card-head .trustline .icon{ color:var(--green-600); }

/* -- field primitives, mapped onto the EXISTING ids/classes/attributes -- */
.field-label{
  display:block; font-size:11.5px; font-weight:700; text-transform:uppercase;
  letter-spacing:.05em; color:var(--ink-500); margin-bottom:6px;
}
#NewSearchPanel input[type="text"],
#NewSearchPanel input[type="number"]{
  width:100% !important; height:var(--field-h) !important; border:1.5px solid var(--line) !important; border-radius:var(--radius-sm) !important;
  padding:0 16px !important; font-size:15px !important; color:var(--ink-900) !important; background:var(--sand-50) !important;
  font-family:var(--font-body) !important; box-sizing:border-box !important;
}
#NewSearchPanel input[type="text"]::placeholder{ color:var(--ink-300) !important; opacity:1 !important; }
#NewSearchPanel select{
  width:100% !important; height:var(--field-h) !important; border:1.5px solid var(--line) !important; border-radius:var(--radius-sm) !important;
  background-color:var(--sand-50) !important; font-size:14px !important; padding:0 30px 0 12px !important; color:var(--ink-900) !important;
  -webkit-appearance:none !important; -moz-appearance:none !important; appearance:none !important; box-sizing:border-box !important;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='%235C6675' d='M5.5 7.5l4.5 4.5 4.5-4.5z'/></svg>") !important;
  background-repeat:no-repeat !important; background-position:right 8px center !important; background-size:13px !important;
}
#NewSearchPanel input:focus, #NewSearchPanel select:focus{
  outline:0; border-color:var(--blue-600) !important; background-color:#fff !important;
  box-shadow:0 0 0 4px var(--blue-100);
}
#NewSearchPanel input[readonly]{ cursor:pointer; }

/* Time <select>: default value must always be legible so it reads as a
   filled field, not an empty one. */
.date-time-pair > .field-time{ flex:0 0 92px !important; min-width:0; }
#NewSearchPanel select.field-time{ font-size:13px !important; padding-right:24px !important; }

/* Missing glyphs from the CarTrawler icon font (ct-icon-*): draw our own
   pictograms instead of leaving empty placeholder boxes in the
   autocomplete suggestion list. */
.ct-icon-city:before,.ct-icon-airport:before,.ct-icon-train:before,.ct-icon-ferry:before,.ct-icon-poi:before{
  content:'' !important; font-family:inherit !important;
  display:inline-block; width:15px; height:15px; margin-right:7px; vertical-align:-3px; flex:none;
  background-color:var(--ink-500);
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-position:center; mask-position:center;
  -webkit-mask-size:contain; mask-size:contain;
}
.ct-icon-city:before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 21V7l7-4 7 4v14H4zm2-2h3v-4H6v4zm5 0h3v-4h-3v4zm-5-6h3V9H6v4zm5 0h3V9h-3v4z'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 21V7l7-4 7 4v14H4zm2-2h3v-4H6v4zm5 0h3v-4h-3v4zm-5-6h3V9H6v4zm5 0h3V9h-3v4z'/%3E%3C/svg%3E"); }
.ct-icon-airport:before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2.5 1.5V22l4-1 4 1v-1.5L13 19v-5.5z'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2.5 1.5V22l4-1 4 1v-1.5L13 19v-5.5z'/%3E%3C/svg%3E"); }
.ct-icon-train:before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-4 0-7 .5-7 4v9.5A2.5 2.5 0 0 0 7.5 18l-1.5 2v.5h3l1-2h4l1 2h3v-.5l-1.5-2A2.5 2.5 0 0 0 19 15.5V6c0-3.5-3-4-7-4zM7.5 15A1.5 1.5 0 1 1 7.5 12a1.5 1.5 0 0 1 0 3zm9 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zM17 9H7V6h10v3z'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-4 0-7 .5-7 4v9.5A2.5 2.5 0 0 0 7.5 18l-1.5 2v.5h3l1-2h4l1 2h3v-.5l-1.5-2A2.5 2.5 0 0 0 19 15.5V6c0-3.5-3-4-7-4zM7.5 15A1.5 1.5 0 1 1 7.5 12a1.5 1.5 0 0 1 0 3zm9 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zM17 9H7V6h10v3z'/%3E%3C/svg%3E"); }
.ct-icon-ferry:before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10V6h2V4h6v2h2v4H7zM6 18l-2-6h16l-2 6c-1.3.7-2.7.7-4 0-1.3.7-2.7.7-4 0-1.3.7-2.7.7-4 0z'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10V6h2V4h6v2h2v4H7zM6 18l-2-6h16l-2 6c-1.3.7-2.7.7-4 0-1.3.7-2.7.7-4 0-1.3.7-2.7.7-4 0z'/%3E%3C/svg%3E"); }
.ct-icon-poi:before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"); }
.autocomplete-suggestion{ display:flex !important; align-items:center; }


.field-row{ margin-top:14px; }
.field-row:first-child{ margin-top:0; }

.check-row{ display:flex; align-items:center; gap:9px; }
.check-row label{ display:flex; align-items:center; gap:9px; font-size:14px; color:var(--ink-700); cursor:pointer; }
.check-row input[type="checkbox"]{ width:18px; height:18px; accent-color:var(--blue-600); flex:none; cursor:pointer; }

/* From/To dates: a responsive flex row — date field grows, time field is a
   fixed compact width, the arrow sits centered between the two blocks.
   Everything aligns on the field's own baseline, no more fighting a
   Bootstrap grid that wasn't built for this pairing. */
.dates-row{
  display:flex; align-items:flex-end; gap:10px; flex-wrap:wrap; margin-top:14px;
}
.date-block{ flex:1 1 220px; min-width:0; }
.date-time-pair{ display:flex; gap:8px; }
.date-time-pair > .field-date{ flex:1 1 auto; min-width:0; }
.date-arrow{
  flex:none; width:36px; height:36px; border-radius:50%; background:#fff;
  border:1.5px solid var(--line); display:flex; align-items:center; justify-content:center;
  color:var(--orange-500); margin-bottom:8px; box-shadow:var(--shadow-sm);
}
@media (max-width:640px){
  .dates-row{ flex-direction:column; align-items:stretch; }
  .date-block{ flex:none; width:100%; }
  .date-arrow{ display:none; }
}

.driver-age-row{ margin-top:14px; }

.search-submit{ margin-top:18px; }
#NewSearchPanel input[type="submit"]{
  width:100%; background:var(--orange-500); color:#fff; border:0; cursor:pointer;
  font-family:var(--font-display); font-weight:600; font-size:16px; letter-spacing:.02em;
  border-radius:var(--radius-sm); padding:16px 20px; box-shadow:0 10px 24px rgba(255,122,31,.32);
  transition:background .15s ease;
}
#NewSearchPanel input[type="submit"]:hover{ background:var(--orange-600); }

.search-card-foot{
  display:flex; flex-wrap:wrap; gap:16px 20px; margin-top:16px; padding-top:14px; border-top:1px solid var(--line);
}
.search-card-foot span{ font-size:13px; color:var(--ink-500); display:flex; align-items:center; gap:6px; }
.search-card-foot .icon{ color:var(--green-600); }
.search-card-foot mark{ background:var(--green-600); color:#fff; padding:1px 5px; border-radius:4px; font-weight:700; }

@media (max-width:640px){
  .hero-wrap{
    display:flex; flex-direction:column;
    background:
      linear-gradient(100deg, rgba(14,30,54,.93) 0%, rgba(14,30,54,.78) 38%, rgba(14,30,54,.32) 68%, rgba(14,30,54,.12) 100%),
      url('/images/rentalcars.webp') center/cover no-repeat;
  }
  .hero{ display:contents; padding:0; background:none; }
  .hero-inner{ display:contents; padding:0; }
  .hero-heading{ display:contents; }
  .breadcrumb--hero{ order:1; padding:22px 20px 0; margin-bottom:8px; }
  .hero h1{ order:1; white-space:normal; font-size:clamp(24px,7vw,32px); padding:0 20px; margin-bottom:0; }
  .search-wrap{ order:2; margin-top:16px; }
  .hero-extras{ order:3; padding:24px 0; }
  .hero-sub{ order:4; padding:16px 20px 26px 20px; margin:0; }
  .search-card{ padding:16px 14px 16px; border-radius:var(--radius-md); box-shadow:var(--shadow-md); }
}

/* -- jQuery UI datepicker theme (class names are added by js/aa.js at
   runtime; themed here so the calendar matches the new design) -- */
.ui-datepicker{
  width:290px; padding:12px; background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-md); box-shadow:var(--shadow-lg); font-family:var(--font-body);
}
.ui-datepicker .ui-datepicker-header{ position:relative; padding:4px 0 10px; text-align:center; }
.ui-datepicker .ui-datepicker-title{ font-family:var(--font-display); font-weight:600; font-size:15px; color:var(--navy-950); }
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{
  position:absolute; top:0; width:26px; height:26px; border-radius:50%; cursor:pointer;
  display:flex; align-items:center; justify-content:center; background:var(--sand-50);
}
.ui-datepicker .ui-datepicker-prev{ left:0; }
.ui-datepicker .ui-datepicker-next{ right:0; }
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span{ display:none; }
.ui-datepicker .ui-datepicker-prev::before{ content:'\2039'; font-size:18px; color:var(--ink-700); }
.ui-datepicker .ui-datepicker-next::before{ content:'\203A'; font-size:18px; color:var(--ink-700); }
.ui-datepicker table{ width:100%; border-collapse:collapse; font-size:13.5px; }
.ui-datepicker th{ padding:6px 2px; color:var(--ink-500); font-weight:700; font-size:11.5px; text-transform:uppercase; }
.ui-datepicker td{ padding:2px; text-align:center; }
.ui-datepicker td a, .ui-datepicker td span{
  display:block; padding:8px 0; border-radius:8px; text-decoration:none; color:var(--ink-900);
}
.ui-datepicker td a:hover{ background:var(--blue-100); }
.ui-datepicker .ui-datepicker-today a{ border:1.5px solid var(--blue-600); }
.ui-datepicker .ui-state-active{ background:var(--orange-500) !important; color:#fff !important; }
.ui-datepicker .ui-state-disabled span{ color:var(--ink-300); }

/* ---------- 7. STATS ---------- */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:var(--container); margin:0 auto; padding:38px 20px 8px; }
.stat{ text-align:center; }
.stat strong{ display:block; font-family:var(--font-display); font-size:clamp(24px,3vw,32px); color:var(--navy-950); }
.stat span{ font-size:13.5px; color:var(--ink-500); }
@media (max-width:700px){ .stats{ grid-template-columns:repeat(2,1fr); } }

/* ---------- 8. ADVANTAGES ---------- */
.adv-grid{ grid-template-columns:repeat(3,1fr); }
.adv-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:22px; box-shadow:var(--shadow-sm);
}
.adv-card .ico{
  width:40px; height:40px; border-radius:11px; background:var(--orange-100); color:var(--orange-600);
  display:flex; align-items:center; justify-content:center; margin-bottom:12px;
}
.adv-card .ico .icon{ width:1.15em; height:1.15em; }
.adv-card h3{ font-size:16px; margin-bottom:5px; }
.adv-card p{ font-size:14px; color:var(--ink-500); margin:0; }
@media (max-width:860px){ .adv-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .adv-grid{ grid-template-columns:1fr; } }

/* ---------- 9. LONG-FORM CONTENT (About / History / Why choose us) ---------- */
.prose{ max-width:none; }
.prose p{ color:var(--ink-700); font-size:15.5px; margin-bottom:16px; }
.prose h2{ font-size:clamp(22px,2.8vw,28px); margin:0 0 14px; }
.check-list{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px 20px; margin:20px 0 0; }
.check-list li{ display:flex; align-items:flex-start; gap:9px; font-size:14.5px; color:var(--ink-700); font-weight:600; }
.check-list .icon{ color:var(--green-600); margin-top:3px; }
@media (max-width:760px){ .check-list{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .check-list{ grid-template-columns:1fr; } }

.why-grid{ grid-template-columns:repeat(2,1fr); margin-top:8px; }
.why-item{ display:flex; gap:12px; }
.why-item .icon{ color:var(--green-600); flex:none; margin-top:4px; }
.why-item h3{ font-size:15.5px; margin-bottom:4px; }
.why-item p{ font-size:14px; color:var(--ink-500); margin:0; }
@media (max-width:760px){ .why-grid{ grid-template-columns:1fr; } }

/* ---------- 10. VEHICLE CATEGORIES / SUPPLIERS (restyle existing
   categories.php / suppliers.php markup — .containercat / .boxcat — no
   HTML edits needed there, only fresh CSS on the same class names) ---------- */
.containercat{
  display:grid !important; grid-template-columns:repeat(5,1fr); gap:16px;
  max-width:var(--container); margin:28px auto 0; padding:0 20px;
}
.boxcat{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:14px 12px 16px; text-align:center; box-shadow:var(--shadow-sm);
  transition:transform .15s ease, box-shadow .15s ease;
}
.boxcat:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.boxcat .image{ margin-bottom:10px; border-radius:8px; overflow:hidden; }
.boxcat .image img{ width:100%; height:auto; display:block; }
.boxcat .codecar a{ font-family:var(--font-display); font-weight:600; font-size:14.5px; color:var(--navy-950); }
.boxcat .codecar a:hover{ color:var(--orange-600); }
.boxcat p{ font-size:12.5px; color:var(--ink-500); margin:4px 0 0; }
@media (max-width:900px){ .containercat{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .containercat{ grid-template-columns:repeat(2,1fr); } }

#suppliers .containercat{ grid-template-columns:repeat(5,1fr); align-items:center; }
#suppliers .boxcat{ padding:20px 14px; }
#suppliers .boxcat .image{ border-radius:0; }
#suppliers .boxcat .image img{ max-height:32px; width:auto; margin:0 auto; }
@media (max-width:900px){ #suppliers .containercat{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ #suppliers .containercat{ grid-template-columns:repeat(2,1fr); } }

/* ---------- 11. DESTINATIONS (top-cities.php / top-countries.php) ---------- */
#mlvtopcitiesblock{ max-width:var(--container); margin:0 auto 36px; padding:0 20px; }
#mlvtopcitiesblock .newh3{ font-family:var(--font-display); font-size:19px; color:var(--navy-950); margin:0 0 4px; }
#mlvtopcitiesblock > span{ display:block; color:var(--ink-500); font-size:14px; margin-bottom:14px; }
h3.newh3{ font-family:var(--font-display); font-size:18px; color:var(--navy-950); margin:28px 0 4px; }
h3.newh3:first-child{ margin-top:0; }
.fleet-brands-block{ padding-bottom:48px; }
.fleet-brands-block h3{ margin:28px 0 10px; }
.fleet-brands-block h3:first-child{ margin-top:0; }
.linksrow{ display:flex; flex-wrap:wrap; gap:10px; }
.linkscol{
  display:inline-flex; align-items:center; background:#fff; border:1px solid var(--line);
  border-radius:999px; padding:9px 15px; font-size:13.5px; font-weight:600; color:var(--ink-700);
  transition:border-color .15s, color .15s, background .15s;
}
.linkscol:hover{ border-color:var(--orange-500); color:var(--orange-600); background:var(--orange-100); }

/* ---------- 12. LOCATIONS CTA ---------- */
.locations-cta{ background:var(--navy-950); padding:44px 0; text-align:center; }
.locations-cta h2{ color:#fff; font-size:clamp(19px,2.6vw,25px); margin:0; }

/* ---------- 13. REASSURANCE BAND (replaces the newsletter signup band) ---------- */
.reassure-band{ background:var(--blue-600); padding:48px 0; }
.reassure-band h2{ color:#fff; font-size:clamp(21px,2.6vw,27px); margin-bottom:6px; }
.reassure-band .sub{ color:rgba(255,255,255,.82); font-size:14.5px; display:block; margin-bottom:28px; max-width:640px; }
.reassure-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.reassure-item{ display:flex; align-items:flex-start; gap:12px; }
.reassure-item .ico{
  flex:none; width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.16);
  color:#fff; display:flex; align-items:center; justify-content:center;
}
.reassure-item h3{ color:#fff; font-size:14.5px; margin-bottom:3px; }
.reassure-item p{ color:rgba(255,255,255,.75); font-size:13px; margin:0; line-height:1.5; }
@media (max-width:900px){ .reassure-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .reassure-grid{ grid-template-columns:1fr; } .reassure-band{ padding:36px 0; } }

/* ---------- 14. INSURANCE / FAQ-STYLE INFO BLOCK ---------- */
.info-block{ background:var(--sand-50); }
.info-block .prose h3{ font-size:17px; margin:26px 0 8px; }
.info-block .prose h3:first-child{ margin-top:0; }

/* ---------- 15. FOOTER ---------- */
.site-footer{ background:var(--navy-950); color:rgba(255,255,255,.72); padding:52px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:32px; padding-bottom:34px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand .logo-chip{ display:inline-flex; background:#fff; border-radius:8px; padding:8px 14px; }
.footer-brand p{ font-size:13.5px; line-height:1.6; color:rgba(255,255,255,.55); max-width:280px; margin:12px 0 16px; }
.footer-col h4{ color:#fff; font-family:var(--font-display); font-size:14px; letter-spacing:.03em; text-transform:uppercase; margin-bottom:15px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ color:rgba(255,255,255,.68); font-size:14px; }
.footer-col a:hover{ color:var(--orange-500); }
.payments{ display:flex; gap:6px; flex-wrap:wrap; }
.payments span{
  width:44px; height:28px; border-radius:4px; background:#fff;
  background-image:url('/resp/img/paiement-securise.svg'); background-repeat:no-repeat; background-size:44px 140px;
}
.payments .visa{ background-position:0 -112px; }
.payments .mastercard{ background-position:0 -56px; }
.payments .maestro{ background-position:0 -28px; }
.payments .paypal{ background-position:0 -84px; }
.footer-bottom{ padding:24px 0; text-align:center; font-size:13px; color:rgba(255,255,255,.45); }
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }

/* ---------- 16. INNER PAGES: compact page hero ---------- */
.page-hero{
  background:
    linear-gradient(100deg, rgba(14,30,54,.96) 0%, rgba(14,30,54,.90) 100%),
    url('/images/rentalcars.webp') center/cover no-repeat;
  padding:44px 0 38px;
}
.page-hero .eyebrow{ color:var(--orange-500); }
.page-hero h1{ color:#fff; font-size:clamp(26px,3.6vw,38px); margin:0 0 8px; }
.page-hero p{ color:rgba(255,255,255,.75); font-size:15.5px; max-width:640px; margin:0; }
.breadcrumb{ font-size:13px; color:rgba(255,255,255,.55); margin-bottom:14px; }
.breadcrumb a{ color:rgba(255,255,255,.75); }
.breadcrumb a:hover{ color:var(--orange-500); }
.breadcrumb--hero{ margin-bottom:12px; }

/* ---------- 17. LEGAL CONTENT ---------- */
.legal-page{ padding:56px 0 64px; }
.legal-layout{ display:grid; grid-template-columns:220px 1fr; gap:48px; align-items:start; }
.legal-toc{ position:sticky; top:84px; }
.legal-toc h4{ font-family:var(--font-display); font-size:12.5px; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-500); margin-bottom:12px; }
.legal-toc ul{ display:flex; flex-direction:column; gap:9px; }
.legal-toc a{ font-size:13.5px; color:var(--ink-500); line-height:1.4; display:block; }
.legal-toc a:hover{ color:var(--orange-600); }
.legal-content{ max-width:760px; }
.legal-content h2{ font-size:clamp(20px,2.4vw,25px); margin:38px 0 12px; scroll-margin-top:90px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content h3{ font-size:16.5px; margin:22px 0 8px; color:var(--navy-950); }
.legal-content p{ color:var(--ink-700); font-size:15px; line-height:1.7; margin-bottom:14px; }
.legal-content ul, .legal-content ol{ margin:0 0 16px; padding-left:22px; }
.legal-content li{ color:var(--ink-700); font-size:15px; line-height:1.7; margin-bottom:8px; }
.legal-content strong{ color:var(--navy-950); }
.legal-updated{ font-size:13px; color:var(--ink-300); margin-bottom:28px; }
@media (max-width:900px){ .legal-layout{ grid-template-columns:1fr; } .legal-toc{ position:static; margin-bottom:28px; } }

/* ---------- 18. FAQ ---------- */
.faq-page{ padding:56px 0 64px; }
.faq-category{ margin-bottom:12px; }
.faq-category h2{ font-size:19px; margin:38px 0 4px; }
.faq-category:first-child h2{ margin-top:0; }
.faq-list details{ border-bottom:1px solid var(--line); padding:16px 0; }
.faq-list details:last-child{ border-bottom:0; }
.faq-list summary{
  cursor:pointer; font-family:var(--font-display); font-weight:600; font-size:15px;
  color:var(--navy-950); list-style:none; display:flex; justify-content:space-between; gap:14px; align-items:center;
}
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-list summary::after{ content:'+'; font-size:20px; color:var(--orange-500); font-weight:400; flex:none; }
.faq-list details[open] summary::after{ content:'\2212'; }
.faq-list details p{ margin:12px 0 0; font-size:14.5px; color:var(--ink-500); line-height:1.65; }
.faq-list details ul{ margin:10px 0 0; padding-left:20px; }
.faq-list details li{ font-size:14.5px; color:var(--ink-500); margin-bottom:6px; }
.faq-jump{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:36px; }
.faq-jump a{
  font-size:13px; font-weight:600; color:var(--ink-700); background:var(--sand-50);
  border:1px solid var(--line); border-radius:999px; padding:8px 14px;
}
.faq-jump a:hover{ color:var(--orange-600); border-color:var(--orange-500); }

/* ---------- 19. CONTACT ---------- */
.contact-page{ padding:56px 0 64px; }
.contact-layout{ display:grid; grid-template-columns:1.4fr 1fr; gap:40px; align-items:start; }
.contact-form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); padding:30px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group{ margin-bottom:18px; }
.form-group label{ display:block; font-size:13.5px; font-weight:600; color:var(--ink-700); margin-bottom:7px; }
.form-group label .req{ color:var(--orange-600); }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea{
  width:100%; border:1.5px solid var(--line); border-radius:var(--radius-sm); background:var(--sand-50);
  padding:12px 14px; font-size:14.5px; font-family:var(--font-body); color:var(--ink-900);
}
.form-group select{
  -webkit-appearance:none; -moz-appearance:none; appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='%235C6675' d='M5.5 7.5l4.5 4.5 4.5-4.5z'/></svg>");
  background-repeat:no-repeat; background-position:right 12px center; background-size:13px; padding-right:32px;
}
.form-group textarea{ resize:vertical; min-height:140px; font-family:var(--font-body); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:0; border-color:var(--blue-600); background:#fff; box-shadow:0 0 0 4px var(--blue-100);
}
.form-honeypot{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-note{ font-size:12.5px; color:var(--ink-300); text-align:center; margin-top:12px; display:flex; align-items:center; justify-content:center; gap:6px; }
.form-alert{ border-radius:var(--radius-sm); padding:14px 18px; margin-bottom:20px; font-size:14px; display:flex; align-items:flex-start; gap:10px; }
.form-alert--success{ background:var(--green-100); color:#166534; border:1px solid #bbe8cb; }
.form-alert--error{ background:#fdecec; color:#a13636; border:1px solid #f6c8c8; }

.contact-sidebar{ display:flex; flex-direction:column; gap:16px; }
.contact-card{ background:var(--sand-50); border-radius:var(--radius-md); padding:22px; }
.contact-card h4{ display:flex; align-items:center; gap:9px; font-size:15px; margin-bottom:8px; }
.contact-card h4 .icon{ color:var(--blue-600); }
.contact-card p{ font-size:14px; color:var(--ink-500); margin:0; }
.contact-card p a{ color:var(--blue-600); }
.contact-cta{ background:var(--navy-950); border-radius:var(--radius-md); padding:22px; text-align:center; }
.contact-cta ul{ display:flex; flex-direction:column; gap:8px; margin-bottom:14px; }
.contact-cta li{ color:#fff; font-size:13.5px; display:flex; align-items:center; gap:8px; justify-content:center; }
.contact-cta li .icon{ color:var(--green-600); }
@media (max-width:860px){ .contact-layout{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } }

/* ---------- 20. FLEET LANDING PAGES ---------- */
.breadcrumb-light{ font-size:13px; color:var(--ink-500); margin-bottom:20px; }
.breadcrumb-light a{ color:var(--ink-500); }
.breadcrumb-light a:hover{ color:var(--orange-600); }
.breadcrumb-light .sep{ margin:0 6px; color:var(--ink-300); }

.fleet-page{ padding:48px 0 60px; }
.fleet-content{ max-width:none; }
.fleet-content h1{ font-size:clamp(22px,2.8vw,28px); text-transform:capitalize; margin-bottom:4px; }
.fleet-content .prose{ max-width:none; }
.fleet-content .prose p{ color:var(--ink-700); font-size:15.5px; }
.fleet-content .prose h3{ font-size:17px; margin:22px 0 8px; color:var(--navy-950); }

.fleet-hero-img{ margin:20px 0 28px; border-radius:var(--radius-md); overflow:hidden; max-width:420px; }
.fleet-hero-img img{ height:auto; display:block; }
.fleet-hero-img--brand{ max-width:160px; padding:18px; display:flex; align-items:center; justify-content:center; background:#fff; }
.fleet-hero-img--brand img{ width:auto; max-height:70px; }

.seolinkscolumns{ display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 28px; }
.seolinkscolumns a, a.topmlvlinks{
  font-size:13px !important; font-weight:600 !important; color:var(--ink-700) !important; background:var(--sand-50) !important;
  border:1px solid var(--line) !important; border-radius:999px !important; padding:7px 13px !important;
  text-decoration:none !important;
  display:inline-flex !important; margin:0 8px 8px 0 !important;
}
.seolinkscolumns a:hover, a.topmlvlinks:hover{ color:var(--orange-600) !important; border-color:var(--orange-500) !important; }

/* -- jquery-listnav.js A-Z filter bar (id="my-list-nav", class="listNav") -- */
.listNav{ position:relative; display:block; margin:10px 0 16px; }
.listNav .ln-letters{ display:flex; flex-wrap:wrap; gap:4px; }
.listNav .ln-letters a{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:28px; height:28px; padding:0 7px; border-radius:6px;
  background:var(--sand-50); border:1px solid var(--line); color:var(--ink-700) !important;
  font-size:12.5px; font-weight:700; text-decoration:none !important;
}
.listNav .ln-letters a:hover{ border-color:var(--orange-500); color:var(--orange-600) !important; }
.listNav .ln-letters a.ln-selected{ background:var(--orange-500); border-color:var(--orange-500); color:#fff !important; }
.listNav .ln-letters a.ln-disabled{ opacity:.35; pointer-events:none; }
.listNav .ln-letter-count{
  position:absolute; top:-28px; background:var(--navy-950); color:#fff; font-size:11px;
  font-weight:700; padding:3px 7px; border-radius:4px; text-align:center;
}
.listNavHide{ display:none !important; }
.listNavShow{ display:inline-flex !important; }
.seolinkscolumns a.listNavHide, a.topmlvlinks.listNavHide{ display:none !important; }
#my-list{ list-style:none; margin:0; padding:0; }
#my-list ul{ list-style:none; margin:0; padding:0; }
#my-list .ln-no-match{ font-size:13px; color:var(--ink-300); }

#partners > h3.newh3, #partners > .linksrow, #partners > section{ max-width:var(--container); margin-left:auto; margin-right:auto; padding-left:20px; padding-right:20px; }

/* ---------- 21. SUPPLIERS: compact Bootstrap-utility shim for
   compagnies.php / compagnies2.php (existing content, not rewritten —
   only the classes actually used there are covered) ---------- */
.car-rental-suppliers-content, .supplier-comparison-content{ padding:56px 0; }
.car-rental-suppliers-content .container, .supplier-comparison-content .container{ max-width:var(--container); margin:0 auto; padding:0 20px; }
.car-rental-suppliers-content .fa, .supplier-comparison-content .fa{ display:none; }
.car-rental-suppliers-content .row, .supplier-comparison-content .row{ display:flex; flex-wrap:wrap; margin:0 -12px 32px; }
.car-rental-suppliers-content .row:last-child, .supplier-comparison-content .row:last-child{ margin-bottom:0; }
.car-rental-suppliers-content .row > [class*="col-"], .supplier-comparison-content .row > [class*="col-"]{ padding:0 12px 24px; box-sizing:border-box; width:100%; }
@media (min-width:768px){
  .col-md-4{ width:33.333%; } .col-md-6{ width:50%; } .col-md-10{ width:83.333%; } .col-md-12{ width:100%; }
  .offset-md-1{ margin-left:8.333%; }
}
@media (min-width:992px){
  .col-lg-6{ width:50%; } .col-lg-10{ width:83.333%; }
  .offset-lg-1{ margin-left:8.333%; }
}
.car-rental-suppliers-content .g-4 > [class*="col-"], .supplier-comparison-content .g-4 > [class*="col-"]{ padding:8px; }
.car-rental-suppliers-content .card, .supplier-comparison-content .card,
.content-card{ background:#fff; border-radius:var(--radius-md); border:1px solid var(--line); }
.card-body{ padding:28px; }
.card-title{ font-family:var(--font-display); font-weight:600; color:var(--navy-950); margin-bottom:10px; }
.h-100{ height:100%; }
.border-0{ border:0 !important; }
.shadow-sm{ box-shadow:var(--shadow-sm); }
.shadow{ box-shadow:var(--shadow-md); }
.shadow-lg{ box-shadow:var(--shadow-lg); }
.rounded{ border-radius:var(--radius-md); }
.bg-light{ background:var(--sand-50) !important; }
.bg-white{ background:#fff !important; }
.bg-dark{ background:var(--navy-950) !important; }
.bg-primary{ background:var(--blue-600) !important; }
.border-start{ border-left:4px solid var(--line); padding-left:18px; }
.border-4{ border-width:4px !important; }
.border-primary{ border-color:var(--blue-600) !important; }
.border-info{ border-color:var(--blue-100) !important; }
.text-center{ text-align:center; }
.text-primary{ color:var(--blue-600) !important; }
.text-secondary{ color:var(--ink-500) !important; }
.text-success{ color:var(--green-600) !important; }
.text-info{ color:var(--blue-600) !important; }
.text-muted{ color:var(--ink-300) !important; }
.text-dark{ color:var(--navy-950) !important; }
.text-light, .text-white{ color:#fff !important; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4,
.text-white h1, .text-white h2, .text-white h3, .text-white h4{ color:#fff !important; }
.cta-banner h2, .p-5.bg-dark h2, .p-4.bg-dark h2{ font-size:clamp(22px,3vw,30px); margin-bottom:10px; }
.small{ font-size:13px; }
.font-weight-bold{ font-weight:700; }
.lead{ font-size:18px; color:var(--ink-500); line-height:1.6; }
.display-4{ font-family:var(--font-display); font-size:clamp(26px,4vw,40px); font-weight:700; color:var(--navy-950); }
.car-rental-suppliers-content h3, .supplier-comparison-content h3,
h3.h3, .h3{ font-family:var(--font-display); font-size:20px; font-weight:600; color:var(--navy-950); }
.h4{ font-family:var(--font-display); font-size:16.5px; font-weight:600; color:var(--navy-950); }
.mb-2{ margin-bottom:10px; } .mb-3{ margin-bottom:16px; } .mb-4{ margin-bottom:24px; } .mb-5{ margin-bottom:40px; }
.mt-3{ margin-top:16px; } .mt-5{ margin-top:40px; }
.me-2{ margin-right:8px; }
.mx-auto{ margin-left:auto; margin-right:auto; max-width:640px; }
.p-4{ padding:20px; } .p-5{ padding:28px; }
.px-3{ padding-left:12px; padding-right:12px; } .px-5{ padding-left:28px; padding-right:28px; }
.py-4{ padding-top:20px; padding-bottom:20px; } .py-5{ padding-top:28px; padding-bottom:28px; }
.list-unstyled{ list-style:none; margin:0; padding:0; }
.list-unstyled li{ font-size:14.5px; color:var(--ink-700); margin-bottom:8px; }
.icon-box{ text-align:center; }
.cta-banner{ background:var(--navy-950); border-radius:var(--radius-lg); padding:32px; }
.btn{ display:inline-flex; align-items:center; justify-content:center; padding:12px 24px; border-radius:999px; font-weight:700; cursor:pointer; border:0; text-decoration:none; }
.btn-lg{ padding:14px 28px; font-size:16px; }
.btn-light{ background:#fff; color:var(--navy-950); }

/* -- scroll-to-top button -- */
.scroll-top-btn{
  position:fixed; right:20px; bottom:20px; z-index:600;
  width:46px; height:46px; border-radius:50%; background:var(--navy-950); color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-lg);
  border:0; cursor:pointer; opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s;
}
.scroll-top-btn.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.scroll-top-btn:hover{ background:var(--orange-500); }
.scroll-top-btn .icon{ width:20px; height:20px; }
@media (max-width:640px){ .scroll-top-btn{ right:14px; bottom:14px; width:42px; height:42px; } }
.car-rental-suppliers-content .table, .supplier-comparison-content .table{ width:100%; border-collapse:collapse; font-size:14px; }
.table th, .table td{ padding:10px 12px; border-bottom:1px solid var(--line); text-align:left; }
.table-light thead{ background:var(--sand-50); }
.table-hover tbody tr:hover{ background:var(--sand-50); }
.table-responsive{ overflow-x:auto; }

/* -- geo-info AI content block (mlvcontent / mlvaiD.php output) -- */
#mlvgeoinfo h3.newh3{ margin-top:0; }
#mlvgeoinfo .mlvgeoinfoP{ color:var(--ink-700); font-size:15px; line-height:1.7; margin-bottom:14px; }

/* -- "Car rentals in USA & Worldwide" pin-link list -- */
.bluemlvdiv{ display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 0; }
.bluemlvdiv a{
  font-size:13px; font-weight:600; color:var(--ink-700); background:var(--sand-50);
  border:1px solid var(--line); border-radius:999px; padding:7px 13px;
}
.bluemlvdiv a:hover{ color:var(--orange-600); border-color:var(--orange-500); }
.bluemlvdiv br{ display:none; }

/* ---------- 22. RENTALCARS: extra components ---------- */

/* -- car deals carousel (lastcars-3.php) -- */
.mlv-carousel-section{ margin:32px 0; }
.mlv-carousel-title{ font-size:19px; margin-bottom:14px; display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.mlv-source-badge{ font-size:12px; font-weight:600; color:var(--ink-500); background:var(--sand-50); border:1px solid var(--line); border-radius:999px; padding:4px 10px; }
.mlv-carousel-track-wrapper{ position:relative; }
.mlv-carousel-track{ display:flex; gap:14px; overflow-x:auto; scroll-behavior:smooth; padding-bottom:6px; scrollbar-width:none; }
.mlv-carousel-track::-webkit-scrollbar{ display:none; }
.mlv-card{
  flex:0 0 210px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  overflow:hidden; box-shadow:var(--shadow-sm);
}
.mlv-card-img-wrap{ background:var(--sand-50); }
.mlv-card-img-wrap img{ width:100%; height:auto; display:block; }
.mlv-card-body{ padding:14px; }
.mlv-card-cat{ font-family:var(--font-display); font-weight:600; font-size:14.5px; color:var(--navy-950); margin:0 0 2px; }
.mlv-card-example, .mlv-card-location, .mlv-card-dates{ font-size:12.5px; color:var(--ink-500); margin:0 0 2px; }
.mlv-card-price-label{ font-size:11px; color:var(--ink-300); margin:8px 0 0; }
.mlv-card-price{ font-family:var(--font-display); font-weight:700; font-size:18px; color:var(--navy-950); margin:0 0 10px; }
.mlv-per-day{ font-size:12px; font-weight:400; color:var(--ink-500); }
.mlv-card-btn{
  display:inline-flex; align-items:center; justify-content:center; width:100%;
  background:var(--orange-500); color:#fff; border:0; border-radius:999px; padding:9px 14px;
  font-weight:700; font-size:13px; cursor:pointer; text-decoration:none;
}
.mlv-card-btn:hover{ background:var(--orange-600); color:#fff; }
.mlv-arrow{
  position:absolute; top:40%; transform:translateY(-50%); z-index:2;
  width:34px; height:34px; border-radius:50%; background:#fff; border:1px solid var(--line);
  box-shadow:var(--shadow-sm); cursor:pointer; font-size:18px; color:var(--ink-700); display:flex; align-items:center; justify-content:center;
}
.mlv-arrow--prev{ left:-14px; }
.mlv-arrow--next{ right:-14px; }
.mlv-disclaimer{ font-size:11.5px; color:var(--ink-300); margin-top:10px; }
@media (max-width:640px){
  .mlv-arrow--prev{ left:2px; }
  .mlv-arrow--next{ right:2px; }
  .mlv-card{ flex-basis:170px; }
  .cardcity, .cardcontinent{ width:calc(50% - 8px); margin-right:8px; }
  .agencies .card{ padding:14px; }
}

/* -- USP / rating sub-header (index-tabcontent-aeroport/gare/centre.php) -- */
.mlvht-sub-header{ margin:20px 0; }
.mlvht-sub-header__wrapper{ display:flex; flex-wrap:wrap; }
.mlvht-sub-header-usps{ display:flex; flex-wrap:wrap; gap:16px; list-style:none; margin:0; padding:0; }
.mlvht-sub-header-usps__col{ font-size:14px; color:var(--ink-700); }
.mlvht-config-rating{ list-style:none; margin:0; padding:0; }
.mlvht-yellowstars{ color:#F5A623; }
.mlvht-blackstars{ color:var(--line); }

/* -- map widget container (map.php) -- */
.mapmlv{ width:100%; height:420px; margin:24px 0; border-radius:var(--radius-md); overflow:hidden; }
.map-zone{
  position:relative; width:100%; min-height:280px; border-radius:var(--radius-md);
  background:var(--sand-50); border:1px solid var(--line); overflow:hidden;
}
.map{ width:100%; height:360px; border-radius:var(--radius-md); }
.map_agence-overlay{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  cursor:pointer;
}
.localizeme{ display:flex; flex-direction:column; align-items:center; gap:10px; }
.localizeme-picto{ width:44px; height:44px; object-fit:contain; }
.localizeme-text{ font-size:14px; font-weight:600; color:var(--blue-600); margin:0; }
#pac-input.controls{
  width:100%; max-width:420px; height:48px; border:1.5px solid var(--line); border-radius:var(--radius-sm);
  padding:0 16px; font-size:14.5px; font-family:var(--font-body); color:var(--ink-900); background:var(--sand-50); margin-bottom:14px;
}
.h3citylocation, .h3countrymlv{ font-size:19px; margin-bottom:10px; }

/* -- "main cities for rentals" link list (topcitybycountry.php) -- */
#mlvtopcitiesblock h2{ font-size:19px; margin-bottom:10px; }
#mlvtopcitiesblock p.mlvgeoinfoP{ font-size:14.5px; line-height:2; color:var(--ink-300); }
#mlvtopcitiesblock p.mlvgeoinfoP a{ font-weight:600; color:var(--blue-600); }
#mlvtopcitiesblock p.mlvgeoinfoP a:hover{ color:var(--orange-600); }

/* -- agencies / cardcontinent (snippet-locations.php) --
   NOTE: all 4 page types (location/city/continent/country) share the same
   outer .agencies wrapper, so it must NOT force a grid on its direct
   children (that previously squeezed the country-type link list to 1/4
   width). Cards flow via inline-block instead, which works no matter
   what else sits alongside them. */
.agencies{ margin:8px 0; }
.agencies h3{ font-size:17px; margin:24px 0 10px; }
.agencies h3:first-child{ margin-top:0; }
.agencies .card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:16px; margin-bottom:12px; font-size:14px; color:var(--ink-700); line-height:1.6;
}
.seemore{ display:inline-block; margin:6px 0; }
.seemore a{ font-size:13.5px; font-weight:600; }
.hide-agencies{ display:none; }

.cardcity, .cardcontinent{
  display:inline-block; vertical-align:top; width:calc(25% - 12px); margin:0 12px 12px 0;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden;
  font-size:13.5px; color:var(--ink-500); line-height:1.55; box-sizing:border-box;
  transition:transform .15s ease, box-shadow .15s ease;
}
.cardcity:hover, .cardcontinent:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.cardcity img{ /*width:100%;*/ height:auto; display:block; }
.cardcity{ padding:14px 16px; }
.cardcity:has(img){ padding:0; }
.cardcity:has(img) .agencieslink{ padding:10px 14px; }
.cardcity strong, .cardcity a strong{ font-family:var(--font-display); font-weight:600; font-size:14.5px; color:var(--navy-950); }
.cardcity a:hover strong{ color:var(--orange-600); }
.agencieslink a{ font-family:var(--font-display); font-weight:600; font-size:13.5px; color:var(--navy-950); }
.agencieslink a:hover{ color:var(--orange-600); }
.cardcontinent{ padding:0; text-align:center; }
.cardcontinent .agencieslink{ padding:14px 12px; }
@media (max-width:900px){ .cardcity, .cardcontinent{ width:calc(33.333% - 12px); } }
@media (max-width:600px){ .cardcity, .cardcontinent{ width:calc(50% - 12px); } }

/* -- "big" pill link variant (index-tabcontent-aeroport-countries.php, snippet-locations.php) -- */
.linkscolbig{
  display:inline-flex; align-items:center; background:#fff; border:1px solid var(--line);
  border-radius:999px; padding:10px 18px; font-size:14px; font-weight:600; color:var(--ink-700); margin:0 8px 8px 0;
}
.linkscolbig:hover{ border-color:var(--orange-500); color:var(--orange-600); }

/* -- "Why Trust Us?" block (mcrinsurances.php reuses .linksrow/.linkscol,
   restyled here into proper trust cards instead of link pills) -- */
.trust-us-block{ margin-top:32px; }
.trust-us-block h2{ font-size:20px; margin-bottom:16px; }
.trust-us-block .linksrow{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.trust-us-block .linkscol{
  display:block; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:20px; white-space:normal; text-align:left;
}
.trust-us-block .linkscol:hover{ border-color:var(--line); color:inherit; background:#fff; }
.trust-us-block .bpf-icon{
  display:block; width:38px; height:38px; border-radius:10px; margin-bottom:12px;
  background:var(--green-100);
  position:relative;
}
.trust-us-block .bpf-icon::before{
  content:''; position:absolute; inset:0; margin:auto; width:18px; height:18px;
  background-color:var(--green-600);
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat; -webkit-mask-position:center; mask-position:center; -webkit-mask-size:contain; mask-size:contain;
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.trust-us-block .bpf-title{ display:block; font-family:var(--font-display); font-weight:600; font-size:16px; color:var(--navy-950); margin-bottom:6px; }
.trust-us-block .linkscol{ font-size:14px; color:var(--ink-500); line-height:1.6; }
@media (max-width:760px){ .trust-us-block .linksrow{ grid-template-columns:1fr; } }

/* -- realtime search table (index-realtime-new.php) -- */
table[style*="border-collapse"]{
  border:1px solid var(--line) !important; border-radius:var(--radius-md); overflow:hidden;
  font-family:var(--font-body) !important; font-size:14px !important; line-height:1.6 !important; font-weight:400 !important;
  box-shadow:var(--shadow-sm);
}
table[style*="border-collapse"] thead td{ background:var(--sand-50); padding:12px 14px !important; }
.tdnewmlv{ color:var(--navy-950); font-family:var(--font-display); font-size:13px; padding:12px 14px !important; }
.tdnewmlv2{ color:var(--ink-700); padding:10px 14px !important; border-top:1px solid var(--line); }

/* -- tighten the A-Z filter widget block (indextab-alphabet.php) so a
   single result doesn't look disconnected from its own heading -- */
.mlvcontainer#listcities{ margin:8px 0 28px; }
.mlvcontainer#listcities .newh3{ margin-bottom:10px; }
.mlvcontainer#listcities .listNav{ margin:0 0 10px; }
.mlvcontainer#listcities .seolinkscolumns{ margin:0; }
