:root {
  --ink: #071a33;
  --muted: #5c6a7c;
  --quiet: #f4f7fb;
  --line: #d9e2ee;
  --brand: #1269c7;
  --brand-dark: #071f41;
  --accent: #3b93e8;
  --error: #b91c1c;
  --success: #15803d;
  --surface: #ffffff;
  --shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.topline {
  background: var(--ink);
  color: #fff;
  font-size: 0.88rem;
}

.topline-inner,
.nav-inner,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topline-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.topline a {
  color: #fff;
  text-decoration: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand.has-logo {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-logo-img {
  width: clamp(140px, 12vw, 180px);
  height: auto;
  max-height: 84px;
  object-fit: contain;
  flex: 0 0 auto;
}

.text-logo-fallback {
  color: var(--brand-dark);
  font-size: 1.05rem;
  font-weight: 850;
  white-space: nowrap;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}

.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary,
button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button.ghost {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.hero {
  background:
    linear-gradient(135deg, rgba(7, 31, 65, 0.12), rgba(18, 105, 199, 0.09)),
    var(--quiet);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: min(68vh, 660px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
  padding: 54px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4.6rem);
  max-width: 780px;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 690px;
}

.hero-actions,
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.media-placeholder {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.06) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(135deg, transparent 75%, rgba(17, 24, 39, 0.06) 75%) 0 0 / 24px 24px,
    #eef2f6;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

.media-placeholder.has-media {
  padding: 0;
  overflow: hidden;
  background: #eef2f6;
}

.media-placeholder.has-media img,
.media-placeholder.has-media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.band {
  padding: 64px 0;
}

.band.alt {
  background: var(--quiet);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  max-width: 660px;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 750;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.notice,
.status {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--quiet);
  padding: 14px 16px;
  color: var(--muted);
}

.status.success {
  border-color: rgba(21, 128, 61, 0.3);
  background: rgba(21, 128, 61, 0.08);
  color: var(--success);
}

.status.error {
  border-color: rgba(185, 28, 28, 0.28);
  background: rgba(185, 28, 28, 0.08);
  color: var(--error);
}

.fleet-grid,
.car-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.car-card {
  overflow: hidden;
  padding: 0;
}

.car-card-body {
  padding: 18px;
}

.car-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--quiet);
  border-bottom: 1px solid var(--line);
}

.car-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.car-specs,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0;
  list-style: none;
}

.car-specs li,
.check-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--muted);
  font-size: 0.84rem;
}

.fleet-groups {
  display: grid;
  gap: 34px;
}

.fleet-group {
  display: grid;
  gap: 14px;
}

.fleet-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.fleet-group-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.or-similar-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--badge-color, #071f41);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 6px 18px rgba(7, 31, 65, 0.18);
}

.car-spec-icons li,
.booking-car-specs .car-spec-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.car-spec-icons svg,
.booking-car-specs svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price {
  font-size: 1.35rem;
  font-weight: 850;
}

.option-list {
  display: grid;
  gap: 10px;
}

.booking-search-card {
  box-shadow: none;
}

.booking-search-card.is-compact {
  padding: 18px;
}

.option {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
}

.option label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.option input {
  width: auto;
  min-height: auto;
}

.insurance-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.insurance-package-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 100%;
  border: 1.5px solid #d6e2f0;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.insurance-package-card:hover {
  border-color: #93b8e6;
  transform: translateY(-1px);
}

.insurance-package-card.selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(18, 105, 199, 0.14);
}

.insurance-package-card input[type="radio"] {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  min-height: 18px;
  accent-color: var(--brand);
}

.package-topline,
.package-description,
.package-price,
.package-benefits,
.package-benefits span {
  display: block;
}

.package-topline {
  padding-right: 28px;
}

.package-topline strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.package-topline em {
  display: inline-flex;
  width: max-content;
  margin-top: 7px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e8f3ff;
  color: #0d57a8;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.package-description {
  color: var(--muted);
  min-height: 42px;
  font-size: 0.92rem;
}

.package-price {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--brand-dark);
  font-size: 1.18rem;
  font-weight: 850;
}

.package-price small {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.package-benefits {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
}

.package-benefits span {
  padding-left: 20px;
  position: relative;
  line-height: 1.35;
}

.package-benefits span::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.package-benefits .included::before {
  content: "+";
  color: var(--success);
}

.package-benefits .excluded::before {
  content: "-";
  color: var(--error);
}

.summary-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--quiet);
  padding: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
}

.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.2rem;
  font-weight: 850;
}

.legal {
  max-width: 880px;
}

.legal-document {
  background: #f6f8fb;
}

.legal h1 {
  margin-bottom: 14px;
}

.legal-intro {
  max-width: 720px;
  margin: 0 0 30px;
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.75;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid #dbe4ef;
}

.legal h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.28;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  overflow-wrap: break-word;
}

.legal p {
  margin: 0 0 14px;
}

.legal ul {
  margin: 0 0 14px;
  padding-left: 1.35rem;
}

.legal li + li {
  margin-top: 9px;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 42px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.site-footer a {
  color: #fff;
}

.footer-logo-img {
  display: block;
  width: 150px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fineprint {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

@media (max-width: 860px) {
  .topline-inner,
  .nav-inner,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-inner,
  .grid,
  .grid.two,
  .fleet-grid,
  .car-results,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 44px 0;
  }

  .media-placeholder {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .topline-inner,
  .nav-inner,
  .container,
  .hero-inner {
    width: min(100% - 24px, 1120px);
  }

  .nav-links {
    width: 100%;
    gap: 12px;
  }

  .nav-links .button {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Athens Go Cars homepage */
.home-page {
  background: #ffffff;
  color: #071a33;
}

.home-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-header {
  position: absolute;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dce6f2;
  backdrop-filter: blur(14px);
}

.home-topbar {
  background: #071f41;
  color: #ffffff;
  font-size: 0.88rem;
}

.home-topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.home-topbar a,
.home-footer a {
  color: inherit;
  text-decoration: none;
}

.home-nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.home-logo-img {
  width: clamp(150px, 12vw, 190px);
  height: auto;
  max-height: 88px;
  object-fit: contain;
}

.home-brand-copy {
  display: none;
  flex-direction: column;
}

.home-brand-name {
  color: #071f41;
  font-size: 1.12rem;
  font-weight: 850;
}

.home-brand-sub {
  color: #627187;
  font-size: 0.8rem;
}

.home-nav-links,
.home-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-nav-links a,
.home-phone {
  color: #071a33;
  font-weight: 700;
  text-decoration: none;
}

.home-phone {
  border: 1px solid #b9cbe2;
  border-radius: 6px;
  padding: 9px 12px;
}

.home-page .button,
.home-page button {
  background: #1269c7;
  border-color: #1269c7;
  color: #ffffff;
}

.home-page .button:hover,
.home-page button:hover {
  background: #0d57a8;
}

.home-page .button.secondary {
  background: #ffffff;
  border-color: #b9cbe2;
  color: #071f41;
}

.home-page .button.secondary:hover {
  background: #eef5ff;
}

.home-hero {
  position: relative;
  background: #071f41;
  color: #ffffff;
  overflow: hidden;
}

.home-hero-bg,
.home-hero-bg-slide {
  position: absolute;
  inset: 0;
}

.home-hero-bg {
  z-index: 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(74, 146, 220, 0.28), transparent 34%),
    linear-gradient(120deg, #041124, #092a55 54%, #0e61b7);
}

.home-hero-bg-slide {
  display: grid;
  place-items: end start;
  padding: 32px;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 35, 0.9), rgba(7, 31, 65, 0.68)),
    radial-gradient(circle at 78% 20%, rgba(158, 208, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #041124, #0a376f);
  background-size: cover;
  background-position: center;
  transition: opacity 1.1s ease;
}

.home-hero-bg-slide.is-active {
  opacity: 1;
}

.home-hero-bg-slide span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
  font-weight: 750;
}

.home-hero-bg-slide.has-image span {
  display: none;
}

.home-hero-bg.has-dashboard-media {
  background: #071f41;
}

.home-hero-bg.has-dashboard-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 16, 35, 0.88), rgba(7, 31, 65, 0.58));
  pointer-events: none;
}

.site-hero-video,
.site-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  min-height: min(760px, calc(100vh - 88px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) 0;
}

.home-hero .eyebrow,
.home-band-blue .eyebrow,
.home-cta .eyebrow {
  color: #9ed0ff;
}

.home-hero h1 {
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
}

.home-hero .lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  max-width: 620px;
}

.home-hero-trust,
.home-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.home-hero-trust div,
.home-check-list li {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(3, 12, 27, 0.36);
  color: #ffffff;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-hero-trust strong,
.home-hero-trust span {
  display: block;
}

.home-hero-trust span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
}

.home-media-frame {
  min-height: 320px;
  border: 1px solid #cddaea;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 105, 199, 0.08) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(135deg, transparent 75%, rgba(7, 31, 65, 0.06) 75%) 0 0 / 24px 24px,
    #edf4fb;
  display: grid;
  place-items: center;
  color: #607086;
  font-weight: 800;
  text-align: center;
  overflow: hidden;
}

.home-hero-image {
  max-width: 680px;
  margin-top: 28px;
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(135deg, transparent 75%, rgba(255, 255, 255, 0.11) 75%) 0 0 / 24px 24px,
    rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.home-media-frame.has-image {
  background: #edf4fb;
}

.home-media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.home-booking-card {
  background: #ffffff;
  color: #071a33;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(3, 12, 27, 0.35);
  padding: clamp(20px, 3vw, 30px);
}

.home-card-head h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.home-card-head p:last-child,
.home-booking-note {
  color: #5c6a7c;
}

.home-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.home-booking-card label {
  color: #071f41;
}

.home-booking-card input,
.home-booking-card select {
  min-height: 48px;
  border-color: #cbd8e8;
  background: #f9fbfe;
}

.home-search-button {
  width: 100%;
  min-height: 52px;
}

.home-search-status {
  margin: 0 0 14px;
}

.home-booking-note {
  margin: 12px 0 0;
  font-size: 0.88rem;
}

.home-trust-strip {
  background: #ffffff;
  border-bottom: 1px solid #dce6f2;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #dce6f2;
}

.home-trust-grid div {
  background: #ffffff;
  padding: 20px 16px;
}

.home-trust-grid strong {
  display: block;
  color: #071f41;
  font-size: 1rem;
  line-height: 1;
}

.home-trust-grid span {
  color: #5c6a7c;
  font-size: 0.9rem;
}

.home-band {
  padding: 72px 0;
}

.home-band-blue {
  background: #edf4fb;
}

.home-offer {
  background: #f7fbff;
  border-bottom: 1px solid #dce6f2;
}

.home-offer-grid,
.home-section-head,
.home-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
}

.home-offer-grid p,
.home-section-head p,
.home-cta-inner p {
  max-width: 680px;
  color: #5c6a7c;
}

.home-offer-terms {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-section-head {
  margin-bottom: 26px;
}

.home-status {
  border: 1px solid #cbd8e8;
  border-radius: 8px;
  background: #f7fbff;
  color: #5c6a7c;
  padding: 15px 16px;
}

.home-status.error {
  border-color: rgba(185, 28, 28, 0.28);
  background: rgba(185, 28, 28, 0.08);
  color: #b91c1c;
}

.home-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-car-card {
  border: 1px solid #dce6f2;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(7, 31, 65, 0.08);
}

.home-car-media {
  aspect-ratio: 16 / 10;
  background: #edf4fb;
}

.home-car-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-car-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 16px;
  color: #607086;
  font-weight: 800;
  text-align: center;
}

.home-car-body {
  padding: 18px;
}

.home-car-body p {
  margin: 0 0 6px;
  color: #1269c7;
  font-weight: 800;
}

.home-car-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0;
  list-style: none;
}

.home-car-body li {
  border: 1px solid #dce6f2;
  border-radius: 999px;
  color: #5c6a7c;
  padding: 5px 9px;
  font-size: 0.84rem;
}

.home-car-body strong {
  display: block;
  margin-bottom: 14px;
  color: #071f41;
  font-size: 1.08rem;
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.home-split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.home-split p {
  color: #5c6a7c;
  max-width: 690px;
}

.home-band-blue .home-check-list li {
  border-color: #bfd0e5;
  background: #ffffff;
  color: #071f41;
}

.home-feature-grid,
.home-process-grid,
.home-terms-grid,
.home-faq-grid {
  display: grid;
  gap: 18px;
}

.home-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-feature-grid article,
.home-process-grid article,
.home-terms-grid div,
.home-faq-grid details {
  border: 1px solid #dce6f2;
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
}

.home-feature-grid p,
.home-process-grid p,
.home-terms-grid span,
.home-faq-grid p {
  color: #5c6a7c;
}

.home-terms-band {
  background: #f8fbff;
}

.home-terms-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.home-terms-grid strong,
.home-terms-grid span {
  display: block;
}

.home-process {
  background: #071f41;
  color: #ffffff;
}

.home-process .eyebrow {
  color: #9ed0ff;
}

.home-process .home-section-head p,
.home-process-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.home-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-process-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.home-process-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #9ed0ff;
  color: #071f41;
  font-weight: 850;
  margin-bottom: 16px;
}

.home-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-faq-grid summary {
  cursor: pointer;
  color: #071f41;
  font-weight: 850;
}

.home-faq-grid details p {
  margin-bottom: 0;
}

.home-cta {
  background: linear-gradient(135deg, #0a376f, #1269c7);
  color: #ffffff;
  padding: 54px 0;
}

.home-cta-inner {
  align-items: center;
}

.home-cta h2 {
  color: #ffffff;
}

.home-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.home-footer {
  background: #06172d;
  color: #ffffff;
  padding: 48px 0 26px;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 28px;
}

.home-footer p,
.home-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.home-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-footer li + li {
  margin-top: 7px;
}

.home-fineprint {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.home-fineprint a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-bg-slide {
    transition: none;
  }
}

@media (max-width: 980px) {
  .home-nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .home-nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .home-hero-grid,
  .home-split,
  .home-split.reverse,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    min-height: auto;
  }

  .home-fleet-grid,
  .home-feature-grid,
  .home-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insurance-package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .home-shell {
    width: min(100% - 24px, 1180px);
  }

  .home-topbar-inner,
  .home-offer-grid,
  .home-section-head,
  .home-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-topbar-inner {
    gap: 4px;
  }

  .home-nav-actions {
    width: 100%;
  }

  .home-nav-actions .button,
  .home-phone,
  .home-cta .button {
    width: 100%;
  }

  .home-booking-grid,
  .home-fleet-grid,
  .home-feature-grid,
  .home-process-grid,
  .home-terms-grid,
  .home-faq-grid,
  .home-trust-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    padding: 20px 0 28px;
    gap: 18px;
  }

  .home-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.3rem);
  }

  .home-hero .lead {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .home-booking-card {
    padding: 18px;
  }

  .home-card-head h2 {
    font-size: 1.45rem;
  }

  .home-booking-grid {
    margin: 14px 0;
  }

  .home-logo-img,
  .brand-logo-img {
    width: 112px;
  }

  .home-band {
    padding: 52px 0;
  }

  .home-media-frame {
    min-height: 240px;
  }
}

/* Public header, footer, and booking flow */
.site-header .nav-toggle,
.home-header .home-nav-toggle {
  display: none;
}

@media (min-width: 761px) {
  .site-header .nav-toggle,
  .home-header .home-nav-toggle {
    display: none !important;
  }

  .site-header .nav-links,
  .home-header .home-nav-links {
    display: flex !important;
    position: static;
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

.header-call {
  min-height: 40px;
  padding-inline: 14px;
}

.site-footer li + li,
.home-footer li + li {
  margin-top: 7px;
}

.fineprint a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.booking-page {
  background: #f5f8fc;
}

.booking-hero {
  background: #071f41;
  color: #ffffff;
  border-bottom: 1px solid #d9e2ee;
}

.booking-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 28px;
  align-items: end;
  padding: 34px 0;
}

.booking-hero .eyebrow {
  color: #9ed0ff;
}

.booking-hero h1 {
  max-width: 720px;
  font-size: 2.45rem;
}

.booking-hero p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

.booking-workspace {
  padding: 28px 0 56px;
}

.search-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #cddced;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(7, 31, 65, 0.06);
}

#search-summary-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

#search-summary-lines span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 9px;
  border: 1px solid #d9e2ee;
  border-radius: 6px;
  background: #f7faff;
  color: #34445a;
  font-size: 0.9rem;
}

.search-panel {
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  background: #ffffff;
}

.search-panel.is-collapsed {
  display: none;
}

.booking-search-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.booking-search-form label,
.booking-details-form label {
  display: block;
  margin-bottom: 5px;
  color: #34445a;
  font-size: 0.86rem;
  font-weight: 750;
}

.booking-search-form input,
.booking-search-form select,
.booking-details-form input,
.booking-details-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #cddced;
  border-radius: 6px;
  background: #ffffff;
  color: #071a33;
  font: inherit;
}

.booking-details-form textarea {
  min-height: 106px;
  resize: vertical;
}

.intl-phone {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: 100%;
}

.intl-phone .intl-phone-button {
  width: auto;
  min-width: 86px;
  min-height: 44px;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid #cddced;
  border-right: 0;
  border-radius: 6px 0 0 6px;
  background: #f7faff;
  color: #071a33;
  font-weight: 750;
  white-space: nowrap;
}

.intl-phone .intl-phone-button::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid #34445a;
}

.phone-country-flag-wrap {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  height: 16px;
  color: #34445a;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
}

.phone-country-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(7, 31, 65, 0.12);
}

.phone-country-code-fallback {
  letter-spacing: 0;
}

.intl-phone .intl-phone-button:focus-visible,
.intl-phone .intl-phone-input:focus-visible,
.intl-phone .intl-phone-search:focus-visible,
.intl-phone .intl-phone-option:focus-visible {
  outline: 3px solid rgba(18, 105, 199, 0.28);
  outline-offset: 2px;
}

.intl-phone .intl-phone-input,
.booking-details-form .intl-phone .intl-phone-input {
  min-width: 0;
  border-radius: 0 6px 6px 0;
}

.intl-phone .intl-phone-input[aria-invalid="true"] {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.intl-phone-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 60;
  width: min(360px, calc(100vw - 32px));
  max-height: 320px;
  overflow: hidden;
  border: 1px solid #b9cbe2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 31, 65, 0.18);
  padding: 8px;
}

.intl-phone-dropdown.open-above {
  top: auto;
  bottom: calc(100% + 6px);
}

.intl-phone-search {
  margin-bottom: 8px;
}

.intl-phone-options {
  max-height: 252px;
  overflow: auto;
  overscroll-behavior: contain;
}

.intl-phone .intl-phone-option {
  width: 100%;
  min-height: 44px;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #071a33;
  font-weight: 650;
  text-align: left;
}

.intl-phone .intl-phone-option:hover,
.intl-phone .intl-phone-option[aria-selected="true"] {
  background: #eef5ff;
}

.intl-phone-option-label {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.intl-phone-option-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intl-phone-empty,
.field-error {
  font-size: 0.84rem;
}

.intl-phone-empty {
  padding: 10px;
  color: #5c6a7c;
}

.field-error {
  margin-top: 6px;
  color: #b91c1c;
}

.booking-search-action {
  display: flex;
}

.booking-search-action button {
  width: 100%;
}

.booking-status {
  margin: 12px 0;
}

.booking-progress {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 16px;
  scrollbar-width: thin;
}

.booking-progress button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #cddced;
  background: #ffffff;
  color: #34445a;
  border-radius: 999px;
  font-weight: 800;
}

.booking-progress button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eaf2fb;
  color: #1269c7;
}

.booking-progress button.is-active {
  border-color: #1269c7;
  background: #1269c7;
  color: #ffffff;
}

.booking-progress button.is-active span {
  background: #ffffff;
  color: #1269c7;
}

.booking-progress button.is-complete {
  border-color: #15803d;
  color: #0f6a32;
}

.booking-progress button:disabled {
  opacity: 0.58;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.booking-main,
.booking-step,
.booking-summary {
  min-width: 0;
}

.booking-step {
  display: none;
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
}

.booking-step.is-active {
  display: block;
}

.booking-step-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5edf6;
}

.booking-step-head h2 {
  font-size: 1.55rem;
  margin-bottom: 0;
}

.booking-step-head p:last-child {
  max-width: 340px;
  margin: 0;
  color: #5c6a7c;
}

.booking-car-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-car-card {
  overflow: hidden;
  border: 1.5px solid #d9e2ee;
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.booking-car-card.is-selected {
  border-color: #1269c7;
  box-shadow: 0 0 0 3px rgba(18, 105, 199, 0.14);
}

.booking-car-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #eef4fb;
  border-bottom: 1px solid #e5edf6;
}

.booking-car-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(7, 31, 65, 0.06) 25%, transparent 25%) 0 0 / 22px 22px,
    linear-gradient(135deg, transparent 75%, rgba(7, 31, 65, 0.06) 75%) 0 0 / 22px 22px,
    #eef4fb;
  color: #5c6a7c;
  font-weight: 750;
  text-align: center;
}

.booking-car-body {
  display: grid;
  gap: 12px;
  padding: 15px;
}

.booking-car-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.booking-car-title h3 {
  margin-bottom: 3px;
}

.booking-car-title p {
  margin: 0;
  color: #5c6a7c;
}

.booking-selected-badge {
  align-self: start;
  border-radius: 999px;
  padding: 4px 8px;
  background: #e7f7ed;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.booking-car-specs > .car-spec-icon {
  border: 1px solid #d9e2ee;
  border-radius: 999px;
  padding: 4px 8px;
  color: #435369;
  font-size: 0.84rem;
}

.booking-car-price strong {
  display: block;
  color: #071f41;
  font-size: 1.32rem;
}

.booking-car-price span {
  color: #5c6a7c;
  font-size: 0.92rem;
}

.booking-insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.booking-insurance-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  border: 1.5px solid #d9e2ee;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.booking-insurance-card.is-selected {
  border-color: #1269c7;
  box-shadow: 0 0 0 3px rgba(18, 105, 199, 0.14);
}

.booking-insurance-card input {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  min-height: 18px;
  accent-color: #1269c7;
}

.insurance-card-top,
.insurance-description,
.insurance-price,
.insurance-benefits,
.insurance-benefits span {
  display: block;
}

.insurance-card-top {
  padding-right: 28px;
}

.insurance-card-top strong {
  display: block;
  color: #071f41;
  font-size: 1.08rem;
}

.insurance-card-top em {
  display: inline-flex;
  margin-top: 7px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e8f3ff;
  color: #0d57a8;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
}

.insurance-description {
  color: #5c6a7c;
  min-height: 38px;
}

.insurance-price strong {
  color: #071f41;
}

.insurance-price small {
  display: block;
  color: #5c6a7c;
}

.insurance-benefits {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
}

.insurance-benefits .included {
  color: #0f6a32;
}

.insurance-benefits .excluded {
  color: #8f1d1d;
}

.booking-extras-list {
  display: grid;
  gap: 10px;
}

.booking-extra-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) minmax(150px, auto) auto minmax(88px, auto);
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1.5px solid #d9e2ee;
  border-radius: 8px;
  background: #ffffff;
}

.booking-extra-row.is-selected {
  border-color: #1269c7;
  background: #f4f9ff;
}

.extra-row-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  background: #eef6ff;
  color: #1269c7;
  font-weight: 850;
}

.extra-row-copy {
  min-width: 0;
}

.extra-row-copy strong,
.extra-row-copy small {
  display: block;
}

.extra-row-copy small {
  color: #5c6a7c;
}

.extra-row-price {
  color: #071f41;
  font-weight: 800;
  text-align: right;
}

.extra-quantity-control {
  display: inline-grid;
  grid-template-columns: 44px 34px 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.extra-quantity-control button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  background: #eef6ff;
  color: #071f41;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 850;
}

.extra-quantity-control button:disabled {
  color: #95a3b5;
  background: #f4f7fb;
  cursor: not-allowed;
}

.extra-quantity-control strong {
  text-align: center;
  font-size: 0.95rem;
}

.extra-row-total {
  color: #071f41;
  font-weight: 850;
  text-align: right;
}

.booking-details-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-details-form .full {
  grid-column: 1 / -1;
}

.terms-row label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 0;
}

.terms-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.terms-row a {
  color: #1269c7;
  font-weight: 750;
}

.booking-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.booking-summary {
  position: static;
  top: auto;
  border: 1px solid #cddced;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(7, 31, 65, 0.08);
}

.summary-toggle {
  width: 100%;
  min-height: 54px;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  background: #071f41;
  color: #ffffff;
}

.summary-body {
  padding: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e5edf6;
}

.summary-row span {
  color: #5c6a7c;
}

.summary-row strong {
  color: #071a33;
  text-align: right;
}

.summary-row small {
  display: block;
  margin-top: 3px;
  color: #5c6a7c;
  font-weight: 600;
}

.summary-row.total {
  border-bottom: 0;
  padding-top: 13px;
}

.summary-row.total span,
.summary-row.total strong {
  color: #071f41;
  font-size: 1.08rem;
}

.coupon-panel {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid #dce6f2;
}

.coupon-panel label {
  display: block;
  margin-bottom: 6px;
  color: #071f41;
  font-weight: 800;
}

.coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.coupon-row input {
  min-height: 42px;
  border: 1px solid #cddced;
  border-radius: 8px;
  padding: 9px 10px;
  text-transform: uppercase;
}

.coupon-row button {
  min-height: 42px;
  padding-inline: 14px;
}

.coupon-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: #1269c7;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.coupon-status {
  min-height: 18px;
  margin-top: 8px;
  color: #5c6a7c;
  font-size: 0.88rem;
  font-weight: 650;
}

.coupon-status.success {
  color: #0f6a32;
}

.coupon-status.error {
  color: #b91c1c;
}

.agc-cookie-footer-link {
  margin-top: 10px;
}

.agc-cookie-footer-link button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.agc-cookie-footer-link button:focus-visible,
.agc-cookie-banner button:focus-visible,
.agc-cookie-modal button:focus-visible,
.agc-cookie-modal input:focus-visible {
  outline: 3px solid #73b7ff;
  outline-offset: 3px;
}

.agc-cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
  padding: 16px;
  border: 1px solid rgba(115, 183, 255, 0.38);
  border-radius: 8px;
  background: #071f41;
  box-shadow: 0 22px 60px rgba(7, 31, 65, 0.28);
  color: #fff;
}

.home-page,
.booking-page,
.fleet-page,
.home-hero,
.booking-hero,
.fleet-hero,
.search-panel,
.home-booking-card,
.booking-car-card,
.fleet-car-card,
.home-car-carousel,
.home-carousel-viewport,
.agc-cookie-modal,
.agc-cookie-dialog {
  max-width: 100%;
  box-sizing: border-box;
}

.agc-cookie-copy h2,
.agc-cookie-dialog h2 {
  margin: 0 0 6px;
  color: inherit;
  font-size: 1rem;
}

.agc-cookie-copy p,
.agc-cookie-dialog p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
}

.agc-cookie-links {
  display: flex;
  gap: 12px;
  margin-top: 8px !important;
}

.agc-cookie-links a {
  color: #9fd0ff;
  font-weight: 700;
}

.agc-cookie-actions,
.agc-cookie-dialog-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.agc-cookie-banner button,
.agc-cookie-modal button {
  min-height: 40px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.agc-cookie-primary {
  border: 1px solid #2c8be8;
  background: #2c8be8;
  color: #fff;
  padding: 9px 14px;
}

.agc-cookie-secondary {
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 9px 14px;
}

.agc-cookie-link {
  border: 0;
  background: transparent;
  color: #9fd0ff;
  padding: 9px 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.agc-cookie-modal {
  position: fixed;
  z-index: 1001;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 31, 65, 0.54);
}

.agc-cookie-dialog {
  width: min(100%, 620px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(7, 31, 65, 0.3);
  color: #071f41;
}

.agc-cookie-dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid #dce6f2;
}

.agc-cookie-dialog p {
  color: #5c6a7c;
}

.agc-cookie-close {
  border: 1px solid #d3e0ef;
  background: #f7faff;
  color: #071f41;
  padding: 7px 11px;
}

.agc-cookie-options {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
}

.agc-cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid #dce6f2;
  border-radius: 8px;
  background: #f7faff;
}

.agc-cookie-option strong,
.agc-cookie-option small {
  display: block;
}

.agc-cookie-option small {
  margin-top: 3px;
  color: #5c6a7c;
  line-height: 1.4;
}

.agc-cookie-option input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.agc-cookie-option.is-locked {
  background: #eef5fd;
}

.agc-cookie-dialog-actions {
  padding: 0 20px 20px;
}

.agc-cookie-modal .agc-cookie-secondary {
  border-color: #cddced;
  background: #071f41;
}

.agc-cookie-modal .agc-cookie-link {
  color: #1269c7;
}

body.agc-cookie-modal-open {
  overflow: hidden;
}

.floating-contact-widget {
  --floating-contact-size: 58px;
  --floating-contact-cookie-offset: 0px;
  position: fixed;
  z-index: 990;
  right: max(24px, env(safe-area-inset-right));
  bottom: calc(max(24px, env(safe-area-inset-bottom)) + var(--floating-contact-cookie-offset));
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  max-width: calc(100vw - 48px);
  box-sizing: border-box;
  transition: bottom 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.floating-contact-widget[hidden] {
  display: none;
}

.floating-contact-button {
  width: var(--floating-contact-size);
  height: var(--floating-contact-size);
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  flex: 0 0 var(--floating-contact-size);
  padding: 0;
  border: 0;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0 9px 24px rgba(7, 31, 65, 0.22);
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.16s ease, box-shadow 0.16s ease;
}

.floating-contact-button:hover {
  filter: brightness(1.07);
  box-shadow: 0 11px 28px rgba(7, 31, 65, 0.3);
}

.floating-contact-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(18, 105, 199, 0.42), 0 11px 28px rgba(7, 31, 65, 0.3);
}

.floating-contact-button svg {
  width: 31px;
  height: 31px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.floating-contact-button .floating-contact-brand-icon {
  fill: currentColor;
  stroke: none;
}

.floating-contact-button-whatsapp {
  background: #25d366;
}

.floating-contact-button-viber {
  background: #665cac;
}

.floating-contact-button-close {
  background: #1269c7;
}

.floating-contact-button-close svg {
  width: 27px;
  height: 27px;
  stroke-width: 2.2;
}

.floating-contact-icon-chat {
  display: none;
}

.floating-contact-widget.is-collapsed .floating-contact-button-whatsapp,
.floating-contact-widget.is-collapsed .floating-contact-button-viber {
  display: none;
}

.floating-contact-widget.is-collapsed .floating-contact-icon-close {
  display: none;
}

.floating-contact-widget.is-collapsed .floating-contact-icon-chat {
  display: block;
}

@media (max-width: 767px) {
  .floating-contact-widget {
    --floating-contact-size: 48px;
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + var(--floating-contact-cookie-offset));
    gap: 8px;
    max-width: calc(100vw - 28px);
  }

  .floating-contact-button svg {
    width: 25px;
    height: 25px;
  }

  .floating-contact-button-close svg {
    width: 23px;
    height: 23px;
  }

  .agc-cookie-banner {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: 82vh;
    max-height: 82dvh;
    margin: 0;
    padding: 16px;
    overflow-y: auto;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 16px 16px 0 0;
  }

  .agc-cookie-copy,
  .agc-cookie-copy p,
  .agc-cookie-actions {
    min-width: 0;
    max-width: 100%;
  }

  .agc-cookie-copy p {
    overflow-wrap: anywhere;
  }

  .agc-cookie-links {
    flex-wrap: wrap;
  }

  .agc-cookie-actions,
  .agc-cookie-dialog-actions {
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
  }

  .agc-cookie-actions button,
  .agc-cookie-dialog-actions button {
    width: 100%;
  }

  .agc-cookie-modal {
    align-items: end;
    justify-items: stretch;
    padding: 0;
  }

  .agc-cookie-dialog {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 16px 16px 0 0;
  }

  .agc-cookie-dialog-head {
    gap: 12px;
    padding: 16px;
  }

  .agc-cookie-options {
    padding: 12px 16px;
  }

  .agc-cookie-option {
    min-width: 0;
    gap: 12px;
    padding: 12px;
  }

  .agc-cookie-option > span {
    min-width: 0;
  }

  .agc-cookie-option small {
    overflow-wrap: anywhere;
  }

  .agc-cookie-dialog-actions {
    padding: 0 16px 16px;
  }
}

.empty-booking-state,
.confirmation-panel {
  border: 1px dashed #b9cbe2;
  border-radius: 8px;
  background: #f7faff;
  padding: 24px;
  color: #5c6a7c;
}

.confirmation-panel h2 {
  color: #071f41;
}

@media (max-width: 1100px) {
  .booking-search-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .booking-insurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .booking-hero-inner,
  .booking-grid,
  .booking-car-grid {
    grid-template-columns: 1fr;
  }

  .booking-search-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-summary {
    position: static;
    bottom: auto;
    top: auto;
    z-index: auto;
    margin-top: 16px;
  }

  .summary-body {
    display: none;
    max-height: 58vh;
    overflow: auto;
  }

  .booking-summary.is-open .summary-body {
    display: block;
  }
}

@media (max-width: 760px) {
  .topline,
  .home-topbar {
    display: none;
  }

  .nav-inner,
  .home-nav {
    position: relative;
    width: min(100% - 24px, 1120px);
    min-height: 64px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 10px;
  }

  .brand-logo-img,
  .home-logo-img {
    width: clamp(105px, 32vw, 135px);
    max-height: 70px;
  }

  .nav-toggle,
  .home-nav-toggle {
    display: inline-flex;
    min-height: 42px;
    padding: 8px 12px;
    background: #071f41;
    border-color: #071f41;
    color: #ffffff;
  }

  .header-call,
  .home-nav-actions {
    display: none;
  }

  .nav-links,
  .home-nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow: auto;
    padding: 10px;
    border: 1px solid #d9e2ee;
    border-radius: 0 0 8px 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(7, 31, 65, 0.16);
  }

  .site-header.nav-open .nav-links,
  .home-header.nav-open .home-nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-links a,
  .home-nav-links a {
    display: block;
    padding: 11px 10px;
    border-radius: 6px;
  }

  .booking-workspace {
    padding-top: 18px;
  }

  .booking-hero h1 {
    font-size: 2rem;
  }

  .booking-hero-inner {
    padding: 26px 0;
  }

  .search-summary {
    align-items: stretch;
    flex-direction: column;
  }

  #search-summary-lines {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .booking-search-form,
  .booking-insurance-grid,
  .booking-details-form {
    grid-template-columns: 1fr;
  }

  .booking-step {
    padding: 16px;
  }

  .booking-step-head {
    flex-direction: column;
    gap: 8px;
  }

  .booking-extra-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .extra-row-price {
    grid-column: 2 / -1;
    text-align: left;
  }

  .extra-quantity-control {
    grid-column: 2 / -1;
    width: max-content;
  }

  .extra-row-total {
    grid-column: 2 / -1;
    text-align: left;
  }

  .booking-actions {
    justify-content: stretch;
  }

  .booking-actions .button,
  .booking-actions button {
    flex: 1 1 100%;
    width: 100%;
  }

  .footer-grid,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .booking-progress {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  #search-summary-lines {
    grid-template-columns: 1fr;
  }

  .booking-car-price strong {
    font-size: 1.18rem;
  }
}

/* Athens public frontend redesign */
:root {
  --warm-sand: #d6a455;
  --warm-sand-soft: #f7eedf;
  --athens-navy: #071f41;
  --athens-blue: #1269c7;
}

.home-page h1,
.home-page h2,
.booking-hero h1,
.fleet-page h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: -0.025em;
}

.home-hero-bg-slide {
  background-position: center 56%;
}

.home-hero-grid {
  min-height: 650px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
}

.home-hero-copy {
  max-width: 720px;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.home-hero .lead {
  max-width: 650px;
  line-height: 1.55;
}

.home-hero-trust {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 22px;
}

.home-hero-trust li {
  position: relative;
  padding-left: 22px;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 750;
}

.home-hero-trust li::before {
  content: "";
  position: absolute;
  top: 0.43em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--warm-sand);
  border-radius: 50%;
}

.home-booking-card {
  border: 0;
  border-top: 5px solid var(--warm-sand);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(3, 12, 27, 0.42);
}

.home-booking-cues {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
  color: #5c6a7c;
  font-size: 0.82rem;
  font-weight: 800;
}

.home-booking-cues span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef4fb;
}

.home-booking-cues .home-airport-badge {
  background: var(--athens-navy);
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-card-head h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: -0.02em;
}

.home-search-button {
  background: var(--athens-blue);
  box-shadow: 0 8px 18px rgba(18, 105, 199, 0.2);
}

.home-trust-strip {
  border-bottom-color: #d8e2ef;
}

.home-trust-grid div {
  position: relative;
  padding: 22px 20px 22px 34px;
}

.home-trust-grid div::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 18px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--warm-sand);
}

.home-process {
  background:
    radial-gradient(circle at 82% 16%, rgba(214, 164, 85, 0.16), transparent 27%),
    var(--athens-navy);
}

.home-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-process-grid article {
  padding: 26px;
  border-radius: 10px;
}

.home-process-grid span {
  background: var(--warm-sand);
}

.home-direct {
  background: #fffdf9;
}

.home-direct .home-split {
  align-items: start;
}

.home-direct-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid #dce6f2;
  list-style: none;
}

.home-direct-list li {
  display: grid;
  grid-template-columns: minmax(160px, 0.58fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #dce6f2;
}

.home-direct-list strong {
  color: var(--athens-navy);
}

.home-direct-list span {
  color: #5c6a7c;
}

.home-google-trust {
  padding: 46px 0;
  background: #f5f0e8;
  border-top: 1px solid #eadbc3;
  border-bottom: 1px solid #eadbc3;
}

.home-google-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(150px, 0.55fr) minmax(170px, 0.7fr);
  gap: 28px;
  align-items: center;
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.home-google-grid h2 {
  margin-bottom: 8px;
}

.home-google-grid p {
  margin: 0;
  color: #5c6a7c;
}

.home-google-stat {
  padding-left: 24px;
  border-left: 1px solid #d8c5a6;
  text-align: center;
}

.home-google-stat strong,
.home-google-stat span {
  display: block;
}

.home-google-stat strong {
  color: var(--athens-navy);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.9;
}

.home-google-stat span {
  margin-top: 8px;
  color: #5c6a7c;
  font-size: 0.9rem;
  font-weight: 750;
}

.home-car-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(7, 31, 65, 0.07);
}

.home-car-media {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 34%, #ffffff, transparent 45%),
    linear-gradient(155deg, #eef4fb, #dfe9f4);
}

.home-car-media img {
  object-position: center 58%;
}

.home-car-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.home-car-group,
.booking-car-group,
.fleet-car-group {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5c6a7c;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-car-group span,
.booking-car-group span,
.fleet-car-group span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--athens-navy);
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.home-car-body h3 {
  margin-top: 10px;
  font-size: 1.25rem;
}

.home-car-body .home-car-description {
  min-height: 3em;
  margin: 2px 0 0;
  color: #5c6a7c;
  font-size: 0.9rem;
  font-weight: 500;
}

.home-car-body ul {
  margin-top: 16px;
}

.home-car-body > strong {
  margin-top: auto;
}

.home-media-frame {
  border: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 24%, rgba(214, 164, 85, 0.42), transparent 26%),
    linear-gradient(135deg, #0a315f, #071f41);
  color: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 45px rgba(7, 31, 65, 0.14);
}

.home-media-frame img {
  object-position: center;
}

.home-band-blue {
  background: #edf3f8;
}

.home-band-blue .home-check-list li {
  position: relative;
  padding-left: 28px;
  border: 0;
  background: transparent;
}

.home-band-blue .home-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9b6b23;
  font-weight: 900;
}

.home-faq-section {
  background: #fffdf9;
}

.home-faq-grid details {
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(7, 31, 65, 0.04);
}

.home-faq-grid details[open] {
  border-color: #dbc59e;
}

.home-cta {
  background:
    radial-gradient(circle at 84% 20%, rgba(214, 164, 85, 0.24), transparent 30%),
    linear-gradient(135deg, #082950, #0d4f92);
}

/* Booking page card presentation */
.booking-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(214, 164, 85, 0.18), transparent 26%),
    var(--athens-navy);
}

.booking-hero::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 170px;
  height: 4px;
  background: var(--warm-sand);
}

.booking-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.booking-step,
.search-panel,
.search-summary,
.booking-summary {
  border-radius: 10px;
}

.booking-car-grid {
  gap: 18px;
}

.booking-car-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid #d4dfeb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(7, 31, 65, 0.06);
}

.booking-car-media {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 32%, #ffffff, transparent 45%),
    linear-gradient(155deg, #edf3f8, #dfe9f3);
}

.booking-car-media img {
  object-position: center 58%;
}

.booking-car-body {
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.booking-car-title h3 {
  font-size: 1.25rem;
}

.booking-car-description {
  min-height: 2.8em;
  margin: 0;
  color: #5c6a7c;
  font-size: 0.9rem;
}

.booking-car-specs {
  margin: 2px 0;
}

.booking-car-specs > .car-spec-icon {
  background: #f8fafc;
}

.booking-car-specs > .car-spec-icon > span:not(.sr-only) {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.booking-car-price {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3px;
  overflow: hidden;
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  background: #d9e2ee;
}

.booking-car-price > div {
  padding: 11px 12px;
  background: #f7faff;
}

.booking-car-price > div:last-child {
  background: var(--warm-sand-soft);
}

.booking-car-price span,
.booking-car-price small {
  display: block;
}

.booking-car-price span {
  color: #5c6a7c;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-car-price strong {
  margin-top: 2px;
  font-size: 1.12rem;
}

.booking-car-price small {
  color: #6c604d;
  font-size: 0.76rem;
}

.booking-car-card .select-car {
  width: 100%;
  margin-top: 2px;
}

/* Fleet page */
.fleet-page {
  background: #f6f8fb;
}

.fleet-hero {
  padding: 56px 0 72px;
  background:
    linear-gradient(180deg, #edf3f8 0, #f6f8fb 340px);
}

.fleet-hero .section-head {
  margin-bottom: 30px;
}

.fleet-hero h1 {
  max-width: 720px;
  color: var(--athens-navy);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
}

.fleet-grid {
  margin-top: 22px;
  gap: 20px;
}

.fleet-car-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d5e0ec;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(7, 31, 65, 0.07);
}

.fleet-car-card .car-media {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 32%, #ffffff, transparent 45%),
    linear-gradient(155deg, #edf3f8, #dfe9f3);
}

.fleet-car-card .car-media img {
  object-position: center 58%;
}

.fleet-media-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #68788b;
  font-weight: 750;
}

.fleet-car-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.fleet-car-body h3 {
  margin-top: 10px;
  font-size: 1.3rem;
}

.fleet-car-description {
  min-height: 3em;
  margin: 0;
  color: #5c6a7c;
  font-size: 0.9rem;
}

.fleet-car-body .car-specs {
  margin: 16px 0;
}

.fleet-price {
  display: block;
  margin-top: auto;
  color: var(--athens-navy);
  font-size: 1.05rem;
}

.fleet-card-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
}

.fleet-card-actions .button {
  padding-inline: 10px;
}

@media (max-width: 1060px) {
  .home-google-grid {
    grid-template-columns: minmax(260px, 1fr) repeat(2, 0.55fr);
  }
}

@media (max-width: 980px) {
  .home-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 52px 0;
  }

  .home-hero-copy {
    max-width: 780px;
  }

  .home-booking-card {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-header .nav-toggle,
  .home-header .home-nav-toggle {
    display: inline-flex;
  }

  .home-hero-grid {
    padding: 28px 0 34px;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
    line-height: 1.02;
  }

  .home-hero-trust {
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
  }

  .home-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .home-booking-card label {
    font-size: 0.8rem;
  }

  .home-booking-card input,
  .home-booking-card select {
    min-width: 0;
    min-height: 46px;
    padding-inline: 9px;
  }

  .home-process-grid,
  .home-google-grid {
    grid-template-columns: 1fr;
  }

  .home-direct-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .home-google-stat {
    padding: 12px 0 0;
    border-top: 1px solid #d8c5a6;
    border-left: 0;
  }

  .booking-car-price {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-hero {
    padding: 38px 0 52px;
  }

  .fleet-hero .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .home-hero-trust {
    grid-template-columns: 1fr 1fr;
  }

  .home-booking-cues {
    align-items: center;
    flex-direction: row;
  }

  .booking-car-price {
    grid-template-columns: 1fr;
  }

  .fleet-card-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 350px) {
  .home-hero-trust {
    grid-template-columns: 1fr;
  }

  .home-booking-cues {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-booking-grid {
    grid-template-columns: 1fr;
  }
}

/* Commercial rental-brand pass */
:root {
  --rental-grey: #eef1f4;
  --rental-grey-dark: #d5dce4;
}

body,
button,
input,
select,
textarea {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

h1,
h2,
h3,
.home-page h1,
.home-page h2,
.booking-hero h1,
.fleet-page h1,
.home-card-head h2,
.home-google-stat strong {
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Arial, Helvetica, sans-serif;
  letter-spacing: -0.025em;
  font-stretch: condensed;
}

h1,
h2,
.home-page h1,
.home-page h2,
.booking-hero h1,
.fleet-page h1 {
  font-weight: 900;
  line-height: 0.98;
}

.button,
button,
input,
select,
textarea,
.card,
.form-card,
.status {
  border-radius: 3px;
}

.button,
button {
  min-height: 46px;
  padding-inline: 20px;
  font-weight: 850;
}

.home-header,
.site-header {
  background: #ffffff;
  backdrop-filter: none;
}

.home-nav,
.nav-inner {
  min-height: 76px;
  padding-block: 8px;
}

.home-logo-img,
.brand-logo-img {
  width: clamp(112px, 10vw, 138px);
  max-height: 64px;
}

.home-nav-links a,
.nav-links a {
  font-weight: 800;
}

/* Booking-first homepage */
.home-hero {
  background: var(--athens-navy);
}

.home-hero-bg {
  background: var(--athens-navy);
}

.home-hero-bg-slide,
.home-hero-bg.has-dashboard-media::after {
  background:
    linear-gradient(90deg, rgba(4, 18, 39, 0.9) 0%, rgba(4, 18, 39, 0.72) 58%, rgba(4, 18, 39, 0.58) 100%);
}

.home-hero-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  padding: 42px 0 44px;
}

.home-hero-copy {
  max-width: 1120px;
}

.home-hero h1 {
  max-width: 1120px;
  font-size: clamp(3rem, 5.2vw, 4.55rem);
  line-height: 0.94;
}

.home-hero .lead {
  max-width: 940px;
  margin: 18px 0 0;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.home-lead-mobile {
  display: none;
}

.home-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 22px;
}

.home-hero-trust li {
  padding-left: 17px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.home-hero-trust li::before {
  top: 0.48em;
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 0;
  background: var(--warm-sand);
}

.home-booking-card {
  width: 100%;
  padding: 24px;
  border: 1px solid #cfd8e3;
  border-top: 4px solid var(--warm-sand);
  border-radius: 3px;
  box-shadow: 0 20px 48px rgba(0, 8, 20, 0.3);
}

.home-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 20px;
}

.home-card-head h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.home-card-head p:last-child {
  max-width: 420px;
  margin: 0;
  text-align: right;
}

.home-booking-cues {
  margin-bottom: 10px;
}

.home-booking-cues span {
  min-height: 25px;
  border-radius: 2px;
}

.home-booking-grid {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  margin: 0;
}

.home-booking-grid .home-location-field {
  grid-column: span 2;
}

.home-booking-card label {
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.home-booking-card input,
.home-booking-card select {
  min-height: 52px;
  border-color: #bfcbd8;
  border-radius: 2px;
  background: #ffffff;
  font-weight: 700;
}

.home-search-submit {
  grid-column: span 2;
  display: flex;
}

.home-search-button {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border-radius: 2px;
  box-shadow: none;
}

.home-booking-card .home-booking-note {
  margin: 12px 0 0;
}

.home-trust-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: #d9e0e8;
}

.home-trust-grid div {
  min-height: 78px;
  padding: 18px 20px;
}

.home-trust-grid div::before {
  display: none;
}

.home-trust-grid strong {
  font-size: 0.92rem;
  font-weight: 900;
}

.home-trust-grid span {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  line-height: 1.35;
}

/* Practical homepage sections */
.home-band {
  padding: 64px 0;
}

.home-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.home-offer {
  background: #f4f6f8;
}

.home-offer-grid {
  align-items: center;
}

.home-process {
  background: var(--athens-navy);
}

.home-process-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.home-process-grid article {
  padding: 26px 28px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
}

.home-process-grid article:last-child {
  border-right: 0;
}

.home-process-grid span {
  width: auto;
  height: auto;
  justify-content: flex-start;
  margin-bottom: 22px;
  border-radius: 0;
  background: transparent;
  color: var(--warm-sand);
  font-size: 1.7rem;
}

.home-process-grid h3 {
  font-size: 1.18rem;
}

.home-direct,
.home-faq-section {
  background: #ffffff;
}

.home-direct-list li {
  padding: 16px 0;
}

.home-google-trust {
  padding: 38px 0;
  border-color: #cfd8e3;
  background: #f1f4f7;
}

.home-google-stat {
  border-left-color: #c7d0da;
}

.home-google-stat strong {
  font-size: clamp(2.35rem, 4vw, 3.5rem);
  font-weight: 900;
}

.home-fleet-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-car-card,
.fleet-car-card {
  border-radius: 2px;
  box-shadow: none;
}

.home-car-media,
.fleet-car-card .car-media {
  aspect-ratio: 16 / 10;
  background: #ffffff;
  background-image: none;
  box-shadow: none;
}

.home-car-media img,
.fleet-car-card .car-media img {
  background: #ffffff;
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.home-car-placeholder,
.booking-media-placeholder,
.fleet-media-placeholder {
  background: #ffffff;
  background-image: none;
  box-shadow: none;
}

.home-car-body {
  padding: 18px;
}

.home-car-group,
.booking-car-group,
.fleet-car-group {
  font-size: 0.73rem;
  letter-spacing: 0.02em;
}

.home-car-group span,
.booking-car-group span,
.fleet-car-group span {
  min-height: 22px;
  border-radius: 2px;
}

.home-car-body h3 {
  font-size: 1.15rem;
  font-weight: 900;
}

.home-car-body .home-car-description {
  min-height: 4.1em;
  font-size: 0.84rem;
}

.home-car-body .car-specs {
  gap: 5px;
}

.home-car-body .car-specs li {
  padding: 4px 7px;
  border-radius: 2px;
  font-size: 0.75rem;
}

.home-car-body .button {
  width: 100%;
  border-radius: 2px;
}

.home-faq-grid {
  gap: 0;
  border-top: 1px solid #d9e2ee;
}

.home-faq-grid details {
  padding: 20px 4px;
  border: 0;
  border-bottom: 1px solid #d9e2ee;
  border-radius: 0;
  box-shadow: none;
}

.home-faq-grid details[open] {
  border-color: #d9e2ee;
}

/* Offer-list booking page */
.booking-page {
  background: #eef1f4;
}

.booking-hero {
  background: var(--athens-navy);
}

.booking-hero::after {
  display: none;
}

.booking-hero-inner {
  align-items: center;
  padding: 26px 0;
}

.booking-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.35rem);
}

.booking-workspace {
  padding-top: 18px;
}

.search-summary {
  position: static;
  top: auto;
  z-index: auto;
  min-height: 70px;
  padding: 10px 12px;
  border: 1px solid #bdc9d6;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(7, 31, 65, 0.12);
}

.booking-summary {
  position: static;
  top: auto;
  bottom: auto;
  z-index: auto;
}

#search-summary-lines {
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) repeat(3, minmax(130px, 0.65fr));
  gap: 0;
  flex: 1;
}

#search-summary-lines span {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 5px 14px;
  border: 0;
  border-right: 1px solid #dce3eb;
  border-radius: 0;
  background: #ffffff;
}

#search-summary-lines span:last-child {
  border-right: 0;
}

#search-summary-lines small {
  color: #718095;
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

#search-summary-lines strong {
  overflow: hidden;
  max-width: 100%;
  margin-top: 2px;
  color: var(--athens-navy);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#search-summary-lines em {
  color: #718095;
  font-size: 0.74rem;
  font-style: normal;
}

.search-summary .button {
  min-width: 118px;
  border-color: var(--athens-navy);
  color: var(--athens-navy);
}

.search-panel {
  padding: 20px;
  border: 1px solid #c8d2dd;
  border-top: 4px solid var(--athens-blue);
  border-radius: 2px;
}

.booking-search-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.booking-search-heading strong {
  color: var(--athens-navy);
  font-size: 1.12rem;
  font-weight: 900;
}

.booking-search-heading span {
  color: #66758a;
  font-size: 0.88rem;
}

.booking-search-form input,
.booking-search-form select {
  border-radius: 2px;
}

.booking-progress {
  gap: 0;
  padding: 10px 0 16px;
}

.booking-progress button {
  min-height: 38px;
  border-radius: 0;
  font-size: 0.82rem;
}

.booking-grid {
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
}

#step-car {
  border: 0;
  background: transparent;
  padding: 0;
}

.booking-step {
  border-radius: 2px;
}

.booking-step-head {
  align-items: end;
  margin-bottom: 14px;
  padding: 18px 20px;
  border: 1px solid #d1dae4;
  background: #ffffff;
}

.booking-step-head h2 {
  font-size: 1.65rem;
  font-weight: 900;
}

.booking-car-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.booking-car-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(250px, 1.2fr) minmax(185px, 0.62fr);
  min-height: 240px;
  overflow: hidden;
  border: 1px solid #cdd6e0;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
}

.booking-car-card.is-selected {
  border-color: var(--athens-blue);
  box-shadow: inset 4px 0 0 var(--athens-blue);
}

.booking-car-media {
  min-height: 238px;
  aspect-ratio: auto;
  border-right: 1px solid #e0e6ed;
  border-bottom: 0;
  background: #ffffff;
  background-image: none;
  box-shadow: none;
}

.booking-car-media img {
  background: #ffffff;
  object-fit: contain;
  object-position: center;
  padding: 14px;
}

.booking-car-main {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 22px 20px;
}

.booking-car-title {
  width: 100%;
  margin-top: 12px;
}

.booking-car-title h3 {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.05;
}

.booking-car-description {
  min-height: 0;
  margin: 8px 0 14px;
  font-size: 0.86rem;
}

.booking-car-specs {
  gap: 5px;
  margin-top: auto;
}

.booking-car-specs > .car-spec-icon {
  padding: 5px 7px;
  border-radius: 2px;
  background: #ffffff;
  font-size: 0.76rem;
}

.booking-car-offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-left: 1px solid #d5dde6;
  background: #f7f9fb;
}

.booking-car-price {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.booking-car-price > div {
  padding: 10px 0;
  border-bottom: 1px solid #d5dde6;
  background: transparent;
}

.booking-car-price > div:last-child {
  background: transparent;
}

.booking-car-price span {
  font-size: 0.67rem;
}

.booking-car-price strong {
  margin-top: 3px;
  font-size: 1.16rem;
}

.booking-car-price > div:first-child strong {
  font-size: 1.42rem;
}

.booking-car-price > div:last-child strong {
  color: #52647a;
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-car-price small {
  margin-top: 2px;
  color: #647387;
}

.booking-car-price > div:last-child small {
  font-size: 0.68rem;
}

.booking-car-payment-note {
  margin: 12px 0;
  color: #476079;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.booking-car-card .select-car {
  min-height: 48px;
  margin-top: auto;
  border-radius: 2px;
}

.booking-summary {
  top: calc(var(--public-header-offset) + 84px);
  border-radius: 2px;
}

/* Fleet product grid */
.fleet-page {
  background: #eef1f4;
}

.fleet-hero {
  padding: 42px 0 66px;
  background: #eef1f4;
}

.fleet-hero .section-head {
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid #cfd7e0;
}

.fleet-hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.fleet-grid {
  gap: 14px;
}

.fleet-car-card {
  border-color: #cdd6e0;
}

.fleet-car-body {
  padding: 18px;
}

.fleet-car-body h3 {
  font-size: 1.18rem;
  font-weight: 900;
}

.fleet-car-description {
  min-height: 4.2em;
  font-size: 0.84rem;
}

.fleet-car-body .car-specs {
  gap: 5px;
}

.fleet-car-body .car-specs li {
  padding: 4px 7px;
  border-radius: 2px;
  font-size: 0.75rem;
}

.fleet-card-actions .button {
  min-height: 44px;
  border-radius: 2px;
  font-size: 0.8rem;
}

@media (max-width: 1100px) {
  .home-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-car-card {
    grid-template-columns: minmax(200px, 0.8fr) minmax(220px, 1fr) 180px;
  }

  #search-summary-lines {
    grid-template-columns: minmax(210px, 1fr) repeat(3, minmax(115px, 0.58fr));
  }
}

@media (max-width: 900px) {
  .home-fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    top: auto;
  }

  .booking-car-card {
    grid-template-columns: minmax(210px, 0.85fr) minmax(240px, 1.15fr) 190px;
  }
}

@media (max-width: 760px) {
  .home-hero-grid {
    gap: 18px;
    padding: 16px 0 24px;
  }

  .home-hero h1 {
    font-size: 2.35rem;
  }

  .home-booking-card {
    order: 2;
  }

  .home-hero-copy {
    order: 1;
  }

  .home-hero-copy .eyebrow {
    display: none;
  }

  .home-lead-desktop {
    display: none;
  }

  .home-lead-mobile {
    display: inline;
  }

  .home-hero .lead {
    margin-top: 10px;
    font-size: 0.96rem;
  }

  .home-hero-trust {
    display: none;
  }

  .home-booking-card {
    padding: 18px;
  }

  .home-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .home-card-head {
    gap: 10px;
  }

  .home-card-head p:last-child {
    text-align: left;
  }

  .home-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-booking-grid .home-location-field {
    grid-column: auto;
  }

  .home-search-submit {
    grid-column: 1 / -1;
  }

  .home-search-button {
    width: 100%;
    min-width: 0;
  }

  .home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-process-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .home-process-grid article:last-child {
    border-bottom: 0;
  }

  .home-google-grid {
    gap: 20px;
  }

  .home-fleet-grid {
    grid-template-columns: 1fr;
  }

  .home-car-body .home-car-description {
    min-height: 0;
  }

  .search-summary {
    align-items: stretch;
    flex-direction: column;
    max-height: 190px;
    overflow: auto;
  }

  .booking-summary {
    position: static;
    top: auto;
    bottom: auto;
  }

  #search-summary-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #search-summary-lines span {
    border-right: 1px solid #dce3eb;
    border-bottom: 1px solid #dce3eb;
  }

  .booking-search-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .booking-car-card {
    grid-template-columns: 1fr;
  }

  .booking-car-media {
    min-height: 210px;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid #e0e6ed;
  }

  .booking-car-main {
    padding: 18px;
  }

  .booking-car-offer {
    padding: 18px;
    border-top: 1px solid #d5dde6;
    border-left: 0;
  }

  .booking-car-price {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .booking-car-price > div {
    border-bottom: 0;
  }

  .booking-car-payment-note {
    margin: 8px 0;
  }
}

@media (max-width: 430px) {
  .home-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-car-price {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-hero h1 {
    font-size: 2.55rem;
  }
}

@media (max-width: 350px) {
  .home-booking-grid {
    grid-template-columns: 1fr;
  }

  .home-search-submit {
    grid-column: auto;
  }
}

/* Homepage reference composition: header, hero search, slogan, USPs and carousel */
.home-page {
  --home-display-font: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.home-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 10, 20, 0.9), rgba(2, 10, 20, 0.48) 72%, transparent);
  color: #ffffff;
}

.home-header .home-nav {
  min-height: 82px;
  justify-content: flex-start;
  gap: 14px;
  padding-block: 10px;
}

.home-header .home-nav-toggle {
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  display: none !important;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  box-shadow: none;
}

.home-header .home-nav-toggle::before {
  content: "☰";
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.home-header.nav-open .home-nav-toggle::before {
  content: "×";
  font-size: 2rem;
}

.home-header .home-brand {
  position: relative;
  width: 116px;
  height: 50px;
  overflow: hidden;
  border-radius: 4px;
  background: #ffffff;
}

.home-header .home-logo-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  max-height: none;
  object-fit: cover;
  object-position: center 49%;
  transform: translate(-50%, -50%);
}

.home-header .home-nav-links {
  margin-left: auto;
  gap: 24px;
}

.home-header .home-nav-links a,
.home-header .home-phone {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.home-header .home-nav-links a:hover,
.home-header .home-phone:hover {
  color: #b8dcff;
}

.home-header .home-nav-actions {
  gap: 18px;
  margin-left: 12px;
}

.home-header .home-phone {
  padding: 0;
  border: 0;
}

.home-hero {
  min-height: 620px;
  background: var(--athens-navy);
}

.home-hero-bg-slide,
.home-hero-bg.has-dashboard-media::after {
  background:
    linear-gradient(180deg, rgba(2, 10, 20, 0.38) 0%, rgba(4, 18, 39, 0.2) 48%, rgba(4, 18, 39, 0.3) 100%);
}

.home-hero-bg-slide,
.site-hero-image,
.site-hero-video {
  background-position: center top;
  object-position: center top;
}

.home-hero-grid {
  min-height: 620px;
  display: block;
  padding: 96px 0 34px;
}

.home-booking-card {
  width: 100%;
  padding: 20px 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(0, 8, 20, 0.32);
}

.home-card-head {
  min-height: 35px;
  align-items: center;
  margin-bottom: 18px;
}

.home-booking-cues {
  display: flex;
  gap: 8px;
  margin: 0;
}

.home-booking-cues span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: #eef1f5;
  color: #071f41;
  font-size: 0.84rem;
  font-weight: 850;
}

.home-booking-cues .home-airport-badge {
  background: #071f41;
  color: #ffffff;
}

.home-booking-grid {
  grid-template-columns: 1.35fr 1.35fr repeat(4, minmax(92px, 0.72fr)) minmax(180px, 1.08fr);
  gap: 10px;
}

.home-booking-grid .home-location-field,
.home-search-submit {
  grid-column: auto;
}

.home-booking-card label {
  margin-bottom: 7px;
  font-size: 0.67rem;
  letter-spacing: 0.035em;
}

.home-booking-card input,
.home-booking-card select {
  min-height: 58px;
  border: 1px solid #c8d0d9;
  border-radius: 10px;
  background: #ffffff;
  font-size: 0.88rem;
}

.home-search-button {
  min-height: 58px;
  border-radius: 10px;
  font-family: var(--home-display-font);
  font-size: 1rem;
  text-transform: uppercase;
}

.home-booking-meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  color: #34455a;
  font-size: 0.78rem;
  font-weight: 800;
}

.home-booking-meta span {
  padding: 0 16px;
  border-right: 1px solid #d5dce4;
}

.home-booking-meta span:first-child {
  padding-left: 0;
}

.home-booking-meta span:last-child {
  border-right: 0;
}

.home-slogan-band {
  padding: 58px 0 52px;
  background: var(--athens-blue);
  color: #ffffff;
  text-align: center;
}

.home-slogan-band h1,
.home-car-carousel h2 {
  margin: 0;
  font-family: var(--home-display-font);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-slogan-band h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(3.25rem, 6vw, 5.8rem);
}

.home-slogan-band h1 span {
  display: block;
}

.home-slogan-band p {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 750;
}

.home-usp-section {
  padding: 58px 0 62px;
  background: #ffffff;
}

.home-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 78px);
}

.home-usp-grid article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.home-usp-icon {
  display: block;
  color: #071f41;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.home-usp-grid strong {
  display: block;
  color: #071f41;
  font-size: 0.88rem;
  font-weight: 900;
}

.home-usp-grid p {
  margin: 15px 0 0;
  color: #071a33;
  font-family: var(--home-display-font);
  font-size: clamp(1.3rem, 2vw, 1.78rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.home-car-carousel {
  overflow: hidden;
  padding: 76px 0 46px;
  background: #18191c;
  color: #ffffff;
}

.home-carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.home-car-carousel h2 {
  max-width: 980px;
  color: #ffffff;
  font-size: clamp(3.2rem, 6.2vw, 6.4rem);
}

.home-carousel-head > a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
}

.home-carousel-status {
  color: rgba(255, 255, 255, 0.72);
}

.home-carousel-viewport {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  contain: layout paint;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.home-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.home-car-carousel .home-fleet-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.home-car-carousel .home-car-card {
  width: min(560px, calc((min(1180px, 100vw - 32px) - 24px) / 2));
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #2c3239;
  border-radius: 18px;
  background: #0a1523;
  color: #ffffff;
}

.home-car-card-head {
  padding: 22px 24px 16px;
}

.home-car-card-head h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--home-display-font);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.home-car-card-head p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-car-carousel .home-car-media {
  aspect-ratio: 16 / 8.6;
  border: 0;
  background: #ffffff;
}

.home-car-carousel .home-car-media img {
  width: 100%;
  height: 100%;
  padding: 22px;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
}

.home-car-offer-row {
  min-height: 144px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
}

.home-car-offer-details {
  min-width: 0;
  flex: 1 1 auto;
}

.home-car-offer-details > strong {
  display: block;
  margin-bottom: 11px;
  font-size: 1rem;
}

.home-carousel-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-carousel-specs li {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 3px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  line-height: 1;
  white-space: nowrap;
}

.home-carousel-specs svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.home-car-offer-row a {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.home-car-offer-row a:hover {
  background: #ffffff;
  color: #071f41;
}

.home-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.home-carousel-dots {
  display: flex;
  gap: 9px;
}

.home-carousel-dots button {
  width: 7px;
  min-width: 7px;
  min-height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.home-carousel-dots button.is-active {
  background: #ffffff;
}

.home-carousel-arrows {
  display: flex;
  gap: 10px;
}

.home-carousel-arrows button {
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: #101216;
  color: #ffffff;
  font-size: 1.4rem;
}

.home-carousel-arrows button:disabled {
  opacity: 0.28;
}

@media (max-width: 1040px) {
  .home-header .home-nav-links {
    gap: 14px;
  }

  .home-header .home-phone {
    display: none;
  }

  .home-booking-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .home-booking-grid .home-location-field {
    grid-column: span 3;
  }

  .home-booking-grid > div:not(.home-location-field):not(.home-search-submit) {
    grid-column: span 1;
  }

  .home-search-submit {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .home-header {
    background: linear-gradient(180deg, rgba(2, 10, 20, 0.94), rgba(2, 10, 20, 0.7), transparent);
  }

  .home-header .home-nav {
    min-height: 70px;
    justify-content: space-between;
    padding-block: 8px;
  }

  .home-header .home-brand {
    width: 98px;
    height: 44px;
  }

  .home-header .home-logo-img {
    width: 98px;
    height: 98px;
    transform: translate(-50%, -50%);
  }

  .home-header .home-nav-actions {
    display: none;
  }

  .home-header .home-nav-toggle {
    display: inline-grid !important;
    order: 3;
    margin-left: auto;
  }

  .home-header .home-nav-links {
    inset: 70px 12px auto;
    width: auto;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #071f41;
    box-shadow: 0 18px 36px rgba(0, 8, 20, 0.36);
  }

  .home-header.nav-open .home-nav-links {
    display: grid;
  }

  .home-header .home-nav-links a {
    color: #ffffff;
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero-grid {
    min-height: 0;
    padding: 82px 0 22px;
  }

  .home-booking-card {
    order: initial;
    padding: 16px;
    border-radius: 13px;
  }

  .home-card-head {
    min-height: 0;
    display: block;
    margin-bottom: 14px;
  }

  .home-booking-cues span {
    min-height: 32px;
    padding: 6px 11px;
    font-size: 0.72rem;
  }

  .home-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-booking-grid .home-location-field {
    grid-column: 1 / -1;
  }

  .home-booking-grid > div:not(.home-location-field):not(.home-search-submit) {
    grid-column: auto;
  }

  .home-search-submit {
    grid-column: 1 / -1;
  }

  .home-booking-card input,
  .home-booking-card select,
  .home-search-button {
    min-height: 52px;
  }

  .home-booking-meta {
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 13px;
    font-size: 0.7rem;
  }

  .home-booking-meta span {
    padding: 0;
    border: 0;
  }

  .home-slogan-band {
    padding: 42px 0 38px;
  }

  .home-slogan-band h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .home-slogan-band p {
    max-width: 330px;
    margin-top: 14px;
    font-size: 0.94rem;
  }

  .home-usp-section {
    padding: 38px 0 42px;
  }

  .home-usp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-usp-grid p {
    max-width: 330px;
    margin-top: 9px;
    font-size: 1.45rem;
  }

  .home-car-carousel {
    padding: 48px 0 34px;
  }

  .home-carousel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }

  .home-car-carousel h2 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .home-car-carousel .home-car-card {
    width: min(86vw, 430px);
  }

  .home-car-card-head {
    padding: 18px 18px 14px;
  }

  .home-car-carousel .home-car-media img {
    padding: 14px;
  }

  .home-car-offer-row {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .home-car-offer-row a {
    width: 100%;
  }

  .home-carousel-dots {
    max-width: 190px;
    flex-wrap: wrap;
  }
}

@media (max-width: 370px) {
  .home-booking-grid {
    grid-template-columns: 1fr;
  }

  .home-booking-grid .home-location-field,
  .home-booking-grid > div:not(.home-location-field):not(.home-search-submit),
  .home-search-submit {
    grid-column: auto;
  }
}

/* Homepage booking form test: compact range and time picker */
.home-page .home-booking-card {
  position: relative;
  overflow: visible;
  border-radius: 8px;
}

.home-page .home-booking-cues button {
  min-height: 36px;
  padding: 7px 16px;
  border: 0;
  border-radius: 999px;
  background: #eef1f5;
  color: #071f41;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
}

.home-page .home-booking-cues button:disabled {
  opacity: 1;
  cursor: default;
}

.home-page .home-booking-cues .home-airport-badge {
  background: #071f41;
  color: #ffffff;
}

.home-page .home-booking-grid {
  grid-template-columns: minmax(260px, 1.2fr) minmax(520px, 2fr) minmax(190px, 0.72fr);
  align-items: stretch;
  gap: 12px;
}

.home-booking-locations {
  min-width: 0;
}

.home-booking-locations .home-location-field {
  width: 100%;
}

.home-return-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0 0;
  color: #31435a;
  cursor: pointer;
  font-size: 0.75rem !important;
  font-weight: 750 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.home-return-toggle input {
  width: 17px;
  min-height: 17px !important;
  margin: 0;
  accent-color: var(--athens-blue);
}

.home-return-location {
  margin-top: 10px;
}

.home-return-location[hidden] {
  display: none !important;
}

.home-date-range-shell {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.home-rental-moment {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.home-moment-label {
  display: block;
  margin: 0 0 7px;
  color: #071f41;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.home-moment-controls {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(84px, 0.65fr);
  gap: 6px;
}

.home-page .home-picker-trigger {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 8px 11px;
  border: 1px solid #bfcbd8;
  border-radius: 5px;
  background: #ffffff;
  color: #071f41;
  text-align: left;
}

.home-page .home-picker-trigger small {
  display: block;
  margin-bottom: 4px;
  color: #64748a;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .home-picker-trigger strong {
  width: 100%;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .home-picker-trigger:hover,
.home-page .home-picker-trigger.is-active {
  background: #ffffff;
  color: #071f41;
  border-color: var(--athens-blue);
}

.home-page .home-picker-trigger:focus-visible,
.home-calendar-nav button:focus-visible,
.home-calendar-grid button:focus-visible,
.home-time-popover button:focus-visible {
  outline: 3px solid rgba(21, 112, 204, 0.28);
  outline-offset: 1px;
}

.home-time-control {
  position: relative;
  min-width: 0;
}

.home-date-popover,
.home-time-popover {
  border: 1px solid #c9d4e1;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(0, 18, 44, 0.24);
}

.home-date-popover[hidden],
.home-time-popover[hidden] {
  display: none !important;
}

.home-date-popover {
  position: absolute;
  inset: calc(100% + 10px) 0 auto;
  z-index: 90;
  width: 100%;
  padding: 18px;
}

.home-date-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.home-date-popover-head strong,
.home-date-popover-head span {
  display: block;
}

.home-date-popover-head strong {
  color: #071f41;
  font-size: 1rem;
}

.home-date-popover-head span {
  margin-top: 3px;
  color: #607086;
  font-size: 0.78rem;
}

.home-calendar-nav {
  display: flex;
  gap: 6px;
}

.home-calendar-nav button {
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid #c9d4e1;
  border-radius: 50%;
  background: #ffffff;
  color: #071f41;
  font-size: 1.1rem;
}

.home-calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-calendar-month h3 {
  margin: 0 0 12px;
  color: #071f41;
  font-size: 0.88rem;
  text-align: center;
}

.home-calendar-weekdays,
.home-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.home-calendar-weekdays span {
  min-height: 24px;
  color: #718096;
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
}

.home-calendar-grid button,
.home-calendar-empty {
  width: 100%;
  min-width: 0;
  min-height: 36px;
}

.home-calendar-grid button {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #15263d;
  font-size: 0.76rem;
  font-weight: 750;
}

.home-calendar-grid button:hover:not(:disabled) {
  background: #e7f2ff;
}

.home-calendar-grid button.is-in-range {
  background: #dcecff;
  color: #071f41;
}

.home-calendar-grid button.is-start,
.home-calendar-grid button.is-end {
  isolation: isolate;
  background: transparent;
  color: #ffffff;
}

.home-calendar-grid button.is-start::before,
.home-calendar-grid button.is-end::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--athens-blue);
  content: "";
  transform: translate(-50%, -50%);
}

.home-calendar-grid button:disabled {
  color: #bbc4d0;
  cursor: not-allowed;
}

.home-time-popover {
  position: absolute;
  inset: calc(100% + 7px) 0 auto;
  z-index: 100;
  max-height: 270px;
  overflow-y: auto;
  padding: 6px;
}

.home-time-popover button {
  width: 100%;
  min-height: 38px;
  display: block;
  padding: 8px 10px;
  border: 0;
  border-radius: 4px;
  background: #ffffff;
  color: #15263d;
  font-size: 0.82rem;
  text-align: left;
}

.home-time-popover button:hover,
.home-time-popover button.is-selected {
  background: #e7f2ff;
  color: #071f41;
  font-weight: 850;
}

.home-page .home-search-submit {
  align-self: start;
  padding-top: 24px;
}

.home-page .home-search-button {
  min-height: 56px;
  padding-inline: 16px;
  border-radius: 6px;
  font-size: 0.83rem;
  line-height: 1.1;
}

.home-search-label-compact {
  display: none;
}

@media (max-width: 1120px) {
  .home-page .home-booking-grid {
    grid-template-columns: minmax(230px, 0.9fr) minmax(480px, 1.7fr);
  }

  .home-page .home-search-submit {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .home-page .home-search-button {
    min-height: 54px;
  }
}

@media (max-width: 760px) {
  .home-page .home-booking-card {
    padding: 12px;
    border-radius: 8px;
  }

  .home-page .home-booking-cues button {
    min-height: 32px;
    padding: 6px 11px;
    font-size: 0.72rem;
  }

  .home-page .home-booking-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
  }

  .home-booking-locations,
  .home-date-range-shell,
  .home-page .home-search-submit {
    grid-column: 1;
  }

  .home-page .home-search-submit {
    align-self: stretch;
    padding-top: 0;
  }

  .home-return-toggle {
    gap: 8px;
    margin-top: 8px;
    font-size: 0.72rem !important;
  }

  .home-return-toggle input {
    width: 17px;
    min-height: 17px !important;
  }

  .home-booking-locations .home-location-field > label {
    margin-bottom: 7px;
    font-size: 0.68rem;
  }

  .home-booking-locations .home-location-field select {
    min-height: 52px;
    padding: 8px 11px;
    font-size: 0.82rem;
  }

  .home-date-range-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-rental-moment {
    padding: 0;
  }

  .home-moment-label {
    margin-bottom: 7px;
    font-size: 0.68rem;
  }

  .home-moment-controls {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .home-page .home-picker-trigger {
    min-height: 48px;
    padding: 7px 9px;
  }

  .home-page .home-picker-trigger strong {
    font-size: 0.82rem;
  }

  .home-page .home-search-button {
    min-height: 54px;
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .home-search-label-full {
    display: inline;
  }

  .home-search-label-compact {
    display: none;
  }

  .home-date-popover {
    position: fixed;
    inset: 82px 12px auto;
    width: auto;
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
    padding: 14px;
  }

  .home-calendar-months {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-calendar-month:nth-child(2) {
    display: none;
  }

  .home-calendar-grid button,
  .home-calendar-empty {
    min-height: 42px;
  }

  .home-calendar-grid button.is-start::before,
  .home-calendar-grid button.is-end::before {
    width: 38px;
    height: 38px;
  }

  .home-time-popover {
    position: fixed;
    inset: auto 12px 14px;
    max-height: min(56dvh, 390px);
    padding: 8px;
  }

  .home-time-popover button {
    min-height: 44px;
    text-align: center;
  }
}

@media (max-width: 350px) {
  .home-date-range-shell {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Simple About page */
.about-simple-section {
  padding: clamp(60px, 8vw, 104px) 0;
  background: #ffffff;
}

.about-simple {
  max-width: 860px;
}

.about-simple-header {
  margin-bottom: 52px;
  padding-bottom: 42px;
  border-bottom: 1px solid #d9e2ee;
}

.about-simple h1 {
  max-width: 760px;
  margin: 8px 0 24px;
  color: var(--athens-navy);
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.about-simple-lead {
  max-width: 760px;
  margin: 0;
  color: #3e5067;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.55;
}

.about-simple h2 {
  margin: 48px 0 16px;
  color: var(--athens-navy);
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.about-simple > p,
.about-simple-list {
  color: #4d5f75;
  font-size: 1.04rem;
  line-height: 1.75;
}

.about-simple > p {
  margin: 0 0 18px;
}

.about-simple-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-simple-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e0e7ef;
}

.about-simple-list li:first-child {
  border-top: 1px solid #e0e7ef;
}

.about-simple-list strong {
  color: var(--athens-navy);
}

.about-simple-contact {
  margin-top: 58px;
  padding-top: 4px;
  border-top: 3px solid var(--athens-blue);
}

.about-simple-contact p {
  color: #4d5f75;
  line-height: 1.7;
}

.about-simple-contact a:not(.button) {
  color: var(--athens-blue);
  font-weight: 800;
}

.about-simple-contact .actions {
  margin-top: 26px;
}

@media (max-width: 620px) {
  .about-simple-section {
    padding: 44px 0 60px;
  }

  .about-simple-header {
    margin-bottom: 38px;
    padding-bottom: 32px;
  }

  .about-simple h1 {
    font-size: 3.15rem;
  }

  .about-simple h2 {
    margin-top: 38px;
  }

  .about-simple-contact .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-simple-contact .button {
    width: 100%;
  }
}
