/* Composant calendrier partagé : recherche, publication et modification de trajet. */
.opencar-date-picker {
  width: min(100%, 460px);
  min-width: 0;
  margin: auto;
  color: var(--navy);
  background: #fff;
}

.opencar-date-picker-header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  text-align: center;
}

.opencar-date-picker-header button {
  display: grid;
  width: 46px;
  min-height: 46px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: #f0f6fd;
}

.opencar-date-picker-header button:focus-visible,
.opencar-date-picker-days button:focus-visible {
  outline: 3px solid rgba(8, 120, 255, 0.24);
  outline-offset: 2px;
}

.opencar-date-picker-header button:disabled {
  cursor: default;
  opacity: 0.28;
}

.opencar-date-picker-header svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.opencar-date-picker-header strong {
  overflow: hidden;
  font-size: 17px;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
}

.opencar-date-picker-weekdays,
.opencar-date-picker-days {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.opencar-date-picker-weekdays span {
  min-width: 0;
  padding: 5px 0;
  color: #75869c;
  font-size: 10px;
  font-weight: 850;
  text-align: center;
}

.opencar-date-picker-days button {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.opencar-date-picker-days button.outside {
  color: #b1becd;
}

.opencar-date-picker-days button.today:not(.selected) {
  color: var(--blue);
  box-shadow: inset 0 0 0 1.5px rgba(8, 120, 255, 0.4);
}

.opencar-date-picker-days button.selected {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 6px 16px rgba(8, 120, 255, 0.26);
}

.opencar-date-picker-days button:disabled {
  cursor: default;
  opacity: 0.25;
}

.opencar-date-picker-overlay {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  align-items: end;
  padding: max(14px, var(--safe-top)) max(12px, var(--safe-right)) max(14px, var(--safe-bottom)) max(12px, var(--safe-left));
  background: rgba(6, 24, 49, 0.42);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.opencar-date-picker-overlay[hidden] {
  display: none;
}

.opencar-date-picker-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.opencar-date-picker-sheet {
  position: relative;
  width: min(100%, 480px);
  max-height: min(760px, calc(100dvh - var(--safe-top) - var(--safe-bottom) - 24px));
  margin: 0 auto;
  padding: 20px 18px 18px;
  overflow-y: auto;
  border: 1px solid rgba(218, 230, 244, 0.94);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(5, 31, 67, 0.24);
  overscroll-behavior: contain;
}

body.opencar-date-picker-open {
  overflow: hidden;
}

@media (min-width: 620px) {
  .opencar-date-picker-overlay {
    align-items: center;
  }
}

@media (max-width: 370px), (max-height: 720px) {
  .opencar-date-picker-sheet {
    padding: 15px 13px 13px;
    border-radius: 23px;
  }

  .opencar-date-picker-header {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    margin-bottom: 7px;
  }

  .opencar-date-picker-header button {
    width: 40px;
    min-height: 40px;
  }

  .opencar-date-picker-days button {
    min-height: 31px;
    font-size: 12px;
  }
}

/* Public web presentation. Operational app styles are built separately. */
:root { --web-ink:#071c3e; --web-blue:#0675ff; --web-muted:#56667e; }
html { scroll-padding-top:100px; }
body { background:#fff; }
.site-header { position:sticky;top:0; }
.web-home { color:var(--web-ink); }
.web-home h1,.web-home h2,.web-home h3 { font-family:'Plus Jakarta Sans',sans-serif;letter-spacing:-.045em; }
.web-home p { color:var(--web-muted);line-height:1.75; }
.web-home a,.web-home button { transition:background .18s,box-shadow .18s; }
.web-home :focus-visible,.site-header :focus-visible { outline:3px solid #0675ff;outline-offset:4px; }
.web-eyebrow { display:block;font-size:11px;font-weight:800;letter-spacing:.13em;color:#406076; }
.web-hero { padding:55px 0 30px;background:linear-gradient(120deg,#f6faff,#fff 70%); }
.web-hero-layout { display:grid;grid-template-columns:1.3fr .7fr;align-items:center;gap:38px; }
.web-hero-copy h1 { font-size:clamp(40px,4.6vw,68px);line-height:1.08;margin:22px 0; }
.web-hero-copy h1 em { color:var(--web-blue);font-style:normal; }
.web-hero-copy p { font-size:17px;max-width:560px; }
.web-hero-actions { display:flex;gap:12px;margin-top:28px;flex-wrap:wrap; }
.web-home .button { border-radius:12px;min-height:52px;font-size:14px; }
.web-assistant-link { display:inline-block;margin-top:22px;font-size:12px;color:#496178; }
.web-hero-art { position:relative;display:grid;place-items:center;padding:0 0 35px;isolation:isolate; }
.web-orbit { position:absolute;width:330px;max-width:100%;aspect-ratio:1;border-radius:50%;background:#e6f6f4;z-index:-1; }
.web-phone { display:block;width:205px;height:auto;object-fit:contain;filter:drop-shadow(0 20px 24px #071c3e1c);border-radius:28px; }
.web-fee { position:absolute;left:0;top:50%;padding:16px 20px;background:#fff;border:1px solid #e6edf5;border-radius:16px;box-shadow:0 8px 30px #071c3e0a;display:flex;gap:12px;align-items:center; }
.web-fee strong { font-size:34px;letter-spacing:-2px; }.web-fee span { font-size:11px;color:var(--web-muted); }
.web-art-note { position:absolute;bottom:0;font-size:11px;color:var(--web-muted); }
.web-quick-search { display:grid;grid-template-columns:1.2fr 1.2fr .78fr .84fr .75fr auto;align-items:stretch;background:#fff;border:1px solid #d9e6f4;box-shadow:0 10px 40px #071c3e0a;border-radius:18px;padding:12px;margin-top:26px;position:relative; }
.web-quick-search>label,.web-date-trigger,.web-time-trigger { margin:0;padding:10px 18px;min-width:0;border:0;border-right:1px solid #e6edf5;background:none;text-align:left;display:flex;flex-direction:column;gap:8px; }
.web-quick-search span { font-size:11px;font-weight:700;color:#586c83; }
.web-quick-search input,.web-quick-search select { border:0;box-shadow:none;background:none;padding:0;width:100%;min-height:24px;font:600 14px 'Manrope',sans-serif;color:var(--web-ink);outline-offset:5px; }
.web-quick-search input::placeholder { color:#728199;font-weight:500; }.web-date-trigger strong,.web-time-trigger strong{font-size:14px;white-space:nowrap;}
.web-quick-search .web-search-submit { margin-left:12px;align-self:stretch; }
.web-search-note { font-size:11px;text-align:center;margin:15px 0 0; }.web-location{position:relative;}
.web-place-options { position:absolute;z-index:25;top:100%;left:0;min-width:100%;width:310px;max-width:calc(100vw - 48px);max-height:300px;overflow:auto;background:#fff;border:1px solid #d9e6f4;border-radius:12px;padding:8px;box-shadow:0 12px 24px #071c3e12; }
.web-place-options button { display:flex;flex-direction:column;gap:4px;width:100%;text-align:left;padding:12px;border:0;border-radius:8px;background:#fff;color:var(--web-ink); }.web-place-options button:hover,.web-place-options button:focus{background:#eef6ff;}.web-place-options small{font-size:11px;color:#56667e;}
.web-form-error { grid-column:1/-1;color:#a62932!important;margin:12px; }
.web-section { padding-top:88px;padding-bottom:88px; }.web-section-heading { margin-bottom:30px; }.web-home h2{font-size:clamp(29px,3vw,42px);line-height:1.2;margin:14px 0;}.web-section-heading p{margin:0;}
.web-role-grid { display:grid;grid-template-columns:1fr 1fr;gap:24px; }.web-role-card { padding:35px;border-radius:22px;background:#f2f7ff;position:relative; }.web-role-driver{background:#eefaf7;}.web-role-card img { float:right;width:128px;height:96px;object-fit:contain;margin-left:12px; }.web-role-card h3 { font-size:28px;margin:20px 0; }.web-role-card ol{clear:both;padding-left:20px;color:var(--web-muted);font-size:14px;line-height:2.1;}.web-role-card a{display:inline-block;margin-top:18px;font-weight:800;font-size:14px;color:#0758c3;}
.web-assistant-section { border:1px solid #e2e9ef;border-radius:22px;padding:30px;display:grid;grid-template-columns:80px 1fr auto;gap:26px;align-items:center; }.web-assistant-section>img{width:80px;height:80px;object-fit:contain;}.web-assistant-section h2{font-size:27px;margin:10px 0;}.web-assistant-section p{font-size:13px;margin:0;}.web-assistant-section .web-eyebrow{font-size:9px;}
.web-benefits { display:grid;grid-template-columns:repeat(3,1fr);gap:42px; }.web-benefits article>span{font-size:10px;letter-spacing:.1em;color:#516c83;font-weight:700;}.web-benefits h3{font-size:22px;margin:20px 0 12px;}.web-benefits p{font-size:13px;}.web-benefits button{padding:0;background:none;border:0;color:#0758c3;font-size:12px;font-weight:700;}
.web-mobile-section { background:#f1f6fc;overflow:hidden; }.web-mobile-layout { display:grid;grid-template-columns:1fr 1fr;gap:80px;padding-top:60px;padding-bottom:60px;align-items:center; }.web-mobile-layout p{max-width:430px;}.web-phone-second{justify-self:center;width:236px;}.web-availability{font-size:12px;}.web-mobile-layout .button{margin-top:16px;}
.web-faq { display:grid;grid-template-columns:.8fr 1.2fr;gap:70px; }.web-faq details{border-bottom:1px solid #e2e9ef;padding:20px 0;font-size:14px;}.web-faq summary{font-weight:700;cursor:pointer;}.web-faq details p{font-size:13px;}
.web-calendar-dialog { border:1px solid #d9e6f4;border-radius:22px;padding:24px;width:370px;max-width:calc(100vw - 28px);color:var(--web-ink);box-shadow:0 30px 80px #071c3e33; }.web-calendar-dialog::backdrop{background:#071c3e66;}.web-calendar-title{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;}.web-calendar-title h2{font-size:19px;margin:0;}.web-calendar-title button{border:0;background:#edf5ff;border-radius:50%;width:38px;height:38px;font-size:24px;}
.web-calendar-title p{margin:4px 0 0;color:var(--web-muted);font-size:11px;}.web-time-options{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;max-height:360px;overflow:auto;padding:2px;}.web-time-options button,.web-time-clear{min-height:42px;border:1px solid #d7e7fa;border-radius:11px;background:#f3f8ff;color:var(--web-ink);font:700 12px 'Manrope',sans-serif;}.web-time-options button.selected,.web-time-options button:focus-visible{border-color:#0675ff;background:#0675ff;color:#fff;outline:0;}.web-time-clear{width:100%;margin-top:12px;color:#0758c3;background:#fff;}
.site-header .brand-nav-link {display:none;}.main-nav{gap:18px;}.main-nav .web-header-link{font-size:12px;font-weight:700;color:#183652;}.web-header-signup{background:#0675ff;color:#fff!important;border-radius:10px;padding:12px 16px;}.site-header{box-shadow:none;border-bottom:1px solid #edf2f7;}.footer-directory{background:#f7f9fc;}
@media(max-width:1000px){.web-hero-layout{grid-template-columns:1.2fr .8fr;gap:15px;}.web-fee{left:-12px;padding:12px;}.web-quick-search{grid-template-columns:1fr 1fr 1fr;gap:10px;}.web-quick-search>.web-location{grid-column:span 1;}.web-quick-search .web-search-submit{grid-column:span 1;margin:0;}.web-assistant-section{grid-template-columns:70px 1fr;}.web-assistant-section>a{grid-column:2;justify-self:start;}.main-nav{gap:12px;}.web-role-card{padding:24px;}.web-role-card img{width:105px;height:auto;}}
@media(max-width:680px){.web-hero{padding:35px 0 20px;}.web-hero-layout{grid-template-columns:1fr;}.web-hero-copy h1{font-size:40px;}.web-hero-copy p{font-size:14px;}.web-eyebrow{font-size:9px;}.desktop-only{display:none;}.web-hero-actions{gap:9px;margin-top:23px;}.web-home .button{font-size:12px;min-height:47px;padding:12px 16px;}.web-assistant-link{font-size:11px;line-height:1.7;}.web-hero-art{display:none;}.web-quick-search{grid-template-columns:1fr 1fr;gap:0;padding:8px;margin-top:24px;border-radius:16px;}.web-quick-search>.web-location{grid-column:1/-1;border:0;border-bottom:1px solid #e6edf5;}.web-quick-search>label,.web-date-trigger,.web-time-trigger{padding:14px;}.web-time-trigger{border-right:0}.web-seats{border-right:1px solid #e6edf5!important;}.web-quick-search .web-search-submit{grid-column:1/-1;margin:6px;}.web-search-note{font-size:10px;padding:0 10px;}.web-section{padding-top:52px;padding-bottom:52px;}.web-role-grid{grid-template-columns:1fr;gap:16px;}.web-role-card{padding:25px;}.web-role-card h3{font-size:24px;}.web-role-card img{width:105px;}.web-role-card ol{font-size:12px;}.web-assistant-section{padding:20px;grid-template-columns:46px 1fr;gap:15px;}.web-assistant-section>img{width:46px;height:46px;}.web-assistant-section h2{font-size:23px;}.web-assistant-section p{font-size:12px;}.web-benefits{grid-template-columns:1fr;gap:30px;}.web-benefits h3{margin-top:12px;}.web-mobile-layout{grid-template-columns:1fr;gap:32px;padding:42px 0;}.web-phone-second{width:205px;}.web-mobile-layout p{font-size:13px;}.web-faq{grid-template-columns:1fr;gap:15px;}.web-faq details{font-size:13px;}.web-home h2{font-size:29px;}.web-role-card .web-eyebrow{padding-top:10px;}}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition:none!important;animation:none!important;}}
