
/* ===========================================
   HOME PAGE MASTER STYLESHEET (home.css)
   Modern CSS only (no vendor prefixes)
   Pixel-perfect to homepage screenshots
=========================================== */

/* ------------------------------
   1) GLOBAL DEFAULTS
------------------------------ */
body { font-family: 'Fira Sans Condensed', sans-serif; 
margin: 0; 
padding: 0; 
color: #192026; 
background: #fff; 
}

/* Unified H2 styling */
h2 {
  font-size: 36px !important; 
  font-weight: 500 !important; 
  color: #192026; 
  text-transform: uppercase; 
  margin-bottom: 1rem !important; 
  line-height: 1.2 !important; 
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

.home-section-title {
  font-size: 38px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.home-section-sub {
  font-size: 16px;
  font-weight: 300;
  color: #d1d1d1;
}

/* =========================================================
   1. HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: calc(80vh - 120px);
  padding-top: 60px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: "Fira Sans Condensed", sans-serif;
  z-index: 1;
  overflow: visible !important;   /* <-- ADD THIS */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 6, 6, 0.95) 0%,
    rgba(6, 6, 6, 0.6) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 4;
}

/* HERO TEXT */
.hero-copy h1 {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.hero-copy h6 {
  font-size: 33px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.hero-copy p {
  font-size: 23px !important;
  font-weight: 400 !important;
  color: #fff;
}


/* =========================================================
   2. BOOKING CARD (NORMAL FLOW — sits beside hero text)
   ========================================================= */
/* lower the booking form */
.hero-section .col-lg-5 {
  position: relative;
  top: 120px;
}

.booking-card {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  padding: 40px 20px;
  backdrop-filter: blur(5px);
  border: 2px solid #325c52;
  width: 100%;
  max-width: 600px;
  position: relative;   /* RESET */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
}


/* =========================================================
   3. INPUT WITH ICON
   ========================================================= */
.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff !important;
  font-size: 16px;
  pointer-events: none;
}

.input-with-icon .form-control-dark {
  padding-right: 45px;
}

.input-with-icon input,
.input-with-icon select {
  color: #fff !important;
}

.input-with-icon input::placeholder,
.input-with-icon select::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}


/* =========================================================
   4. FORM ELEMENTS
   ========================================================= */
.form-control-dark,
.form-select.form-control-dark {
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(25, 32, 38, 1) 50%) !important;
  border-radius: 40px !important;
  color: #cfcfcf;
  font-size: 15px;
  padding: 12px 20px;
  height: 55px !important;
  border: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.form-control-dark::placeholder {
  color: rgba(207, 207, 207, 0.7);
}

.form-control-dark:focus {
  outline: none;
  border: 1px solid #325c52;
  box-shadow: 0 0 6px rgba(50, 92, 82, 0.5);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(25, 32, 38, 0.9) 50%);
  color: #fff;
}
/* Dropdown text (options) */
select.form-control-dark option {
    background: #000 !important;
    color: #fff !important;
}

/* =========================================================
   5. PICKUP GROUP
   ========================================================= */
.pickup-group {
  display: flex;
  flex-direction: column;
}

.btn-add-via {
  align-self: flex-end;
  background: #325c52 !important;
  color: #fff !important;
  font-size: 0.8em;
  padding: 5px 10px;
  border-radius: 30px !important;
  border: none;
  margin-top: 5px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-add-via:hover {
  background: #3e6f63 !important;
}


/* =========================================================
   6. RADIO BUTTONS
   ========================================================= */
.radio-pill input[type="radio"] {
  accent-color: #325c52;
}


/* =========================================================
   7. SUBMIT BUTTON
   ========================================================= */
.btn-cta {
  background-color: #325c52 !important;
  color: #fff !important;
  border-radius: 40px !important;
  padding: 14px 40px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 30px;
  font-size: 16px;
}

.btn-cta:hover {
  background-color: #fff !important;
  color: #325c52 !important;
}


/* =========================================================
   8. CALENDAR ICON FIX
   ========================================================= */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}


/* =========================================================
   9. RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .hero-section {
    padding: 80px 20px;
    text-align: center;
    min-height: auto;
  }

  .booking-card {
    margin-top: 20px;
    padding: 25px 20px;
  }

  .btn-cta {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .booking-card {
    padding: 20px;
  }
}


/* =========================================================
   10. NEXT SECTION SPACING
   ========================================================= */
.about-section {
  padding-top: 80px;
  background: #fff;
  position: relative;
  z-index: 0; /* <-- LOWER than hero container (z-index: 4) */
}


.about-title {
  font-size: 48px !important;
  font-weight: 500!important;
  color: #192026!important;
  line-height: 1.2!important;
  text-transform: uppercase;
  display:block!important;
}

.about-subtitle {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #585858 !important;
}

.about-text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

.about-readmore-btn {
  background: #325c52;
  color: #fff !important;
  border: 2px solid #325c52;
  padding: 10px 30px;
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-readmore-btn:hover {
  background: #fff;
  color: #325c52 !important;
  border-color: #325c52;
}

/* ------------------------------
   4) BENEFITS SECTION
------------------------------ */
.benefit-section {
  padding: 20px 0 80px 0;
  background: #fff;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 10px 0;
}

.benefit-ico {
  width: 52px;
  height: 52px;
  background: #0D1A18;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.benefit-ico img {
  width: 26px;
  height: auto;
  display: block;
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1d1d1d;
}

.benefit-item p {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.55;
}

/* ------------------------------
   5) FLEETS SECTION
------------------------------ */
.fleet-section {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

.fleet-bg,
.fleet-overlay {
  position: absolute;
  inset: 0;
}

.fleet-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.fleet-overlay {
  background: linear-gradient(180deg, rgba(6, 6, 6, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.fleet-header,
.fleet-text-block,
.fleet-content,
.fleet-carousel {
  position: relative;
  z-index: 3;
}

.fleet-header {
  margin-bottom: 60px;
}

.fleet-header .section-title {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.fleet-header .section-sub {
  font-size: 14px;
  font-weight: 400 !important;
  color: #fff !important;
}

.fleet-text-block {
  max-width: 500px;
  color: #fff !important;
  margin: 0 auto 60px;
  text-align: left;
}
.fleet-lead-title {
    font-size: 27px !important;
    font-weight: 400 !important;
}
.fleet-lead-sub {
  font-size: 16px !important;  /* Adjust font size as needed */
  font-weight: 400 !important; /* Optional: set lighter font weight */
  color: #fff;      /* This ensures the text color is white */
  line-height: 1.7;  /* Optional: adjust line height for better readability */
}

/* Fleet Card */
.fleet-title {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin: 18px 0 12px;
  line-height: 1.25;
  min-height: 38px; /* ensures consistent space for up to 2 lines */
  padding-bottom: 10px; /* adds uniform bottom gap */
}

.fleet-card {
  min-width: 280px;
  max-width: 280px;
  height: 450px;
  background: linear-gradient(
  180deg,
  rgba(0, 0, 0, 1) 0%,
  rgba(23, 60, 42, 0) 54%,
  rgba(50, 92, 82, 0.4) 100%
  );
  border-radius: 30px;
  padding: 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.fleet-img-box {
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.fleet-img-box img {
  width: 100%;
  border-radius: 10px;
}

/* Fleet Specs */
.fleet-specs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 14px;
}

.fleet-specs li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 50%;
}

/* Fleet Button */

/* Centered Fleet Button */
.fleet-btn-wrap {
  text-align: center;
  justify-content: center;
  margin-top: 20px;
}

/* Fleet Button Styling */
.fleet-btn-wrap .btn {
  background: #325c52;
  color: #fff !important;
  border: 1px solid #fff;    /* ✅ White border instead of green */
  padding: 10px 30px;
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fleet-btn-wrap .btn:hover {
  background: #fff;
  color: #325c52 !important;
  border-color: #fff;
}

/* ===============================
   Fleet Nav — simple clean version
   =============================== */

.fleet-carousel .owl-nav {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px; /* same spacing as services */
  z-index: 10;
}

/* Navigation buttons */
.fleet-carousel .owl-nav button.owl-prev,
.fleet-carousel .owl-nav button.owl-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent !important; /* transparent background */
  border: 2px solid #fff !important;  /* visible white circular border */
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px !important;
  transition: 0.3s ease;
}

.fleet-carousel .owl-nav button.owl-prev:hover,
.fleet-carousel .owl-nav button.owl-next:hover {
  background: transparent !important;
  border-color: #fff !important;
  transform: scale(1.08);
}

.fleet-carousel .owl-nav button:disabled {
  opacity: 0.5 !important;
}

.fleet-carousel .owl-dots {
  text-align: center;
  margin-top: 10px;
}

/* ===============================
   SERVICES SECTION (CLEAN + FIXED)
================================== */
.services-section {
  padding: 120px 0;
  background: #fff;
}

.services-section .section-title {
  font-size: 48px !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  color: #192026 !important;
  text-align: center;
}

.services-section .section-sub {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #585858 !important;
}

/* Owl container */
#services-carousel.owl-carousel {
  padding-bottom: 50px;
  position: relative;
}

#services-carousel .owl-stage-outer {
  padding: 10px 0 40px 0;
}

#services-carousel .owl-item {
  display: flex;
  justify-content: center;
}

#services-carousel .item {
  width: 100%;
}

/* Card */
.service-card {
  position: relative;
  width: 380px;
  height: 360px;
  border-radius: 32px;
  overflow: hidden;
  flex: 0 0 auto;
}

/* Image area */
.service-media {
  position: absolute;
  inset: 0;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(50, 92, 82, 0.7) 100%
  );
}

/* Card content */
.service-content {
  position: absolute;
  top: 30px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-excerpt {
  font-size: 15px;
  color: #f1f1f1;
  margin-bottom: 18px;
  line-height: 1.5;
}

.service-arrow {
  color: #fff !important;
  font-size: 22px;
}

/* Navigation */
#services-carousel .owl-nav {
  position: absolute;
  bottom: -60px;           /* Desktop only */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
}

#services-carousel .owl-nav button.owl-prev,
#services-carousel .owl-nav button.owl-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent !important;
  border: 2px solid #000 !important;
  color: #000 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px !important;
}

#services-carousel .owl-nav button.owl-prev:hover,
#services-carousel .owl-nav button.owl-next:hover {
  background: transparent !important;
  border-color: #000 !important;
  color: #000 !important;
}

#services-carousel .owl-nav button:disabled {
  opacity: 0.4 !important;
}

#services-carousel .owl-dots {
  text-align: center;
  margin-top: 10px;
}

/* ------------------------------
   MOBILE FIX FOR NAV BUTTONS
------------------------------ */
@media (max-width: 992px) {
  #services-carousel .owl-nav {
    bottom: auto !important;
    top: -40px !important;   /* Sit above the slider cleanly */
  }
}

@media (max-width: 768px) {
  #services-carousel .owl-nav {
    top: auto !important;
    bottom: -60px !important;  /* adjust this number to move lower/higher */
  }
}

@media (max-width: 480px) {
  #services-carousel .owl-nav {
    top: auto !important;
    bottom: -50px !important;
  }
}

/* ------------------------------
   7) AIRPORT TRANSFERS (UNCHANGED)
------------------------------ */
.airport-section {
  position: relative;
  padding: 160px 0;
  color: #fff !important;
  overflow: hidden;
  font-family: sans-serif;
}

.airport-section .section-title {
  font-size: 44px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.airport-section .section-sub {
  font-size: 14px!important;
  font-weight: 400 !important;
  line-height: 24px;
  color: #fff !important;
}

.airport-list {
  font-size: 27px !important;
  font-weight: 400 !important;
  position: relative;
}

.airport-bg {
  position: absolute;
  inset: 0;
  background: url('./img/airport_transfer_back.webp') center/cover no-repeat;
  z-index: 0;
  opacity: 1;
}

.airport-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(48, 126, 88, 0.25) 75%,
    rgba(48, 126, 88, 0) 100%
  );
  z-index: 1;
}

.airport-section .container {
  position: relative;
  z-index: 3;
}

/* Titles */
.section-title {
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.1;
}

.section-sub {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 35px;
  opacity: 0.9;
}

/* List styling */
.airport-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.airport-list li {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}

.airport-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: #38b793;
  font-size: 16px;
}

/* Tiles */
.airport-tiles {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 35px;
  flex-wrap: nowrap;
  margin-top: 140px;
}

.airport-tile {
  position: relative;
  flex: 1 1 33%;
  height: 330px;
  border-radius: 35px;
  overflow: hidden;
  color: #fff !important;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.airport-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6) 66%, rgb(48, 126, 88) 100%);
  z-index: 1;
}

.airport-tile span {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.airport-tile:hover::before {
  background: rgba(0, 0, 0, 0.7);
}

.airport-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.airport-tiles a:nth-child(1)::before {
  background: linear-gradient(rgba(0, 0, 0, 0.6) 66%, rgb(48, 126, 88) 100%);
}

.airport-tiles a:nth-child(2) {
  background: url('./img/main-eurostar.webp') center/cover no-repeat;
}

.airport-tiles a:nth-child(3) {
  background: url('./img/london-cityscape.webp') center/cover no-repeat;
}

/* Responsive Tiles */
@media (max-width: 992px) {
  .airport-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .airport-tiles {
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
  }

  .airport-tile {
    height: 330px !important;       /* keep desktop height */
    min-height: 330px !important;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .airport-tiles {
    flex-direction: column;
    align-items: stretch;
  }

  .airport-tile {
    width: 100%;
    height: 330px !important;       /* keep desktop height */
    min-height: 330px !important;
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .airport-tiles {
    gap: 15px;
  }

  .airport-tile {
    height: 330px !important;       /* keep desktop height */
    min-height: 330px !important;
    font-size: 20px;
    border-radius: 25px;
  }

  .airport-list li {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .airport-tiles {
    gap: 20px;
  }

  .airport-tile {
    height: 330px !important;       /* keep desktop height */
    min-height: 330px !important;
    font-size: 18px;
    border-radius: 22px;
  }
}

/* ================================
   EVENTS SECTION
================================ */
.events-section {
  padding: 100px 0;
  background: #ffffff;
  font-family: "Fira Sans Condensed", sans-serif;
}

.events-copy h6 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #1d1d1d;
}

/* EVENTS LIST */
.events-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.events-list li {
  position: relative;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #333;
  padding-left: 40px; /* space for bullet */
}

/* PNG BULLET */
.events-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  background-image: url('/wp-content/themes/atl-child/img/dash.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* IMAGE */
.events-media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}


/* ================================
   MOBILE ADJUSTMENTS
================================ */
@media (max-width: 768px) {
  .events-section {
    padding: 70px 0 90px;
  }

  .events-copy {
    text-align: center;
  }

  .events-copy h6 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .events-list li {
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 32px; /* bullet spacing smaller on mobile */
  }

  .events-list li::before {
    width: 18px;
    height: 18px;
    top: 4px;
  }

  .events-media {
    text-align: center;
    margin-top: 30px;
  }

  .events-media img {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .events-section {
    padding: 60px 0 80px;
  }

  .events-copy h6 {
    font-size: 20px;
  }

  .events-list li {
    font-size: 18px;
    padding-left: 30px;
  }

  .events-list li::before {
    width: 16px;
    height: 16px;
    top: 4px;
  }
}

