/* =============================================
   HOME PAGE REDESIGN — BA Transfer Brand Refresh
   Layered on top of existing home.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Hero Section Overlay & Form ─────────────── */

/* Dark gradient overlay on hero slider for better contrast */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(1, 33, 105, 0.72) 0%,
      rgba(1, 33, 105, 0.45) 40%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Ensure hero content sits above overlay */
.hero-section .position-absolute,
.hero-section .hero-wrapper,
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  z-index: 3 !important;
}

/* Carousel arrows */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.hero-section .carousel-control-prev {
  left: 20px;
}

.hero-section .carousel-control-next {
  right: 20px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* ── Booking Form Glass Card ─────────────────── */
.hero-right .form-container {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  border-radius: 20px !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.18),
    0 1px 3px rgba(0, 0, 0, 0.06) !important;
  padding: 2.2rem 2rem !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.hero-right .form-heading {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.6em !important;
  color: #012169 !important;
  margin-bottom: 6px !important;
  letter-spacing: -0.3px;
}

/* Subtle subtitle under heading */
.hero-right .form-heading::after {
  content: "Book your premium transfer in seconds";
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.52em;
  color: #6b7280;
  margin-top: 4px;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0;
}

/* Form labels */
.hero-right .form-group label,
.hero-right .label-with-add-stop label {
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-size: 0.72em !important;
  color: #374151 !important;
  letter-spacing: 0.6px !important;
  font-family: 'Inter', sans-serif !important;
}

/* Form controls */
.hero-right .form-control,
.hero-right .form-select {
  border: 1.5px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 11px 14px !important;
  font-size: 0.88em !important;
  font-family: 'Inter', sans-serif !important;
  color: #1f2937 !important;
  background-color: #f9fafb !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
}

.hero-right .form-control:focus,
.hero-right .form-select:focus {
  border-color: #012169 !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 3px rgba(1, 33, 105, 0.08) !important;
}

/* Input group (time picker) */
.hero-right .input-group {
  border-radius: 10px !important;
  overflow: hidden;
}

.hero-right .input-group .form-select {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.hero-right .input-group .input-group-text {
  background: #f3f4f6 !important;
  border: 1.5px solid #e5e7eb !important;
  border-left: none !important;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  color: #6b7280 !important;
  font-size: 1.1em !important;
}

/* Icon inside input fields */
.hero-right .input-icon i {
  color: #012169 !important;
  font-size: 1.1em !important;
  z-index: 2;
}

.hero-right .input-icon input[type="text"] {
  padding: 11px 14px 11px 38px !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 10px !important;
  font-size: 0.88em !important;
  font-family: 'Inter', sans-serif !important;
  color: #1f2937 !important;
  background-color: #f9fafb !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
}

.hero-right .input-icon input[type="text"]:focus {
  border-color: #012169 !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 3px rgba(1, 33, 105, 0.08) !important;
}

/* Add Stop button */
.hero-right .add-stop-btn {
  background: #eef2ff !important;
  border: 1px solid #c7d2fe !important;
  color: #012169 !important;
  border-radius: 8px !important;
  font-size: 0.75em !important;
  font-weight: 600 !important;
  padding: 5px 12px !important;
  transition: all 0.2s ease !important;
}

.hero-right .add-stop-btn:hover {
  background: #dbeafe !important;
  border-color: #93c5fd !important;
  color: #012169 !important;
}

/* Remove Stop (delete) button */
.hero-right .remove-stop-btn {
  background: #fef2f2 !important;
  border: 1px solid #fecaca !important;
  color: #b91c1c !important;
  border-radius: 8px !important;
  font-size: 0.78em !important;
  font-weight: 500 !important;
  padding: 4px 10px !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  line-height: 1.4 !important;
}

.hero-right .remove-stop-btn:hover {
  background: #fee2e2 !important;
  border-color: #f87171 !important;
  color: #991b1b !important;
}

.hero-right .remove-stop-btn:active,
.hero-right .remove-stop-btn:focus {
  background: #fecaca !important;
  border-color: #ef4444 !important;
  box-shadow: none !important;
}

.hero-right .remove-stop-btn i {
  font-size: 1em !important;
  position: static !important;
  transform: none !important;
  padding-left: 0 !important;
}

/* Find Now button */
.hero-right .btn-find-now {
  background: linear-gradient(135deg, #012169 0%, #01337a 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1em !important;
  letter-spacing: 0.3px !important;
  padding: 14px 24px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(1, 33, 105, 0.3) !important;
}

.hero-right .btn-find-now:hover {
  background: linear-gradient(135deg, #01337a 0%, #012169 100%) !important;
  box-shadow: 0 6px 20px rgba(1, 33, 105, 0.4) !important;
  transform: translateY(-1px) !important;
}

/* Return trip checkbox */
.hero-right #return {
  accent-color: #012169;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Place suggestions dropdown */
.hero-right .place-suggestions,
.place-suggestions {
  border-radius: 10px !important;
  border: 1px solid #e5e7eb !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden;
}

.place-suggestions li {
  padding: 10px 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85em !important;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.15s ease;
}

.place-suggestions li:hover {
  background: #eef2ff !important;
  color: #012169 !important;
}

/* ── Airport Tiles ───────────────────────────── */
.card {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 40px 0 !important;
  background: linear-gradient(180deg, #f7f8fc 0%, #fff 100%) !important;
  border: none !important;
}

.card__container {
  gap: 1.2rem !important;
  padding: 0 20px;
}

.card__article {
  border-radius: 18px !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.35s ease !important;
  overflow: hidden !important;
}

.card__article:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 36px rgba(1, 33, 105, 0.15) !important;
}

.card__article::before {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 20%,
      rgba(1, 33, 105, 0.03) 50%,
      rgba(255, 255, 255, 0.98) 75%,
      #fff 100%) !important;
}

.card__article .airport-names {
  color: #012169 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.6em !important;
}

.card__article .card__title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.85em !important;
  color: #4b5563 !important;
}

.card__article .quick-button {
  background: #012169 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.82em !important;
  padding: 10px 16px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(1, 33, 105, 0.2) !important;
}

.card__article .quick-button:hover {
  background: #C8102E !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.3) !important;
  transform: translateY(-1px);
}

/* ── Features Section ────────────────────────── */
.feature {
  background: #fff !important;
  position: relative;
}

.feature .display-5 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  color: #0f172a !important;
}

.feature .feature-item {
  background: #f8faff;
  border: 1px solid #eef2ff;
  border-radius: 16px !important;
  padding: 24px 20px;
  transition: all 0.3s ease;
}

.feature .feature-item:hover {
  background: #fff;
  border-color: #c7d2fe;
  box-shadow: 0 4px 16px rgba(1, 33, 105, 0.08);
  transform: translateY(-3px);
}

.feature .feature-item .feature-icon span {
  width: 72px !important;
  height: 72px !important;
  background: linear-gradient(135deg, #012169 0%, #01449e 100%) !important;
  border-radius: 16px !important;
  animation: none !important;
  box-shadow: 0 4px 12px rgba(1, 33, 105, 0.2);
  font-size: 0.85em;
}

.feature .feature-item h5 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95em !important;
  color: #0f172a !important;
}

.feature .feature-item p {
  font-size: 0.84em !important;
  color: #6b7280 !important;
  line-height: 1.55 !important;
}

/* ── Counter / Call-To-Action Section ─────────── */
.counter {
  background: linear-gradient(135deg,
      rgba(1, 33, 105, 0.95) 0%,
      rgba(1, 33, 105, 0.85) 60%,
      rgba(200, 16, 46, 0.7) 100%),
    url("../img/banner1.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
}

.counter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(1, 33, 105, 0.6) 0%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 0;
}

.counter .container {
  position: relative;
  z-index: 1;
}

.counter .display-5 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
}

.counter .display-5 .text-primary {
  color: #ff6b81 !important;
}

.counter .counter-item .counter-item-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  animation: none !important;
  background: linear-gradient(135deg, #C8102E 0%, #ff4d6d 100%) !important;
  box-shadow: 0 3px 10px rgba(200, 16, 46, 0.3);
}

.counter .counter-item i {
  font-size: 1.2em !important;
}

.counter h4 {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88em !important;
  font-weight: 500 !important;
  opacity: 0.85;
}

.counter .btn-action {
  background: #fff !important;
  color: #012169 !important;
  border-radius: 14px !important;
  padding: 16px 36px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95em !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
}

.counter .btn-action:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.15) !important;
}

/* ── About Section ───────────────────────────── */
.about {
  background: #fff;
}

.about .display-5 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  color: #0f172a !important;
}

.about .display-5 .text-primary {
  color: #012169 !important;
}

.about .about-item .about-item-inner {
  border-radius: 18px !important;
  border: 1px solid #eef2ff !important;
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%) !important;
  padding: 28px 20px !important;
  transition: all 0.3s ease !important;
}

.about .about-item .about-item-inner:hover {
  box-shadow: 0 6px 24px rgba(1, 33, 105, 0.1) !important;
  border-color: #c7d2fe !important;
  transform: translateY(-3px);
}

.about .about-item .about-item-inner .about-icon {
  width: 72px !important;
  height: 72px !important;
  border-radius: 18px !important;
  animation: none !important;
  background: linear-gradient(135deg, #C8102E 0%, #ff607b 100%) !important;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

.about .about-item .about-item-inner h5 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: #0f172a !important;
}

.about .about-img .img-1 img,
.about .about-img .img-2 img {
  border-radius: 16px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1) !important;
}

.about .about-img::after {
  background: linear-gradient(180deg, #012169 0%, #C8102E 100%) !important;
  border-radius: 12px !important;
  width: 8px !important;
}

.about .fa-check-circle {
  color: #012169 !important;
}

/* ── Vehicles Section ────────────────────────── */
.perfect-heading {
  padding-top: 60px !important;
}

.perfect-heading .perfect-veh-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  color: #0f172a;
}

.perfect-heading .perfect-veh-title .text-primary {
  color: #012169 !important;
}

.perfect-heading p {
  color: #6b7280;
  font-size: 0.92em;
  max-width: 600px;
  margin: 0 auto;
}

.registration {
  padding-bottom: 30px !important;
}

.car-items {
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
  border: 1px solid #eef2ff;
  border-radius: 18px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.car-items:hover {
  border-color: #c7d2fe;
  box-shadow: 0 6px 20px rgba(1, 33, 105, 0.08);
  transform: translateY(-4px);
}

.car-items img {
  width: 85% !important;
  transition: transform 0.3s ease;
}

.car-items:hover img {
  transform: scale(1.05);
}

.car-items figcaption {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.92em !important;
  color: #012169 !important;
  margin-top: 12px;
}

/* Registration details bar */
.reg-details {
  background: #f8faff;
  border: 1px solid #eef2ff;
  border-radius: 18px;
  padding: 24px 30px !important;
  margin-top: 10px;
}

.reg-details p {
  background: linear-gradient(135deg, #012169 0%, #01449e 100%) !important;
  border: none !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 14px rgba(1, 33, 105, 0.2) !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.82em !important;
  padding: 14px 24px !important;
}

/* ── Modal Styling ───────────────────────────── */
.modal-content {
  border-radius: 18px !important;
  border: none !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15) !important;
}

.modal-header {
  border-bottom: 1px solid #f3f4f6 !important;
  padding: 20px 24px !important;
}

.modal-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: #012169 !important;
}

.modal-body {
  padding: 24px !important;
}

.modal-footer {
  border-top: 1px solid #f3f4f6 !important;
  padding: 16px 24px !important;
}

.modal-footer .btn-primary {
  background: linear-gradient(135deg, #012169 0%, #01337a 100%) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px 28px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
}

/* ── Responsive Adjustments ──────────────────── */
@media (max-width: 991px) {
  .hero-right .form-container {
    width: 90% !important;
    padding: 1.8rem 1.5rem !important;
  }

  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next {
    display: none !important;
  }

  .car-items {
    margin-bottom: 16px;
  }
}

@media (max-width: 576px) {
  .hero-right .form-container {
    width: 95% !important;
    padding: 1.5rem 1.2rem !important;
    border-radius: 16px !important;
  }

  .hero-right .form-heading {
    font-size: 1.3em !important;
  }

  .hero-right .form-container::before {
    font-size: 0.75em;
    margin-bottom: 12px;
  }

  .card__container {
    gap: 1rem !important;
  }

  .feature .feature-item {
    padding: 18px 14px;
  }

  .counter .btn-action {
    padding: 14px 28px !important;
    font-size: 0.88em !important;
  }

  .reg-details {
    padding: 16px !important;
  }
}

/* ── Hero Offers Ticker Banner ───────────────────── */
.hero-offers-ticker {
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, #012169 0%, #01337a 40%, #C8102E 100%);
  overflow: hidden;
  padding: 12px 0;
}

.hero-offers-ticker-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
  width: max-content;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero-offers-ticker:hover .hero-offers-ticker-inner {
  animation-play-state: paused;
}

.hero-offer-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hero-offer-badge {
  display: inline-block;
  background: #fff;
  color: #C8102E;
  font-family: 'Inter', sans-serif;
  font-size: 0.78em;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.2);
  }
}

.hero-offer-name {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-offer-vehicles {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 0.76em;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-offer-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7em;
}

.hero-offer-valid {
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', sans-serif;
  font-size: 0.8em;
  font-weight: 400;
}

/* Responsive ticker */
@media (max-width: 768px) {
  .hero-offers-ticker {
    padding: 10px 0;
  }

  .hero-offer-badge {
    font-size: 0.7em;
    padding: 3px 9px;
  }

  .hero-offer-name {
    font-size: 0.78em;
  }

  .hero-offer-valid {
    font-size: 0.72em;
  }

  .hero-offers-ticker-inner {
    gap: 32px;
  }
}