/* =========================
   Hero Section
   ========================= */
.hero {
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 60px 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* overlay for readability */
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #56ab2f, #a8e063);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 700px;
  margin: auto auto 30px auto;
}

/* =========================
   Buttons
   ========================= */
.btn-gradient {
  background: linear-gradient(90deg, #56ab2f, #a8e063);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: 0.3s;
}
.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* =========================
   Cards (Generic)
   ========================= */
.card-title {
  font-size: 1.25rem;
  font-weight: 700;
}
.card-text {
  font-size: 0.95rem;
}
.fixed-size {
  height: 200px;
  object-fit: cover;
}

/* =========================
   Carousel
   ========================= */
#packagesCarousel .carousel-item .col-12 {
  display: none; /* hide by default */
}
#packagesCarousel .carousel-item .col-12:nth-child(-n+1) {
  display: block; /* 1 item on mobile */
}
@media (min-width: 768px) {
  #packagesCarousel .carousel-item .col-12:nth-child(-n+2) {
    display: block; /* 2 items on tablet */
  }
}
@media (min-width: 992px) {
  #packagesCarousel .carousel-item .col-12:nth-child(-n+4) {
    display: block; /* 4 items on desktop */
  }
}
/* Transparent custom arrows */
.carousel-control-prev.custom-arrow,
.carousel-control-next.custom-arrow {
  width: 5%; /* narrower */
  opacity: 0.6;
  background: transparent !important;
  border: none;
  transition: opacity 0.3s ease;
}
.carousel-control-prev.custom-arrow:hover,
.carousel-control-next.custom-arrow:hover {
  opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.6); /* dark background */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60% 60%;
  filter: invert(1);
}

/* =========================
   Tabs
   ========================= */
#rideTabs .nav-link {
  color: #2e7d32;
  border-radius: 50px;
}
#rideTabs .nav-link.active {
  background: #2e7d32;
  color: #fff;
}

/* =========================
   Footer
   ========================= */
footer {
  background-color: #2E7D32;
  color: #fff;
  padding: 40px 0 20px;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  color: #a8e063 !important;
  text-decoration: underline;
}
.copyright {
  padding-top: 15px;
  padding-bottom: 0;
  font-size: 0.9rem;
}

/* =========================
   Vehicle Cards
   ========================= */
.vehicle-card {
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
}
.vehicle-card .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px;
  border-radius: 8px 0 0 8px;
  height: 160px;
  overflow: hidden;
}
.vehicle-card img {
  max-height: 140px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
/* ? Highlight when selected */
.vehicle-card.active {
  border: 3px solid #28a745 !important;   /* Green border */
  background: rgba(40,167,69,0.08);       /* Light green background */
  box-shadow: 0 0 14px rgba(40,167,69,0.5);
}
.vehicle-card.active .card-title,
.vehicle-card.active .card-text,
.vehicle-card.active .select-text {
  color: #155724 !important;  /* Dark green */
  font-weight: 700;
}
.vehicle-card .select-text {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #666;
}


.booking-progress{

display:flex;

align-items:center;

justify-content:center;

margin:20px 0 30px;

}

.booking-progress-item{

display:flex;

flex-direction:column;

align-items:center;

width:90px;

flex-shrink:0;

}

.booking-progress-circle{

width:46px;

height:46px;

border-radius:50%;

background:#dee2e6;

display:flex;

align-items:center;

justify-content:center;

font-size:20px;

color:#666;

}

.booking-progress-item.active .booking-progress-circle{

background:#198754;

color:#fff;

}

.booking-progress-label{

margin-top:8px;

font-size:13px;

font-weight:600;

}

.booking-progress-line{

height:4px;

width:70px;

background:#ddd;

margin-bottom:25px;

}

.booking-progress-line.active{

background:#198754;

}

@media(max-width:768px){

.booking-progress{

overflow-x:auto;

justify-content:flex-start;

}

.booking-progress-item{

width:70px;

}

.booking-progress-circle{

width:38px;

height:38px;

font-size:16px;

}

.booking-progress-label{

font-size:11px;

}

.booking-progress-line{

width:40px;

}

}
