:root {
  --ink: #242321;
  --muted: #68635d;
  --line: #e7e0d7;
  --paper: #fffdf9;
  --warm: #f5efe6;
  --gold: #c2a47b;
  --gold-dark: #a88454;
  --green: #25d366;
  --green-dark: #169b4a;
  --black: #141414;
  --shadow: 0 24px 80px rgba(45, 39, 31, 0.12);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(150px, 230px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 6px clamp(22px, 6vw, 84px);
  background: rgba(255, 253, 249, 0.88);
  border-bottom: 1px solid rgba(231, 224, 215, 0.78);
  backdrop-filter: blur(16px);
  max-width: 100vw;
  transition: min-height 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 12px 45px rgba(35, 32, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 220px;
}

.brand img {
  width: 100px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 58px);
  font-size: 15px;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding: 12px 0;
  color: #252422;
  transition: color 0.25s ease;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-dark);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.header-cta {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.button-dark {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.26);
}

.button-light {
  background: rgba(255, 255, 255, 0.72);
  border-color: #bdb5aa;
  color: var(--ink);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-dark:hover {
  background: var(--green-dark);
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.32);
}

.button-light:hover {
  background: #fff;
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(194, 164, 123, 0.1), transparent 34%),
    var(--paper);
  opacity: 1;
  visibility: visible;
  animation: loaderShell 2.5s ease forwards;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader img {
  width: min(190px, 52vw);
  animation: loaderLogo 2.5s ease both;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: clamp(560px, calc(100vh - 82px), 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-main.webp");
  background-position: center right;
  background-size: cover;
  transform: scale(1.04);
  animation: heroZoom 10s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.88) 27%, rgba(255, 253, 249, 0.22) 58%, rgba(255, 253, 249, 0) 100%),
    linear-gradient(0deg, rgba(255, 253, 249, 0.18), rgba(255, 253, 249, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 44px));
  margin-left: clamp(24px, 6vw, 82px);
  padding: 44px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8d7558;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
}

h1 {
  max-width: 580px;
  font-size: clamp(42px, 5.2vw, 76px);
}

h2 {
  font-size: clamp(35px, 4.2vw, 58px);
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.fleet-card h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.hero-copy {
  max-width: 500px;
  margin: 22px 0 0;
  color: #46433f;
  font-size: 18px;
  font-weight: 600;
}

.hero-copy::before,
.section-heading h2::after {
  display: block;
  width: 62px;
  height: 3px;
  margin-bottom: 20px;
  content: "";
  background: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

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

.hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(194, 164, 123, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #4f4942;
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(22px, 6vw, 84px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2::after {
  margin: 18px auto 0;
}

.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.fleet-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(194, 164, 123, 0.11), transparent 30%),
    var(--paper);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.fleet-card {
  position: relative;
  min-height: 470px;
  padding: 28px 28px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffdf9, #f8f3ed);
  box-shadow: 0 16px 50px rgba(45, 39, 31, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.fleet-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(125deg, transparent 20%, rgba(255, 255, 255, 0.76) 45%, transparent 68%);
  transform: translateX(-110%);
  transition: transform 0.8s ease;
}

.fleet-card:hover {
  border-color: rgba(194, 164, 123, 0.58);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.fleet-card:hover::before {
  transform: translateX(110%);
}

.card-top,
.icon-circle {
  display: flex;
  align-items: center;
}

.card-top {
  position: relative;
  z-index: 1;
  min-height: 54px;
}

.icon-circle {
  justify-content: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.icon-circle svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.fleet-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250px;
  margin: 10px auto 6px;
  object-fit: contain;
  transform: translateZ(0);
  transition: transform 0.45s ease;
}

.fleet-card:hover img {
  transform: translateY(-4px) scale(1.03);
}

.fleet-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 26px;
  color: #4e4942;
  list-style: none;
}

.fleet-card li {
  position: relative;
  font-size: 15px;
}

.fleet-card li::before {
  position: absolute;
  left: -24px;
  color: var(--gold-dark);
  content: "\2713";
  font-weight: 900;
}

.services-section {
  background:
    radial-gradient(circle at 80% 12%, rgba(194, 164, 123, 0.14), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f8f3ed 100%);
  border-top: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(45, 39, 31, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.55s ease, filter 0.35s ease;
}

.service-card div {
  padding: 24px 24px 26px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #17305d;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover .service-button {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.service-card:hover {
  border-color: rgba(194, 164, 123, 0.58);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(194, 164, 123, 0.22), var(--shadow);
  outline: none;
}

.service-card:hover img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.045);
}

.benefits-section {
  background:
    linear-gradient(90deg, rgba(245, 239, 230, 0.86), rgba(255, 253, 249, 0.95), rgba(245, 239, 230, 0.86));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
}

.benefit {
  min-height: 230px;
  padding: 0 28px;
  text-align: center;
}

.benefit + .benefit {
  border-left: 1px solid var(--line);
}

.benefit .icon-circle {
  margin: 0 auto 22px;
  width: 70px;
  height: 70px;
  color: var(--ink);
}

.benefit p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.chauffeurs {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: clamp(70px, 9vw, 112px) clamp(22px, 6vw, 84px);
  background:
    linear-gradient(rgba(20, 20, 20, 0.70), rgba(20, 20, 20, 0.72)),
    url("assets/chauffeur-interior.webp") center / cover;
  color: #fff;
}

.chauffeurs h2,
.chauffeurs h3 {
  color: #fff;
}

.chauffeurs-content {
  max-width: 720px;
}

.chauffeurs-content p:not(.eyebrow) {
  margin: 24px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

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

.chauffeurs-stats span {
  min-height: 128px;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(10px);
}

.chauffeurs-stats strong {
  display: block;
  color: #e5c89d;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.footer {
  padding: 56px clamp(22px, 6vw, 84px) 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr 1.1fr;
  gap: 46px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  width: 170px;
  margin-bottom: 20px;
}

.footer p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer h3 {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.25s ease;
}

.footer a:hover {
  color: var(--gold-dark);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.copyright {
  max-width: 1280px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.35), 0 10px 32px rgba(20, 20, 20, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: inherit;
  content: "";
  animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-float svg {
  position: relative;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-float span {
  position: relative;
}

.whatsapp-float:hover {
  background: #1fbd5b;
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.42), 0 12px 36px rgba(20, 20, 20, 0.24);
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.65;
    transform: scale(0.92);
  }
  70% {
    opacity: 0;
    transform: scale(1.16);
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes loaderLogo {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
    filter: blur(5px);
  }
  32% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  78% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

@keyframes loaderShell {
  0%,
  76% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float::before {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  .brand {
    width: max-content;
  }

  .brand img {
    width: 76px;
  }

  .menu-toggle {
    position: fixed;
    top: 31px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid #c9bda9;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.94);
    padding: 12px;
    box-shadow: 0 10px 26px rgba(35, 32, 28, 0.1);
    z-index: 80;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transform-origin: center;
    transition: transform 0.24s ease, opacity 0.18s ease;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav,
  .header-cta {
    display: none;
  }


  .nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 22px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 20px 45px rgba(35, 32, 28, 0.12);
  }

  .nav.is-open a {
    padding: 14px 0;
  }

  .fleet-grid,
  .services-grid,
  .benefits-grid,
  .chauffeurs {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    gap: 18px;
  }

  .benefit {
    min-height: auto;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.45);
  }

  .benefit + .benefit {
    border-left: 1px solid var(--line);
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 6px 18px;
  }

  .hero {
    min-height: calc(100svh - 66px);
    align-items: stretch;
  }

  @supports not (height: 100svh) {
    .hero {
      min-height: calc(100vh - 66px);
    }
  }

  .hero-media {
    background-position: 82% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 16, 26, 0.74) 0%, rgba(8, 16, 26, 0.46) 54%, rgba(8, 16, 26, 0.16) 100%),
      linear-gradient(90deg, rgba(8, 16, 26, 0.34), rgba(8, 16, 26, 0.05));
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(100% - 32px);
    min-height: calc(100svh - 66px);
    margin: 0 auto;
    padding: 22px 0 28px;
  }

  h1 {
    max-width: 390px;
    color: #fff;
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 390px;
    margin-top: 14px;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.5;
    text-align: right;
  }

  .hero .eyebrow {
    color: #d7bf98;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    gap: 12px;
  }

  .hero-actions .button {
    width: auto;
    min-width: 178px;
    padding-left: 26px;
    padding-right: 26px;
  }

  .hero-points {
    margin-top: 24px;
  }

  .hero-actions .button-light {
    background: #fff;
    border-color: #fff;
    color: #17305d;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: none;
    overflow: visible;
  }

  .hero-points span {
    position: relative;
    display: flex;
    min-height: 78px;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    box-shadow: none;
    backdrop-filter: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    width: 100%;
    white-space: normal;
  }

  .hero-points span + span::after {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.24);
    content: "";
  }

  .hero-points strong {
    display: block;
    color: var(--green);
    font-size: 20px;
    line-height: 0.95;
  }

  .section,
  .chauffeurs,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .fleet-card {
    min-height: auto;
    padding: 14px 12px 16px;
  }

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

  .fleet-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 6px);
  }

  .fleet-card img {
    height: 102px;
    margin: 0 auto 8px;
  }

  .fleet-card h3 {
    font-size: 24px;
  }

  .card-top {
    min-height: 34px;
  }

  .fleet-card ul {
    display: grid;
    gap: 4px;
    padding-left: 18px;
  }

  .fleet-card li {
    font-size: 12px;
    line-height: 1.28;
  }

  .fleet-card li::before {
    left: -17px;
  }

  .service-card {
    position: relative;
    display: block;
    min-height: 255px;
    overflow: hidden;
  }

  .service-card img {
    height: 255px;
  }

  .service-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 54px 18px 18px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0), rgba(20, 20, 20, 0.82) 42%, rgba(20, 20, 20, 0.92));
  }

  .service-card h3 {
    color: #fff;
    font-size: 24px;
  }

  .service-card p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.45;
  }

  .service-button {
    min-height: 40px;
    margin-top: 14px;
    padding: 0 16px;
    font-size: 13px;
  }

  .whatsapp-float {
    bottom: 14px;
  }

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

  .whatsapp-float {
    right: 18px;
    bottom: 3px;
    min-height: 54px;
    width: 54px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}
