/* ===========================================
   AVIS FIRMENKUNDEN REDESIGN - custom.css
   Overrides for avis-pattern-library
   =========================================== */

/* ------------------------------------------
   1. Design Tokens
   ------------------------------------------ */
:root {
  --avis-red: #D4002A;
  --text-900: #121212;
  --text-700: #303030;
  --text-500: #464646;
  --text-300: #646464;
  --border-light: rgba(50, 50, 50, 0.2);
  --border-muted: rgba(100, 100, 100, 0.25);
  --bg-light: #F1F1F1;
  --card-radius: 12px;
  --card-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  --content-width: 1200px;
}

/* ------------------------------------------
   2. Global / Base
   ------------------------------------------ */
body,
.pl-content,
.pl-content p,
.pl-content li,
.pl-content h1,
.pl-content h2,
.pl-content h3 {
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

/* ------------------------------------------
   3. Header - red nav bar
   ------------------------------------------ */

/* Top utility bar stays light grey */
.header__row:not(.header__row--main) {
  background: var(--bg-light);
}
.header__row:not(.header__row--main) .supplementary-navigation__link {
  color: var(--text-900) !important;
  text-decoration: none !important;
}

/* Global: kill red border-bottom underlines (avis.min.css sets border-bottom-color:#d4002a on all 'a') */
.header a,
.header__row a,
.hero-card a,
.hero-card__contact,
.section--benefits a,
.section--solutions a,
.solution-card__link,
.section--corp-solutions a,
.corp-tabs a,
.section--how-it-works a,
.how-it-works__cta,
.section--avis-flex a,
.benefit-card a,
.section--biz-account a,
.section--van-cards a,
.section--faq a {
  border-bottom: none !important;
  text-decoration: none !important;
}

/* Main nav bar: red */
.header__row--main,
.header__row--main .header__logo,
nav.primary-navigation {
  background-color: var(--avis-red) !important;
}

/* Nav link colours */
.primary-navigation__link,
.primary-navigation__list,
.primary-navigation__item {
  background-color: var(--avis-red) !important;
  color: #fff !important;
}
.primary-navigation__link {
  color: #fff !important;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

/* "Anmelden" button area */
.header__row--main .supplementary-navigation__link,
.header__row--main .supplementary-navigation__link__userText,
.sign-in-bar,
.sign-in-bar a,
.sign-in-bar span {
  color: #fff !important;
}

/* ------------------------------------------
   4. Breadcrumb / location bar
   Unique class prefix (`crumb-bar` / `crumbs`) to avoid colliding with the
   Avis pattern-library's native `.breadcrumb*` component (icon-font chevrons,
   floats, mobile-collapse) which would otherwise leak into this redesigned bar.
   ------------------------------------------ */
.crumb-bar {
  background: #fff;
  border-top: 1px solid #CCC;
  padding: 23px 32px;                 /* Figma: bar ~65.6px tall, text inset 32px, ~centered */
}
.crumbs {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  font-size: 14px;
  line-height: 19.6px;
}
/* Neutralise the Avis global `ol li` counter (`::before` red "1. 2. ..."), which
   list-style cannot remove, and its margin-bottom. */
.crumbs > li { margin: 0; counter-increment: none; }
.crumbs > li::before { content: none !important; }
.crumbs__item { display: flex; align-items: center; }
.crumbs__link { color: var(--text-900, #121212); text-decoration: none; border-bottom: none; }
.crumbs__link:hover { text-decoration: underline; }
.crumbs__sep { display: inline-flex; width: 14px; height: 14px; color: #ccc; }
.crumbs__sep svg { width: 100%; height: 100%; display: block; }
.crumbs__current { color: var(--avis-red); }            /* current page (non-link) */

@media (max-width: 768px) {
  .crumb-bar { padding: 16px 24px; }
}

/* ------------------------------------------
   5. Hero Section
   ------------------------------------------ */
.mainH1Heading-wrapper {
  position: relative;
  min-height: 716px;
  background-image: url('https://avisassets.abgemea.com/dam/DMS/global/B2B/B2B-Webpage-Images/header-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mainH1Heading-wrapper .l-container--12 {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 64px 24px;
}

/* Remove legacy inline-style overrides; override avis.min.css h1{color:#d4002a} */
.l-row--variant-a.mainH1Heading-wrapper h1,
.mainH1Heading-wrapper h1,
.hero-card h1,
.hero-card__title {
  background: none !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  font-family: 'Open Sans', arial, helvetica, sans-serif !important;
  color: #fff !important;
  text-transform: none !important;
  text-align: left !important;
}

/* Frosted glass card */
.hero-card {
  backdrop-filter: blur(12.5px);
  -webkit-backdrop-filter: blur(12.5px);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  padding: 16px 24px 24px;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-card__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card__heading-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-card__title {
  font-size: 36px !important;
  font-weight: 400 !important;
  letter-spacing: -1.44px !important;
  line-height: 1.1 !important;
  color: #fff !important;
  margin: 0 !important;
  text-transform: none !important;
  text-align: left !important;
}

.hero-card__subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

.hero-card__body {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin: 0;
}

.hero-card__actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==========================================
   UTILITY CLASSES - reusable across all pages
   ========================================== */

/* ── Button base ── */
.avis-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 36px !important;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: none !important;
  white-space: nowrap;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  cursor: pointer;
}

/* Red filled (default CTA) */
.avis-btn--red {
  background: var(--avis-red);
  color: #fff !important;
  border: none;
  box-shadow: 0 2px 8px rgba(212, 0, 42, 0.3);
}
.avis-btn--red:hover { background: #b8001f; color: #fff !important; }

/* White filled (on coloured backgrounds) */
.avis-btn--white {
  background: #fff;
  color: #121212 !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.avis-btn--white:hover { background: #f0f0f0; color: #121212 !important; }

/* Ghost / secondary (grey bg, red text) */
.avis-btn--ghost {
  background: #eaeaea;
  color: var(--avis-red) !important;
  border: none;
  box-shadow: none;
}
.avis-btn--ghost:hover { background: #d8d8d8; color: var(--avis-red) !important; }

/* ── Section block ── */
.avis-section {
  padding: 48px 24px;
  background: #fff;
}

/* ── Content container ── */
.avis-container {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ── Card ── */
.avis-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

/* ── Icon + label row ── */
.avis-icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Pill label ── */
.avis-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 36px;
  border: 1px solid rgba(100, 100, 100, 0.25);
  padding: 6px 16px 6px 6px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  color: #646464;
}

/* Overrides for hero context: different hover (dark bg) and tighter shadow */
.hero-card__cta {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.41);
}
.hero-card__cta:hover {
  background: rgba(0, 0, 0, 0.4);
  color: #fff !important;
}

.hero-card__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.hero-card__contact {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  color: #fff !important;
  text-decoration: none !important;
}
.hero-card__contact:hover {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
}

.hero-card__contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* ------------------------------------------
   6. Section headings (shared)
   ------------------------------------------ */
.section-heading {
  font-size: 30px;
  font-weight: 300;
  color: var(--text-700);
  text-align: center;
  line-height: 42px;
  margin: 0 0 24px;
}

/* ------------------------------------------
   7. Benefits Strip
   ------------------------------------------ */
.section--benefits { /* avis-section */ }

.benefits-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefit-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px;
  flex: 1 1 calc(25% - 8px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.benefit-card__header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.benefit-card__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.benefit-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-900);
  line-height: 1.6;
  margin: 0;
}

.benefit-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(100, 100, 100, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------------
   8. Solutions Cards Grid
   ------------------------------------------ */
.section--solutions {
  padding: 48px 24px;
}

.solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solutions-row {
  display: flex;
  gap: 24px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px 12px 18px;
  flex: 1;
  min-width: 0;
}

.solution-card__img {
  width: 100%;
  aspect-ratio: 321 / 164;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.solution-card__content {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 4px;
  flex: 1;
}

.solution-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-900);
  line-height: 1.4;
  margin: 0;
}

.solution-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-300);
  line-height: 24px;
  margin: 0;
}

.solution-card__link {
  font-size: 16px;
  font-weight: 600;
  color: var(--avis-red) !important;
  line-height: 1.4;
  text-decoration: none !important;
  display: block;
  margin-top: auto;
  padding-top: 8px;
}
.solution-card__link:hover {
  text-decoration: none !important;
  color: var(--avis-red) !important;
  opacity: 0.85;
}

/* Hide old feature component styles in solutions section */
.section--solutions .feature,
.section--solutions .feature__icon,
.section--solutions .feature__image {
  display: none;
}

/* ------------------------------------------
   9. Corporate Solutions Tabs
   ------------------------------------------ */
.section--corp-solutions {
  padding: 48px 24px;
}

.corp-solutions {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

/* CSS-only tabs using radio inputs */
.corp-tabs {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  width: 100%;
  overflow: hidden;
}

.corp-tabs__input { display: none; }

.corp-tabs__headers { display: flex; }

.corp-tabs__label {
  flex: 1;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  /* Unselected: red background, white text */
  background: var(--avis-red);
  color: #fff;
  transition: background 0.2s, color 0.2s;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  text-decoration: none !important;
}

/* Selected: white background, red text */
#corp-tab-1:checked ~ .corp-tabs__headers label[for="corp-tab-1"],
#corp-tab-2:checked ~ .corp-tabs__headers label[for="corp-tab-2"],
#corp-tab-3:checked ~ .corp-tabs__headers label[for="corp-tab-3"] {
  background: #fff;
  color: var(--avis-red);
}

.corp-tabs__panel {
  display: none;
  gap: 36px;
  align-items: flex-start;
  padding: 36px;
}

#corp-tab-1:checked ~ .corp-tabs__panels .corp-tabs__panel[data-tab="1"],
#corp-tab-2:checked ~ .corp-tabs__panels .corp-tabs__panel[data-tab="2"],
#corp-tab-3:checked ~ .corp-tabs__panels .corp-tabs__panel[data-tab="3"] {
  display: flex;
}

.corp-tabs__panel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.corp-tabs__category {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #2f2f2f;
  margin: 0;
}

/* Inner text group: category + title + desc each separated by 18px */
.corp-tabs__panel-content > div {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.corp-tabs__title {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-700);
  line-height: 1.3;
  margin: 0;
}

.corp-tabs__desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-700);
  line-height: 1.4;
  margin: 0;
}

.corp-tabs__sub-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.corp-tabs__sub-heading {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-700);
  margin: 0;
}

.corp-tabs__bullets {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.corp-tabs__bullet {
  list-style: none !important;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-700);
  line-height: 1.4;
}

.corp-tabs__bullet::before,
.corp-tabs__bullet::marker {
  display: none !important;
  content: none !important;
}

.corp-tabs__bullet-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.corp-tabs__cta {
  margin-top: 10px;
  align-self: flex-start;
}
.corp-tabs__cta:hover { background: #b8001f; }

.corp-tabs__cta-icon {
  width: 32px;
  height: 32px;
}

.corp-tabs__panel-img {
  width: 320px;
  height: 304px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ------------------------------------------
   10. How It Works
   ------------------------------------------ */
.section--how-it-works {
  padding: 48px 24px 64px;
}

.how-it-works {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.how-it-works__steps {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.step-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 7px;
}

.step-card__badge {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--avis-red);
  border-radius: 44px 12px 44px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

.step-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-300);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.step-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-900);
  line-height: 24px;
  margin: 0;
}

/* Red connector sits between cards, centred vertically */
.step-connector {
  width: 45px;
  height: 2px;
  background: var(--avis-red);
  flex-shrink: 0;
  align-self: center;
}

/* All pill/colour styles from avis-btn avis-btn--red */
.how-it-works__cta { }

.how-it-works__cta-icon {
  width: 18px;
  height: 18px;
}

/* ------------------------------------------
   11. Avis Flex / Replacement Vehicle
   ------------------------------------------ */
.section--avis-flex { /* avis-section */ }

.avis-flex {
  /* layout rule defined in section 18 below */
}

.avis-flex__main {}

.avis-flex__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-900);
  margin: 0 0 12px;
}

.avis-flex__body {
  font-size: 16px;
  color: rgba(18, 18, 18, 0.8);
  line-height: 160%;
  margin: 0 0 16px;
}

.avis-flex__contact {
  font-size: 14px;
  color: var(--text-700);
  margin: 0 0 24px;
}

.avis-flex__contact a {
  color: var(--avis-red);
}

/* avis-flex__cta - see section 18 below */

.avis-flex__benefits {}

.avis-flex__benefits-title {
  font-size: 18px;
  font-weight: 400;
  color: #464646;
  margin: 0 0 16px;
}

.avis-flex__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.avis-flex__list-item {
  font-size: 14px;
  color: var(--text-700);
  line-height: 24px;
  padding-left: 16px;
  position: relative;
}

.avis-flex__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--avis-red);
  border-radius: 50%;
}

/* ------------------------------------------
   12. FAQ Accordion
   ------------------------------------------ */
.accordion {
  border-top: none !important;
  box-shadow: none !important;
  background: none !important;
}

.accordion__item {
  background: #fff !important;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08) !important;
  border-radius: 12px !important;
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  margin-bottom: 8px !important;
  padding: 0 24px !important;
  overflow: hidden !important;
}

.accordion__item__heading {
  font-size: 24px !important;
  font-weight: 400 !important;
  color: #303030 !important;
  /* Right padding reduced - icon handled by ::after, not the font icon */
  padding: 24px 40px 24px 0 !important;
  line-height: 42px !important;
  font-family: 'Open Sans', arial, helvetica, sans-serif !important;
  background: none !important;
  cursor: pointer !important;
  text-transform: none !important;
  position: relative !important;
}

/* Hide the pattern library's font icon */
.accordion__item__heading::before {
  content: none !important;
}

/* Plus icon - default (collapsed) state */
.accordion__item__heading::after {
  content: '' !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 24px !important;
  height: 24px !important;
  background-image: url('https://avisassets.abgemea.com/dam/DMS/global/B2B/assets/assets/plus.svg') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* Minus icon - active (expanded) state */
.accordion__item__toggle:checked + .accordion__item__heading::after {
  background-image: url('https://avisassets.abgemea.com/dam/DMS/global/B2B/assets/assets/minus.svg') !important;
}

.accordion__item__content {
  font-size: 18px;
  font-weight: 300;
  color: #121212;
  line-height: 140%;
  padding: 0 0 24px 0 !important;
}

.accordion__item__content p {
  margin: 0 0 18px;
}

.accordion__item__content .faq-learn-more {
  margin-top: 16px;
}
.accordion__item__content .faq-learn-more:hover { background: #b8001f; }

/* ------------------------------------------
   13. Footer
   ------------------------------------------ */
.footer {
  background: var(--bg-light) !important;
}

.footer .link-list__link {
  color: var(--text-700) !important;
  font-size: 14px !important;
}

.footer h3 {
  color: var(--text-900) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}

/* ------------------------------------------
   14. Hide legacy placeholder rows
   ------------------------------------------ */
.legacy-placeholder {
  display: none !important;
}

/* ------------------------------------------
   15. Responsive
   ------------------------------------------ */
/* Tablet: 960-1199px - step cards still row but slightly compact */
@media (max-width: 1199px) {
  .step-card {
    padding: 20px 14px;
  }
  .step-card__title {
    font-size: 18px;
  }
}

/* Tablet: ≤959px - general layout collapse */
@media (max-width: 959px) {
  .solutions-row {
    flex-wrap: wrap;
  }
  .solution-card {
    flex: 1 0 calc(50% - 12px);
  }
  .corp-tabs__panel {
    flex-direction: column;
  }
  .corp-tabs__panel-img {
    width: 100%;
    height: 220px;
  }
  .avis-flex {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Steps: 2-column layout at tablet */
  .how-it-works__steps {
    flex-wrap: wrap;
    gap: 16px;
  }
  .step-card {
    flex: 1 1 calc(50% - 40px);
    min-width: 200px;
  }
  .step-connector {
    display: none;
  }
}

/* Mobile: ≤580px - single column */
@media (max-width: 580px) {
  .mainH1Heading-wrapper {
    min-height: 520px;
  }
  .hero-card {
    max-width: 100%;
  }
  .hero-card__title {
    font-size: 26px !important;
  }
  .hero-card__cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .benefits-strip {
    flex-direction: column;
  }
  .solutions-row {
    flex-direction: column;
  }
  .how-it-works__steps {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
  }
  .step-card {
    flex: none;
    width: 100%;
  }
  .step-connector {
    display: flex;
    width: 2px;
    height: 32px;
    align-self: center;
  }
  .corp-tabs__label {
    font-size: 13px;
    padding: 0 8px;
    text-align: center;
  }
  .section-heading {
    font-size: 24px;
  }
}

/* ------------------------------------------
   16. Have a business account already?
   ------------------------------------------ */
.section--biz-account {
  background: #fff;
  padding: 48px 24px 24px;
}

.biz-account {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--avis-red);
  border-radius: 16px;
  border-top: 1px solid #CCCCCC;
  padding: 16px 12px;
  min-height: 76px;
}

.biz-account__title {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

.biz-account__desc {
  display: none;
}

.biz-account__cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #121212 !important;
  border: 2px solid transparent;
  border-radius: 36px !important;
  flex-shrink: 0;
  padding: 11.5px 36px;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}
.biz-account__cta:hover {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}

@media (max-width: 580px) {
  .biz-account {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ------------------------------------------
   17. Van cards - horizontal scroll
   ------------------------------------------ */
.section--van-cards {
  padding: 48px 24px;
  background: #fff;
}

.van-cards__header {
  max-width: var(--content-width);
  margin: 0 auto 24px;
  text-align: center;
}

.section--van-cards .section-heading {
  color: #303030;
}

.van-cards__sub {
  display: none;
}

/* Wrapper holds the positioned pseudo-element fades and the scrollable track */
.van-cards__fade-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
  background: #fff;
}

/* Left and right gradient overlays - opacity transitions for smooth fade in/out */
.van-cards__fade-wrap::before,
.van-cards__fade-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.van-cards__fade-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.van-cards__fade-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.van-cards__fade-wrap.fade--left::before  { opacity: 1; }
.van-cards__fade-wrap.fade--right::after  { opacity: 1; }

/* Scroll container - no mask-image needed, overflow handles clipping */
.van-cards__scroll-wrap {
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.van-cards__scroll-wrap::-webkit-scrollbar {
  display: none;
}

.van-cards__track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.van-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  width: 335px;
  flex-shrink: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 25px;
}

/* Header area: type title + badge */
.van-card__header-area {
  position: relative;
}

.van-card__title-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  position: relative;
}

.van-card__type {
  font-size: 22px;
  font-weight: 700;
  color: #646464;
  line-height: 140%;
  flex: 1;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

.van-card__badge {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 44px;
  height: 44px;
  background: var(--avis-red);
  border: 1.2px solid rgba(255, 255, 255, 0.45);
  border-radius: 44px 12px 44px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  flex-shrink: 0;
}

.van-card__desc-text {
  font-size: 14px;
  font-weight: 400;
  color: #121212;
  line-height: 24px;
  margin: 6px 0 0;
  /* Keep the description clear of the badge, which overhangs the
     top-right ~36px of the card; reserve that column + a gap. */
  padding-right: 52px;
}

.van-card__img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.van-card__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.van-card__spec-pill {
  height: 45px;
  color: #121212;
}

.van-card__spec-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.van-card__spec-icon svg,
.van-card__spec-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.van-cards__cta-wrap {
  max-width: var(--content-width);
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
}

/* All pill/colour styles from avis-btn avis-btn--red */
.van-cards__cta-btn { }
.van-cards__cta-btn:hover { background: #b8001f; }

/* ------------------------------------------
   18. Urgently need a replacement vehicle (Avis Flex)
   ------------------------------------------ */
.section--avis-flex {
  padding: 48px 24px;
  background: #fff;
}

.avis-flex {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.avis-flex__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-900);
  margin: 0 0 13px;
}

.avis-flex__byline {
  font-size: 22px;
  font-weight: 300;
  color: #121212;
  margin: 22px 0 42px;
}

.avis-flex__body {
  font-size: 16px;
  font-weight: 400;
  color: rgba(18, 18, 18, 0.8);
  line-height: 1.6;
  margin: 0 0 48px;
}

.avis-flex__contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin: 38px 0 0;
}

.avis-flex__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 300;
  color: #121212;
}

.avis-flex__contact-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.avis-flex__contact-item a {
  color: #121212 !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

/* All pill/colour styles from avis-btn avis-btn--red */
.avis-flex__cta { }

.avis-flex__cta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 580px) {
  .avis-flex__cta {
    width: 100%;
    justify-content: center;
  }
}

.avis-flex__benefits-title {
  font-size: 18px;
  font-weight: 400;
  color: #464646;
  margin: 0 0 16px;
}

.avis-flex__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.avis-flex__list-item {
  font-size: 14px;
  color: var(--text-700);
  line-height: 24px;
  padding-left: 20px;
  position: relative;
}

.avis-flex__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--avis-red);
  border-radius: 50%;
}

@media (max-width: 580px) {
  .avis-flex { grid-template-columns: 1fr; gap: 24px; }
}

/* ------------------------------------------
   19. FAQ section
   ------------------------------------------ */
.section--faq { /* avis-section */ }

.section--faq .section-heading {
  color: #303030;
  margin-bottom: 36px;
}

.faq {
  max-width: var(--content-width);
  margin: 0 auto;
}


/* ------------------------------------------
   Avis Flex - right pill-card layout (Frame 112)
   ------------------------------------------ */
.avis-flex__main {
  flex: 1;
  min-width: 0;
}

.avis-flex__card {
  width: 315px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-shadow: none;
  align-self: flex-start;
}

.avis-flex__card-title {
  font-size: 18px;
  font-weight: 400;
  color: #464646;
  margin: 0 0 16px;
}

.avis-flex__pills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
}

.avis-flex__pill {
  height: 44px;
}

.avis-flex__pill-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avis-flex__pill-icon svg,
.avis-flex__pill-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Kill old avis-flex list styles */
.avis-flex__list,
.avis-flex__list-item,
.avis-flex__list-item::before,
.avis-flex__benefits,
.avis-flex__benefits-title {
  display: none;
}

@media (max-width: 959px) {
  .avis-flex { flex-direction: column; }
  .avis-flex__card { width: 100%; }
}

/* ------------------------------------------
   20. Hero - second CTA + badges
   ------------------------------------------ */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.hero-card__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card__cta--secondary {
  background: #eaeaea;
  color: var(--avis-red) !important;
  box-shadow: none;
}
.hero-card__cta--secondary:hover {
  background: #d8d8d8;
  color: var(--avis-red) !important;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-radius: 36px;
  padding: 6px 16px 6px 6px;
  font-size: 14px;
  color: #313131;
  font-weight: 400;
  box-shadow: 0 1.28px 7.7px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.hero-badge__icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge__icon svg {
  width: 16px;
  height: 16px;
  stroke: #313131;
}

@media (max-width: 959px) {
  .hero-inner { flex-direction: column; }
  .hero-badges { flex-direction: row; flex-wrap: wrap; }
}

/* ------------------------------------------
   21. Partner logos banner
   ------------------------------------------ */
.section--partner-logos {
  padding: 0 24px;
  background: #fff;
}

.partner-logos {
  max-width: var(--content-width);
  margin: 0 auto;
}

.partner-logos__placeholder {
  width: 100%;
  height: 148px;
  background: #f1f1f1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  border: 2px dashed #ccc;
}

/* ------------------------------------------
   22. FAQ VIEW ALL button
   ------------------------------------------ */
.faq__footer {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

.faq__view-all:hover { background: #b8001f; }

/* ------------------------------------------
   23. Partner trust image
   ------------------------------------------ */
.section--trust-image {
  padding: 48px 24px;
  background: #fff;
}

.trust-image__placeholder {
  max-width: var(--content-width);
  margin: 0 auto;
  height: 400px;
  background: #f1f1f1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  border: 2px dashed #ccc;
}

/* ------------------------------------------
   24. Callback CTA section
   ------------------------------------------ */
.section--callback {
  padding: 48px 24px 90px;
  background: #fff;
}

.callback-cta {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.callback-cta__text {
  flex: 1;
  min-width: 0;
}

.callback-cta__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-900);
  margin: 0 0 12px;
  line-height: 1.4;
}

.callback-cta__sub {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-900);
  margin: 0;
  line-height: 1.4;
}

.callback-cta__btn {
  padding: 11.5px 36px;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.41);
}
.callback-cta__btn:hover { background: #b8001f; }

@media (max-width: 959px) {
  .callback-cta { flex-direction: column; align-items: flex-start; }
}

/* ------------------------------------------
   25. Comparison Table
   ------------------------------------------ */
.section--comparison-table {
  padding: 48px 24px;
  background: #fff;
}

.comparison-table-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
}

.comparison-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}

.comparison-table__heading {
  font-size: 20px;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 0 24px;
  line-height: 1.4;
}

.comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}

.comparison-table thead tr {
  background: #d4002a;
}

.comparison-table thead th {
  padding: 16px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

.comparison-table thead th:first-child {
  text-align: left;
  width: 55%;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.comparison-table tbody tr:nth-child(odd) {
  background: #fff;
}

.comparison-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: #121212;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  vertical-align: middle;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

.comparison-table tbody td:first-child {
  text-align: left;
  color: #2f2f2f;
}

.comparison-table tbody td img {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}

.comparison-table__footnotes {
  margin-top: 16px;
}

.comparison-table__footnote {
  font-size: 12px;
  color: #636363;
  margin: 4px 0 0;
  line-height: 1.5;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

@media (max-width: 768px) {
  .section--comparison-table {
    padding: 40px 0 40px 16px;
  }
  .comparison-table-wrap {
    padding-right: 0;
  }
  .comparison-table__heading {
    font-size: 18px;
    padding-right: 16px;
    margin-bottom: 16px;
  }
  .comparison-table thead th {
    padding: 12px 10px;
    font-size: 13px;
  }
  .comparison-table thead th:first-child {
    width: 40%;
  }
  .comparison-table tbody td {
    padding: 12px 10px;
    font-size: 13px;
  }
  .comparison-table tbody td img {
    width: 20px;
    height: 20px;
  }
  .comparison-table__footnotes {
    padding-right: 16px;
  }
}

/* ===========================================
   USED CAR SALES PAGE - page-specific styles
   =========================================== */

/* Hero - different background image */
.ucs-hero {
  background-image: url('https://avisassets.abgemea.com/dam/DMS/global/B2B/assets/assets/car-rental-header.jpg');
}

/* Sections on this page get more generous spacing (gap=128 in Figma vs 86) */
.section--ucs-intro,
.section--ucs-experts,
.section--ucs-cta {
  padding: 64px 24px;
}

/* ── Getting started section ── */
.ucs-intro {
  display: flex;
  align-items: center;
  gap: 48px;
}

.ucs-intro__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ucs-intro__heading-group {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ucs-intro__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-900);
  margin: 0;
  line-height: 1.4;
}

.ucs-intro__byline {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-900);
  margin: 0;
  line-height: 1.4;
}

.ucs-intro__body {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-900);
  line-height: 1.6;
  margin: 0;
}

.ucs-intro__img {
  width: 394px;
  flex-shrink: 0;
  border-radius: var(--card-radius);
  object-fit: cover;
  display: block;
}

/* ── Experts section ── */
.ucs-experts {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.ucs-experts__heading {
  font-size: 30px;
  font-weight: 300;
  color: #2f2f2f;
  margin: 0;
  line-height: 1.4;
}

.ucs-experts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
}

.ucs-expert-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ucs-expert-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--card-radius);
  display: block;
}

.ucs-expert-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #636363;
  margin: 0;
  line-height: 1.4;
}

.ucs-expert-card__contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ucs-expert-card__contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ucs-expert-card__contact-text,
.ucs-expert-card__contact a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-900) !important;
  text-decoration: none !important;
  border-bottom: none !important;
  line-height: 1.4;
}
.ucs-expert-card__contact a:hover { color: var(--avis-red) !important; }

/* Section headings left-aligned on UCS */
.ucs-left-heading {
  text-align: left;
}

/* ── CTA bar ── */
.ucs-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ucs-cta__text {
  flex: 1;
  min-width: 0;
}

.ucs-cta__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-900);
  margin: 0 0 12px;
  line-height: 1.4;
}

.ucs-cta__sub {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-900);
  margin: 0;
  line-height: 1.4;
}

/* ── UCS Responsive ── */
@media (max-width: 1100px) {
  .ucs-experts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 959px) {
  .ucs-intro {
    flex-direction: column;
  }
  .ucs-intro__img {
    width: 100%;
    max-height: 320px;
  }
}

@media (max-width: 580px) {
  .section--ucs-intro,
  .section--ucs-experts,
  .section--ucs-cta {
    padding: 40px 16px;
  }
  .ucs-experts__grid {
    grid-template-columns: 1fr;
  }
  .ucs-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .ucs-experts__heading {
    font-size: 24px;
  }
}

/* ===========================================
   FAQ PAGE - page-specific styles
   =========================================== */

/* Hero - image only, no glass card, shorter than other pages */
.faq-hero {
  height: 364px;
  background-image: url('https://avisassets.abgemea.com/dam/DMS/global/B2B/assets/assets/faq-header.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Intro section ── */
.section--faq-intro {
  padding: 48px 24px;
}

.faq-intro {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
}

.faq-intro__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.faq-intro__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-900);
  margin: 0;
  line-height: 1.4;
}

.faq-intro__subtitle {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-900);
  margin: 0;
  line-height: 1.4;
}

.faq-intro__body {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-900);
  margin: 0;
  line-height: 1.5;
}

.faq-intro__cta {
  flex-shrink: 0;
}

/* ── FAQ questions section ── */
.section--faq-questions {
  padding: 0 24px 64px;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Search bar */
.faq-search {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.faq-search__input {
  width: 100%;
  height: 56px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 12px 48px 12px 24px;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-900);
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  box-sizing: border-box;
  outline: none;
  box-shadow: var(--card-shadow);
}

.faq-search__input::placeholder {
  color: #b3b3b3;
}

.faq-search__input:focus {
  border-color: var(--avis-red);
}

.faq-search__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* ── Bottom CTA section ── */
.section--faq-cta {
  padding: 48px 24px;
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.faq-cta__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.faq-cta__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-900);
  margin: 0;
  line-height: 1.4;
}

.faq-cta__subtitle {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-900);
  margin: 0;
  line-height: 1.4;
}

.faq-cta__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 4px;
}

.faq-cta__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-900);
}

.faq-cta__contact-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-cta__contact-item a {
  color: var(--text-900) !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

.faq-cta__action {
  flex-shrink: 0;
}

/* ── FAQ Responsive ── */
@media (max-width: 959px) {
  .faq-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

@media (max-width: 580px) {
  .faq-hero {
    height: 220px;
  }
  .faq-intro__title,
  .faq-cta__title {
    font-size: 20px;
  }
  .faq-intro__subtitle,
  .faq-cta__subtitle {
    font-size: 18px;
  }
  .faq-search__input {
    font-size: 16px;
    height: 48px;
  }
  .faq-cta__contacts {
    flex-direction: column;
    gap: 12px;
  }
}

/* ── Inline links inside answers ── */
.accordion__item__content a {
  color: var(--avis-red) !important;
  text-decoration: underline !important;
  border-bottom: none !important;
}
.accordion__item__content a:hover {
  color: #b8001f !important;
}

/* ── Search: reveal & expand matching items while a query is active ── */
.accordion.is-searching .accordion__item__content {
  display: block !important;
}
.accordion.is-searching .accordion__item__heading::after {
  background-image: url('https://avisassets.abgemea.com/dam/DMS/global/B2B/assets/assets/minus.svg') !important;
}
.accordion__item[hidden] {
  display: none !important;
}

.faq-no-results {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-900);
  text-align: center;
  padding: 24px 0 8px;
  margin: 0;
}

/* ── Support numbers block ── */
.section--faq-support {
  padding: 0 24px 64px;
}

.faq-support {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 40px;
}

.faq-support__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-900);
  margin: 0 0 8px;
  line-height: 1.4;
}

.faq-support__note {
  font-size: 16px;
  font-weight: 300;
  color: #555;
  margin: 0 0 28px;
  line-height: 1.5;
}

.faq-support__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
}

.faq-support__subhead {
  grid-column: 1 / -1;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-900);
  margin: 8px 0 0;
  line-height: 1.4;
}

.faq-support__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-support__label {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-900);
  line-height: 1.4;
}

.faq-support__hours {
  display: inline-block;
  font-weight: 300;
  font-size: 15px;
  color: #777;
  margin-left: 8px;
}

.faq-support__value {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-900);
}

.faq-support__value a {
  color: var(--avis-red) !important;
  text-decoration: none !important;
  border-bottom: none !important;
}
.faq-support__value a:hover {
  text-decoration: underline !important;
}

.faq-support__address {
  font-size: 16px;
  font-weight: 300;
  color: #555;
  margin: 28px 0 0;
}

@media (max-width: 700px) {
  .faq-support {
    padding: 28px 20px;
  }
  .faq-support__grid {
    grid-template-columns: 1fr;
  }
  .faq-support__hours {
    display: block;
    margin-left: 0;
  }
}

/* ===========================================
   CALLBACK PAGE - page-specific styles
   =========================================== */

/* Hero banner - red bg + optional background image */
.cb-hero {
  background-image: url('https://avisassets.abgemea.com/dam/DMS/global/B2B/assets/assets/business-rentals-callback.jpg');
  background-size: cover;
  background-position: center;
  min-height: 364px;
  display: flex;
  align-items: center;
}

.cb-hero__inner {
  display: flex;
  align-items: center;
  padding: 48px 24px;
}

.callback.cb-hero__title {
  text-transform: none;
}

.cb-hero__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

/* Form section */
.section--callback-form {
  padding: 48px 24px 64px;
}

.cb-form-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.cb-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.cb-form__section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cb-form__section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cb-form__section-title {
  font-size: 20px;
  font-weight: 400;
  color: #2f2f2f;
  margin: 0;
  line-height: 1.5;
}

.cb-form__section-desc {
  font-size: 14px;
  font-weight: 400;
  color: #626262;
  margin: 0;
}

.cb-form__fields {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Two-column name row */
.cb-form__row {
  display: flex;
  gap: 25px;
}

.cb-form__row .cb-form__field {
  flex: 1;
  min-width: 0;
}

.cb-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cb-form__label {
  font-size: 14px;
  font-weight: 400;
  color: #121212;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

.cb-form__optional {
  color: #626262;
  font-weight: 400;
}

.cb-form__input {
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  color: #111827;
  background: #fff;
  box-shadow: 0 4px 0 0 #F7F7F7 inset;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cb-form__input:focus {
  border-color: var(--avis-red);
  box-shadow: 0 4px 0 0 #F7F7F7 inset, 0 0 0 2px rgba(212, 0, 42, 0.12);
}

.cb-form__input::placeholder {
  color: #b0b5bc;
  font-style: italic;
}

/* Phone field row - position:relative anchors dropdown */
.cb-form__field--phone { position: relative; }

.cb-form__phone-row { position: relative; }

/* Visible input line: grey box + white area */
.cb-form__phone-wrap {
  display: flex;
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 0 0 #F7F7F7 inset;
}

.cb-form__phone-wrap:focus-within {
  border-color: var(--avis-red);
  box-shadow: 0 4px 0 0 #F7F7F7 inset, 0 0 0 2px rgba(212, 0, 42, 0.12);
}

/* Grey box: flag + chevron only, 68px wide (Figma spec) */
.cb-cpicker__trigger {
  width: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #f1f1f1;
  border: none;
  border-right: 1px solid #d1d5db;
  cursor: pointer;
  height: 100%;
  padding: 0 8px;
}

.cb-cpicker__trigger:focus-visible {
  outline: 2px solid var(--avis-red);
  outline-offset: -2px;
}

.cb-cpicker__flag { font-size: 20px; line-height: 1; }

.cb-cpicker__chevron {
  flex-shrink: 0;
  transition: transform 0.18s ease;
  color: #888;
}

.cb-cpicker__trigger[aria-expanded="true"] .cb-cpicker__chevron {
  transform: rotate(180deg);
}

/* White input area: code prefix + phone number */
.cb-form__phone-input-area {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 12px;
  gap: 8px;
  background: #fff;
  min-width: 0;
}

.cb-form__phone-prefix {
  font-size: 14px;
  font-weight: 400;
  color: #121212;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.cb-form__input--phone {
  border: none;
  background: transparent;
  height: 100%;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  color: #111827;
  padding: 0;
  outline: none;
  box-shadow: none !important;
}

.cb-form__input--phone::placeholder { color: #b0b5bc; font-style: italic; }
.cb-form__input--phone:focus { border: none; box-shadow: none; outline: none; }

/* Dropdown: anchors to .cb-form__phone-row, opens BELOW the phone-wrap */
.cb-cpicker__list {
  display: none;
  position: absolute;
  top: calc(44px + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  min-width: 230px;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.cb-cpicker__list--open { display: block; }

.cb-cpicker__list [role="option"] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #121212;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  outline: none;
  transition: background 0.1s;
}

.cb-cpicker__list [role="option"]:hover,
.cb-cpicker__list [role="option"]:focus { background: #f5f5f5; }
.cb-cpicker__list [role="option"][aria-selected="true"] { background: #fff5f6; }

.cb-cpicker__opt-flag { font-size: 18px; line-height: 1; flex-shrink: 0; width: 24px; }
.cb-cpicker__opt-code { font-weight: 600; color: #2f2f2f; min-width: 44px; font-size: 14px; }
.cb-cpicker__opt-name { color: #646464; font-size: 14px; }

.cb-form__helper {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

.cb-form__select {
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 36px 0 12px;
  font-size: 14px;
  line-height: 44px;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  color: #111827;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cb-form__select:focus {
  border-color: var(--avis-red);
  box-shadow: 0 0 0 2px rgba(212, 0, 42, 0.12);
}
.cb-form__select:required:invalid { color: #b0b5bc; font-style: italic; }
.cb-form__select option { color: #111827; font-style: normal; }

.cb-form__textarea {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 12px;
  font-size: 14px;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  color: #111827;
  background: #fff;
  box-shadow: 0 4px 0 0 #F7F7F7 inset;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  resize: vertical;
  min-height: 96px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cb-form__textarea:focus {
  border-color: var(--avis-red);
  box-shadow: 0 4px 0 0 #F7F7F7 inset, 0 0 0 2px rgba(212, 0, 42, 0.12);
}
.cb-form__textarea::placeholder { color: #b0b5bc; font-style: italic; }

.cb-form__success {
  text-align: center;
  padding: 64px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.cb-form__success h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 16px;
}
.cb-form__success p {
  font-size: 16px;
  color: var(--text-500);
  line-height: 1.6;
  margin: 0;
}

.cb-form__submit-wrap {
  padding-top: 8px;
}

.cb-form__submit {
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

/* ── Callback Responsive ── */
@media (max-width: 768px) {
  .cb-hero__title {
    font-size: 24px;
  }
  .cb-hero {
    min-height: 200px;
  }
  .cb-hero__inner {
    align-items: flex-start;
    gap: 12px;
    padding: 36px 16px;
  }
}

@media (max-width: 580px) {
  .section--callback-form {
    padding: 32px 16px 48px;
  }
  .cb-form__row {
    flex-direction: column;
    gap: 25px;
  }
  .cb-hero__title {
    font-size: 20px;
  }
  .cb-form__submit {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   SEARCH BAR - dark booking bar above partner logos
   ============================================ */
:root { --search-bar-bg: #1a1a1a; }

.section--search-bar {
  background: var(--search-bar-bg);
  padding-top: 30px;
  padding-bottom: 0;
  margin-bottom: 45px;
  margin-top: 45px;
}

.search-bar {
  position: relative;
  color: #fff;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
}

/* ── Tab navigation ── */
.search-bar__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.search-bar__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 0 4px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
}
.search-bar__tab:hover { border-bottom-color: rgba(255, 255, 255, 0.45); }
.search-bar__tab--active { border-bottom-color: #fff; }
.search-bar__chev { width: 13px; height: 13px; flex-shrink: 0; }

/* ── Main row: location + date / time ── */
.search-bar__main {
  display: flex;
  align-items: stretch;
  gap: 28px;
}

.search-bar__location {
  flex: 1 1 46%;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  padding: 0 18px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
}
.search-bar__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 17px;
  color: var(--text-900);
}
.search-bar__input::placeholder { color: var(--text-500); opacity: 1; }
.search-bar__locate {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  color: var(--avis-red);
  cursor: pointer;
}
.search-bar__locate svg { width: 22px; height: 22px; }

.search-bar__dates {
  flex: 1 1 54%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.search-bar__date,
.search-bar__time {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  border: none;
  border-radius: 6px;
  background: none;
  color: #fff;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.search-bar__date { gap: 9px; }
.search-bar__date:hover,
.search-bar__time:hover { background: rgba(255, 255, 255, 0.08); }
.search-bar__date[aria-expanded="true"],
.search-bar__time[aria-expanded="true"] { background: rgba(255, 255, 255, 0.16); }

.search-bar__day {
  font-size: 38px;
  font-weight: 700;
  line-height: 0.92;
}
.search-bar__datemeta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.15;
}
.search-bar__dow,
.search-bar__month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.search-bar__time {
  align-items: flex-start;
  font-size: 32px;
  font-weight: 700;
}
.search-bar__time-min {
  font-size: 16px;
  font-weight: 700;
  margin-top: 1px;
}

.search-bar__until {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* ── Options row ── */
.search-bar__options {
  display: flex;
  align-items: stretch;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.search-bar__opts {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 16px 28px 16px 4px;
}
.search-bar__opt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}
.search-bar__checkbox {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 auto;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  background: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
.search-bar__checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--avis-red);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.search-bar__awd {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}
.search-bar__awd:hover { text-decoration: underline; }
.search-bar__rental {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.search-bar__submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 250px;
  padding: 0 30px;
  border: none;
  border-radius: 0;
  background: var(--avis-red);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
}
.search-bar__submit:hover { background: #b8001f; }
.search-bar__submit .search-bar__chev { width: 15px; height: 15px; }

/* ── Popovers (calendar + time) ── */
.search-bar__popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  background: #fff;
  color: var(--text-900);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 16px;
  max-width: calc(100vw - 32px);
}
.search-bar__popover[hidden] { display: none; }

/* Calendar */
.sb-cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.sb-cal__title {
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-900);
}
.sb-cal__nav {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: #fff;
  color: var(--text-700);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.sb-cal__nav:hover:not(:disabled) { border-color: var(--text-300); }
.sb-cal__nav:disabled { opacity: 0.35; cursor: default; }
.sb-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 36px);
  gap: 2px;
}
.sb-cal__dow {
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-300);
}
.sb-cal__day {
  height: 36px;
  width: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  font-size: 13px;
  color: var(--text-900);
  cursor: pointer;
}
.sb-cal__day:hover:not(:disabled):not(.sb-cal__day--selected) { background: var(--bg-light); }
.sb-cal__day--selected { background: var(--avis-red); color: #fff; }
.sb-cal__day:disabled { color: rgba(100, 100, 100, 0.3); cursor: default; }

/* Time */
.sb-time { display: flex; gap: 10px; }
.sb-time__col {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 64px;
  max-height: 196px;
  overflow-y: auto;
  border: 1px solid var(--border-light);
  border-radius: 8px;
}
.sb-time__opt {
  flex: 0 0 auto;
  padding: 9px 0;
  border: none;
  background: transparent;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  font-size: 14px;
  color: var(--text-900);
  text-align: center;
  cursor: pointer;
}
.sb-time__opt:hover:not(.sb-time__opt--selected) { background: var(--bg-light); }
.sb-time__opt--selected { background: var(--avis-red); color: #fff; }
.sb-time__footer { margin-top: 12px; text-align: right; }
.sb-time__done {
  border: none;
  background: transparent;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--avis-red);
  cursor: pointer;
}
.sb-time__done:hover { text-decoration: underline; }

/* Responsive - stack on narrow screens */
@media (max-width: 980px) {
  .search-bar__tabs { justify-content: flex-start; gap: 12px 18px; }
  .search-bar__tab { font-size: 12px; }
  .search-bar__main { flex-direction: column; gap: 16px; }
  .search-bar__location { flex: 1 1 auto; }
  .search-bar__dates { flex: 1 1 auto; flex-wrap: wrap; justify-content: flex-start; gap: 14px 22px; }
  .search-bar__options { flex-direction: column; align-items: stretch; }
  .search-bar__opts { justify-content: flex-start; padding: 16px 0; }
  .search-bar__submit { width: 100%; min-width: 0; height: 52px; }
  .section--search-bar { padding-bottom: 24px; }
}
