.services-sec {
  position: relative;
  padding: 90px 0px;
  background: #0f2410;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(248, 166, 43, 0.1) 0%,
      rgba(248, 166, 43, 0) 45%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0) 45%
    ),
    linear-gradient(160deg, #10270f 0%, #1c3a17 55%, #10270f 100%);
  overflow: hidden;
}

.services-sec::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(248, 166, 43, 0.18) 0%,
    rgba(248, 166, 43, 0) 70%
  );
  pointer-events: none;
}

.services-sec::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

/* Section heading */
.services-head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.services-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f8a62b;
  background: rgba(248, 166, 43, 0.12);
  border: 1px solid rgba(248, 166, 43, 0.35);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.services-title {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.services-sub {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}

/* Grid */
.services-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

/* Card */
.service-card {
  position: relative;
  flex: 1 1 calc(33.333% - 19px);
  max-width: calc(33.333% - 19px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 40px 30px 34px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    opacity 0.6s ease;
  display: flex;
  flex-direction: column;
}

.service-hidden {
  opacity: 0;
  transform: translateY(30px);
}

.service-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(248, 166, 43, 0.45);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.35);
}

.service-card-featured {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(248, 166, 43, 0.5);
}

.service-badge {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #10270f;
  background: #f8a62b;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.service-num {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
  pointer-events: none;
  z-index: 1;
}

@supports (-webkit-text-stroke: 1px black) {
  .service-num {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
    
  }
}

/* Icon (image based, no SVG) */
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  background: rgba(248, 166, 43, 0.14);
  border: 1px solid rgba(248, 166, 43, 0.35);
  border-radius: 16px;
  margin-bottom: 22px;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.06);
  background: #f8a62b;
}

.service-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.service-name {
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #fff;
  margin-bottom: 20px;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex: 1;
}

.service-points li {
  position: relative;
  font-size: 13px;
  color: #fff;
  padding-left: 20px;
  margin-bottom: 10px;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f8a62b;
}

/* CTA link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #f8a62b;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(248, 166, 43, 0.35);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    gap 0.3s ease;
}

.service-link:hover {
  color: #ffffff;
  border-color: #f8a62b;
  gap: 12px;
}

.service-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* ================= Responsive ================= */
@media screen and (max-width: 991px) {
  .service-card {
    flex: 1 1 calc(50% - 14px);
    max-width: calc(50% - 14px);
  }
}

@media screen and (max-width: 768px) {
  .services-sec {
    padding: 60px 0px;
  }

  .services-title {
    font-size: 27px;
  }

  .services-sub {
    font-size: 14px;
  }

  .services-head {
    margin-bottom: 36px;
  }

  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 32px 24px 28px;
  }
}

.airports-sec {
  background: #ffffff;
  padding: 90px 0px;
}

/* Heading */
.airports-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.airports-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #31572c;
  background: rgba(49, 87, 44, 0.08);
  border: 1px solid rgba(49, 87, 44, 0.18);
  padding: 6px 18px 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.airports-tag img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.airports-title {
  font-size: 34px;
  font-weight: 800;
  color: #10270f;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.airports-sub {
  font-size: 15px;
  color: #5c6a5a;
  line-height: 1.6;
}

/* Panel layout: list (left) + display (right) */
.airports-panel {
  display: flex;
  align-items: stretch;
  gap: 0px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(16, 39, 15, 0.14);
  border: 1px solid #eef1ec;
}

/* Left: vertical tab list */
.airports-list {
  flex: 0 0 320px;
  max-width: 320px;
  background: #f6f8f5;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.airport-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 14px;
  cursor: pointer;
  background: transparent;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.airport-tab:hover {
  background: rgba(49, 87, 44, 0.08);
}

.airport-tab.active {
  background: #31572c;
  box-shadow: 0 12px 26px rgba(49, 87, 44, 0.35);
}

.airport-tab-code {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #31572c;
  background: #ffffff;
  border: 1px solid #e1e7de;
  border-radius: 12px;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.airport-tab.active .airport-tab-code {
  color: #31572c;
  background: #f8a62b;
  border-color: #f8a62b;
}

.airport-tab-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.airport-tab-name {
  font-size: 14px;
  font-weight: 700;
  color: #1c2b19;
  transition: color 0.3s ease;
}

.airport-tab-meta {
  font-size: 12px;
  color: #7c887a;
  transition: color 0.3s ease;
}

.airport-tab.active .airport-tab-name {
  color: #ffffff;
}

.airport-tab.active .airport-tab-meta {
  color: #fff;
}

.airport-tab-arrow {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #b9c2b6;
  border-right: 2px solid #b9c2b6;
  transform: rotate(45deg);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.airport-tab.active .airport-tab-arrow {
  border-color: #f8a62b;
  transform: rotate(45deg) translate(1px, -1px);
}

/* Right: display panel */
.airports-display {
  flex: 1;
  position: relative;
  background: #ffffff;
}

.airport-info {
  display: none;
  align-items: stretch;
  height: 100%;
}

.airport-info.active {
  display: flex;
}

.airport-info-icon {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 190px;
  background: #f6f8f5;
  border-right: 1px solid #eef1ec;
  padding: 30px 20px;
}

.airport-info-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.airport-info-code {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #10270f;
  background: #f8a62b;
  padding: 8px 16px;
  border-radius: 30px;
}

.airport-info-body {
  flex: 1;
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.airport-info-body h3 {
  font-size: 26px;
  font-weight: 800;
  color: #10270f;
  margin-bottom: 14px;
}

.airport-info-body p {
  font-size: 14px;
  line-height: 1.7;
  color: #5c6a5a;
  margin-bottom: 28px;
  max-width: 460px;
}

.airport-info-stats {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.airport-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 26px;
  border-right: 1px solid #e7ebe4;
}

.airport-stat:last-child {
  border-right: none;
  padding-right: 0;
}

.airport-stat strong {
  font-size: 18px;
  font-weight: 800;
  color: #31572c;
}

.airport-stat span {
  font-size: 12px;
  color: #8b968a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.airport-info-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
  background: #31572c;
  padding: 14px 26px;
  border-radius: 30px;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.airport-info-cta:hover {
  background: #f8a62b;
  color: #10270f;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(248, 166, 43, 0.4);
}

.airport-cta-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* ================= Responsive ================= */
@media screen and (max-width: 991px) {
  .airports-panel {
    flex-direction: column;
  }

  .airports-list {
    flex: 1 1 auto;
    max-width: 100%;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
  }

  .airport-tab {
    flex: 0 0 auto;
    min-width: 220px;
  }

  .airport-info.active {
    flex-direction: column;
  }

  .airport-info-icon {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid #eef1ec;
    padding: 20px 22px;
  }

  .airport-info-body {
    padding: 32px 28px;
  }
}

@media screen and (max-width: 768px) {
  .airports-sec {
    padding: 60px 0px;
  }

  .airports-title {
    font-size: 26px;
  }

  .airports-head {
    margin-bottom: 34px;
  }

  .airport-info-body {
    padding: 26px 22px;
  }

  .airport-info-body h3 {
    font-size: 21px;
  }

  .airport-info-stats {
    gap: 18px;
  }

  .airport-stat {
    padding-right: 18px;
  }
}

.stations-sec {
  position: relative;
  padding: 90px 0px;
  background: #0f2410;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(248, 166, 43, 0.1) 0%,
      rgba(248, 166, 43, 0) 45%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0) 45%
    ),
    linear-gradient(160deg, #10270f 0%, #1c3a17 55%, #10270f 100%);
  overflow: hidden;
}

.stations-sec::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(248, 166, 43, 0.18) 0%,
    rgba(248, 166, 43, 0) 70%
  );
  pointer-events: none;
}

.stations-sec::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

.stations-head {
  position: relative;
  z-index: 2;
  text-align: center;
  /* max-width: 640px; */
  margin: 0 auto 70px;
}

.stations-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f8a62b;
  background: rgba(248, 166, 43, 0.12);
  border: 1px solid rgba(248, 166, 43, 0.35);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.stations-title {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.stations-sub {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}

/* ===== The rail timeline ===== */
.stations-track {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  height: 800px;
}
.track-rail {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    rgba(248, 166, 43, 0.55) 0px,
    rgba(248, 166, 43, 0.55) 14px,
    transparent 14px,
    transparent 26px
  );
  z-index: 1;
}

.track-runner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f8a62b;
  box-shadow:
    0 0 0 6px rgba(248, 166, 43, 0.18),
    0 0 18px rgba(248, 166, 43, 0.7);
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: runAlongRail 7s ease-in-out infinite;
}

@keyframes runAlongRail {
  0% {
    left: 3%;
  }
  50% {
    left: 97%;
  }
  100% {
    left: 3%;
  }
}

.station-stop {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 100%;
}

.stop-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  background: #10270f;
  border: 2px solid #f8a62b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.stop-marker img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(45%) saturate(1000%)
    hue-rotate(1deg);
}

.station-stop:hover .stop-marker {
  transform: translate(-50%, -50%) scale(1.12);
  background: #f8a62b;
}

.stop-connector {
  position: absolute;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(248, 166, 43, 0.6),
    rgba(248, 166, 43, 0.05)
  );
  z-index: 2;
}

.station-stop.up .stop-connector {
  bottom: 50%;
  height: 64px;
}
.station-stop.down .stop-connector {
  top: 50%;
  height: 64px;
}

.station-card {
  position: absolute;
  left: 50%;
  width: 240px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 20px 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.station-stop.up .station-card {
  bottom: calc(50% + 64px);
}
.station-stop.down .station-card {
  top: calc(50% + 64px);
}

.station-card:hover {
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(248, 166, 43, 0.45);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
}

.station-code {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #10270f;
  background: #f8a62b;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.station-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.station-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 16px;
}

.station-stats {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.station-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.station-stat-row span:first-child {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 11px;
}

.station-stat-row span:last-child {
  color: #f8a62b;
  font-weight: 700;
}

.station-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #10270f;
  background: #f8a62b;
  padding: 11px 0px;
  border-radius: 30px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.station-cta:hover {
  background: #ffffff;
  transform: translateY(-2px);
  color: #10270f;
}

.station-cta-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* ================= Responsive ================= */
@media screen and (max-width: 991px) {
  .stations-track {
    height: auto;
    flex-direction: column;
    gap: 0;
  }

  .track-rail {
    display: none;
  }
  .track-runner {
    display: none;
  }

  .station-stop {
    height: auto;
    padding-left: 60px;
    padding-bottom: 46px;
  }

  .station-stop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 21px;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
      180deg,
      rgba(248, 166, 43, 0.5) 0px,
      rgba(248, 166, 43, 0.5) 10px,
      transparent 10px,
      transparent 18px
    );
  }

  .station-stop:last-child::before {
    display: none;
  }

  .stop-marker {
    top: 0;
    left: 22px;
    transform: translate(-50%, 0);
    width: 44px;
    height: 44px;
  }

  .station-stop:hover .stop-marker {
    transform: translate(-50%, 0) scale(1.12);
  }
  .station-stop:hover .stop-marker img{
    filter: none;
  }
  .stop-connector {
    display: none;
  }

  .station-card {
    position: static;
    transform: none;
    width: 100%;
  }

  .station-stop.up .station-card,
  .station-stop.down .station-card {
    bottom: auto;
    top: auto;
  }
}

@media screen and (max-width: 768px) {
  .stations-sec {
    padding: 60px 0px;
  }
  .stations-title {
    font-size: 27px;
  }
  .stations-sub {
    font-size: 14px;
  }
  .stations-head {
    margin-bottom: 44px;
  }
  .station-card:hover{
    transform: translateX(2%) translateY(-6px);
  }
}
.fleet-sec {
  background: #ffffff;
  padding: 90px 0px;
}
.fleet-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.fleet-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #31572c;
  background: rgba(49, 87, 44, 0.08);
  border: 1px solid rgba(49, 87, 44, 0.18);
  padding: 6px 18px 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.fleet-tag .dot {
  width: 8px;
  height: 8px;
  background: #31572c;
  border-radius: 50%;
}
.fleet-title {
  font-size: 34px;
  font-weight: 800;
  color: #10270f;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}
.fleet-sub {
  font-size: 15px;
  color: #5c6a5a;
  line-height: 1.6;
}

.fleet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.fleet-card {
  position: relative;
  flex: 1 1 calc(33.333% - 18px);
  max-width: calc(33.333% - 18px);
  background: #ffffff;
  border: 1px solid #eef1ec;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 44px rgba(16, 39, 15, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 166, 43, 0.4);
  box-shadow: 0 26px 54px rgba(16, 39, 15, 0.14);
}

.fleet-card-featured {
  background: #31572c;
  border-color: #31572c;
}
.fleet-card-featured .fleet-name,
.fleet-card-featured .fleet-cap-item span {
  color: #ffffff;
}
.fleet-card-featured .fleet-desc {
  color: #fff;
}
.fleet-card-featured .fleet-points li {
  color: rgba(255, 255, 255, 0.85);
}
.fleet-card-featured .fleet-class {
  color: #10270f;
  background: #f8a62b;
}
.fleet-card-featured .fleet-cap {
  border-color: rgba(255, 255, 255, 0.14);
}
.fleet-card-featured:hover {
  border-color: #f8a62b;
  box-shadow: 0 26px 54px rgba(16, 39, 15, 0.35);
}

.fleet-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #10270f;
  background: #f8a62b;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(248, 166, 43, 0.4);
}

/* ---- Real car photo, replaces the old emoji icon badge ---- */
.fleet-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef1ec;
}
.fleet-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
  padding: 20px;
}
.fleet-card:hover .fleet-photo {
  transform: scale(1.06);
}
.fleet-class {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #10270f;
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 12px;
  border-radius: 20px;
}

.fleet-card-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-name {
  font-size: 21px;
  font-weight: 700;
  color: #10270f;
  margin-bottom: 10px;
}
.fleet-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #5c6a5a;
  margin-bottom: 20px;
}

.fleet-cap {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  margin-bottom: 18px;
  border-top: 1px solid #eef1ec;
  border-bottom: 1px solid #eef1ec;
}
.fleet-cap-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fleet-cap-item .mini-ico {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #31572c;
  opacity: 0.75;
}
.fleet-card-featured .fleet-cap-item .mini-ico {
  background: #f8a62b;
}
.fleet-cap-item span {
  font-size: 10px;
  font-weight: 700;
  color: #10270f;
}

.fleet-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.fleet-points li {
  position: relative;
  font-size: 13px;
  color: #4b584a;
  padding-left: 20px;
  margin-bottom: 9px;
}
.fleet-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f8a62b;
}

.fleet-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #31572c;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(49, 87, 44, 0.25);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    gap 0.3s ease;
}
.fleet-card-featured .fleet-link {
  color: #f8a62b;
  border-bottom-color: rgba(248, 166, 43, 0.4);
}
.fleet-link:hover {
  color: #f8a62b;
  border-color: #f8a62b;
  gap: 12px;
}
.fleet-card-featured .fleet-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}
.fleet-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .fleet-card {
    flex: 1 1 calc(50% - 13px);
    max-width: calc(50% - 13px);
  }
}
@media screen and (max-width: 768px) {
  .fleet-sec {
    padding: 60px 0px;
  }
  .fleet-title {
    font-size: 27px;
  }
  .fleet-sub {
    font-size: 14px;
  }
  .fleet-head {
    margin-bottom: 36px;
  }
  .fleet-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .fleet-card-body {
    padding: 22px 22px 26px;
  }
}
.site-footer {
  background: #10270f;
}

/* ---- CTA band ---- */
.ftr-cta-band {
  background: linear-gradient(135deg, #31572c 0%, #1f3f1b 100%);
  padding: 46px 0;
}
.ftr-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.ftr-cta-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #f8a62b;
  margin-bottom: 8px;
}
.ftr-cta-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  max-width: 480px;
  line-height: 1.35;
}
.ftr-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ftr-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.ftr-phone-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f8a62b;
  position: relative;
  flex-shrink: 0;
}
.ftr-phone-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(248, 166, 43, 0.6);
  animation: ftr-pulse 2.2s ease-out infinite;
}
@keyframes ftr-pulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.ftr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #f8a62b;
  color: #10270f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 30px;
  box-shadow: 0 10px 24px rgba(248, 166, 43, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.ftr-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(248, 166, 43, 0.45);
}
.ftr-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #10270f;
  border-right: 2px solid #10270f;
  transform: rotate(45deg);
}

/* ---- Main columns, with a "route" theme tying to "A Car For Every Journey" ---- */
.ftr-main {
  padding: 58px 0 42px;
}

.ftr-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.15fr;
  gap: 30px;
  position: relative;
  padding-top: 34px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
}
.ftr-col {
  position: relative;
}
.ftr-col::before {
  content: "";
  position: absolute;
  top: -39px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f8a62b;
  border: 3px solid #10270f;
  box-shadow: 0 0 0 2px rgba(248, 166, 43, 0.35);
}

.ftr-logo {
  font-size: 21px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}
.ftr-logo span {
  color: #f8a62b;
}
.ftr-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: #fff;
  max-width: 260px;
  margin-bottom: 22px;
}
.ftr-social {
  display: flex;
  gap: 10px;
}
.ftr-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.ftr-social a:hover {
  background: #f8a62b;
  border-color: #f8a62b;
  color: #10270f;
}

.ftr-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #f8a62b;
  margin-bottom: 18px;
}
.ftr-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ftr-col ul li a,
.ftr-col ul.ftr-contact li {
  font-size: 13.5px;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}
.ftr-col ul li a {
  display: inline-block;
}
.ftr-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}
.ftr-col ul.ftr-contact li a {
  color: #fff;
}
.ftr-col ul.ftr-contact li a:hover {
  color: #ffffff;
  padding-left: 0;
}

/* ---- Trust strip ---- */
.ftr-trust {
  background: #152f13;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ftr-trust span{
    color: #fff;
}
.ftr-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 0;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.ftr-dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(248, 166, 43, 0.5);
}

/* ---- Bottom bar ---- */
.ftr-bottom {
  background: #0b1c0a;
}
.ftr-bottom p,
.ftr-legal a{
    color: #fff !important;
}
.ftr-bottom p{
    margin-bottom: 0;
}
.ftr-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}
.ftr-legal {
  display: flex;
  gap: 22px;
}
.ftr-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}
.ftr-legal a:hover {
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  .ftr-grid {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
  }
  .ftr-col-brand {
    grid-column: 1 / -1;
  }
  .ftr-tagline {
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .ftr-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .ftr-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ftr-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact {
  background: #fff;
  padding: 110px 20px;
}

.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.contact-info h2 {
  font-size: 48px;
  font-weight: 700;
  color: #4f772d;
  margin-bottom: 18px;
}

.contact-text {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  margin-bottom: 45px;
  max-width: 480px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  border-left: 4px solid #90a955;
  padding-left: 20px;
}

.contact-item .label {
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-item .value {
  font-size: 20px;
  color: #4f772d;
  font-weight: 500;
}

.contact-item .value a {
  color: #4f772d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item .value a:hover {
  color: #90a955;
}

/* Map */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(79, 119, 45, 0.15);
}

/* Mobile */
@media (max-width: 800px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info h2 {
    font-size: 36px;
  }

  .contact-map iframe {
    height: 360px;
  }
}

/* ================================
   FLEET / VEHICLE SHOWCASE
================================ */

.vehicle-showcase {
  width: 100%;
  padding: 70px 20px;
  background: #ffffff;
}

.vehicle-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

/* ---------- Header ---------- */

.vehicle-intro {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.vehicle-intro h2 {
  margin: 0 0 14px;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 700;
  color: #2f6132;
}

.vehicle-intro p {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #161616;
}

/* ---------- Cards Grid ---------- */

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
}

/* ---------- Individual Card ---------- */

.vehicle-box {
  background: #fafafa;
  border: 1px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Border ONLY on hover */

.vehicle-box:hover {
  border-color: #2f6132;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(47, 97, 50, 0.1);
}

/* ---------- Image ---------- */

.vehicle-photo {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #eeeeee;
}

.vehicle-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.vehicle-box:hover .vehicle-photo img {
  transform: scale(1.04);
}

/* ---------- Card Content ---------- */

.vehicle-details {
  padding: 28px 30px 32px;
}

.vehicle-details h3 {
  margin: 0 0 25px;
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  color: #2f6132;
}

/* ---------- List ---------- */

.vehicle-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vehicle-details li {
  position: relative;
  margin-bottom: 17px;
  padding-left: 34px;
  font-size: 17px;
  line-height: 1.45;
  color: #171717;
}

.vehicle-details li:last-child {
  margin-bottom: 0;
}

/* Check icon */

.vehicle-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #66559a;
}

/* ================================
   TABLET
================================ */

@media (max-width: 1100px) {
  .vehicle-showcase {
    padding: 60px 25px;
  }

  .vehicle-intro {
    margin-bottom: 50px;
  }

  .vehicle-intro h2 {
    font-size: 48px;
  }

  .vehicle-intro p {
    font-size: 18px;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .vehicle-photo {
    height: 230px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {
  .vehicle-showcase {
    padding: 50px 16px;
  }

  .vehicle-intro {
    margin-bottom: 35px;
  }

  .vehicle-intro h2 {
    font-size: 38px;
  }

  .vehicle-intro p {
    font-size: 16px;
    line-height: 1.55;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vehicle-photo {
    height: 220px;
  }

  .vehicle-details {
    padding: 24px 25px 28px;
  }

  .vehicle-details h3 {
    font-size: 27px;
    margin-bottom: 22px;
  }

  .vehicle-details li {
    font-size: 16px;
    margin-bottom: 14px;
  }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 400px) {
  .vehicle-showcase {
    padding: 40px 12px;
  }

  .vehicle-intro h2 {
    font-size: 34px;
  }

  .vehicle-intro p {
    font-size: 15px;
  }

  .vehicle-photo {
    height: 190px;
  }

  .vehicle-details {
    padding: 22px 20px 25px;
  }

  .vehicle-details h3 {
    font-size: 25px;
  }

  .vehicle-details li {
    font-size: 15px;
    padding-left: 30px;
  }
}
