.airport-transfers {
  padding: 40px 20px;
  text-align: center;
  background-color: #334443;
  margin-bottom: 35px;
}
.airport-transfers h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.airport-transfers p {
  color: #555;
  margin-bottom: 30px;
}
.transfer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.airport-card {
  display: block;
  text-decoration: none;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
}
.airport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.2);
}
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2em;
  background: linear-gradient(to top, rgb(0 0 0 / 0.7), #fff0);
}
.lhr {
  background-image: url(../images/heathrow.webp);
}
.dxb {
  background-image: url(../images/gatwick.webp);
}
.jfk {
  background-image: url(../images/luton.webp);
}
.lax {
  background-image: url(../images/londoncity.webp);
}
@media (min-width: 600px) {
  .transfer-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .transfer-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}
.stations-sec-asymmetrical {
  padding: 100px 0;
  background-color: #334443;
  overflow: hidden;
}
.stations-header-content {
  text-align: center;
  margin-bottom: 60px;
}
.stations-header-content .sub-heading {
  color: #334443;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.stations-header-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
}
.stations-grid-331 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 20px;
}
.station-card-small {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.station-card-small:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgb(0 0 0 / 0.4);
}
.station-card-large-span {
  grid-row: 1 / span 3;
  grid-column: 3 / 4;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 15px 30px rgb(0 0 0 / 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.station-card-large-span:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.5);
}
.station-card-small img,
.station-card-large-span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.station-card-small:hover img,
.station-card-large-span:hover img {
  transform: scale(1.1);
}
.card-content-reveal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #232e35;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.station-card-small:hover .card-content-reveal {
  transform: translateY(0);
}
.card-content-reveal h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  color: #111;
}
.card-content-reveal span {
  font-size: 13px;
  font-weight: 600;
  color: #334443;
}
.card-content-reveal-large {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #232e35;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.station-card-large-span:hover .card-content-reveal-large {
  transform: translateY(0);
}
.card-content-reveal-large h3 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  color: #111;
}
.card-content-reveal-large span {
  font-size: 13px;
  font-weight: 600;
  color: #334443;
}
@media (max-width: 1024px) {
  .stations-grid-331 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
  .station-card-large-span {
    grid-row: 4 / 5;
    grid-column: 1 / span 2;
    aspect-ratio: 16 / 5;
  }
}
@media (max-width: 640px) {
  .stations-grid-331 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 180px);
    gap: 15px;
  }
  .station-card-small,
  .station-card-large-span {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 16 / 9;
  }
  .station-card-large-span {
    order: -1;
  }
  .card-content-reveal-large h3 {
    font-size: 22px;
  }
}
.services-sec-new {
  padding: 60px 0;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #334443;
}
.card-icon {
  transition: transform 1s ease;
}
.card-icon:hover {
  transform: rotate(360deg);
}
.cus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.services-header-content {
  text-align: center;
  margin-bottom: 40px;
}
.services-header-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.service-card {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 20px;
  border: 3px solid #fff0;
  text-decoration: none;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: #334443;
  box-shadow: 0 15px 30px rgb(0 0 0 / 0.2);
}
.card-icon {
  margin-bottom: 20px;
}
.card-icon img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.service-card h3 {
  color: #232e35;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
@media (min-width: 600px) {
  .service-card {
    width: calc(50% - 12.5px);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    gap: 30px;
  }
  .service-card {
    width: calc(33.333% - 20px);
    max-width: 350px;
  }
}
.fleet-sec {
  padding: 50px 0;
}
.fleet-sec h2 {
  font-size: 30px;
  font-weight: 700;
  color: #232e35;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 60%;
  text-align: left;
}
.fleet-sec p {
  width: 50%;
  font-size: 14px;
  text-align: left;
}
.fleet-main {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
.fleet-col {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 60px;
}
.fleet-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px 0 rgb(50 50 50 / 14%);
}
.fleet-left img {
  min-width: 280px;
  padding-left: 15px;
}
.img {
  max-width: 100%;
  height: auto;
}
.fleet-right {
  background-color: #fff;
  padding: 50px 20px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.fleet-right h3 {
  color: #232e35;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}
.fleet-right p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  width: 100%;
}
.footer {
  background-image: url(../images/sevices.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.footer::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #232e35;
  opacity: 0.9;
}
.footer .row {
  justify-content: center;
}
.footer-top {
  padding: 100px 0;
}
.footer .footer-logo {
  margin-bottom: 30px;
}
.footer p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.footer h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.7px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.footer ul li {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
  transition: all 0.5s ease;
  text-decoration: none;
}
.footer ul li a {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
  transition: all 0.5s ease;
  text-decoration: none;
}
.footer ul li:hover,
.footer ul li a:hover {
  color: #334443;
}
.footer ul li img,
.footer ul li a img {
  margin-right: 10px;
}
.footer .ft-last-ul li a {
  text-transform: uppercase;
}
.copy-right {
  border-top: 1px solid #fff;
  padding: 50px 0 30px;
  position: relative;
}
.copy-right p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.copy-right p a {
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
}
.areas-sec {
  padding: 100px 0;
  background-color: #fff;
}
.areas-main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
  justify-content: center;
}
.areas-card {
  background: linear-gradient(145deg, #232e35, #603b16);
  border: none;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 40%;
}
.areas-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 0.1),
    transparent
  );
  transition: transform 0.5s ease;
  transform: translateX(-100%);
}
.areas-card:hover::before {
  transform: translateX(100%);
}
.areas-card:hover {
  transform: translateY(-8px);
}
.areas-card a {
  display: block;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.areas-card a:hover {
  color: #f0f0f0;
}
:root {
  --color-dark-blue: #232e35;
  --color-accent: #00a3ad;
  --color-accent-light: #f0f9fa;
  --color-text-body: #52525b;
  --color-bg-page: #f8fafc;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-bg-page);
  margin: 0;
  color: var(--color-text-body);
}
.contact-sec {
  padding: 50px 0;
}
.cus-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-main {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.07);
  border-radius: 16px;
  overflow: hidden;
}
.contact-info,
.map-section {
  flex: 1;
}
.contact-info {
  padding: 30px;
}
.contact-info h2 {
  color: var(--color-dark-blue);
  font-size: 28px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.contact-item .icon-wrapper {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-right: 20px;
}
.contact-item .text-wrapper span {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--color-dark-blue);
  margin-bottom: 5px;
}
.contact-item .text-wrapper a,
.contact-item .text-wrapper .address {
  font-size: 16px;
  color: var(--color-text-body);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.contact-item .text-wrapper a:hover {
  color: var(--color-accent);
}
.map-section iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}
@media (min-width: 1024px) {
  .contact-sec {
    padding: 100px 0;
  }
  .contact-main {
    flex-direction: row;
  }
  .contact-info {
    padding: 50px;
  }
  .map-section iframe {
    height: 100%;
    min-height: 450px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .airport-col {
    width: 50%;
  }
  .train-left h2 {
    width: 80%;
  }
  .train-left-inner-main .train-cards {
    width: 50%;
  }
  .services-main {
    flex-direction: column;
  }
  .fleet-inner {
    gap: 0;
  }
  .fleet-left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .fleet-left img {
    transform: rotate(-90deg);
  }
}
@media screen and (max-width: 768px) {
  .main-heading h2 {
    font-size: 25px;
    width: 100%;
  }
  .airport-home-sec {
    padding: 20px 0 50px;
  }
  .main-heading p {
    width: 100%;
  }
  .airport-col {
    width: 100%;
    padding: 0;
  }
  .train-main {
    flex-direction: column-reverse;
  }
  .train-left,
  .train-right {
    width: 100%;
  }
  .train-left h2 {
    width: 100%;
    font-size: 25px;
  }
  .train-right .train-right-text h2 {
    font-size: 25px;
    width: 100%;
  }
  .services-sec {
    padding: 80px 0 50px;
  }
  .services-main {
    flex-direction: column;
  }
  .services-left {
    width: 100%;
    padding: 50px 20px;
    border-bottom: none;
  }
  .services-left h2 {
    font-size: 25px;
    width: 100%;
  }
  .services-right-main {
    padding: 50px 20px;
  }
  .services-cards {
    width: 100%;
  }
  .fleet-sec h2 {
    font-size: 25px;
    width: 100%;
  }
  .fleet-sec p {
    width: 100%;
  }
  .fleet-main {
    flex-direction: column;
  }
  .fleet-col {
    width: 100%;
    padding: 0;
  }
  .fleet-inner {
    flex-direction: column;
  }
  .fleet-left img {
    max-width: 100%;
    padding: 10px;
  }
  .fleet-right {
    padding: 30px 20px;
  }
  .fleet-right h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .footer-top {
    padding: 50px 0;
  }
  .footer ul li,
  .footer ul li a {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer h4 {
    margin-top: 30px;
  }
  .areas-main {
    gap: 15px;
    padding: 5px;
  }
  .areas-card {
    padding: 15px;
    flex: 1 1 180px;
    max-width: 220px;
  }
  .areas-card a {
    font-size: 15px;
  }
  .contact-sec {
    padding: 50px 0;
  }
  .contact-main {
    flex-direction: column;
    margin: 0 20px;
    padding: 0;
  }
  .contact-info,
  .map-section {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .areas-main {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .areas-card {
    flex: none;
    width: 100%;
    max-width: 300px;
    padding: 15px;
  }
  .areas-card a {
    font-size: 1.1em;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .cus-column-ft {
    order: 3;
  }
}
