* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: clip;
}

body {
  background: #dbe8ff;
  color: #07142f;
  overflow-x: clip;
  width: 100%;
  font-family: "Inter", "Poppins", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

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

.page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

input,
select,
button {
  min-width: 0;
  font: inherit;
}

.hero {
  min-height: min(100vh, 920px);
  background:
    linear-gradient(180deg, rgba(18, 76, 150, .75), rgba(244, 248, 255, .96)),
    url("assets/img/web/hero-bg.webp");
  background-size: cover;
  background-position: center;
  padding: clamp(16px, 3vw, 28px) clamp(16px, 4vw, 70px) clamp(24px, 4vw, 55px);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 25px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #ffffff30;
  color: #fff;
}

@media (min-width: 992px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .nav-left {
    justify-self: start;
  }

  .nav-center {
    justify-self: center;
  }

  .nav-right {
    justify-self: end;
  }
}

.nav-left {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  min-width: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.logo img.logo-invert,
.footer-logo.logo-invert,
.dashboard-brand-logo.logo-invert {
  filter: brightness(0) invert(1);
}

.desktop-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.desktop-menu a {
  color: #fff;
  font-weight: 600;
}

.test-btn {
  background: #fff;
  color: #0b2550;
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 6px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.login-chevron {
 
  font-size: 12px;
  transition: transform .18s ease;
}

.account-menu:not(.signed-in):hover .login-chevron,
.account-menu:not(.signed-in).open .login-chevron {
  transform: rotate(180deg);
}

.account-menu.signed-in .login-chevron {
  display: none;
}

.account-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.login-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  min-width: 180px;
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 20, 47, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}

.account-menu:not(.signed-in):hover .login-dropdown,
.account-menu:not(.signed-in).open .login-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-menu.signed-in .login-dropdown {
  display: none;
}

.login-option {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: 6px;
  color: #0b2550;
  font-weight: 700;
}

.login-option:hover {
  background: #eef4ff;
}

.account-menu.signed-in .login-btn {
  width: 46px;
  height: 46px;
  max-width: none;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: #fff;
  color: #0b2550;
}

.account-menu.signed-in .login-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
}

.account-menu.signed-in .login-btn i {
  font-size: 20px;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  min-width: 165px;
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 20, 47, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}

.account-menu.signed-in:hover .account-dropdown,
.account-menu.signed-in.open .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-link {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: 6px;
  background: transparent;
  color: #0b2550;
  font-weight: 700;
  text-align: left;
}

.account-link:hover {
  background: #eef4ff;
}

.menu-btn {
  display: none;
  background: none;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.mobile-home-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.mobile-home-btn i {
  font-size: 16px;
}

.mobile-menu {
  display: none;
}

@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu.active {
    display: none !important;
  }
}

.hero-text {
  text-align: center;
  color: #fff;
  margin-top: clamp(32px, 8vw, 90px);
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(4px, 2vw, 16px);
}

.hero-text h1 {
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hero-text p {
  position: static;
  width: 100%;
  max-width: 560px;
  margin: 16px auto 0;
  text-align: center;
  font-size: clamp(14px, 2.5vw, 15px);
  line-height: 1.65;
  color: #eef5ff;
}

.info-card {
  position: static;
  width: fit-content;
  max-width: 100%;
  margin: clamp(16px, 3vw, 24px) auto 0;
  background: #ffffff20;
  color: #fff;
  padding: clamp(14px, 3vw, 18px) clamp(16px, 3vw, 22px);
  backdrop-filter: blur(12px);
  line-height: 2;
  border: 1px solid #ffffff20;
  border-radius: 12px;
  font-size: clamp(13px, 2.5vw, 15px);
  flex-shrink: 0;
  box-sizing: border-box;
}

.info-card div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.booking {
  position: static;
  width: 100%;
  max-width: 100%;
  margin-top: clamp(20px, 4vw, 40px);
  background: #fff;
  padding: clamp(18px, 4vw, 30px) clamp(16px, 3vw, 32px) clamp(24px, 4vw, 40px);
  border-radius: clamp(14px, 2vw, 22px);
  box-shadow: 0 24px 70px rgba(20, 46, 94, .2);
  box-sizing: border-box;
}

.search {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: end;
  width: 100%;
}

.search-field {
  min-width: 0;
  padding: 0;
  border-right: 0;
}

.search-field:first-child {
  padding-left: 0;
}

@media (min-width: 1200px) {
  .search-field {
    padding: 0;
  }
}

.search-field span {
  display: block;
  margin-bottom: 10px;
  color: #3d4658;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.field-control {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #dfe5ef;
  border-radius: 10px;
  padding: 0 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .75);
}

.field-control i {
  color: #1f62ff;
  font-size: 22px;
  flex: 0 0 auto;
}

.field-control input,
.field-control select,
.field-control .place-autocomplete-field {
  width: 100%;
  height: auto;
  border: 0;
  outline: 0;
  padding: 0;
  color: #2f3b52;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
}

.field-control .place-autocomplete-field {
  display: block;
  min-height: auto;
  border-radius: 0;
  box-shadow: none;
  --gmp-mat-color-surface: transparent;
  --gmp-mat-color-on-surface: #2f3b52;
  --gmp-mat-color-primary: #1f62ff;
}

.field-control input::placeholder {
  color: #8b96ad;
}

.field-control select {
  color: #8b96ad;
}

.search-field,
.booking,
.search {
  overflow: visible;
}

.location-field-wrap {
  overflow: visible;
  z-index: 1;
}

.location-field-wrap:focus-within {
  z-index: 300;
}

.location-results {
  position: fixed;
  z-index: 10050;
  max-height: 260px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 32, 64, .16);
}

.location-result-empty {
  padding: 12px 10px;
  color: #506083;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.location-results[hidden] {
  display: none;
}

.location-result {
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 9px;
  padding: 10px;
  color: #1f2c46;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.location-result:hover {
  background: #eef5ff;
}

.location-result i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1f62ff;
  background: #eaf1ff;
  font-size: 14px;
}

.location-result span,
.location-result b,
.location-result small {
  display: block;
}

.location-result b {
  font-size: 14px;
  font-weight: 800;
}

.location-result small {
  margin-top: 2px;
  color: #71809a;
  font-size: 12px;
}

.place-autocomplete-field {
  display: block;
  width: 100%;
  min-height: 46px;
  border: 1px solid #d7e2f1;
  border-radius: 10px;
  background: #fff;
  color: #10204a;
  font-size: 15px;
  --gmp-mat-color-surface: #fff;
  --gmp-mat-color-on-surface: #10204a;
  --gmp-mat-color-primary: #1267ff;
}

.place-autocomplete-field:focus-within {
  border-color: #1267ff;
  box-shadow: 0 0 0 4px rgba(18, 103, 255, .12);
}

.pac-container {
  z-index: 10050;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(15, 32, 64, .16);
}

.pac-container.pac-hidden {
  display: none !important;
  visibility: hidden !important;
}

.search .search-submit {
  min-height: 58px;
  margin-left: 0;
  width: 100%;
  grid-column: 1 / -1;
  border-radius: 8px;
  background: #1f62ff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(31, 98, 255, .34);
}

.search .search-submit i {
  font-size: 23px;
}

.feature-cards-section {
  padding: clamp(60px, 8vw, 96px) clamp(18px, 4vw, 54px);
  background: #fff;
}

.feature-cards-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.feature-cards-heading {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  text-align: center;
  color: #07142f;
  margin-bottom: clamp(32px, 5vw, 52px);
  line-height: 1.15;
}

.feature-cards-heading .accent {
  color: #1f62ff;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 22px;
  min-height: 520px;
}

.feature-cards-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  min-height: 0;
}

.feature-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 18px 50px rgba(17, 45, 90, .1);
}

.feature-card-large {
  min-height: 100%;
}

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

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 20, 47, .62) 0%,
    rgba(7, 20, 47, .12) 42%,
    rgba(7, 20, 47, .28) 100%
  );
  pointer-events: none;
}

.feature-card-label {
  position: absolute;
  top: clamp(18px, 2.5vw, 28px);
  left: clamp(18px, 2.5vw, 28px);
  z-index: 2;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  max-width: 85%;
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}

.driver-services {
  min-height: auto;
  padding: 100px clamp(18px, 7vw, 70px);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-image {
  position: relative;
}

.service-image::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  background: #f3f4f6;
  top: -35px;
  left: -35px;
  z-index: 0;
  border-radius: 18px;
}

.service-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: grayscale(20%);
  border-radius: 18px;
  overflow: hidden;
}

.service-content span {
  font-size: 11px;
  letter-spacing: 4px;
  color: #9ca3af;
  font-weight: 700;
}

.service-content h2,
.footer-brand h2 {
  overflow-wrap: anywhere;
}

.service-content h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  color: #111827;
  margin: 12px 0 20px;
  line-height: 1.1;
}

.service-content > p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 35px;
  max-width: 560px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 35px;
}

.service-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.service-icon-box {
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--main);
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, .5);
}

.service-icon-box i {
  display: block;
  line-height: 1;
  font-style: normal;
}

.service-item.orange { --main: #f97316; --icon-bg: #fff1e6; }
.service-item.amber { --main: #f59e0b; --icon-bg: #fff7db; }
.service-item.blue { --main: #2563eb; --icon-bg: #eaf3ff; }
.service-item.green { --main: #16a34a; --icon-bg: #e9faef; }
.service-item.cyan { --main: #0ea5a8; --icon-bg: #e6fbfb; }
.service-item.purple { --main: #7c3aed; --icon-bg: #f1e8ff; }
.service-item.red { --main: #ef4444; --icon-bg: #fff0f0; }

.service-item h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.service-item p {
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
}

.assist-section {
  padding: 90px clamp(18px, 4vw, 54px);
  background: #eef4fb;
}

.driver-keywords {
  padding: clamp(55px, 8vw, 90px) clamp(16px, 4vw, 24px);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.driver-keywords-wrap {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.driver-keywords h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.15;
  color: #07142f;
  margin-bottom: clamp(32px, 5vw, 55px);
  font-weight: 800;
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
}

.keyword-card {
  min-height: 250px;
  padding: clamp(24px, 3vw, 35px);
  border-radius: 20px;
  text-align: left;
  background: linear-gradient(135deg, #fff 0%, #f7faff 100%);
  border: 1px solid #e2eaf5;
  box-shadow: 0 14px 35px rgba(7, 20, 47, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.keyword-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 76, 150, 0.14);
  border-color: #cfe0ff;
}

.keyword-card.purple { --main: #7c3aed; --icon-bg: #f1e8ff; }
.keyword-card.blue { --main: #2563eb; --icon-bg: #eaf3ff; }
.keyword-card.cyan { --main: #0ea5a8; --icon-bg: #e6fbfb; }
.keyword-card.green { --main: #16a34a; --icon-bg: #e9faef; }
.keyword-card.orange { --main: #f97316; --icon-bg: #fff1e6; }
.keyword-card.red { --main: #ef4444; --icon-bg: #fff0f0; }

.keyword-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(28px, 5vw, 42px);
  background: var(--icon-bg, #eaf3ff);
  color: var(--main, #1267ff);
  font-size: 26px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.55);
}

.keyword-icon-box i {
  line-height: 1;
}

.keyword-card h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #07142f;
  margin-bottom: 14px;
  font-weight: 700;
}

.keyword-card p {
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.8;
  color: #51627f;
}

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

@media (max-width: 600px) {
  .keyword-grid {
    grid-template-columns: 1fr;
  }

  .keyword-card {
    min-height: auto;
  }
}

.assist-panel {
  position: relative;
  max-width: 1280px;
  margin: auto;
  overflow: hidden;
  border: 1px solid #e2eaf5;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fbff 48%, #eef5ff 100%);
  box-shadow: 0 24px 70px rgba(34, 74, 130, .12);
}

.assist-map {
  position: absolute;
  top: 20px;
  right: 20px;
  width: min(760px, 62%);
  height: 315px;
  opacity: .75;
  background:
    linear-gradient(rgba(255, 255, 255, .35), rgba(255, 255, 255, .75)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/World_map_-_low_resolution.svg/1280px-World_map_-_low_resolution.svg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.assist-map::before,
.assist-map::after {
  content: "";
  position: absolute;
  border-top: 2px dashed rgba(0, 96, 255, .38);
  transform-origin: left center;
}

.assist-map::before {
  left: 18%;
  top: 41%;
  width: 270px;
  transform: rotate(4deg);
}

.assist-map::after {
  right: 16%;
  top: 52%;
  width: 220px;
  transform: rotate(-10deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  color: #0768ef;
  font-size: 27px;
  text-shadow: 0 10px 24px rgba(0, 87, 214, .28);
}

.pin-one { left: 16%; top: 33%; }
.pin-two { left: 51%; top: 40%; }
.pin-three {
  left: 67%;
  top: 53%;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 102, 255, .12);
  box-shadow: 0 0 0 18px rgba(0, 102, 255, .08);
  font-size: 42px;
}
.pin-four { right: 9%; top: 53%; }

.assist-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(330px, 480px) minmax(420px, 600px);
  gap: clamp(34px, 5vw, 70px);
  align-items: end;
  padding: clamp(42px, 6vw, 68px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #0067ff;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.section-kicker i {
  width: 58px;
  height: 2px;
  background: #7aaeff;
  position: relative;
}

.section-kicker i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0067ff;
  transform: translateY(-50%);
}

.assist-info h2 {
  margin-top: 18px;
  color: #071a44;
  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 800;
}

.assist-info h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 20px;
  border-radius: 99px;
  background: #0067ff;
}

.assist-copy {
  max-width: 450px;
  margin-top: 20px;
  color: #51627f;
  font-size: 16px;
  line-height: 1.75;
}

.assist-cards {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.assist-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 74px 1fr 60px;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid #e7edf6;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 45px rgba(27, 58, 105, .08);
}

.assist-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 28px;
}

.assist-icon.blue {
  color: #0067ff;
  background: #e7f0ff;
}

.assist-icon.green {
  color: #10b981;
  background: #e6f8ef;
}

.assist-icon.orange {
  color: #ff8a00;
  background: #fff0df;
}

.assist-card h3 {
  color: #071a44;
  font-size: 17px;
  margin-bottom: 8px;
}

.assist-card p {
  color: #52627f;
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.assist-card strong {
  border-left: 1px solid #dbe4f1;
  color: #b8c4d8;
  font-size: 28px;
  font-weight: 800;
  text-align: right;
}

.message-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #076effef, #2f79ef5d);
  box-shadow: 0 20px 50px rgba(0, 67, 174, .28);
}

.message-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.message-heading > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  font-size: 22px;
}

.message-heading h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.message-heading p {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.message-form label {
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(5, 39, 100, .18);
  border-radius: 6px;
  background: #fff;
  box-shadow: inset 0 1px 4px rgba(11, 37, 80, .08);
}

.message-form label i {
  color: #0b63de;
  font-size: 15px;
}

.message-form input,
.message-form select,
.message-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: #17284a;
  background: transparent;
  font-size: 13px;
}

.message-form textarea {
  height: 72px;
  padding-top: 17px;
  resize: none;
}

.message-field {
  align-items: flex-start;
}

.message-field i {
  margin-top: 17px;
}

.message-form button {
  min-height: 52px;
  border-radius: 6px;
  background: #fff;
  color: #0067ff;
  font-weight: 800;
  box-shadow: inset 0 1px 4px rgba(11, 37, 80, .08);
}

.message-form button i {
  margin-right: 8px;
}

.contact-form-status {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.message-form .contact-form-status.error {
  color: #ffe0e0;
}

.message-form .contact-form-status.success {
  color: #dcfce7;
}

@media (max-width: 1050px) {
  .assist-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .assist-map {
    width: 100%;
    opacity: .45;
  }

  .message-form {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .assist-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .assist-panel {
    border-radius: 10px;
  }

  .assist-grid {
    padding: 28px 18px;
    gap: 28px;
  }

  .assist-map {
    height: 180px;
    width: 100%;
    right: 0;
    left: 0;
    top: 10px;
    opacity: .35;
  }

  .assist-map::before,
  .assist-map::after {
    display: none;
  }

  .assist-card {
    grid-template-columns: 56px 1fr;
    padding: 18px;
  }

  .assist-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .assist-card strong {
    display: none;
  }

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

  .message-form {
    padding: 18px;
  }

  .message-heading {
    align-items: flex-start;
  }
}

.footer-grid p,
.footer-grid a {
  overflow-wrap: anywhere;
}

.luxury-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(244, 248, 255, .96), rgba(18, 76, 150, .75));
  color: #fff;
  padding: 100px clamp(18px, 7vw, 70px) 35px;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, .08), transparent 40%);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.customer-reviews-footer {
  margin-bottom: 48px;
}

.customer-reviews-footer[hidden] {
  display: none !important;
}

.customer-reviews-panel {
  color: #07142f;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #e2eaf5;
  box-shadow: 0 18px 45px rgba(7, 20, 47, 0.12);
}

.customer-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.customer-reviews-head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 800;
  color: #07142f;
  margin: 0;
}

.customer-reviews-subtitle {
  margin: 6px 0 0;
  color: #71809a;
  font-size: 13px;
  font-weight: 600;
}

.review-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-source-badge.google {
  background: #eaf1ff;
  border: 1px solid #cfe0ff;
  color: #1f62ff;
}

.review-source-badge.customer {
  background: #e9faef;
  border: 1px solid #bbf7d0;
  color: #16a34a;
}

.review-avatar-img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #cfe0ff;
  flex-shrink: 0;
  display: block;
  background: #eef4ff;
}

.customer-only-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf1ff;
  border: 1px solid #cfe0ff;
  color: #1f62ff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.customer-reviews-summary {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  margin-bottom: 24px;
}

.reviews-score-block {
  text-align: left;
}

.reviews-score {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(42px, 6vw, 56px);
  line-height: 1;
  color: #1267ff;
  margin-bottom: 8px;
}

.reviews-stars {
  display: flex;
  gap: 4px;
  color: #1267ff;
  font-size: 18px;
  margin-bottom: 8px;
}

.reviews-score-block > span {
  color: #71809a;
  font-size: 14px;
}

.reviews-bars {
  display: grid;
  gap: 10px;
}

.reviews-bar-row {
  display: grid;
  grid-template-columns: 34px 1fr 42px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: #506083;
}

.reviews-bar-track {
  height: 8px;
  border-radius: 999px;
  background: #e2eaf5;
  overflow: hidden;
}

.reviews-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3d8bff, #1267ff);
}

.reviews-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.reviews-loading {
  margin: 0;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  color: #71809a;
  background: #f8fbff;
  border: 1px dashed #cfe0ff;
}

.review-compose {
  border: 1px solid #e2eaf5;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 24px;
  background: #f8fbff;
  position: relative;
}

.review-compose-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.review-compose-head h3 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  color: #07142f;
}

.review-compose-share {
  flex-shrink: 0;
}

.review-compose-share .review-menu-dropdown {
  right: 0;
  left: auto;
}

.review-compose-hint {
  margin: 0;
  color: #71809a;
  font-size: 13px;
}

.review-star-picker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.review-star-btn {
  border: 0;
  background: transparent;
  color: #c5d4ea;
  font-size: 28px;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  transition: color 0.15s ease, transform 0.15s ease;
}

.review-star-btn:hover,
.review-star-btn.active,
.review-star-btn.hover {
  color: #1267ff;
  transform: scale(1.05);
}

.review-star-label {
  font-size: 14px;
  font-weight: 600;
  color: #1267ff;
  margin-left: 4px;
}

.review-compose textarea {
  width: 100%;
  border: 1px solid #dfe5ef;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 14px;
  color: #07142f;
  resize: vertical;
  min-height: 110px;
  outline: none;
  background: #fff;
}

.review-compose textarea::placeholder {
  color: #8b96ad;
}

.review-compose textarea:focus {
  border-color: #1267ff;
  box-shadow: 0 0 0 3px rgba(18, 103, 255, 0.15);
}

.review-compose-actions {
  margin-top: 14px;
}

.review-submit-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: #1267ff;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 24px rgba(18, 103, 255, 0.35);
}

.review-submit-btn:hover {
  background: #0b2550;
  transform: translateY(-1px);
}

.review-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.review-form-status {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.review-form-status.error {
  color: #dc2626;
}

.review-form-status.success {
  color: #16a34a;
}

.reviews-category-grid article {
  border: 1px solid #e2eaf5;
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 20, 47, 0.05);
}

.reviews-category-grid strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  margin-bottom: 6px;
  color: #07142f;
}

.reviews-category-grid .score-good {
  color: #1267ff;
}

.reviews-category-grid span {
  font-size: 12px;
  color: #71809a;
  line-height: 1.35;
}

.reviews-list {
  display: grid;
  gap: 18px;
}

.review-card {
  border: 1px solid #e2eaf5;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 20, 47, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  border-color: #cfe0ff;
  box-shadow: 0 14px 32px rgba(18, 76, 150, 0.1);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1267ff, #3d8bff);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.review-avatar-alt {
  background: linear-gradient(135deg, #0b2550, #1267ff);
}

.review-avatar-third {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
}

.review-user strong {
  display: block;
  color: #07142f;
  font-size: 15px;
}

.review-user small {
  color: #71809a;
  font-size: 12px;
}

.review-card-actions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.review-rating {
  text-align: right;
}

.review-rating strong {
  display: block;
  color: #1267ff;
  font-size: 18px;
  margin-bottom: 4px;
}

.review-stars-sm {
  color: #1267ff;
  font-size: 12px;
  display: inline-flex;
  gap: 2px;
}

.review-share-menu {
  position: relative;
}

.review-menu-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #dfe5ef;
  border-radius: 10px;
  background: #fff;
  color: #506083;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.review-menu-btn:hover {
  border-color: #1267ff;
  color: #1267ff;
  background: #eef4ff;
}

.review-menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid #e2eaf5;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(7, 20, 47, 0.12);
  padding: 8px;
  z-index: 20;
}

.review-menu-dropdown button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #07142f;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-menu-dropdown button:hover {
  background: #eef4ff;
  color: #1267ff;
}

.review-menu-dropdown button i {
  width: 16px;
  color: #1267ff;
}

.review-card p {
  margin: 0 0 14px;
  color: #506083;
  line-height: 1.65;
  font-size: 14px;
}

.review-photos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.review-photos img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e2eaf5;
}

.reviews-read-all {
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: #1267ff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.reviews-read-all i {
  transition: transform 0.2s ease;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid #cfe0ff;
  background: #f5f9ff;
  color: #1f62ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.reviews-google-link:hover {
  background: #eaf1ff;
  border-color: #9ec0ff;
}

.review-user strong a {
  color: inherit;
  text-decoration: none;
}

.review-user strong a:hover {
  color: #1f62ff;
  text-decoration: underline;
}

.reviews-read-all.expanded i {
  transform: rotate(180deg);
}

.footer-brand {
  max-width: 650px;
  margin-bottom: 70px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo {
  height: 102px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
  background: transparent;
}

.footer-tag {
  color: #7db8ff;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 700;
}

.footer-brand h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 8vw, 64px);
  line-height: 1;
  margin: 20px 0;
  text-transform: uppercase;
}

.footer-brand p {
  color: #d5def0;
  max-width: 500px;
  line-height: 1.8;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-grid h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-grid a {
  display: block;
  color: #d5def0;
  margin-bottom: 12px;
  transition: .3s;
}

.footer-grid a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-grid p {
  color: #d5def0;
  margin-bottom: 12px;
}

.subscribe-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscribe-box input,
.subscribe-box button {
  height: 52px;
  border-radius: 8px;
}

.subscribe-box input {
  border: 0;
  outline: 0;
  padding: 0 15px;
}

.subscribe-box button {
  background: #fff;
  color: #0b3f82;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: #d5def0;
}

.site-visitor-count {
  margin-top: 8px;
  font-size: 13px;
  color: #d5def0;
  opacity: 0.9;
}

@media (min-width: 640px) and (max-width: 1199px) {
  .search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .search-field {
    padding: 0;
    border-right: 0;
  }

  .search .search-submit {
    min-height: 64px;
    margin-left: 0;
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .search {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .search-field {
    padding: 0;
    border-right: 0;
  }

  .search .search-submit {
    min-height: 72px;
    margin-left: 0;
    width: auto;
    grid-column: auto;
  }

  .hero-text p {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    max-width: 420px;
  }

  .booking {
    margin-top: auto;
  }
}

@media (max-width: 991px) {
  .feature-cards-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-cards-stack {
    grid-template-rows: auto;
  }

  .feature-card,
  .feature-card-large {
    min-height: clamp(220px, 42vw, 320px);
  }

  .driver-services {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .service-image img {
    height: clamp(280px, 50vw, 380px);
  }

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

@media (max-width: 900px) {
  .customer-reviews-summary {
    grid-template-columns: 1fr;
  }

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

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

  .customer-reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 991px) {
  .hero {
    padding: 20px;
    min-height: auto;
  }

  .nav {
    height: 70px;
    padding: 0 16px;
    width: 100%;
    justify-content: space-between;
  }

  .nav-left {
    flex: 0 1 auto;
    justify-content: flex-start;
    gap: 10px;
  }

  .nav-right {
    flex: 0 0 auto;
    margin-left: auto;
    justify-content: flex-end;
  }

  .nav-left .logo {
    display: inline-flex;
  }

  .logo img {
    height: 48px;
  }

  .desktop-menu,
  .nav-right > .account-menu {
    display: none !important;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: 0;
    background: transparent;
    color: #fff;
  }

  .mobile-menu .account-menu.signed-in {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    background: transparent;
    padding: 16px 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    color: #fff;
    font-weight: 700;
    padding: 10px 0;
    background: transparent;
  }

  .mobile-menu button {
    background: transparent;
    color: #fff;
    padding: 10px 0;
    border-radius: 0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
  }

  .mobile-menu .login-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-menu .account-menu.open .login-dropdown {
    display: grid;
    gap: 8px;
  }

  .mobile-menu .login-option {
    background: transparent;
    color: #fff;
    padding: 10px 0;
    border-radius: 0;
  }

  .mobile-menu .login-option:hover {
    background: transparent;
    text-decoration: underline;
  }

  .mobile-menu .account-link {
    background: transparent;
    color: #fff;
    padding: 10px 0;
    border-radius: 0;
    text-align: left;
  }

  .mobile-menu .account-link:hover {
    background: transparent;
    text-decoration: underline;
  }

  .hero-text {
    margin-top: clamp(28px, 6vw, 48px);
  }

  .hero-text h1 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .hero-text p {
    max-width: 100%;
  }

  .info-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    line-height: 1.4;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.32);
  }

  .info-card div {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: clamp(10px, 2.8vw, 13px);
    overflow-wrap: anywhere;
  }

  .info-card div i {
    font-size: clamp(15px, 4vw, 18px);
    flex-shrink: 0;
  }

  .booking {
    padding: clamp(16px, 4vw, 20px);
    margin-top: clamp(16px, 3vw, 24px);
    border-radius: 18px;
  }

  .field-control {
    min-height: 58px;
  }

  .driver-services {
    padding-top: 70px;
    padding-bottom: 70px;
    overflow-x: clip;
  }

  .service-image::before {
    display: none;
  }

  .service-image {
    overflow: hidden;
  }

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

  .footer-brand {
    margin-bottom: 40px;
  }

  .footer-logo {
    height: 88px;
    max-width: 210px;
  }

  .footer-brand h2 {
    font-size: clamp(28px, 8vw, 48px);
  }
}

@media (max-width: 600px) {
  .hero,
  .driver-services,
  .assist-section,
  .luxury-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 16px;
    min-height: auto;
  }

  .nav {
    padding: 0;
    height: 60px;
  }

  .hero-text {
    margin-top: 24px;
    padding: 0;
  }

  .hero-text h1 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.12;
  }

  .hero-text p {
    font-size: 14px;
    margin-top: 12px;
  }

  .info-card {
    padding: 10px 8px;
    line-height: 1.35;
    font-size: 12px;
    gap: 8px;
  }

  .info-card div {
    font-size: 10px;
    gap: 5px;
  }

  .booking {
    padding: 16px;
  }

  .search {
    gap: 12px;
  }

  .field-control {
    min-height: 54px;
    padding: 0 12px;
    gap: 10px;
  }

  .field-control i {
    font-size: 18px;
  }

  .search .search-submit {
    min-height: 54px;
    font-size: 15px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-image::before {
    display: none;
  }

  .service-image img {
    height: clamp(220px, 65vw, 300px);
  }

  .service-item {
    gap: 12px;
  }

  .service-icon-box {
    min-width: 44px;
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 12px;
  }

  .service-content h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .assist-info h2 {
    font-size: clamp(28px, 7vw, 38px);
  }

  .assist-card {
    gap: 12px;
  }

  .luxury-footer {
    padding-top: 60px;
    padding-bottom: 25px;
  }

  .subscribe-box input,
  .subscribe-box button {
    width: 100%;
  }
}

.auth-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(7, 26, 68, .82), rgba(0, 103, 255, .58)),
    url("assets/img/web/hero-bg.webp");
  background-size: cover;
  background-position: center;
}

.dashboard-page {
  min-height: 100vh;
  background-color: #ffffff;
  background-image: none;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-card {
  width: min(100%, 440px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 70px rgba(7, 20, 47, .28);
}

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b63de;
  font-weight: 800;
  margin-bottom: 22px;
}

.auth-logo img {
  height: 66px;
  object-fit: contain;
  margin-bottom: 18px;
}

.auth-card h1 {
  color: #071a44;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 34px;
  line-height: 1.1;
}

.auth-card p {
  margin-top: 12px;
  color: #51627f;
  line-height: 1.65;
}

.auth-subtitle {
  margin-bottom: 18px;
}

.auth-switch {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: #51627f;
}

.auth-switch a {
  color: #0b63de;
  font-weight: 800;
}

.driver-badge {
  background: #fff4e5;
  color: #b45309;
}

.driver-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff8eb;
  border: 1px solid #fde6b3;
  color: #7a5a1f;
  line-height: 1.6;
}

.dashboard-status-pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #047857;
  font-weight: 800;
  white-space: normal;
}

.dashboard-status-pill i {
  font-size: 10px;
}

.driver-status-pill {
  background: #ecfdf3;
  color: #047857;
}

.email-login-form {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.email-login-form label {
  display: grid;
  gap: 8px;
}

.email-login-form label span {
  color: #071a44;
  font-size: 13px;
  font-weight: 800;
}

.auth-field {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid #dbe4f1;
  border-radius: 8px;
  background: #fff;
}

.auth-field i {
  color: #0067ff;
}

.auth-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #071a44;
  background: transparent;
}

.email-login-btn {
  min-height: 52px;
  border-radius: 8px;
  background: #0067ff;
  color: #fff;
  font-weight: 900;
}

.auth-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: 2px;
}

.auth-link-btn,
.forgot-password-btn {
  flex: 1;
  min-width: 0;
  padding: 8px 0;
  background: transparent;
  border: 0;
  color: #0067ff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  text-align: center;
}

.auth-link-btn:first-child,
.forgot-password-btn:first-child {
  text-align: left;
}

.auth-link-btn:last-child,
.forgot-password-btn:last-child {
  text-align: right;
}

.auth-link-btn:hover,
.auth-link-btn:focus-visible,
.forgot-password-btn:hover,
.forgot-password-btn:focus-visible {
  color: #004ecb;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-divider {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 24px 0;
  color: #7b89a3;
  font-size: 13px;
  font-weight: 800;
}

.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #dbe4f1;
}

.auth-divider span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background: rgba(255, 255, 255, .94);
}

.google-login-btn {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  background: #0067ff;
  color: #fff;
  font-weight: 900;
}

.google-login-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.auth-card-google-only .google-login-btn {
  margin-top: 8px;
}

.auth-card-google-only .auth-switch {
  margin-top: 22px;
}

.auth-status {
  min-height: 22px;
  color: #b91c1c;
  font-size: 14px;
}

.auth-status.success {
  color: #047857;
}

.google-recovery-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #dbe4f1;
  background: #f8fbff;
}

.google-recovery-panel strong {
  display: block;
  color: #07163d;
  font-size: 15px;
}

.google-recovery-panel p {
  margin: 6px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.google-recovery-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: #ea4335;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(7, 20, 47, 0.08);
}

.google-recovery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dbe4f1;
  color: #0b2550;
  font-weight: 800;
  text-decoration: none;
}

.google-recovery-btn:hover {
  background: #eef4ff;
  border-color: #0067ff;
  color: #0067ff;
}

.forgot-password-card .email-login-btn {
  margin-top: 4px;
}

.dashboard-topbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 70px);
  background: #fff;
  border-bottom: 1px solid #e7edf6;
  box-shadow: 0 4px 18px rgba(7, 20, 47, .06);
}

.dashboard-home {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #071a44;
  font-weight: 800;
}

.dashboard-user-log {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #51627f;
  font-size: 13px;
  font-weight: 800;
}

.dashboard-user-log strong {
  max-width: 100%;
  overflow: hidden;
  color: #071a44;
  text-overflow: ellipsis;
  white-space: normal;
  overflow-wrap: anywhere;
}

.dashboard-logout,
.dashboard-primary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 8px;
  background: #0067ff;
  color: #fff;
  font-weight: 900;
}

.dashboard-shell {
  width: 100%;
  max-width: 1200px;
  margin: 42px auto 70px;
}

.customer-hero,
.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid #e7edf6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 20, 47, .06);
}

.customer-hero-main {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.customer-hero-copy {
  min-width: 0;
}

.customer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e7f0ff;
  color: #0067ff;
  font-size: 12px;
  font-weight: 900;
}

.customer-member-since {
  margin-top: 8px;
  color: #7b89a3;
  font-size: 14px;
}

.dashboard-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 8px;
  background: #0067ff;
  color: #fff;
  font-weight: 900;
  white-space: normal;
}

.dashboard-cta-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid #e7edf6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 20, 47, .06);
}

.stat-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e7f0ff;
  color: #0067ff;
  font-size: 20px;
}

.stat-card strong {
  display: block;
  color: #071a44;
  font-size: 28px;
  line-height: 1.1;
}

.stat-card span {
  color: #51627f;
  font-size: 13px;
  font-weight: 700;
}

.customer-layout,
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.dashboard-avatar,
.customer-avatar {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #e7f0ff;
  color: #0067ff;
  font-size: 36px;
  font-weight: 900;
}

.avatar-edit-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0067ff;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 103, 255, .28);
}

.avatar-edit-btn input {
  display: none;
}

.dashboard-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
}

.dashboard-hero span,
.customer-hero-copy span {
  color: #0067ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.dashboard-hero h1,
.customer-hero-copy h1 {
  margin-top: 8px;
  color: #071a44;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.08;
}

.dashboard-hero p,
.customer-hero-copy p {
  margin-top: 6px;
  color: #51627f;
}

.dashboard-card {
  padding: 26px;
  border: 1px solid #e7edf6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 20, 47, .06);
}

.dashboard-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.dashboard-card-head i {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f0ff;
  color: #0067ff;
}

.dashboard-card-head p {
  margin-top: 4px;
  color: #7b89a3;
  font-size: 14px;
}

.dashboard-card h2 {
  color: #071a44;
  font-size: 22px;
}

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

.customer-info-item {
  padding: 16px;
  border: 1px solid #e7edf6;
  border-radius: 10px;
  background: #f8fbff;
}

.customer-info-item span {
  display: block;
  color: #7b89a3;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.customer-info-item strong {
  display: block;
  margin-top: 8px;
  color: #071a44;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.customer-edit-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e7edf6;
}

.customer-edit-block h3 {
  margin-bottom: 16px;
  color: #071a44;
  font-size: 18px;
}

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

.customer-field-full {
  grid-column: 1 / -1;
}

.customer-form-actions {
  margin-top: 18px;
}

.profile-save-status {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
}

.profile-save-status.success {
  color: #047857;
}

.profile-save-status.error {
  color: #b91c1c;
}

.dashboard-field {
  display: grid;
  gap: 9px;
}

.dashboard-field span {
  color: #51627f;
  font-size: 13px;
  font-weight: 800;
}

.dashboard-field input {
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #dbe4f1;
  border-radius: 8px;
  background: #fff;
  color: #071a44;
}

.dashboard-primary {
  width: fit-content;
  min-width: 0;
  margin-top: 0;
}

.booking-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.booking-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #e7edf6;
  border-radius: 10px;
  background: #f8fbff;
}

.booking-row-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e7f0ff;
  color: #0067ff;
}

.booking-row-body {
  min-width: 0;
  flex: 1;
}

.booking-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-row h3 {
  color: #071a44;
  font-size: 16px;
}

.booking-route {
  margin-top: 6px;
  color: #51627f;
  font-size: 14px;
}

.booking-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  color: #7b89a3;
  font-size: 13px;
}

.booking-row-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.booking-status {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e7f0ff;
  color: #0067ff;
  font-size: 12px;
  white-space: normal;
}

.empty-bookings,
.empty-bookings-panel {
  color: #51627f;
}

.empty-bookings-panel {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 28px 18px;
  border: 1px dashed #dbe4f1;
  border-radius: 12px;
  background: #f8fbff;
  text-align: left;
}

.empty-bookings-panel i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e7f0ff;
  color: #0067ff;
  font-size: 20px;
}

.empty-bookings-panel h3 {
  color: #071a44;
  font-size: 18px;
}

/* Dashboard responsive */
@media (max-width: 1024px) {
  .dashboard-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 32px auto 56px;
  }

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

@media (max-width: 920px) {
  .customer-stats,
  .customer-layout,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .dashboard-topbar {
    flex-wrap: wrap;
    gap: 14px;
    min-height: auto;
    padding: 16px 20px;
  }

  .dashboard-user-log {
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .dashboard-user-log strong {
    max-width: 100%;
  }

  .dashboard-logout {
    margin-left: auto;
  }

  .customer-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stat-card strong {
    font-size: 24px;
  }

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

  .booking-row-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-primary {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .customer-hero,
  .dashboard-hero,
  .driver-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-cta,
  .dashboard-status-pill {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .dashboard-shell {
    width: calc(100% - 24px);
    margin: 20px auto 40px;
  }

  .auth-card,
  .dashboard-card,
  .dashboard-hero,
  .customer-hero,
  .driver-hero,
  .stat-card {
    padding: 18px;
  }

  .auth-link-btn,
  .forgot-password-btn {
    font-size: 13px;
  }

  .dashboard-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-home,
  .dashboard-logout {
    width: 100%;
  }

  .dashboard-user-log {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .dashboard-logout {
    margin-left: 0;
  }

  .customer-hero-main,
  .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-avatar,
  .customer-avatar {
    width: 78px;
    height: 78px;
    font-size: 30px;
  }

  .dashboard-card-head {
    flex-direction: row;
    align-items: flex-start;
  }

  .dashboard-card h2 {
    font-size: 20px;
  }

  .booking-row {
    flex-direction: column;
  }

  .booking-row-icon {
    width: 40px;
    height: 40px;
  }

  .booking-row-meta {
    flex-direction: column;
    gap: 8px;
  }

  .empty-bookings-panel {
    padding: 22px 16px;
  }
}

@media (max-width: 400px) {
  .hero,
  .driver-services,
  .driver-keywords,
  .assist-section,
  .luxury-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-text h1 br {
    display: none;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .dashboard-shell {
    width: calc(100% - 16px);
  }

  .customer-hero,
  .dashboard-hero,
  .driver-hero,
  .dashboard-card,
  .stat-card {
    padding: 16px;
    border-radius: 10px;
  }

  .dashboard-card-head i,
  .stat-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .customer-badge,
  .dashboard-status-pill {
    font-size: 11px;
  }

  .dashboard-hero h1,
  .customer-hero-copy h1 {
    font-size: 24px;
  }
}
