/* ==========================================================================
   SERVICE PAGES (shared CSS for 9-10 pages)
   Base styles aligned with Cars page CSS approach.  :contentReference[oaicite:1]{index=1}
   ========================================================================== */

/* Use existing site font stack (cars css used Inter + Fiendstar) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: #1E1E24;
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }


.service-carousel {
  width: 100%;
}

.service-carousel__viewport {
  width: 100%;
  overflow: hidden;      /* hides extra slides */
  position: relative;
}

/* Track can be wider than viewport but won't affect page width now */
.service-carousel__track {
  display: flex;
  gap: 35px;
  will-change: transform;
  transition: transform 1.1s ease;
}


/* Shared container + headings (same naming as cars so it stays consistent) */
.cars-container {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 40px;
}
.cars-container--center { text-align: center; }

.section-title {
  font-size: 44px;
  letter-spacing: 2px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  color: #111;
}
.section-subtitle {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 500;
  margin: 12px 0 0;
  text-transform: uppercase;
  color: #111;
}
.section-divider {
  display: block;
  width: 55px;
  height: 1px;
  background: #1b1b1b;
  margin: 28px auto 0;
}

/* Buttons (match cars style) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  height: 58px;
  padding: 0 44px;
  border: 1px solid transparent;
  cursor: pointer;
 
}
.btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.75);
  background: transparent;
}

/* =========================================================
   HERO
   ========================================================= */
.service-hero {
  position: relative;
  min-height: 760px;
  background-size: cover;
  background-position: center;
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}
.service-hero__content {
  position: absolute;
  left: 70px;
  bottom: 85px;
  z-index: 2;
  color: #fff;
}
.service-hero__title {
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.service-hero__subtitle {
  margin: 0 0 36px;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.service-hero__actions {
    display: flex
;
    gap: 22px;
    align-content: center;
    justify-content: center;
}


/* =========================================================
   WHY CHOOSE
   ========================================================= */
.service-why {
  padding: 95px 0 95px;
  background: #fff;
}
.service-why__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
  align-items: start;
}
.service-why__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: inline-block;
  margin-bottom: 18px;
}
.service-why__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
}
.service-why__text {
  margin: 18px auto 0;
  font-size: 14px;
  line-height: 1.85;
  color: #222;
  max-width: 260px;
}

/* =========================================================
   CITY TO CITY TRANSFERS + CAROUSEL
   ========================================================= */
.service-city {
  padding: 95px 0 95px;
  background: #fff;
}
.service-city__lead {
  margin: 34px auto 0;
  font-size: 14px;
  color: #222;
}

/* carousel */
.service-carousel {
  margin-top: 46px;
}
.service-carousel__track {
  display: flex;
  gap: 35px;
  transition: transform 1.1s ease;
  will-change: transform;
}
.service-carousel__slide {
  flex: 0 0 360px;
}
.service-carousel__slide--main {
  flex-basis: 560px;
}
.service-carousel__slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.service-carousel__controls {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.service-carousel__dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.service-dot {
  width: 55px;
  height: 2px;
  border: 0;
  background: #d8d8d8;
  padding: 0;
  cursor: pointer;
}
.service-dot.is-active { background: #111; }

.service-carousel__arrows {
  grid-column: 2;
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.service-arrow {
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 16px;
  cursor: pointer;
}

/* =========================================================
   PRICES
   ========================================================= */
.service-prices {
  padding: 95px 0 95px;
  background: #fff;
}
.service-prices__grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.service-prices__left {
  text-align: left;
  padding-top: 10px;
}
.service-prices__intro {
  margin: 0 0 26px;
  font-size: 14px;
  color: #222;
  line-height: 1.7;
}
.service-prices__list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 420px;
}
.service-prices__list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 0;
  font-size: 14px;
  color: #111;
}
.service-prices__list a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.service-prices__note {
  margin: 24px 0 0;
  font-size: 12px;
  color: #222;
}
.service-prices__right {
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

/* =========================================================
   BENEFITS
   ========================================================= */
.service-benefits {
  padding: 95px 0 95px;
  background: #fff;
}
.service-benefits__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
}
.service-benefits__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 18px;
}
.service-benefits__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
}
.service-benefits__text {
  margin: 18px auto 0;
  font-size: 14px;
  line-height: 1.85;
  color: #222;
  max-width: 280px;
}

/* =========================================================
   OUTSTANDING SERVICE (light grey block)
   ========================================================= */
.service-outstanding {
  padding: 95px 0 95px;
  background: #eef2f5;
}
.service-outstanding .section-title,
.service-outstanding .section-subtitle {
  color: #111;
}
.service-outstanding__text {
  margin: 34px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 2.0;
  color: #222;
}
.service-outstanding__text--mt { margin-top: 26px; }

/* =========================================================
   CONTACT (dark)
   ========================================================= */
.service-contact {
  padding: 95px 0 110px;
  background: #1E1E24;
}
.service-contact__title {
  margin: 0;
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}
.service-contact__subtitle {
  margin: 12px 0 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.service-contact__divider {
  display: block;
  width: 55px;
  height: 1px;
  background: rgba(255,255,255,0.45);
  margin: 26px auto 0;
}

.service-contact__form {
  width: min(720px, 100%);
  margin: 40px auto 0;
}

.service-field {
  display: block;
  text-align: left;
  margin-bottom: 14px;
}
.service-field__label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.service-field__label em {
  color: #ff2d2d;
  font-style: normal;
  margin-left: 6px;
}

.service-field input,
.service-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
  padding: 14px 14px;
  font-size: 14px;
  outline: none;
}
.service-field textarea { resize: none; }

.service-contact__submit {
  width: 100%;
  height: 58px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  margin-top: 22px;
  background: #92140C;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
}

.service-contact__call {
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 991px) {
  .cars-container { padding: 0 20px; }

  .service-hero { min-height: 620px; }
  .service-hero__content {
    left: 20px;
    right: 20px;
    bottom: 32px;
  }
  .service-hero__title { font-size: 56px; letter-spacing: 2px; }
  .service-hero__subtitle { font-size: 14px; letter-spacing: 1.5px; margin-bottom: 18px; }
  .service-hero__actions { gap: 12px; flex-wrap: wrap; }
  .service-hero__actions .btn { width: 100%; justify-content: center; height: 52px; }

  .section-title { font-size: 30px; letter-spacing: 1.5px; }
  .section-subtitle { font-size: 14px; letter-spacing: 1.5px; }

  .service-why__grid,
  .service-benefits__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 34px;
  }
  .service-why__text,
  .service-benefits__text {
    max-width: 100%;
  }

  .service-prices__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .service-prices__right { min-height: 260px; }

  .service-carousel__track { gap: 12px; }
  .service-carousel__slide,
  .service-carousel__slide--main {
    flex: 0 0 100%;
  }
  .service-carousel__slide img { height: 240px; }
  .service-dot { width: 30px; }
}
@media (max-width: 480px) {
  .service-hero { min-height: 560px; }
  .service-hero__title { font-size: 46px; }
}



/* =========================================================
   MOBILE (ONLY) — do not affect desktop
   ========================================================= */
@media (max-width: 991px) {
  .cars-container { padding: 0 20px; }

  /* Section spacing (closer to video) */
  .service-why,
  .service-city,
  .service-prices,
  .service-benefits,
  .service-outstanding,
  .service-contact {
    padding: 70px 0;
  }

  /* HERO (match video: stacked buttons, good spacing) */
  .service-hero { min-height: 680px; }
  .service-hero__content {
    left: 20px;
    right: 20px;
    bottom: 70px;
  }
  .service-hero__title {
    font-size: 56px;
    letter-spacing: 2px;
    line-height: 1.05;
  }
  .service-hero__subtitle {
    font-size: 14px;
    letter-spacing: 1.6px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .service-hero__actions {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .service-hero__actions .btn {
    width: 100%;
    justify-content: center;
    height: 56px;
    padding: 0 18px;
  }

  /* Titles */
  .section-title {
    font-size: 30px;
    letter-spacing: 1.5px;
    line-height: 1.2;
  }
  .section-subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 1.5;
  }
  .section-divider { margin-top: 20px; }

  /* WHY + BENEFITS: stack */
  .service-why__grid,
  .service-benefits__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 38px;
  }
  .service-why__icon,
  .service-benefits__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
  }
  .service-why__text,
  .service-benefits__text {
    max-width: 320px; /* keeps text nicely centered like video */
  }

  /* PRICES: stack list then image */
  .service-prices__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }
  .service-prices__right {
    min-height: 520px; /* tall image like video */
  }

  /* ==========================
     CAROUSEL (match video)
     - big main slide
     - peek side slide
     - no extra page width
     ========================== */
  .service-carousel { margin-top: 34px; }

  .service-carousel__viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 20px; /* gives the same left/right breathing space */
  }

  .service-carousel__track {
    gap: 16px;
  }

  /* Peek + main sizing (like video) */
  .service-carousel__slide {
    flex: 0 0 32%;
  }
  .service-carousel__slide--main {
    flex: 0 0 68%;
  }

  .service-carousel__slide img {
    height: 190px;
    object-fit: cover;
  }

  /* Dots like video (thin bars) */
  .service-carousel__dots { gap: 12px; }
  .service-dot { width: 34px; }

  /* Controls spacing */
  .service-carousel__controls { margin-top: 16px; }
  .service-carousel__arrows { margin-top: 10px; }
}

@media (max-width: 480px) {
  .cars-container { padding: 0 16px; }

  .service-hero { min-height: 620px; }
  .service-hero__title { font-size: 46px; }

  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 13px; }

  /* Carousel slightly shorter on very small screens */
  .service-carousel__viewport { padding: 0 16px; }
  .service-carousel__slide img { height: 175px; }

  /* Prices image stays tall */
  .service-prices__right { min-height: 480px; }
}



/* New carausel css  */

/* =========================
   SIMPLE 3-IMG CAROUSEL (NO TRANSITION)
   ========================= */

.car-intro {
  padding: 95px 0 70px;
  background: #fff;
}

/* carousel wrapper */
.cars-simple-carousel {
  margin-top: 55px;
}

.cars-simple-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

/* 3 images visible */
.cars-simple-carousel__track {
  display: flex;
  gap: 12px;
  transition: transform 1.2s ease;   /* <-- smooth & slower */
}

/* each slide takes 1/3 width (minus gaps) */
.cars-simple-carousel__slide {
  flex: 0 0 calc((100% - 24px) / 3);
}

.cars-simple-carousel__slide img {
  width: 100%;
  height: 260px;          /* adjust if needed to match your screenshot */
  object-fit: cover;
  display: block;
  background: #fff;
}

/* dots */
.cars-simple-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.cars-simple-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7d7d7;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.cars-simple-carousel__dot.is-active {
  background: #111;
}

@media (max-width: 991px) {
/* CAROUSEL: 1 image per view on mobile */
  .cars-simple-carousel {
    margin-top: 28px;
  }

  .cars-simple-carousel__track {
    gap: 10px;
  }

  .cars-simple-carousel__slide {
    flex: 0 0 100%;
  }

  .cars-simple-carousel__slide img {
    height: 220px;
  }

  /* INFO section spacing */
  .car-info {
    padding: 60px 0;
  }
  }

  /* ==========================================================================
   BY THE HOUR — extra sections (shared style, safe for other service pages)
   ========================================================================== */

/* Grey intro section */
.service-intro{
  background:#d6d6d6;
  padding: 120px 0;
}
.service-intro__title{
  margin:0;
  font-size: 44px;
  letter-spacing:2px;
  font-weight:500;
  text-transform:uppercase;
  color:#111;
}
.service-intro__subtitle{
  margin:10px 0 0;
  font-size:16px;
  letter-spacing:2px;
  font-weight:500;
  text-transform:uppercase;
  color:#111;
}
.service-intro__divider{
  display:block;
  width:55px;
  height:1px;
  background:#1b1b1b;
  margin:26px auto 0;
}
.service-intro__text{
  max-width: 640px;
  margin: 28px auto 0;
  font-size:18px;
  line-height:1.8;
  color:#111;
}

/* Hourly rate cards */
.service-hourly-rates{
  background:#fff;
  padding: 95px 0 110px;
}
.service-hourly-grid{
  margin-top: 55px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}
.service-hourly-card{
  background:#fff;
}
.service-hourly-card__img{
  height: 120px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 18px;
}
.service-hourly-card__img img{
  max-width: 100%;
  height: auto;
  display:block;
}
.service-hourly-card__title{
  margin: 0 0 18px;
  font-size:18px;
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:600;
  color:#111;
}
.service-hourly-card__row{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 7px 0;
  font-size:14px;
  color:#111;
}
.service-hourly-card__row span{ color:#111; opacity:.9; }
.service-hourly-card__row strong{ font-weight:600; }

.service-hourly-card__vat{
  margin: 16px 0 18px;
  font-size:12px;
  color:#111;
  opacity:.75;
}

.service-hourly-card__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:58px;
  border-radius:999px;
  background:#92140C;
  color:#fff;
  letter-spacing:2px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  text-decoration:none;
}
.service-hourly-card__btn span{ font-size:14px; }

.service-hourly-card__more{
  display:block;
  text-align:center;
  margin-top: 14px;
  font-size:12px;
  color:#111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Icon grids (reusable) */
.service-why-icons{
  background:#fff;
  padding: 95px 0 95px;
}
.service-why-icons__grid{
  margin-top: 60px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
}
.service-why-icons__item{
  text-align:center;
}
.service-why-icons__icon{
  display:inline-flex;
  width: 70px;
  height: 70px;
  align-items:center;
  justify-content:center;
  margin-bottom: 16px;
  color:#111;
}
.service-why-icons__icon svg{
  width: 60px;
  height: 60px;
}
.service-why-icons__title{
  margin:0;
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:700;
  color:#111;
  line-height:1.35;
}
.service-why-icons__text{
  margin: 18px auto 0;
  font-size:14px;
  line-height:1.85;
  color:#222;
  max-width: 280px;
}

/* Gallery grid (1 big + 2 stacked) */
.service-gallery{
  background:#fff;
  padding: 40px 0 90px;
}
.service-gallery__grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.service-gallery__big img,
.service-gallery__stack img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.service-gallery__stack{
  display:grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

/* Expect section */
.service-expect{
  background:#fff;
  padding: 95px 0 110px;
}
.service-expect__grid{
  margin-top: 55px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:start;
}
.service-expect__img img{
  width:100%;
  height:auto;
  display:block;
}
.service-expect__content{
  font-size:16px;
  line-height:2.0;
  color:#111;
}
.service-expect__content p{
  margin: 0 0 26px;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 991px){
  .service-intro{ padding: 90px 0; }
  .service-intro__title{ font-size: 30px; }
  .service-intro__subtitle{ font-size: 13px; }
  .service-intro__text{ font-size: 14px; max-width: 560px; }

  .service-hourly-grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-why-icons__grid{
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 38px;
  }

  .service-gallery__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-gallery__stack{
    grid-template-rows: auto;
    gap: 18px;
  }
  .service-gallery__stack img{
    height: 220px;
  }
  .service-gallery__big img{
    height: 280px;
  }

  .service-expect__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 480px){
  .service-intro__title{ font-size: 26px; }
}


/* =========================================================
   AIRPORT TRANSFERS (page-specific additions)
   Reuses existing service.css; only adds styles for new sections.
   ========================================================= */

.airport-cars{
  background:#fff;
  padding: 60px 0 70px;
}

.airport-cars__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: start;
}

.airport-car{
  text-align:center;
  color:#111;
}

.airport-car__img{
  width: 100%;
  max-width: 320px;
  height: auto;
  display:block;
  margin: 0 auto 22px;
}

.airport-car__title{
  margin: 0 0 18px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color:#111;
}

.airport-car__list{
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 320px;
  text-align:left;
}

.airport-car__list li{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
  color:#111;
}

.airport-car__list li:last-child{ border-bottom: 0; }

.airport-car__list strong{
  font-weight: 600;
  white-space: nowrap;
}

.airport-car__note{
  margin: 18px 0 0;
  font-size: 12px;
  color:#111;
  font-weight: 600;
}

.airport-car__cta{
  margin: 22px auto 0;
  max-width: 320px;
  height: 54px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  background:#92140C;
  color:#fff;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.airport-car__arrow{
  font-size: 18px;
  line-height: 1;
}

.airport-car__more{
  display:inline-block;
  margin-top: 12px;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
  color:#111;
}

.service-benefits--airport{
  padding-top: 85px;
}

.service-benefits--no-ordinary{
  padding-top: 95px;
  padding-bottom: 95px;
  background: #fff;
}

.service-benefits--no-ordinary .section-title,
.service-benefits--no-ordinary .section-subtitle{
  color:#111;
}

.airport-split{
  padding: 95px 0 95px;
}

.airport-split--grey{ background: #b8c6c9; }
.airport-split--white{ background: #fff; }

.airport-split .section-title,
.airport-split .section-subtitle{
  color:#111;
}

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

.airport-split__content{
  text-align:center;
  color:#111;
}

.airport-split__text{
  margin: 28px auto 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.9;
  color:#111;
}

.airport-split__btn{
  margin: 26px auto 0;
  width: 180px;
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(0,0,0,0.4);
  border-radius: 999px;
  color:#111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.airport-split__media img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display:block;
}

.airport-locations{
  padding: 95px 0 95px;
  background:#fff;
  color:#111;
}

.airport-locations .section-title,
.airport-locations .section-subtitle{ color:#111; }

.airport-locations__grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 55px;
  align-items: start;
}

.airport-locations__lead{
  margin: 34px 0 0;
  font-size: 14px;
  color:#111;
}

.airport-locations__lists{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
}

.airport-locations__bullets{
  margin: 0;
  padding: 6px 0 0 22px;
}

.airport-locations__bullets li{
  height: 26px;
}

.airport-locations__links{
  margin: 0;
  padding: 0;
  list-style: none;
}

.airport-locations__links li{
  padding: 6px 0;
  font-size: 14px;
}

.airport-locations__links a{
  color:#111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.airport-locations__foot{
  margin: 30px 0 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 2.0;
  color:#111;
}

.airport-locations__right img{
  width:100%;
  height: 520px;
  object-fit: cover;
  display:block;
}

@media (max-width: 1100px){
  .airport-cars__grid{ grid-template-columns: repeat(2, 1fr); }
  .airport-split__grid{ grid-template-columns: 1fr; gap: 34px; }
  .airport-split__media img{ height: 380px; }
  .airport-locations__grid{ grid-template-columns: 1fr; gap: 34px; }
  .airport-locations__right img{ height: 420px; }
}

@media (max-width: 640px){
  .airport-cars{ padding: 35px 0 50px; }
  .airport-cars__grid{ grid-template-columns: 1fr; gap: 40px; }
  .airport-car__img{ max-width: 260px; }
  .airport-car__list{ max-width: 360px; }
  .airport-car__cta{ max-width: 360px; }
  .airport-split{ padding: 55px 0 55px; }
  .airport-locations{ padding: 55px 0 55px; }
  .airport-locations__lists{ grid-template-columns: 22px 1fr; }
  .airport-locations__bullets{ padding-left: 16px; }
}



/* =========================================================
   EVENT (page-specific additions)
   ========================================================= */

.service-hero--event{
  background-position: center;
}

/* Light intro section (matches video) */
.event-intro{
  background:#E9EFF4;
  padding: 120px 0;
}
.event-intro__text{
  margin: 34px auto 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 2.0;
  color:#111;
}

/* Categories section */
.event-categories{
  background:#fff;
  padding: 110px 0 120px;
}
.event-categories__grid{
  margin-top: 70px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
  align-items: start;
}
.event-cat{
  text-align:center;
}
.event-cat__icon{
  width: 64px;
  height: 64px;
  display:block;
  margin: 0 auto 22px;
}
.event-cat__title{
  margin: 0;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color:#111;
}
.event-cat__text{
  margin: 18px auto 0;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.9;
  color:#111;
}

/* Events cards grid */
.event-cards{
  background:#fff;
  padding: 55px 0 110px;
}
.event-cards__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}
.event-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
}
.event-card__img img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
}
.event-card__body{
  padding: 44px 44px 36px;
}
.event-card__title{
  margin:0;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color:#111;
  line-height: 1.25;
}
.event-card__text{
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color:#111;
  max-width: 520px;
}
.event-card__link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  margin-top: 34px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color:#92140C;
}

/* Contact section: reuse existing .service-contact but match video (blue button) */
.service-contact--event{
  background: #101014;
}
.service-page--event .service-contact__submit{
  background:#92140C;
}
.service-field--icon{
  position: relative;
}
.service-field--icon input{
  padding-right: 44px;
}
.service-field__icon{
  position:absolute;
  right: 14px;
  top: 44px;
  opacity: 0.55;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 991px){
  .event-categories__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
  .event-cards__grid{
    grid-template-columns: 1fr;
  }
  .event-card__body{
    padding: 34px 26px 28px;
  }
}
@media (max-width: 640px){
  .event-intro{ padding: 75px 0; }
  .event-categories{ padding: 75px 0 85px; }
  .event-categories__grid{
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .event-card__img img{ height: 240px; }
}

/* =========================================================
   TOUR (match reference video)
   Append at the bottom of service.css
   ========================================================= */

.service-hero--tour{
  background-position: center;
}

/* Hero typography tweaks to match Tour page */
.tour-hero__content{
  left: 70px;
  bottom: 95px;
}
.tour-hero__title{
  font-size: 78px;
  letter-spacing: 3px;
}
.tour-hero__subtitle{
  max-width: 760px;
  line-height: 1.35;
  opacity: 0.95;
}

/* Tour hero blue button */
.btn--tour-primary{
  background: #92140C;
  color: #fff;
  border-color: #92140C;
}
.btn--tour-primary:hover{
  filter: brightness(0.95);
}

/* Listing section */
.tour-listing{
  background: #fff;
  padding: 95px 0 110px;
}

/* 3-column card grid */
.tour-grid{
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  align-items: start;
}

/* Card */
.tour-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}
.tour-card__img img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.tour-card__body{
  padding: 34px 34px 34px;
  text-align: left;
}
.tour-card__title{
  margin: 0;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  line-height: 1.25;
}
.tour-card__meta{
  margin: 8px 0 0;
  font-size: 14px;
  color: #111;
}
.tour-card__text{
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #111;
}

/* Green section */
.tour-choice{
  background: #3f472d;
  padding: 110px 0 120px;
  color: #fff;
}
.tour-choice__wrap{
  max-width: 980px;
}
.tour-choice__title{
  margin: 0;
  font-size: 44px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}
.tour-choice__subtitle{
  margin: 12px 0 0;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.55;
}
.tour-choice__divider{
  display: block;
  width: 55px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  margin: 28px auto 0;
}

.tour-choice__text{
  margin: 34px auto 0;
  max-width: 780px;
  font-size: 14px;
  line-height: 2.0;
  opacity: 0.92;
}
.tour-choice__links{
  margin: 34px auto 0;
  max-width: 860px;
  font-size: 13px;
  line-height: 2.0;
  opacity: 0.9;
}
.tour-choice__footer{
  margin: 30px auto 0;
  max-width: 760px;
  font-size: 13px;
  line-height: 2.0;
  opacity: 0.9;
}

.tour-choice a{
  color: #fff;
  text-decoration: underline;
}
.tour-choice__brand{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px){
  .tour-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px){
  .tour-hero__content{
    left: 26px;
    right: 26px;
    bottom: 70px;
  }
  .tour-hero__title{
    font-size: 56px;
  }
  .tour-hero__actions{
    flex-wrap: wrap;
  }
}

@media (max-width: 640px){
  .tour-grid{
    grid-template-columns: 1fr;
  }
  .tour-card__img img{
    height: 240px;
  }
  .tour-card__body{
    padding: 26px 22px 28px;
  }

  .tour-choice{
    padding: 80px 0 90px;
  }
  .tour-choice__title{
    font-size: 34px;
  }
  .tour-choice__subtitle{
    font-size: 16px;
  }
}


/* =========================================================
   WEDDING PAGE (append at bottom of service.css)
   ========================================================= */

.service-hero--wedding{
  background-position: center;
}
.wedding-hero__overlay{
  background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.05) 100%);
}
.wedding-hero__content{
  left: 70px;
  bottom: 80px;
}
.wedding-hero__title{
  font-size: 64px;
  letter-spacing: 2px;
}
.wedding-hero__subtitle{
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0.95;
}

/* shared headings (matches wedding page style) */
.wedding-title{
  margin: 0;
  font-size: 34px;
  letter-spacing: 3px;
  font-weight: 500;
  text-transform: uppercase;
  color: #111;
}
.wedding-subtitle{
  margin: 10px 0 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  opacity: 0.8;
}
.wedding-divider{
  display: block;
  width: 55px;
  height: 1px;
  background: rgba(0,0,0,0.45);
  margin: 26px auto 0;
}

/* paragraphs */
.wedding-paragraph{
  margin: 34px auto 0;
  max-width: 760px;
  font-size: 14px;
  line-height: 2.0;
  color: #111;
}
.wedding-paragraph--spaced{ margin-top: 26px; }
.wedding-paragraph--tight{ max-width: 720px; }

/* Intro (pink background) */
.wedding-intro{
  background: #F3E8EA;
  padding: 120px 0 130px;
}

/* Packages */
.wedding-packages{
  background: #fff;
  padding: 105px 0 120px;
}
.wedding-packages__grid{
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.wedding-package{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}
.wedding-package__img img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.wedding-package__body{
  padding: 34px 34px 30px;
}
.wedding-package__title{
  margin: 0;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
}
.wedding-package__text{
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #111;
  max-width: 340px;
}
.wedding-package__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2E7DEB;
}

/* Why choose us */
.wedding-why{
  background: #fff;
  padding: 95px 0 115px;
}
.wedding-why__grid{
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
}
.wedding-why__item{
  text-align: center;
}
.wedding-why__icon{
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: block;
}
.wedding-why__title{
  margin: 0;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
}
.wedding-why__text{
  margin: 16px auto 0;
  max-width: 230px;
  font-size: 14px;
  line-height: 1.9;
  color: #111;
}

/* Pricing (4 columns) */
.wedding-pricing{
  background: #fff;
  padding: 105px 0 120px;
}
.wedding-pricing__grid{
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
/* --- WEDDING PRICING: make car images standard size --- */
.price-col__car{
  width: 100%;
  max-width: 360px;     /* bigger than before */
  height: 200px;        /* standard header height */
  object-fit: contain;
  display: block;
  margin: 0 auto 22px;
}

/* Optional: if the tiny images have extra empty space, this helps a bit */
.price-col{
  padding-top: 6px;
  text-align: left;
}

.price-col__title{
  margin: 0;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
}
.price-col__rows{
  margin-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.price-row{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
  color: #111;
}
.price-row strong{
  font-weight: 700;
}
.price-col__note{
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
  color: #111;
  opacity: 0.85;
}
.price-col__more{
  display: inline-block;
  margin-top: 26px;
  font-size: 12px;
  color: #111;
  text-decoration: underline;
}

/* Get the perfect shot */
.wedding-shot{
  background: #fff;
  padding: 95px 0 0;
}
.wedding-shot__gallery{
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.wedding-shot__gallery img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* CTA pink section */
.wedding-cta{
  background: #F3E8EA;
  padding: 120px 0 130px;
}
.wedding-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  min-width: 340px;
  padding: 18px 28px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.55);
  color: #111;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}
.brand-replace{
  text-decoration: none;
  font-weight: 700;
}

/* Contact black section */
.wedding-contact{
  background: #000;
  color: #fff;
  padding: 120px 0 120px;
}
.wedding-contact__title{
  margin: 0;
  font-size: 36px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}
.wedding-contact__subtitle{
  margin: 18px 0 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  line-height: 1.7;
}
.wedding-contact__divider{
  display: block;
  width: 55px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  margin: 26px auto 0;
}
.wedding-contact__form{
  margin: 50px auto 0;
  max-width: 640px;
}
.wedding-field{
  display: block;
  margin-top: 16px;
  position: relative;
}
.wedding-field span{
  display: block;
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 8px;
}
.wedding-field em{
  color: #E74C3C;
  font-style: normal;
  margin-left: 4px;
}
.wedding-field input,
.wedding-field textarea{
  width: 100%;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 14px;
  outline: none;
}
.wedding-field--email input{
  padding-right: 44px;
}
.wedding-field__icon{
  position: absolute;
  right: 14px;
  top: 42px;
  opacity: 0.6;
}
.wedding-contact__submit{
  width: 100%;
  margin-top: 26px;
  padding: 18px 18px;
  border-radius: 999px;
  border: none;
  background: #2E7DEB;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}
.wedding-contact__call{
  display: inline-flex;
  margin-top: 26px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1100px){
  .wedding-packages__grid{ grid-template-columns: repeat(2, 1fr); }
  .wedding-pricing__grid{ grid-template-columns: repeat(2, 1fr); }
  .wedding-why__grid{ grid-template-columns: repeat(2, 1fr); }
  .wedding-shot__gallery{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px){
  .wedding-hero__content{ left: 24px; bottom: 65px; right: 24px; }
  .wedding-hero__title{ font-size: 48px; }
  .wedding-title{ font-size: 30px; }
  .wedding-contact__title{ font-size: 28px; }
}

@media (max-width: 640px){
  .wedding-intro,
  .wedding-packages,
  .wedding-pricing,
  .wedding-cta,
  .wedding-contact{ padding: 80px 0; }

  .wedding-packages__grid{ grid-template-columns: 1fr; }
  .wedding-pricing__grid{ grid-template-columns: 1fr; }
  .wedding-why__grid{ grid-template-columns: 1fr; }
  .wedding-shot__gallery{ grid-template-columns: 1fr; }

  .wedding-package__img img{ height: 240px; }
  .wedding-shot__gallery img{ height: 240px; }
  .wedding-cta__btn{ min-width: 260px; width: 100%; }
}


#ctabutton{ justify-items: center; }