:root {
  --blue: #54c5f8;
  --blue-deep: #0868a8;
  --blue-dark: #07345d;
  --blue-soft: #eaf8ff;
  --cyan: #c5efff;
  --white: #ffffff;
  --text: #0b2a4a;
  --muted: #425466;
  --card-bg: #ffffff;
  --section-bg: #f4fbff;
  --shadow: 0 12px 28px rgba(8, 104, 168, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(7, 52, 93, 0.08);
}

.top-bar {
  background: var(--white);
  color: var(--text);
}

.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: var(--shadow);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--blue-dark);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.top-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-label {
  color: var(--muted);
}

.info-value {
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  background: var(--blue-deep);
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
}

.main-nav {
  background: var(--blue);
  border-top: 1px solid rgba(8, 104, 168, 0.16);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  padding: 12px 0;
}

.main-nav a,
.mobile-nav a {
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.mobile-nav {
  display: none;
  background: var(--white);
  padding: 20px 0;
}

.mobile-nav ul {
  list-style: none;
  display: grid;
  gap: 16px;
  padding-left: 6%;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 52, 93, 0.88), rgba(8, 104, 168, 0.45), rgba(234, 248, 255, 0.06)),
    linear-gradient(0deg, rgba(7, 52, 93, 0.22), rgba(7, 52, 93, 0.22));
}

.hero__content {
  position: relative;
  color: var(--white);
  padding: 70px 0;
}

.hero__tag {
  display: inline-flex;
  background: rgba(197, 239, 255, 0.92);
  color: var(--blue-dark);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  max-width: 690px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
}

.hero p {
  max-width: 650px;
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--blue-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-deep);
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.quick-contact {
  background: var(--blue-dark);
  color: var(--white);
}

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

.quick-contact a {
  display: grid;
  gap: 4px;
  padding: 22px 26px;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-contact a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-contact span {
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quick-contact strong {
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.section {
  padding: 54px 0;
  background: var(--white);
}

.section-alt {
  background: var(--section-bg);
}

.section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.section-subtitle {
  text-align: center;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 760px;
  overflow-wrap: anywhere;
}

.cards-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.cars-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.card {
  background: var(--card-bg);
  border: 1px solid rgba(84, 197, 248, 0.24);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.car-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 104, 168, 0.28);
  box-shadow: 0 14px 34px rgba(8, 104, 168, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.car-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--blue-deep));
}

.car-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(84, 197, 248, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.car-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 104, 168, 0.42);
  box-shadow: 0 18px 42px rgba(8, 104, 168, 0.16);
}

.car-card img {
  height: 150px;
  object-fit: contain;
  margin: 10px auto;
}

.car-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-dark);
}

.car-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.card-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin-top: auto;
  padding: 9px 18px;
  background: var(--blue);
  color: var(--blue-dark);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.service-card h3 {
  font-size: 16px;
  color: var(--blue-dark);
  font-weight: 700;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.service-card--photo {
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: var(--blue-dark);
}

.service-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 52, 93, 0.08), rgba(7, 52, 93, 0.72));
}

.service-card--photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.84;
}

.service-card--photo div {
  position: absolute;
  inset: auto 18px 18px;
  color: var(--white);
  z-index: 1;
}

.service-card--photo h3,
.service-card--photo p {
  color: var(--white);
  text-align: left;
  text-shadow: 0 2px 10px rgba(7, 52, 93, 0.4);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.about__text h2 {
  text-align: left;
}

.about__text h3 {
  font-size: 20px;
  margin: 12px 0;
  color: var(--blue-dark);
}

.about__text p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.about__text ul {
  list-style: none;
  margin-top: 14px;
}

.about__text li {
  font-size: 14px;
  color: var(--blue-dark);
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.about__text li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 7px;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about__badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.about__badge strong {
  color: var(--blue-dark);
  font-size: 16px;
}

.about__badge span {
  color: var(--muted);
  font-size: 13px;
}

.choose-section {
  background: linear-gradient(135deg, var(--section-bg), #ffffff);
}

.choose-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: stretch;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.choose-intro {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 52, 93, 0.96), rgba(8, 104, 168, 0.88)),
    url("images/outstation-taxi.jpeg") center/cover;
  box-shadow: var(--shadow);
}

.choose-intro .section-kicker {
  color: var(--cyan);
}

.choose-intro h2 {
  text-align: left;
  color: var(--white);
  font-size: 28px;
  line-height: 1.2;
}

.choose-intro p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.choose-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.choose-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.choose-metrics strong,
.choose-metrics span {
  display: block;
}

.choose-metrics strong {
  font-size: 28px;
  line-height: 1;
}

.choose-metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.choose-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.choice-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(8, 104, 168, 0.18);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(8, 104, 168, 0.08);
}

.choice-item span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.choice-item h3 {
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 700;
}

.choice-item p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.reviews-section {
  background:
    radial-gradient(circle at top left, rgba(84, 197, 248, 0.16), transparent 34%),
    var(--white);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: center;
}

.reviews-score {
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.reviews-score .section-kicker {
  color: var(--cyan);
}

.reviews-score strong {
  display: block;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 800;
}

.reviews-score p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.reviews-content h2 {
  text-align: left;
}

.review-stack {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.review-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 10px;
}

.review-card h4 {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
}

.review-card {
  position: relative;
  padding: 18px 20px 18px 54px;
  border: 1px solid rgba(84, 197, 248, 0.26);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 104, 168, 0.08);
}

.review-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px var(--blue-soft);
}

.stars {
  color: var(--blue);
  font-size: 18px;
}

.site-footer {
  background: var(--blue-dark);
  color: var(--white);
  padding-top: 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-bottom: 20px;
  align-items: start;
  text-align: left;
}

.site-footer h3 {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-footer p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.site-footer a {
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 12px 0;
  font-size: 12px;
}

.fab {
  position: fixed;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  box-shadow: var(--shadow);
  z-index: 80;
}

.fab a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: inherit;
}

.fab-call {
  bottom: 100px;
  background: var(--blue-deep);
}

.fab-whatsapp {
  bottom: 40px;
  background: #25d366;
}

.fab svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  display: block;
}

.fab-whatsapp img {
  width: 26px;
  height: 26px;
  display: block;
}

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

@media (max-width: 900px) {
  .top-info {
    display: none;
  }

  .menu-toggle {
    display: grid !important;
    place-items: center;
    width: 46px;
    height: 42px;
    padding: 0;
    margin-left: auto;
    position: fixed;
    top: 17px;
    right: auto;
    left: min(calc(100vw - 64px), 326px);
    z-index: 200;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav.active {
    display: block;
  }

  .hero {
    min-height: 420px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero__tag {
    font-size: 11px;
    padding: 5px 14px;
  }

  .quick-contact__grid,
  .cars-grid,
  .service-grid,
  .choose-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact a,
  .quick-contact a:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .choose-layout,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

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

  .choose-intro,
  .reviews-score {
    padding: 24px;
  }

  .reviews-score strong {
    font-size: 56px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .top-bar__content {
    min-height: 74px;
    padding: 10px 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero {
    min-height: 430px;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(7, 52, 93, 0.9), rgba(8, 104, 168, 0.7));
  }

  .hero p {
    font-size: 14px;
    max-width: 330px;
  }

  .section-subtitle {
    max-width: 330px;
  }

  .section {
    padding: 40px 0;
  }

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

  .fab {
    right: auto;
    left: min(calc(100vw - 62px), 328px);
    width: 48px;
    height: 48px;
  }
}
