/* style.css - shared styles for all pages */

/* Basic reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white-color: #fff;
  --black-color: #000;
  --primary-color: #F7D057; /* Golden color */
  --background-color: #f2f2f2;
  --text-color: #333;
}

html,body { height: 100%; }

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #f7f8fb;
  color: #222;
  padding-top: 70px;
  overflow-x: hidden;
}


/*******************************
 * Header CSS Start
 *******************************/
/* Navbar custom */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  background: var(--black-color);
}
.navbar-brand { font-weight: 700; font-size: 1.4rem; color: #111; }
.nav-link { color: var(--white-color); !important; font-weight: 500; }
.nav-link:hover { color: var(--primary-color); !important; }

/* =============================
   NAVBAR LINK STYLE
   ============================= */
.navbar-nav .nav-link {
  color: var(--white-color);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
  color: var(--primary-color); /* Blue hover color */
}

.nav-item{
  padding-left: 18px;
}

/* Active Link */
.navbar-nav .nav-link.active,
.navbar-nav .nav-item.show > .nav-link {
  color: var(--primary-color); !important;
  position: relative;
}

/* Optional underline or indicator */
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
}

/* On mobile, make sure active link stands out too */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link.active {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 6px;
  }
}


/* Reservation button */
.btn-reserve {
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 6px;
  padding: 8px 18px;
  border: none;
  font-weight: 600;
  line-height: 30px;
}
.btn-reserve:hover {
  background: var(--primary-color);
  color: var(--black-color);
}

/* Offcanvas body tweaks */
.offcanvas-body { padding-top: 0.5rem; }

/* Desktop hover dropdown */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Desktop hover dropdown */
@media (min-width: 991px) and (max-width: 4500px) {
  .offcanvas-body {
    display: none;
  }
}

/* Simple container sections */
.section {
  padding: 60px 0;
  background: white;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 1100px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.03);
}

/* Make sure dropdown inside offcanvas shows on click */
.offcanvas .dropdown-menu { position: static; float: none; }

/* Small utility */
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* =============================
   DROPDOWN MENU TRANSITION
   ============================= */
.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  margin-top: 0;
  position: absolute; /* ensures it's floating properly */
}

/* Hover effect for desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Mobile (offcanvas) - reset to Bootstrap default */
@media (max-width: 991.98px) {
  .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    position: static;
    transition: all 0.4s ease;
  }

  .dropdown.show .dropdown-menu {
    display: block;
  }
}

.navbar-toggler {
  color: var(--primary-color);
}

.navbar-toggler-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.offcanvas-title {
  color: var(--primary-color);
}

.offcanvas.offcanvas-end {
  background-color: var(--black-color);
}

.btn-close {
  color: var(--primary-color);
  background-color: var(--background-color);
  opacity: 1;
}


/* =============================
   OFFCANVAS MENU TRANSITION (0.5s)
   ============================= */
.offcanvas {
  transition: transform 0.5s ease-in-out !important;
}

/* Optional: Fade overlay effect */
.offcanvas-backdrop {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.offcanvas-backdrop.show {
  opacity: 0.5;
}

/*******************************
 * Header CSS end
 *******************************/


/*******************************
 * Hero CSS start
 *******************************/
.hero-section {
  height: 90vh;
  background: url('../images/uk-1.jpg') center/cover no-repeat;
}

.hero-section h1 {
  color: var(--white-color);
}

.hero-section .carousel-inner img {
  width: 350px;
  height: 220px;
}

.hero-section .btn-reservation {
  font-weight: 600;
  background-color: #ffb703;
  transition: 0.3s;
}

.hero-section .btn-reservation:hover {
  background-color: #ffb703;
  transform: translateY(-2px);
}

/*******************************
 * Hero CSS end
 *******************************/



/*******************************
 * Banner CSS start
 *******************************/
.banner-section {
  position: relative;
  height: 90vh;
  background: url('../images/airport-uk.jpg') center/cover no-repeat;
}

.btn-call {
  font-weight: 600;
  background-color: #ffb703;
  transition: 0.3s;
}

.btn-call:hover {
  background-color: #ffb703;
  transform: translateY(-2px);
}

.banner-section h1 {
  z-index: 2;
  position: relative;
  margin-top: 40px;
  color: var(--black-color);
}

.banner-section p {
  font-size: 16px;
  z-index: 2;
  position: relative;
  margin-top: 40px;
  color: var(--black-color);
}

@media (max-width: 768px) {
  .banner-section {
    height: 60vh;
  }
  .banner-section p {
    color: var(--white-color);
  }
}

/*******************************
 * Banner CSS end
 *******************************/



/*******************************
 * declaration CSS start
 *******************************/
.declaration-section {
  background: var(--black-color);
  padding: 100px 0px;
}

.declaration-box {
  height: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.declaration-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.declaration-box img {
  width: 110px;
  background-color: #000;
  padding: 12px 40px;
  margin-top: 20px;
  border-radius: 10px;
}

.carousel-inner img {
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .declaration-section {
    padding: 60px 0px;
  }

  .declaration-box {
    height: 300px;
  }
}

/*******************************
 * declaration CSS end
 *******************************/



/*******************************
 * testimonial CSS start
 *******************************/
.testimonial-section {
  background: #f8f9fa;
  padding: 100px 0px;
}

.testimonial-card {
  max-width: 600px;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 3px solid #ffc107;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/*******************************
 * testimonial CSS end
 *******************************/


/*******************************
 * service CSS start
 *******************************/
.services-section {
  background-color: #000;
  padding: 100px 0px;
}

.services-section h2 {
  color: #fff;
}

.services-section p {
  color: #fff;
}

.service-card {
  transition: all 0.3s ease;
  background: #fff;
  padding: 100px 30px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card h5 {
  color: var(--white-color);
}

.service-card p {
  color: var(--white-color);
}

.service-card .btn {
  background: var(--primary-color);
  color: var(--black-color);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 6px 20px;
  transition: all 0.3s ease;
}

.service-card .btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.service-1 {
  background: url('../images/se1.jpg') center/cover no-repeat;;
}

.service-2 {
  background: url('../images/se2.jpg') center/cover no-repeat;;
}

.service-3 {
  background: url('../images/se3.jpg') center/cover no-repeat;;
}

.service-4 {
  background: url('../images/se6.jpg') center/cover no-repeat;;
}

.service-5 {
  background: url('../images/se5.jpg') center/cover no-repeat;;
}

.service-6 {
  background: url('../images/se4.jpg') center/cover no-repeat;;
}

/*******************************
 * service CSS end
 *******************************/


/*******************************
 * our vehicle CSS start
 *******************************/
.vehicles-section {
  padding: 20px 0px 100px;
  background: var(--black-color);
}

.vehicles-section .container {
  position: relative;
  z-index: 2;
}

.vehicles-section h2 {
  color: var(--white-color);
}

.vehicles-section p {
  color: var(--white-color);
}

.vehicle-card {
  background-color: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 380px;
  padding: 20px 0px 10px;
}

.vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.vehicle-card img {
  width: 250px;
}

.vehicle-info {
  padding: 20px;
  text-align: center;
}

.vehicle-info h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black-color);
}

.vehicle-info p {
  font-size: 14px;
  line-height: 24px;
  color: var(--black-color);
  margin-bottom: 12px;
}

.star-rating {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.btn-book {
  background-color: var(--primary-color);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
}

.btn-book:hover {
  background-color: #e6b400;
}

.btn-book a {
  color: var(--white-color);
  text-decoration: none;
}

/*******************************
 * our vehicle CSS end
 *******************************/



/*******************************
 * why choose us CSS start
 *******************************/
.why-choose-us {
  background-color: var(--background-color);
  padding: 100px 0px;
}

.why-choose-us h2 {
  color: var(--black-color);
}

.why-card {
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.why-card h5 {
  color: var(--primary-color);
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
}

/*******************************
 * why choose us CSS end
 *******************************/


/*******************************
 * blog section CSS start
 *******************************/
.blog-section {
  background-color: var(--white-color);
  padding: 100px 0px;
}

.blog-section h2 {
  color: var(--black-color);
}

.blog-card {
  transition: all 0.3s ease;
  background-color: #fff;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content h5 {
  color: var(--black-color);
}

.blog-content p {
  font-size: 15px;
  color: #6c757d;
}

.blog-content .btn {
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 6px 18px;
  transition: all 0.3s ease;
}

.blog-content .btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/*******************************
 * blog section CSS end
 *******************************/



/*******************************
 * service page CSS start
 *******************************/
.service-page {
  padding: 100px 0px 100px;
  background: var(--background-color);
}

.service-page h2 {
  color: var(--black-color);
  font-weight: 700;
  margin-bottom: 40px;
}

.service-page p {
  color: var(--black-color);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  text-align: justify;
}

.service-page .img-box {
  padding: 20px 20px 30px;
  background-color: var(--black-color);
  text-align: center;
}

.service-page .img-box img {
  width: 100%;
}

.service-page .img-box p {
  color: var(--white-color);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
  margin: 20px 0px 30px;
}

.service-page .img-box a {
  color: var(--white-color);
  background: var(--primary-color);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin: 0px auto;
  padding: 8px 20px;
  text-decoration: none;
  border: none;
  border-radius: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .service-page {
    padding: 40px 0px 40px;
  }

  .service-page h2 {
    margin-bottom: 15px;
  }
}


/*******************************
 * service page CSS end
 *******************************/



/*******************************
 * our vehicle page CSS start
 *******************************/
.our-vehicles-section {
  padding: 100px 0px 100px;
  background: var(--black-color);
}

.our-vehicles-section .container {
  position: relative;
  z-index: 2;
}

.our-vehicles-section h1 {
  color: var(--primary-color);
  font-size: 58px;
  font-weight: 700;
}

.our-vehicles-section p {
  color: var(--white-color);
}

.vehicle-card {
  background-color: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 380px;
  padding: 20px 0px 10px;
}

.vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.vehicle-card img {
  width: 250px;
}

.vehicle-info {
  padding: 20px;
  text-align: center;
}

.vehicle-info h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black-color);
}

.vehicle-info p {
  font-size: 14px;
  line-height: 24px;
  color: var(--black-color);
  margin-bottom: 12px;
}

.star-rating {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.btn-book {
  background-color: var(--primary-color);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
}

.btn-book:hover {
  background-color: #e6b400;
}

.btn-book a {
  color: var(--white-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .our-vehicles-section {
    padding: 40px 0px 40px;
  }

  .our-vehicles-section h1 {
    font-size: 42px;
  }
}

/*******************************
 * our vehicle page CSS end
 *******************************/


/*******************************
 * about us page CSS start
 *******************************/
.about-us {
  background-color: var(--background-color);
  padding: 100px 0px;
}

.about-us h2 {
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.section {
  background-color: #fff;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: var(--black-color);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card {
  flex: 1 1 calc(33% - 20px);
  background-color: #3498db;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Image Gallery Styles */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.gallery img {
  width: calc(33% - 10px);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .about-us {
  padding: 40px 0px;
}

.about-us h2 {
  margin-bottom: 20px;
}

  .cards {
      flex-direction: column;
  }
  .card {
      flex: 1 1 100%;
  }
  .gallery img {
      width: 48%;
  }
}

@media (max-width: 480px) {
  .gallery img {
      width: 100%;
  }
}

/*******************************
 * about us page CSS end
 *******************************/


/*******************************
 * blog page CSS start
 *******************************/
.blog-page {
  background-color: var(--white-color);
  padding: 100px 0px;
}

.blog-page h2 {
  color: var(--primary-color);
}

.blog-page .blog-card {
  transition: all 0.3s ease;
  background-color: #fff;
}

.blog-page .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.blog-page .blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.blog-page .blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-page .blog-content h5 {
  color: var(--black-color);
}

.blog-page .blog-content p {
  font-size: 15px;
  color: #6c757d;
}

.blog-page .blog-content .btn {
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 6px 18px;
  transition: all 0.3s ease;
}

.blog-page .blog-content .btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

@media (max-width: 768px) {
  .blog-page {
    padding: 40px 0px;
  }
}


/*******************************
 * blog page CSS end
 *******************************/


/*******************************
 * blog single CSS start
 *******************************/
.blog-single {
  background-color: var(--white-color);
  padding: 60px 0px 40px;
  text-align: center;
}

.blog-single h2 {
  color: var(--black-color);
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
}

.blog-single .blog-featured {
  width: 80%;
  margin-top: 40px;
}

.blog-single p {
  font-size: 16px;
  color: var(--black-color);
  text-align: justify;
  margin-top: 30px;
}

.blog-single-grid {
  background-color: var(--white-color);
  padding: 60px 0px;
  border-top: 1px solid var(--black-color);
}

.blog-single-grid h2 {
  color: var(--black-color);
}

.blog-single-grid .blog-card {
  transition: all 0.3s ease;
  background-color: #fff;
}

.blog-single-grid .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.blog-single-grid .blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.blog-single-grid .blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-single-grid .blog-content h5 {
  color: var(--black-color);
}

.blog-single-grid .blog-content p {
  font-size: 15px;
  color: #6c757d;
}

.blog-single-grid .blog-content .btn {
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 6px 18px;
  transition: all 0.3s ease;
}

.blog-single-grid .blog-content .btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/*******************************
 * blog single CSS end
 *******************************/



/*******************************
 * contact us page CSS start
 *******************************/
.contact-us {
  background-color: var(--background-color);
  padding: 100px 0px;
}

.contact-us h2 {
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.contact-us .contact-info {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-right: 20px;
}

.contact-us .info-box {
  flex: 1 1 250px;
  margin: 10px;
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 8px;
}

.contact-us .info-box h3 {
  margin-bottom: 10px;
  color: var(--black-color);
}

.contact-us .info-box .contact-us-btn {
  font-size: 16px;
  line-height: 26px;
  color: var(--black-color);
  text-decoration: none;
}

.contact-us .info-box .contact-us-btn i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: var(--white-color);
  background-color: var(--primary-color);
  font-size: 24px;
  line-height: 30px;
  padding: 12px;
  text-align: center;
  margin-right: 10px;
}

.contact-us .info-box .contact-us-btn i {
  color: var(--black-color);
  background-color: var(--primary-color);
}

.contact-us .contact-form {
  display: flex;
  flex-direction: column;
}

.contact-us .contact-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-us .contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
}

.contact-us .contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-us .contact-form button {
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: color 0.5s ease;
}

.contact-us .contact-form button:hover {
  color: var(--black-color);
}

@media (max-width: 768px) {
  .contact-us {
    padding: 40px 0px;
  }

  .contact-us h2 {
    margin-bottom: 20px;
  }

  .contact-info {
      flex-direction: column;
  }

  .contact-us .info-box {
    flex: 1 1 1px;
  }

  .contact-us .contact-info {
    padding-right: 0px;
  }
}

.map {
  width: 100%;
  padding: 0px;
  margin: 0px;
}

/*******************************
 * contact us page CSS end
 *******************************/






/*******************************
 * Reservation page CSS Start
 *******************************/
.booking-section {
  padding: 100px 0px;
}

@media (max-width: 768px) {
  .booking-section {
    padding: 40px 0px;
  }
}

.booking-section h2 {
  color: var(--black-color);
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;

}

.steps {
  display: flex;
  justify-content: space-between;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 40px;
}
.step {
  flex: 1;
  font-weight: 600;
  color: var(--black-color);
  position: relative;
}
.step.active {
  color: var(--primary-color);
}
.step.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
}

@media (max-width: 768px) {
  .step {
    font-size: 14px;
    font-weight: 600;
    margin: 0px 5px;
  }
}

/* Form transitions */
.form-step {
  display: none;
  animation: fadeIn 0.4s ease;
}
.form-step.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step .vehicle-list{
  width: 100%;
  margin: 0px auto;
}

.form-step .vehicle-list .vehicle-info {
  border: 1px solid #000;
  border-radius: 6px;
  padding: 20px 15px;
}

.form-step .vehicle-list .vehicle-info h3{
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #000;
}

.form-step .vehicle-list .vehicle-info img{
  width: 200px;
}

.form-step .vehicle-list .vehicle-info .fair {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--black-color);
}

.form-step .vehicle-list .vehicle-info p{
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
}

.form-step .vehicle-list .vehicle-info .paerson-bag {
  display: flex;
  justify-content: center;
}

.form-step .vehicle-list .vehicle-info .paerson-bag .bag-box {
  display: flex;
  margin: 0px 40px 0px 0px;
}

.form-step .vehicle-list .vehicle-info .paerson-bag .bag-box img{
  width: 30px;
  height: 30px;
}

.form-step .vehicle-list .vehicle-info .paerson-bag .bag-box p{
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  padding: 3px 0px 0px 5px;
}

.form-step .vehicle-list .vehicle-info button {
  color: #fff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 500;
}

.form-step .booking-extras {
  width: 100%;
  margin: 0px auto;
  padding: 80px 0px 40px;
}

.form-step .booking-extras .extra-list .extra-info {
  border: 1px solid #000;
  border-radius: 6px;
  padding: 20px 15px;
}

.form-step .booking-extras .extra-list .extra-info {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--black-color);
  margin: 10px 0px;
}

.form-step .booking-extras .extra-list .extra-info img{
  width: 120px;
}

.form-step .booking-extras .extra-list .extra-info p{
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  margin-top: 20px;
  margin-bottom: 0px;
}

.form-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: auto;
  padding: 30px;
}

.booking-section .form-control {
  padding: 0.75rem .75rem;
}

.form-check {
  padding-bottom: 20px;
}

.form-title {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
  color: #333;
}
.return-section {
  display: none;
  animation: fadeIn 0.4s ease;
  margin-bottom: 30px;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* âœ… Fix intl-tel-input width issue */
.iti {
  width: 100%;
}

.iti input {
  width: 100%;
  padding-left: 48px !important; /* space for flag */
}

/* Optional: Adjust flag and input alignment */
.iti__flag-container {
  padding: 0 6px;
}

.form-section {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}
.payment-option {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.payment-option:hover {
  border-color: #007bff;
  background: #f1f8ff;
}
.payment-option input {
  accent-color: #007bff;
  transform: scale(1.2);
}
.payment-fields {
  display: none;
  margin-top: 15px;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

.summary-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 25px;
  margin-bottom: 20px;
}
.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.summary-header h5 {
  font-weight: 600;
  color: #333;
}
.summary-item {
  border-top: 1px dashed #ddd;
  padding-top: 10px;
  margin-top: 10px;
}
.summary-item p {
  margin: 0;
  color: #555;
}
.btn-edit {
  font-size: 14px;
}


/* Tabs */
.tab-buttons .btn-toggle {
  background: #f3f3f3;
  border: none;
  margin-right: 5px;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 500;
}
.tab-buttons .btn-toggle.active {
  background: #007bff;
  color: #fff;
}

.btn-success {
  background: red;
  border: 1px solid red;
  margin-right: 5px;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 500;
}

/* Map box */
.map-box {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.map-info {
  font-size: 14px;
  color: #333;
}

/* Buttons */
.next-btn, .prev-btn {
  background: var(--primary-color);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}
.next-btn:hover, .prev-btn:hover {
  background: var(--primary-color);
  color: var(--black-color);
  opacity: 0.85;
}

.btn-confirm {
  background: var(--primary-color);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}
.btn-confirm:hover, {
  background: var(--primary-color);
  color: var(--black-color);
  opacity: 0.85;
}

/*******************************
 * Reservation page CSS end
 *******************************/





/*******************************
 * Confirmation page CSS start
 *******************************/

.thankyou-page {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 20px;
}
.thankyou-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 100%;
}
.thankyou-card .icon {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}
.thankyou-card h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}
.thankyou-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}
.btn-custom {
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
}

/*******************************
 * Confirmation page CSS end
 *******************************/



/*******************************
 * footer section CSS start
 *******************************/
.site-footer {
  padding: 60px 0px 20px;
  background: var(--black-color);
  color: var(--white-color);
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin: 0px 0px;
}

.site-footer img {
  width: 60%;
}

.site-footer p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--white-color);
  padding-right: 50px;
}

.site-footer a {
    color: var(--white-color);
    text-decoration: none;
}

.footer-link {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--white-color);
  text-decoration: none;
}
.footer-link:hover { 
  color: var(--primary-color); 
}

.site-footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: transform .18s ease, background .18s ease;
}
.site-footer .social-link:hover {
  transform: translateY(-3px);
  background: rgba(255,183,3,0.12);
  color: #ffb703 !important;
}

@media (max-width: 575.98px) {
  .site-footer { padding-top: 2rem; }
  .site-footer .container { padding-left: 16px; padding-right: 16px; }
}

.footer-bottom {
  padding: 30px 0px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
  border-top: 1px solid var(--primary-color);
  background: var(--black-color);
}


/* Footer contact button */
.floating-contact {
  position: fixed;
  bottom: -205px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.5s;
}

.floating-contact:hover {
  bottom: 20px;
  right: 20px;
}

/* Main Button */
.main-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary-color);
  color: white;
  font-size: 26px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
  z-index: 2;
}

/* Contact Buttons */
.contact-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: var(--white-color);
  background-color: var(--primary-color);
  font-size: 24px;
  line-height: 36px;
  transition: all 0.4s ease;
  text-align: center;
  padding: 12px;
  margin-top: 20px;
}

.contact-btn:hover {
  color: var(--black-color);
}






/*******************************
 * footer section CSS end
 *******************************/