body{
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #1e293b;
  margin: 0;
  
   
}


.main-content {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Background image */
.hero-slide img {
  position: absolute;

  width: 100%;
  height: 100%;
  /* object-fit: certain; */
  
}

.slide-text h1,
.slide-text p,
.slide-text li {
  position: relative;
  /* display: inline; */
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,.9);
}

/* invisible shadow plane */
.slide-text h1::after,
.slide-text p::after,
.slide-text li::after {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: -0.05em;
  height: 0.8em;
  background: rgba(0,0,0,.55);
  filter: blur(14px);
  z-index: -1;
}
.slide-text {
  position: relative;
  z-index: 5;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
  padding: clamp(1rem, 4vw, 3rem);
}
.hero-slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
}
/* Responsive text */
.slide-text h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
}
.slide-text p {
  font-size: clamp(1rem, 3vw, 1.25rem);
}
.hero-logo {
  position: absolute;
  top: clamp(12px, 3vw, 20px);
  left: clamp(12px, 3vw, 20px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
  z-index: 1100;
  opacity: 0;
  animation: heroReveal 1.2s ease-out forwards;
}
.hero-logo img {
  width: clamp(38px, 6vw, 52px);
  height: auto;
  animation: floatLogo 4s ease-in-out infinite;

  filter: drop-shadow(0 8px 20px rgba(255,193,7,0.35));
}
.hero-logo .logo-text {
  font-weight: 800;
  font-size: clamp(16px, 3.5vw, 20px);
  letter-spacing: .6px;
  line-height: 1;

  background: linear-gradient(
    90deg,
    #fc5ab6,
    #701e4b,
    #3a23e6
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* SHINE + GLOW (RESTORED) */
  animation:
    textShine 3s linear infinite,
    glowPulse 2.5s ease-in-out infinite;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes textShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 8px rgba(49,12,5,.4); }
  50% { text-shadow: 0 0 18px rgba(219,73,11,.8); }
}

.booking-fixed {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 10;
  width: clamp(280px, 90vw, 420px);
  
}
.booking-fixed .card {
  min-height: 400px;   /* your desired height */
  border-radius: 20px;
}

.booking-fixed .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centers vertically */
}


/* Tablet + Mobile */
@media (max-width: 991px) {
  .booking-fixed {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    margin: 2rem auto;
  }
}

/* ================= NAVBAR ================= */
#mainNavbar {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

#mainNavbar.show {
  transform: translateY(0);
}

/* Always visible on mobile */
@media (max-width: 768px) {
  #mainNavbar {
    transform: translateY(0);
  }
}

/* ================= ANIMATIONS ================= */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Section Header */
.contact-section h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.contact-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #475569;
}

/* Contact Info List */
.contact-info {
    list-style: none;
    padding: 0;
}
.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-info i {
    font-size: 1.5rem;
    color: #ff9100;
    margin-right: 12px;
    min-width: 30px;
}
.contact-info a {
    color: #1e293b;
    text-decoration: none;
}
.contact-info a:hover {
    color: #ff9100;
    text-decoration: underline;
}

/* Form */
.contact-form input,
.contact-form textarea {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: 0.3s;
    background: #fff;
    color: #1e293b;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9100;
    box-shadow: 0 0 10px rgba(255,145,0,0.2);
}

/* Beautiful Send Button */
.contact-form button {
    background: linear-gradient(135deg,#ff9100,#ffd166);
    border: none;
    padding: 14px 28px;
    color: #1e293b;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.05rem;
    transition: 0.4s;
    display: inline-flex;
    align-items: center;
}
.contact-form button i {
    margin-right: 8px;
    font-size: 1.2rem;
}
.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255,145,0,0.5);
    color: #0f172a;
}

/* Alerts (static example) */
.alert {
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Responsive spacing */
@media(max-width: 767px){
    .contact-section .row > div {
        margin-bottom: 2rem;
    }
}
  /* Fleet Section Styles */
    .fleet-section {
      /* Modern gradient background */
      background: linear-gradient(135deg, #f1dabb, #f3e1c5, #ffd6a5);
      padding: 4rem 0;
      color: #1e293b;
    }

    .fleet-section h2 span {
      color: #fff;
    }

    .fleet-card {
      background: rgba(255, 255, 255, 0.85);
      border-radius: 18px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      height: 100%;
    }

    

    .fleet-image img {
      width: 100%;
      height: 160px;
        
      
    }

    .price-tag {
      position: absolute;
      top: 12px;
      right: 12px;
      background: #ff9100;
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-weight: 700;
    }

    .fleet-body h5 {
      color: #1e293b;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .fleet-body p {
      font-size: 0.9rem;
      color: #334155;
      margin-bottom: 0.5rem;
    }

    .fleet-body .btn-fleet {
      font-weight: 700;
      border-radius: 12px;
      background: #ff9100;
      color: #fff;
    }

    .fleet-body .btn-fleet:hover {
      background: #e69500;
    }

    /* Responsive grid spacing */
    @media (min-width: 992px) {
      .fleet-col {
        flex: 0 0 25%;
        max-width: 25%;
      }
    }

    @media (min-width: 768px) and (max-width: 991px) {
      .fleet-col {
        flex: 0 0 50%;
        max-width: 50%;
      }
    }

    @media (max-width: 767px) {
      .fleet-col {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    /* Navbar & Footer */
    .navbar-brand {
      font-weight: 700;
      color: #ff9100 !important;
    }

    footer {
      background: #1e293b;
      color: #fff;
      padding: 2rem 0;
      text-align: center;
    }

    footer a {
      color: #ff9100;
      text-decoration: none;
    }
    .fleet-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  text-align: center;
  
}

/* Fleet card titles */
.fleet-card h5 {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0.5rem 0;
}


/* Filters */
.package-filters {
  text-align: center;
  margin-bottom: 2rem;
}
.filter-btn {
  border: none;
  background: #eee;
  padding: 8px 18px;
  border-radius: 20px;
  margin: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: #d4af37;
  color: #000;
}

/* Package card */
.package-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.package-slide {
  position: absolute;
  
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.package-slide.active {
  opacity: 1;
}
.package-slide img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  filter: brightness(0.65);
}

/* Content box */
.package-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: #fff;
  background: rgba(0,0,0,.4);
  padding: 8px;
  border-radius: 8px;
}
.package-content h5 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.2;
}
.package-content p {
  font-size: .75rem;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.meta {
  font-size: .7rem;
  display: flex;
  gap: 8px;
}
.meta i {
  color: #ffd700;
}
.price {
  font-size: .8rem;
  font-weight: 700;
  color: #ffd700;
}

.dots {
  
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 1;
}

.dots:hover {
  color: #ffffff;
}
/* ONLY thing Bootstrap cannot do */
.footer-link:hover {
  text-decoration: underline;
}

/* ===== SERVICES ===== */
.services-section{
  padding:4rem 0;
  background: linear-gradient(180deg, #fff7f0, #ffdede);
}

.service-card{
  height:280px;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
}

.service-overlay{
  background:linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  color:#fff;
}



/* ===== WHY CHOOSE ===== */
.why-section{
  padding:4.5rem 0;
  background: linear-gradient(180deg, #fff7f0, #fff);
}

.why-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:.4s ease;
}

.why-card:hover{
  transform:translateY(-8px);
}

.why-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:linear-gradient(135deg,#ff9100,#ffd166);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px;
}

.why-icon i{
  font-size:30px;
  color:#1e293b;
}

/* SECTION */
.testimonial-section {
  background: linear-gradient(180deg, #fff7f0, #ffdede);
  padding: 4rem 0;
  color: #1e293b;
}

/* Header */
.accent-text { color: #ff9100; }

.testimonial-desc {
  max-width: 650px;
  margin: auto;
  color: #334155;
  font-size: 0.95rem;
}

/* Card */
.testimonial-card {
  background: rgba(164, 15, 15, 0.22);
  border: 1px solid rgba(30, 41, 59, 0.18);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}



/* Stars */
.stars i {
  color: #ffd166;
  font-size: 1rem;
}

/* Text */
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.75rem;
  color: #1e293b;
  text-align: center;
}

/* Author */
.testimonial-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #ff9100;
}

.testimonial-card h6 {
  color: #0f172a;
  font-weight: 700;
}

.testimonial-card small {
  color: #334155;
  font-weight: 500;
}

/* Move carousel arrows outside */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 50px;
  top: 50%;
  transform: translateY(-50%);
}

#testimonialCarousel .carousel-control-prev { left: -60px; }
#testimonialCarousel .carousel-control-next { right: -60px; }

/* Optional: make arrows bigger and more visible */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  background-size: 100%, 100%;
  width: 35px;
  height: 35px;
}

/* Carousel buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

@media (max-width: 768px) {
  .carousel-item .col-md-4 {
    display: none;
  }
  .carousel-item .col-md-4:first-child {
    display: block;
  }
}
