/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #363A3D;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(1, 16, 31, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  width: 136px;
  height: 36px;
  object-fit: contain;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.header__menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  padding: 8px 0;
  white-space: nowrap;
}

.header__menu-item > a:hover {
  color: #fff;
}

.dropdown-arrow {
  flex-shrink: 0;
  transition: transform 0.25s;
}

.header__menu-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.header__menu-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: rgba(9, 30, 46, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(63, 72, 80, 0.6);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.header__menu-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  transition: background 0.2s;
  color: #fff;
}

.dropdown__item:hover {
  background: rgba(0, 167, 226, 0.1);
}

.dropdown__item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.dropdown__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.dropdown__item span {
  display: block;
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.4;
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.16px;
  padding: 8px;
  transition: opacity 0.2s;
}

.header__phone:hover {
  opacity: 0.8;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
}

.header__btn--login {
  color: #fff;
  border: 2px solid #6B7E8E;
  padding: 10px 22px;
}

.header__btn--login:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header__btn--quote {
  color: #fff;
  background: #00A7E2;
  padding: 11px 21px;
  font-size: 14px;
}

.header__btn--quote:hover {
  background: #0091c7;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-open .header__nav {
  display: flex;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #00A7E2, #0077B3);
  color: #fff;
  border-color: transparent;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #0091c7, #006699);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 167, 226, 0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline-dark {
  background: transparent;
  color: #363A3D;
  border-color: #E8EAED;
}

.btn--outline-dark:hover {
  border-color: #00A7E2;
  color: #00A7E2;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 18px;
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #363A3D;
  text-align: center;
  margin-bottom: 48px;
}

.section-heading--light {
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.hero__slide.active {
  opacity: 1;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(18, 20, 21, 1.0) 0%,
    rgba(21, 25, 28, 0.91) 32.7%,
    rgba(26, 34, 42, 0.75) 53.4%,
    rgba(26, 34, 42, 0.0) 87.5%
  );
}

.hero__carousel-dots {
  position: absolute;
  bottom: 27px;
  right: 240px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(27, 34, 40, 0.6);
  border: 1px solid #3F4850;
}

.dot.active {
  background: #fff;
  border-color: #fff;
}

.hero__driver-card {
  position: absolute;
  bottom: 60px;
  right: 240px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.driver-card__pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}

.pin-line {
  width: 1px;
  height: 40px;
  border-left: 2px dashed rgba(255, 255, 255, 0.4);
}

.pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00A7E2;
  border: 2px solid #fff;
}

.driver-card__body {
  background: rgba(27, 34, 40, 0.6);
  border: 1px solid #3F4850;
  border-radius: 9px;
  padding: 12px 16px;
  color: #fff;
  text-align: center;
  min-width: 166px;
}

.driver-card__label {
  display: block;
  font-size: 8px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 2px;
}

.driver-card__name {
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 8px;
}

.driver-card__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.31);
  margin-bottom: 8px;
}

.driver-card__stats {
  display: flex;
  gap: 16px;
  font-size: 11px;
}

.driver-card__stats .stat-label {
  display: block;
  color: #9CA3AF;
  font-size: 8px;
  text-transform: uppercase;
}

.driver-card__stats .stat-value {
  display: block;
  font-weight: 900;
  font-size: 15px;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 1280px;
  padding-top: 168px;
  padding-bottom: 80px;
  margin: 0 auto;
}

.hero__content > * {
  max-width: 800px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 34, 40, 0.45);
  border: 1px solid #3F4850;
  border-radius: 14px;
  padding: 12px 16px;
  color: #CFCFCF;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
}

.pill strong {
  font-weight: 600;
  color: #fff;
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pill__dot--green { background: #22C55E; }
.pill__dot--pink { background: #FD5373; }
.pill__dot--blue { background: #00A7E2; }

.hero__title {
  font-weight: 800;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2.5px;
  color: #fff;
  margin-bottom: 0;
}

.hero__subtitle {
  font-weight: 600;
  font-size: 40px;
  line-height: 88px;
  color: #F0F0F0;
  margin-bottom: 5px;
}

.hero__body {
  font-weight: 300;
  font-size: 17px;
  line-height: 31px;
  color: #fff;
  margin-bottom: 34px;
  max-width: 703px;
}

.hero__ctas-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__badge {
  width: 286px;
  height: auto;
}

.btn--hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00A7E2;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 25.6px;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn--hero-primary:hover {
  background: #0090c4;
}

.btn--hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(75, 80, 84, 0.87);
  border: 1px solid #4B5054;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 25.6px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn--hero-secondary:hover {
  background: rgba(75, 80, 84, 1);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #090909;
  padding: 48px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-bar__number {
  display: block;
  font-weight: 900;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 8px;
}

.stats-bar__number--blue {
  color: #00A7E2;
}

.stats-bar__number--green {
  color: #76D750;
}

.stats-bar__label {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.5;
}

/* ===== DELIVERY SPEED ===== */
.delivery-speed {
  padding: 100px 0;
  background: #F3F4F6;
}

.delivery-speed__header {
  text-align: center;
  margin-bottom: 48px;
}

.delivery-speed__heading {
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #01101F;
  margin-bottom: 16px;
}

.delivery-speed__subheading {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.17;
  color: #00A7E2;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.delivery-speed__body {
  font-size: 17px;
  line-height: 1.6;
  color: #6B7280;
}

.delivery-speed__tabs {
  display: flex;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.speed-tab {
  flex: 1;
  background: #fff;
  border: none;
  border-right: 1px solid #E5E7EB;
  padding: 32px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  position: relative;
}

.speed-tab:last-child {
  border-right: none;
}

.speed-tab:hover {
  background: #F9FAFB;
}

.speed-tab.active {
  background: #090909;
}

.speed-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #00A7E2;
}

.speed-tab__icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
}

.speed-tab.active .speed-tab__icon {
  filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(1000%) hue-rotate(166deg) brightness(96%) contrast(101%);
}

.speed-tab__title {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: #01101F;
  margin-bottom: 8px;
}

.speed-tab.active .speed-tab__title {
  color: #fff;
}

.speed-tab__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #6B7280;
}

.speed-tab.active .speed-tab__desc {
  color: #9CA3AF;
}

.delivery-speed__detail {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px;
}

.tab-content__text {
  flex: 1;
}

.tab-content__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00A7E2;
  margin-bottom: 16px;
}

.tab-content__title {
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #01101F;
  margin-bottom: 24px;
}

.btn--with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-content__image {
  flex-shrink: 0;
}

.tab-content__img {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  object-fit: cover;
}

/* ===== CITY CAROUSEL ===== */
.city-carousel {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.city-carousel .section-heading {
  margin-bottom: 40px;
}

.city-carousel__track {
  display: flex;
  gap: 20px;
  animation: scrollCities 30s linear infinite;
  width: max-content;
}

@keyframes scrollCities {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.city-card {
  flex-shrink: 0;
  width: 260px;
  height: 160px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
  gap: 4px;
  text-align: center;
  transition: all 0.25s;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.city-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  border-radius: 12px;
}

.city-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.city-card__name {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.city-card__avail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* ===== LIVE TRACKING ===== */
.tracking {
  padding: 100px 0;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
}

.tracking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tracking__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00A7E2;
  margin-bottom: 16px;
}

.tracking__title {
  font-weight: 900;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: #01101F;
  margin-bottom: 14px;
}

.tracking__text {
  font-size: 17px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tracking__checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.tracking__checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.tracking__check-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 167, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracking__checklist strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: #01101F;
  margin-bottom: 2px;
}

.tracking__checklist span {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
}

.tracking__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--learn-more {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #4B5054;
  background: transparent;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn--learn-more:hover {
  border-color: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.03);
}

.tracking__phone {
  position: relative;
  width: 418px;
  height: 570px;
  border-radius: 24px;
  background: linear-gradient(135deg, #01101F, #06243D);
  overflow: hidden;
  margin-left: auto;
}

.tracking__map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tracking__phone-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 355px;
  height: auto;
  filter: drop-shadow(0 24px 64px rgba(162, 162, 162, 0.3));
  z-index: 1;
}

/* ===== VEHICLES ===== */
.vehicles {
  padding: 80px 40px 80px;
  background: #F3F4F6;
}

.vehicles__header {
  text-align: center;
  margin-bottom: 48px;
}

.vehicles__heading {
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -1.5px;
  color: #01101F;
  margin-bottom: 16px;
}

.vehicles__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #6B7280;
}

.vehicles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1178px;
  margin: 0 auto;
}

.vehicle-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
}

.vehicle-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.vehicle-card__icon {
  display: block;
  margin: 0 auto 12px;
}

.vehicle-card__title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
  color: #01101F;
}

.vehicle-card__desc {
  font-size: 13px;
  color: #6B7280;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: #fff;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  color: #00A7E2;
  margin-bottom: 16px;
}

.testimonials__heading {
  font-weight: 900;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.96px;
  color: #01101F;
  max-width: 926px;
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.testimonial-card__meta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 16px;
  color: #01101F;
}

.testimonial-card__date {
  font-weight: 500;
  font-size: 13px;
  color: rgba(1, 16, 31, 0.45);
}

.testimonial-card__phone {
  position: relative;
  width: 285px;
  height: 594px;
}

.testimonial-card__phone-inner {
  position: absolute;
  top: 12px;
  left: 10px;
  right: 10px;
  bottom: 12px;
  border-radius: 42px;
  overflow: hidden;
}

.testimonial-card__selfie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.testimonial-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  z-index: 3;
}

.testimonial-play-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translate(-50%, -50%) scale(1.05);
}

.testimonials__cta {
  text-align: center;
}

.testimonials__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00A7E2;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #00A7E2;
  border-radius: 9999px;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s;
}

.testimonials__link:hover {
  background: #00A7E2;
  color: #fff;
}

/* ===== TESTIMONIALS 2 ===== */
.testimonials-2 {
  padding: 95px 0 95px;
  background: #fff;
}

.testimonials-2__header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-2__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  color: #00A7E2;
  margin-bottom: 16px;
}

.testimonials-2__heading {
  font-weight: 900;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.96px;
  color: #01101F;
  margin: 0 0 32px;
}

.testimonials-2__quote {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: #01101F;
  max-width: 700px;
  margin: 0 auto 40px;
}

.testimonials-2__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 40px 14px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(1, 16, 31, 0.08);
}

.product-review-brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 40px;
}

.product-review-brand__text {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #2B2B2B;
  letter-spacing: -0.2px;
}

.product-review-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-review-brand__tld {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #5BA55F;
  align-self: flex-end;
  margin-bottom: 4px;
}

.testimonials-2__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.testimonials-2__stars {
  display: inline-flex;
  gap: 3px;
}

.testimonials-2__score {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #01101F;
  line-height: 1;
}

.testimonials-2__count {
  font-size: 14px;
  color: #4B5054;
  margin: 4px 0 0;
}

.testimonials-2__count a {
  font-weight: 700;
  color: #00A7E2;
  text-decoration: none;
}

.testimonials-2__count a:hover {
  text-decoration: underline;
}

.testimonials-2__sorted {
  font-size: 12px;
  color: rgba(1, 16, 31, 0.45);
  letter-spacing: 0.24px;
  margin: 0;
}

.testimonials-2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1278px;
  margin: 0 auto 48px;
}

.review-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(1, 16, 31, 0.06);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(1, 16, 31, 0.04);
  padding: 36px 32px 32px;
  overflow: visible;
}

.review-card__quote {
  position: absolute;
  top: 0;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #00A7E2;
  border-radius: 0 0 10px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #01101F;
  margin: 0;
}

.review-card__date {
  font-weight: 500;
  font-size: 13px;
  color: rgba(1, 16, 31, 0.45);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-card__body {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4B5054;
  margin: 0;
}

.review-card__link {
  font-weight: 700;
  font-size: 14px;
  color: #00A7E2;
  text-decoration: none;
}

.review-card__link:hover {
  text-decoration: underline;
}

.testimonials-2__cta {
  text-align: center;
}

.testimonials-2__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00A7E2;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #00A7E2;
  border-radius: 9999px;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s;
}

.testimonials-2__link:hover {
  background: #00A7E2;
  color: #fff;
}

/* ===== BUSINESS ===== */
.business {
  padding: 100px 0;
  background: #F3F4F6;
}

.business__label {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 16px;
}

.business__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.business-card {
  background: #fff;
  border: 1px solid #E8EAED;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.25s;
}

.business-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.business-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 167, 226, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.business-card__title {
  font-weight: 700;
  font-size: 18px;
  color: #363A3D;
  margin-bottom: 8px;
}

.business-card__desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

/* ===== SUPPORT ===== */
.support {
  padding: 100px 0;
  background: #F3F4F6;
}

.support__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.support__image {
  position: relative;
}

.support__img {
  width: 100%;
  height: 482px;
  object-fit: cover;
  border-radius: 24px;
}

.support__hours-card {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  padding: 14px 32px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 217px;
}

.support__headphones-icon {
  margin-bottom: 2px;
}

.support__card-title {
  font-weight: 700;
  font-size: 14px;
  color: #011F1F;
}

.support__card-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.support__card-day {
  font-size: 13px;
  color: #6B7280;
  line-height: 26px;
}

.support__card-time {
  font-weight: 600;
  font-size: 13px;
  color: #011F1F;
  line-height: 26px;
}

.support__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00A7E2;
  margin-bottom: 12px;
}

.support__title {
  font-weight: 900;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: #011F1F;
  margin-bottom: 20px;
}

.support__text {
  font-size: 17px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.support__check-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 167, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support__checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.support__checklist strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: #011F1F;
  margin-bottom: 2px;
}

.support__checklist span {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
}

/* ===== SCALE ===== */
.scale {
  padding: 100px 0;
  background: #363A3D;
}

.scale__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.scale__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00A7E2;
  margin-bottom: 16px;
}

.scale__heading {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.scale__text {
  font-size: 16px;
  line-height: 1.7;
  color: #B0B5BA;
  margin-bottom: 32px;
}

.scale__ctas {
  display: flex;
  gap: 16px;
}

.btn--outline-light {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.scale__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.scale__stat {
  text-align: center;
  padding: 32px 24px;
  background: #4B5054;
  border-radius: 16px;
}

.scale__number {
  display: block;
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.scale__number--green {
  color: #2ED8A3;
}

.scale__number--yellow {
  color: #F5C518;
}

.scale__label {
  font-size: 14px;
  color: #B0B5BA;
}

/* ===== BLOG (DARK) ===== */
.blog--dark {
  padding: 100px 0;
  background: #363A3D;
}

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

.blog__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00A7E2;
  margin-bottom: 12px;
}

.blog__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00A7E2;
}

.blog__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 12px;
}

.blog__subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  max-width: 440px;
}

.blog__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.blog__view-all:hover {
  border-color: #00A7E2;
  color: #00A7E2;
}

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

.blog--dark .blog-card {
  background: #4B5054;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s;
}

.blog--dark .blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: 20px;
}

.blog-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00A7E2;
  background: rgba(0, 167, 226, 0.15);
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.blog--dark .blog-card__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog--dark .blog-card__excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00A7E2;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s;
}

.blog-card__link:hover {
  gap: 10px;
}

/* ===== CROSS PROMO (DARK) ===== */
.cross-promo--dark {
  padding: 0 0 100px;
  background: #363A3D;
}

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

.cross-promo--dark .promo-card {
  background: #4B5054;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: all 0.25s;
}

.cross-promo--dark .promo-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.promo-card__inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-card__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  margin-bottom: 16px;
}

.promo-card__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.promo-card__desc {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 20px;
}

.promo-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: #00A7E2;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.25s;
}

.promo-card__btn:hover {
  background: #0091c7;
}

.promo-card__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.promo-card__img-wrap .promo-card__img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.08);
}

/* ===== READY TO SEND CTA ===== */
.ready-cta {
  background: #363A3D;
  padding: 100px 0;
  text-align: center;
}

.ready-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ready-cta__logo {
  width: 181px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 32px;
}

.ready-cta__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 16px;
}

.ready-cta__subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #9CA3AF;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
}

.ready-cta__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ready-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
}

.ready-cta__btn--book {
  background: #00A7E2;
  color: #fff;
  font-weight: 700;
  padding: 16px 44px;
}

.ready-cta__btn--book:hover {
  background: #0091c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 167, 226, 0.35);
}

.ready-cta__btn--quote {
  background: transparent;
  color: #fff;
  font-weight: 500;
  padding: 16px 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.ready-cta__btn--quote:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* ===== DRIVER SPOTLIGHT + STATS ===== */
.driver-spotlight {
  background: #4B5054;
}

.driver-spotlight .container {
  padding-top: 100px;
  padding-bottom: 50px;
}

.driver-spotlight__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #4B5054;
  border-radius: 24px;
  overflow: hidden;
  max-width: 1278px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.driver-spotlight__image {
  position: relative;
  overflow: hidden;
}

.driver-spotlight__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.driver-spotlight__content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.driver-spotlight__tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(0, 167, 226, 0.2);
  color: #00A7E2;
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.driver-spotlight__quote {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.67px;
  color: #fff;
  margin-bottom: 16px;
}

.driver-spotlight__author {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
}

.driver-spotlight__author strong {
  color: #fff;
}

.driver-spotlight__bio {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.driver-spotlight__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: #00A7E2;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 100px;
  transition: all 0.25s;
}

.driver-spotlight__btn:hover {
  background: #0091c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 167, 226, 0.35);
}

/* Stats Bar */
.driver-spotlight__stats {
  background: #4B5054;
  padding: 40px 0 48px;
}

.driver-spotlight__stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.driver-spotlight__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
}

.driver-spotlight__stat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.driver-spotlight__stat-text {
  display: flex;
  flex-direction: column;
}

.driver-spotlight__stat-number {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
}

.driver-spotlight__stat-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.driver-spotlight__stat-divider {
  width: 1px;
  height: 39px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #363A3D;
  color: #9CA3AF;
  padding-top: 48px;
}

/* Footer CTA Band */
.footer-cta {
  background: linear-gradient(135deg, #00A7E2, #0077B3);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.footer-cta__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.footer-cta__subtitle {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-cta__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 9999px;
  padding: 14px 28px;
  transition: all 0.25s;
  white-space: nowrap;
}

.footer-cta__btn--quote {
  background: #F0F0F0;
  color: #00A7E2;
}

.footer-cta__btn--quote:hover {
  background: #fff;
}

.footer-cta__btn--book {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.footer-cta__btn--book:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Footer Main Grid */
.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer__logo img {
  height: 36px;
  width: auto;
}

.footer__tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}

.footer__contact-link:hover {
  opacity: 0.8;
}

.footer__contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Hours Box */
.footer__hours-box {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 16px;
}

.footer__hours-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer__hours-title:not(:first-child) {
  margin-top: 14px;
}

.footer__hours-table {
  width: 100%;
  border-collapse: collapse;
}

.footer__hours-table td {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 2px 0;
}

.footer__hours-table td:last-child {
  text-align: right;
  color: rgba(255, 255, 255, 0.65);
}

/* Footer Headings & Links */
.footer__heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__heading--mt {
  margin-top: 28px;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #00A7E2;
}

/* We Deliver In Bar */
.footer__deliver-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer__deliver-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__deliver-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.footer__globe-icon {
  width: 16px;
  height: 16px;
}

.footer__deliver-cities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer__city-pill {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s;
}

.footer__city-pill:hover {
  border-color: #00A7E2;
  color: #00A7E2;
}

/* Bottom Bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__bottom-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__brand-logo {
  height: 22px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer__brand-logo:hover {
  opacity: 1;
}

.footer__bottom-copy {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.footer__bottom-copy p {
  margin: 0;
}

.footer__copy-link {
  color: #00A7E2;
  transition: opacity 0.2s;
}

.footer__copy-link:hover {
  opacity: 0.8;
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__legal-links {
  display: flex;
  gap: 20px;
}

.footer__legal-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer__legal-links a:hover {
  color: #00A7E2;
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.footer__social-link:hover {
  border-color: #00A7E2;
  background: rgba(0, 167, 226, 0.1);
}

.footer__social-link img {
  width: 18px;
  height: 18px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer__social-link:hover img {
  opacity: 0.9;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .header__phone {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(1, 16, 31, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 24px;
    overflow: hidden;
  }

  .mobile-nav-open .header__nav {
    display: flex;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 360px;
  }

  .header__menu-item > a {
    font-size: 20px;
    padding: 16px 0;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dropdown {
    position: static;
    transform: none;
    min-width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 8px;
    padding: 4px 0;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    margin-bottom: 8px;
  }

  .header__menu-item:hover .dropdown {
    transform: none;
  }

  .header__menu-item.dropdown-open .dropdown {
    display: block;
  }

  .header__hamburger {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .hero__title {
    font-size: 52px;
    line-height: 60px;
  }

  .hero__subtitle {
    font-size: 28px;
  }

  .hero__driver-card,
  .hero__carousel-dots {
    display: none;
  }

  .hero__badge {
    width: 200px;
  }

  .section-heading {
    font-size: 36px;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-speed__heading {
    font-size: 36px;
  }

  .delivery-speed__subheading {
    font-size: 24px;
  }

  .delivery-speed__tabs {
    flex-wrap: wrap;
    border-radius: 16px;
  }

  .speed-tab {
    flex: 1 1 calc(33.333% - 1px);
    min-width: 200px;
  }

  .tab-content__img {
    width: 150px;
    height: 150px;
    border-radius: 75px;
  }

  .vehicles__heading {
    font-size: 32px;
  }

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

  .testimonials__heading {
    font-size: 36px;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .testimonials-2__heading {
    font-size: 36px;
  }

  .testimonials-2__quote {
    font-size: 22px;
  }

  .testimonials-2__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonials-2__grid .review-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
    width: 100%;
  }

  .testimonial-card__phone {
    width: 240px;
    height: 500px;
  }

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

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

  .tracking__phone {
    order: -1;
    width: 100%;
    max-width: 418px;
    margin: 0 auto;
  }

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

  .support__img {
    height: 400px;
  }

  .scale__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog__header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cross-promo--dark .promo-card {
    grid-template-columns: 1fr;
  }

  .ready-cta__title {
    font-size: 42px;
  }

  .driver-spotlight__card {
    grid-template-columns: 1fr;
  }

  .driver-spotlight__photo {
    min-height: 350px;
  }

  .driver-spotlight__quote {
    font-size: 26px;
  }

  .driver-spotlight__stat {
    padding: 0 24px;
  }

  .driver-spotlight__stat-number {
    font-size: 24px;
  }

  .footer-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .footer-cta__buttons {
    justify-content: center;
  }

  .footer__main {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-left {
    flex-direction: column;
  }

  .footer__bottom-right {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header__inner {
    height: 72px;
    padding: 0 16px;
  }

  .header__logo img {
    width: 110px;
    height: 30px;
  }

  .header__btn--login {
    display: none;
  }

  .header__btn--quote {
    font-size: 13px;
    padding: 9px 16px;
  }

  .hero {
    min-height: 700px;
  }

  .hero__content {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero__pills {
    gap: 8px;
  }

  .pill {
    font-size: 11px;
    padding: 4px 10px;
  }

  .hero__title {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
  }

  .hero__subtitle {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero__body {
    font-size: 15px;
    line-height: 26px;
  }

  .hero__badge {
    width: 160px;
  }

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

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn--hero-primary,
  .hero__ctas .btn--hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero__content {
    padding-top: 120px;
  }

  .section-heading {
    font-size: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
  }

  .section-heading br {
    display: none;
  }

  .stats-bar {
    padding: 32px 0;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-bar__number {
    font-size: 28px;
  }

  .delivery-speed {
    padding: 60px 0;
  }

  .delivery-speed__heading {
    font-size: 28px;
  }

  .delivery-speed__subheading {
    font-size: 20px;
  }

  .delivery-speed__tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .delivery-speed__tabs::-webkit-scrollbar {
    display: none;
  }

  .speed-tab {
    min-width: 200px;
    flex-shrink: 0;
    padding: 24px 16px;
  }

  .tab-content__inner {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .tab-content__title {
    font-size: 22px;
  }

  .tab-content__image {
    order: -1;
  }

  .tab-content__img {
    width: 140px;
    height: 140px;
    border-radius: 70px;
  }

  .tracking {
    padding: 60px 0;
  }

  .tracking__title {
    font-size: 28px;
  }

  .tracking__phone {
    height: 440px;
  }

  .tracking__phone-img {
    width: 200px;
  }

  .vehicles {
    padding: 60px 20px 0;
  }

  .vehicles__heading {
    font-size: 26px;
  }

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

  .testimonials {
    padding: 60px 0;
  }

  .testimonials__heading {
    font-size: 28px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: auto;
  }

  .testimonials-2 {
    padding: 60px 0;
  }

  .testimonials-2__heading {
    font-size: 28px;
  }

  .testimonials-2__quote {
    font-size: 18px;
    line-height: 1.45;
  }

  .testimonials-2__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-2__grid .review-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .review-card {
    padding: 32px 24px 24px;
  }

  .testimonial-card__phone {
    width: 260px;
    height: 542px;
  }

  .business {
    padding: 60px 0;
  }

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

  .support {
    padding: 60px 0;
  }

  .support__title {
    font-size: 32px;
  }

  .support__img {
    height: 320px;
  }

  .support__hours-card {
    padding: 12px 20px 16px;
    min-width: auto;
  }

  .scale {
    padding: 60px 0;
  }

  .scale__heading {
    font-size: 32px;
  }

  .scale__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .scale__number {
    font-size: 22px;
  }

  .scale__stat {
    padding: 24px 16px;
  }

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

  .blog--dark {
    padding: 60px 0;
  }

  .blog__title {
    font-size: 28px;
  }

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

  .cross-promo--dark {
    padding: 0 0 60px;
  }

  .cross-promo--dark .promo-card {
    grid-template-columns: 1fr;
  }

  .promo-card__inner {
    padding: 24px;
  }

  .cross-promo__grid {
    grid-template-columns: 1fr;
  }

  .ready-cta {
    padding: 60px 0;
  }

  .ready-cta__logo {
    width: 140px;
    height: 38px;
  }

  .ready-cta__title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .ready-cta__subtitle {
    font-size: 16px;
  }

  .ready-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .ready-cta__btn {
    width: 100%;
  }

  .driver-spotlight__card {
    grid-template-columns: 1fr;
  }

  .driver-spotlight__photo {
    min-height: 280px;
  }

  .driver-spotlight__content {
    padding: 32px 24px;
  }

  .driver-spotlight__quote {
    font-size: 22px;
  }

  .driver-spotlight__bio {
    font-size: 14px;
  }

  .driver-spotlight__stats-grid {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
  }

  .driver-spotlight__stat {
    padding: 0;
    flex: 1 1 40%;
    min-width: 160px;
  }

  .driver-spotlight__stat-divider {
    display: none;
  }

  .driver-spotlight__stat-number {
    font-size: 22px;
  }

  .driver-spotlight__stat-label {
    font-size: 11px;
  }

  .footer {
    padding-top: 32px;
  }

  .footer-cta {
    padding: 24px;
    gap: 20px;
  }

  .footer-cta__title {
    font-size: 22px;
  }

  .footer-cta__subtitle {
    font-size: 14px;
  }

  .footer-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta__btn {
    width: 100%;
    text-align: center;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }

  .footer__deliver-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__deliver-cities {
    flex-wrap: wrap;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer__bottom-left {
    flex-direction: column;
    align-items: center;
  }

  .footer__bottom-right {
    flex-direction: column;
    align-items: center;
  }

  .footer__legal-links {
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 30px;
    line-height: 36px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .section-heading {
    font-size: 24px;
  }

  .stats-bar__number {
    font-size: 24px;
  }

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

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

  .scale__heading {
    font-size: 28px;
  }
}
