/* ---------- Variables ---------- */
:root{
  --brand:#2a2a72;
  --accent:#ffbf00; /* yellow used in screenshot */
  --dark:#111;
  --topbar-bg:#0e0e0e;
  --white:#fff;
  --nav-height:78px;
}

/* Reset body font */
body{
  font-family: 'Poppins', sans-serif;
  margin:0;
  color:#222;
}

/* ---------- TOP INFO BAR ---------- */
.top-info-bar{
  background: linear-gradient(90deg,var(--topbar-bg),#000);
  color: #fff;
  border-bottom: 6px solid var(--accent); /* yellow strip like screenshot */
  font-size:13px;
}
.top-info-bar .info-item{ margin-right:18px; opacity:0.95; }
.top-info-bar .top-link{ color:#fff; text-decoration:none; margin-left:14px; font-weight:500; }
.top-info-bar .top-link:hover{ color:var(--accent); }
.top-info-bar .social-link{
  margin-left:10px; color:#fff; text-decoration:none; font-weight:700; display:inline-block; width:22px; text-align:center;
}
.top-info-bar .social-link:hover{ color:var(--accent); }

/* ---------- MAIN NAVBAR ---------- */
/* fixed-top base style overrides */
.main-navbar{
  background:#fff;
  transition: all .25s ease;
  padding: 8px 0;
  border-bottom: 1px solid rgba(42,42,114,0.04);
  z-index: 1050;
}

/* Brand */
.navbar-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.brand-logo{
  width:116px;
  height:auto;
  border-radius:6px;
  box-shadow:0 6px 18px rgba(42,42,114,0.08);
}
.brand-text{
  font-weight:700;
  margin-left:6px;
  color:var(--brand);
  font-size:18px;
}

/* Toggler */
.custom-toggler{
  border:0;
  background:transparent;
}
.custom-toggler .toggler-icon{
  display:inline-block;
  width:24px; height:2px;
  background:var(--brand);
  position:relative;
}
.custom-toggler .toggler-icon::before,
.custom-toggler .toggler-icon::after{
  content:""; position:absolute; left:0; width:24px; height:2px; background:var(--brand);
}
.custom-toggler .toggler-icon::before{ top:-7px; }
.custom-toggler .toggler-icon::after{ top:7px; }

/* Centered nav - aligns like screenshot */
.nav-center { margin:0 auto; }
/* nav links */
.navbar-nav .nav-link{
  color:var(--brand);
  font-weight:600;
  padding: 12px 10px;
  transition: color .18s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
  color:var(--accent);
}

/* Book button */
.btn-book{
  display:inline-block;
  background:var(--accent);
  color:var(--dark);
  padding:10px 18px;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
  box-shadow: 0 6px 22px rgba(255,191,0,0.12);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn-book:hover{
  transform:translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,191,0,0.18);
}

/* Search button */
.search-btn{
  border:0; background:transparent; padding:6px;
}
.search-btn svg{ display:block; }

/* mobile more */
.mobile-more{ border:0; background:transparent; padding:6px; }

/* When navbar becomes scrolled (JS toggles .nav-scrolled) */
.main-navbar.nav-scrolled{
  background: black;
  box-shadow: 0 10px 30px rgba(42,42,114,0.25);
}
.main-navbar.nav-scrolled .brand-text,
.main-navbar.nav-scrolled .navbar-nav .nav-link{
  color:#fff !important;
}
.main-navbar.nav-scrolled .btn-book{
  background: #fff; color: var(--brand);
}

/* spacer to prevent content behind fixed navbar */
.nav-spacer{
  height: calc(var(--nav-height) + 32px); /* topbar + navbar area — adjust if needed */
}

/* responsive tweaks */
@media (max-width: 991.98px){
  .nav-spacer{ height: 140px; }
  .brand-text{ display:none; } /* hide brand text for clean mobile */
  .nav-center{ display: none; } /* keep collapse behavior */
  .top-info-bar .info-left .info-item{ display:none; }
  .top-info-bar .info-right .top-link{ display:none; }
}

/* small screens - compact navbar */
@media (max-width:575.98px){
  .brand-logo{ width:84px; }
  .btn-book{ padding:8px 12px; font-size:13px; }
}




.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler .navbar-toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffbf00;
  position: relative;
  transition: all 0.3s;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: '';
  width: 25px;
  height: 3px;
  background-color: #ffbf00;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/* ---------- HERO SLIDER ---------- */
#hero-slider {
  position: relative;
  overflow: hidden;
}

#hero-slider .carousel-item img {
  height: 80vh;
  object-fit: cover;
}

/* black opacity overlay */
#hero-slider .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* caption styles */
#hero-slider .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  left: 10%;
  right: 10%;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  max-width: 650px;
}

#hero-slider .carousel-caption h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #ffbf00;
}

#hero-slider .carousel-caption p {
  font-size: 1.1rem;
  color: #f2f2f2;
}

/* button */
.btn-book-slider {
  background: #ffbf00;
  color: #111;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}
.btn-book-slider:hover {
  background: #fff;
  color: #2a2a72;
  transform: translateY(-2px);
}

/* carousel controls color */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255,255,255,0.6);
  background-size: 50% 50%;
  border-radius: 50%;
  padding: 16px;
}

/* responsive */
@media (max-width: 991.98px){
  #hero-slider .carousel-caption h2 { font-size: 2rem; }
}
@media (max-width: 575.98px){
  #hero-slider .carousel-caption { left: 5%; right: 5%; }
  #hero-slider .carousel-caption h2 { font-size: 1.5rem; }
  #hero-slider .carousel-caption p { font-size: 0.95rem; }
}


/* ================================
   About Us Section
================================ */
.about-section {
  background: linear-gradient(135deg, #000 40%, #ffbf00 40%);
  color: #fff;
  overflow: hidden;
}

.about-img img {
  border: 5px solid #fff;
  transition: transform 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.about-text {
  line-height: 1.7;
  color: #f8f9fa;
}

.about-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.about-btn:hover {
  background: #000;
  color: #ffbf00;
  box-shadow: 0 4px 20px rgba(255,191,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    background: #000;
    text-align: center;
  }

  .about-img {
    margin-bottom: 20px;
  }
}



/* ================================
   Services Section
================================ */
.services-section {
  background: #fff;
}

.section-title {
  font-weight: 700;
  color: #000;
  font-size: 2rem;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 174, 0, 0.425);
  text-align: center;
  padding: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card img {
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.service-card h5 {
  margin-top: 15px;
  font-weight: 700;
  color: #000;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  margin: 10px 0 15px;
}

.service-btn {
  display: inline-block;
  background: #ffbf00;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
}

.service-btn:hover {
  background: #000;
  color: #ffbf00;
  box-shadow: 0 4px 15px rgba(255,191,0,0.4);
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    padding: 15px;
  }

  .service-card h5 {
    font-size: 1.1rem;
  }
}


/* ================================
   Packages Section
================================ */
.packages-section {
  background: #000;
  background: linear-gradient(135deg, #000 40%, #ffbf00 120%);
  color: #fff;
}

.package-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover img {
  transform: scale(1.1);
}

.package-content {
  padding: 20px;
  color: #000;
}

.package-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.package-content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.package-btn {
  display: inline-block;
  background: #ffbf00;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.package-btn:hover {
  background: #000;
  color: #ffbf00;
  box-shadow: 0 4px 15px rgba(255,191,0,0.4);
}

.package-card:hover {
  transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
  .package-card img {
    height: 180px;
  }
}


/* ==========================
   Inner Banner
========================== */
.inner-banner {
  position: relative;
  background: url('../img/slider/sl2.png') center/cover no-repeat;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.inner-banner .container {
  position: relative;
  z-index: 1;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffbf00;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  font-size: 1rem;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #ffbf00;
}

.breadcrumb-item.active {
  color: #ffbf00;
}

/* Animation */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .inner-banner {
    height: 220px;
  }
  .banner-title {
    font-size: 1.8rem;
  }
}


/* ==========================
   Our Fleet Section
========================== */
.fleet-section {
  background: #fff;
  color: #000;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
}

.fleet-card {
  background: #ececec;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.fleet-card img {
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.fleet-card:hover img {
  transform: scale(1.08);
}

.fleet-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
}

.fleet-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.fleet-btn {
  display: inline-block;
  background: #ffbf00;
  color: #000;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fleet-btn:hover {
  background: #000;
  color: #ffbf00;
  box-shadow: 0 4px 20px rgba(255, 191, 0, 0.4);
}

/* Hover Animation */
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .fleet-card {
    padding: 15px;
  }
}



/* ==========================
   Footer Section
========================== */
.footer-section {
  background: #000;
  color: #fff;
  position: relative;
}

.footer-title {
  color: #ffbf00;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-text {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffbf00;
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #ffbf00;
  margin-right: 10px;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffbf00;
}

.footer-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ffbf00;
  color: #000;
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

.footer-bottom {
  background: #111;
  border-top: 1px solid #222;
}

.footer-bottom span {
  color: #ffbf00;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-title {
    text-align: center;
  }

  .footer-text,
  .footer-links,
  .footer-contact,
  .footer-social {
    text-align: center;
  }

  .footer-social a {
    margin: 5px;
  }
}



/* ==========================
   Contact Us Section
========================== */
.contact-section {
  background: #f7f7f7;
  color: #000;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
}

.contact-info {
  background: #000;
  color: #fff;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.contact-info ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.contact-info i {
  color: #ffbf00;
  margin-right: 10px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
}

.contact-info a:hover {
  color: #ffbf00;
}

.contact-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #ffbf00;
  color: #000;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

/* Form */
.contact-form {
  background: #ffffff;
  border-radius: 10px;
}

.contact-form .form-control {
  border-radius: 30px;
  border: 1px solid #ccc;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #ffbf00;
  box-shadow: 0 0 8px rgba(255,191,0,0.3);
}

.contact-btn {
  background: #ffbf00;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #000;
  color: #ffbf00;
  box-shadow: 0 4px 15px rgba(255,191,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info, .contact-form {
    text-align: center;
    font-size: 5px;
  }

  .contact-social a {
    margin: 5px;
  }
}

.break-email {
  word-break: break-all; /* or break-word for softer breaks */
}



/* Fullscreen Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  z-index: 9999;
  display: none;
  overflow-y: auto;
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu-nav {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu-nav li {
  margin: 20px 0;
  font-size: 1.5rem;
}

.mobile-menu-nav li a {
  color: #ffbf00;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu-nav li a:hover {
  color: #fff;
}

/* Dropdown inside mobile menu */
.dropdown-menu-mobile {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  display: none;
}

.dropdown:hover .dropdown-menu-mobile {
  display: block;
}

.dropdown-menu-mobile li {
  margin: 10px 0;
  font-size: 1.2rem;
}

/* Close button */
.close-menu {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  cursor: pointer;
  color: #ffbf00;
  transition: color 0.3s;
}

.close-menu:hover {
  color: #fff;
}


/* ==========================
   Contact Page Section
========================== */
.contact-page {
  background: #fff;
  color: #000;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
}

.contact-page-info {
  background: #000;
  color: #fff;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.contact-page-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.contact-page-info ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.contact-page-info i {
  color: #ffbf00;
  margin-right: 10px;
  font-size: 1.1rem;
}

.contact-page-info a {
  color: #fff;
  text-decoration: none;
}

.contact-page-info a:hover {
  color: #ffbf00;
}

.contact-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #ffbf00;
  color: #000;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

/* Form */
.contact-page-form {
  background: #f9f9f9;
  border-radius: 10px;
}

.contact-page-form .form-control {
  border-radius: 30px;
  border: 1px solid #ccc;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.contact-page-form .form-control:focus {
  border-color: #ffbf00;
  box-shadow: 0 0 8px rgba(255,191,0,0.3);
}

.contact-btn {
  display: inline-block;
  background: #ffbf00;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255,191,0,0.4);
}

.contact-btn:hover {
  background: #000;
  color: #ffbf00;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Map */
.contact-map iframe {
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-page {
    text-align: center;
  }

  .contact-page-info, .contact-page-form {
    text-align: center;
  }

  .contact-social a {
    margin: 5px;
  }
}


/* Floating Buttons */
.floating-btn {
  position: fixed;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
}

/* WhatsApp button (left) */
.whatsapp-btn {
  left: 20px;
  bottom: 20px;
  background: #ffbf00;
  color: #000;
}

/* Call button (right) */
.call-btn {
  right: 20px;
  bottom: 20px;
  background: #ffbf00;
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}



/* ==========================
   New Form Section
========================== */
.new-form {
  background: #ffbf00;
  color: #000;
}

.form-container {
  background: #fff;
  border-radius: 15px;
}

.form-title {
  color: #000;
  font-weight: 700;
}

.form-control, .form-control:focus, select.form-control:focus {
  border-radius: 30px;
  border: 1px solid #ccc;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #ffbf00;
  box-shadow: 0 0 8px rgba(255,191,0,0.3);
}

.btn-send {
  background: #000;
  color: #ffbf00;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: #333;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .form-container {
    padding: 30px 20px;
  }
}
