
  /* === Brand Colors & Bootstrap Overrides === */
  :root {
    --bs-primary: rgb(9 62 89);
  }

  .text-primary {
    --bs-text-opacity: 1;
    color: rgb(9 62 89) !important;
  }

  .bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(9 62 89) !important;
  }

  .border-primary {
    --bs-border-opacity: 1;
    border-color: rgb(9 62 89) !important;
  }

  .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: rgb(9 62 89);
    --bs-btn-border-color: rgb(9 62 89);
    --bs-btn-hover-bg: rgb(6, 50, 73);
    --bs-btn-hover-border-color: rgb(6, 50, 73);
    --bs-btn-focus-shadow-rgb: 9, 62, 89;
  }


    /* === Active Navigation Item === */

  .nav-link{
    color:  #000000 !important;

  }

  .navbar .nav-link.active,
  .navbar .nav-link:focus {
    color: #000000 !important;                   /* keep active link white */
    border-bottom: 3px solid #000000;         /* underline in yellow (Bootstrap warning color) */
    font-weight: 600;                         /* make active item a bit bolder */
    border-radius: 0;
    background: transparent !important;
  }
  .navbar .nav-link {
    transition: border-color 0.18s, color 0.18s;
  }

  /* === Search Input Padding === */
  .search-box input {
    padding-left: 2.5rem;
  }

  /* === Carousel Indicator Styling === */
  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }

  /* === Hero Section === */
  .hero-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
  }

  .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 1;
    pointer-events: none;
  }

  .hero-slide .container {
    position: relative;
    z-index: 2;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    height: 100vh;
  }

  video.object-fit-cover {
    object-fit: cover;
  }

  /* === Custom Carousel Arrows === */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    display: none;
  }

  .carousel-custom-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  #testimonialCarousel .carousel-control-prev,
  #testimonialCarousel .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    opacity: 1;
    z-index: 3;
  }

  #testimonialCarousel .carousel-control-prev {
    left: -30px;
  }

  #testimonialCarousel .carousel-control-next {
    right: -30px;
  }

  @media (max-width: 768px) {
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
      display: none;
    }
  }


  /* === Form, Filters, and Buttons === */
  .form-select:focus {
    box-shadow: none;
    border-color: #093e59;
  }

  #filter-button {
    background-color: #093e59;
  }

  #filter-button:hover {
    opacity: 0.9;
  }

  #price-range::-webkit-slider-thumb {
    background: #093e59;
  }

  #price-range::-moz-range-thumb {
    background: #093e59;
  }

  .filter-title {
    color: #093e59;
  }

  .btn-secondary-custom {
    background-color: rgb(232, 179, 65);
    color: white;
  }

  .btn-secondary-custom:hover {
    opacity: 0.9;
  }

  /* === Package Card Hover Effect === */
  .package-card {
    position: relative;
    transition: box-shadow 0.3s ease;
  }

  .package-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  .book-now-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .package-card:hover .book-now-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .hotel-search-group .form-control,
.hotel-search-group .input-group-text {
  border: none;
  background: transparent;
  box-shadow: none;
}

.hotel-search-group .input-group {
  border: 1px solid #d1d5db;
  border-radius: 1.5rem;
  background: #fff;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  height: 44px;
  align-items: center;
}

.hotel-search-group .input-group.guests {
  border-color: #ffb200;
}

.hotel-search-group .form-control::placeholder {
  color: #9ca3af;
  font-size: 1rem;
}

.hotel-search-group .input-group-text {
  background: transparent;
  color: #9ca3af;
  font-size: 1.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.hotel-search-group .btn-search {
  background: #0b3a4a;
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 500;
  padding: 0 1.5rem;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  transition: background 0.2s;
  font-size: 1rem;
  justify-content: center;
}

.hotel-search-group .btn-search:hover {
  background: #11566b;
}

.hotel-search-group .dropdown-menu {
  min-width: 220px;
}
/* === Site header (partials/header.php) === */
.site-nav {
  background-color: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 0 1px 0 rgba(9, 62, 89, 0.08), 0 4px 16px rgba(9, 62, 89, 0.08);
}
.site-nav--overlay {
  background-color: rgba(255, 255, 255, 0.82);
}
.site-nav .nav-link {
  color: #123a52 !important;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  border-bottom: 2px solid transparent;
}
.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: #093e59 !important;
  border-bottom-color: rgba(9, 62, 89, 0.35);
}
.site-nav .nav-link.active {
  color: #093e59 !important;
  border-bottom-color: #e8b341;
  font-weight: 600;
  background: transparent !important;
}
.site-nav .navbar-toggler {
  border-color: rgba(9, 62, 89, 0.3);
}
.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%289, 62, 89, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-nav .btn-call {
  --bs-btn-color: #093e59;
  --bs-btn-border-color: rgba(9, 62, 89, 0.4);
  --bs-btn-hover-bg: #093e59;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: #093e59;
}
@media (max-width: 991.98px) {
  .site-nav--overlay { background-color: rgba(255, 255, 255, 0.95); }
  .site-nav .navbar-collapse { padding-bottom: 0.75rem; }
}

/* === Floating WhatsApp button === */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.8rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover,
.wa-float:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.5);
}
.wa-float i { font-size: 1.5rem; line-height: 1; }
@media (max-width: 575.98px) {
  .wa-float__label { display: none; }
  .wa-float { padding: 0.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float, .site-nav .nav-link { transition: none; }
}

/* nav: keep items on one line; shrink logo on phones */
.site-nav .nav-link { white-space: nowrap; }
.site-nav .navbar-brand img { height: 46px; }
@media (max-width: 575.98px) {
  .site-nav .navbar-brand img { height: 34px; }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .site-nav .nav-link { font-size: 0.92rem; }
  .site-nav .navbar-nav { gap: 0.75rem !important; }
}

/* === Cards === */
.card-hover { transition: transform .18s ease, box-shadow .18s ease; }
.card-hover:hover { transform: translateY(-3px); box-shadow: 0 .75rem 1.5rem rgba(9, 62, 89, .15) !important; }
@media (prefers-reduced-motion: reduce) { .card-hover { transition: none; } .card-hover:hover { transform: none; } }

/* === Home page === */
.eyebrow { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: #e8b341; }
.home-hero { min-height: 560px; padding-top: 5.5rem; background: #0b2a3c; }
.home-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9, 40, 58, .82) 0%, rgba(9, 40, 58, .55) 55%, rgba(9, 40, 58, .15) 100%); }
@media (max-width: 767.98px) { .home-hero { min-height: 520px; } .home-hero__shade { background: linear-gradient(180deg, rgba(9,40,58,.75), rgba(9,40,58,.6)); } .home-hero h1 { font-size: 2.25rem; } }
.hero-search .form-control:focus { box-shadow: none; }
.hero-search #heroSuggestions { max-height: 280px; overflow-y: auto; border-radius: .75rem; }
.hero-chip { display: inline-block; padding: .2rem .7rem; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: #fff; text-decoration: none; transition: background .15s; }
.hero-chip:hover, .hero-chip:focus-visible { background: rgba(255,255,255,.18); color: #fff; }
.trust-strip li + li { border-left: 1px solid rgba(9, 62, 89, .08); }
@media (max-width: 767.98px) { .trust-strip li:nth-child(3) { border-left: 0; } }
.dest-card { display: block; }
.dest-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.75) 100%); }
.service-tile { background: #fff; border: 1px solid #e6ebee; transition: border-color .15s, box-shadow .15s, transform .15s; }
.service-tile:hover, .service-tile:focus-visible { border-color: rgba(9,62,89,.35); box-shadow: 0 .5rem 1.25rem rgba(9,62,89,.12); transform: translateY(-2px); }
.service-tile__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(9,62,89,.08); color: #093e59; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.why-list li { display: flex; gap: .9rem; padding: .6rem 0; border-bottom: 1px solid #eef1f3; }
.why-list li:last-child { border-bottom: 0; }
.why-list i { font-size: 1.4rem; color: #0e6f6a; flex-shrink: 0; line-height: 1.4; }
.faq-accordion .accordion-button { background: #fff; color: #18232b; }
.faq-accordion .accordion-button:not(.collapsed) { color: #093e59; box-shadow: none; }
.faq-accordion .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(9,62,89,.15); }
@media (prefers-reduced-motion: reduce) { .service-tile, .hero-chip { transition: none; } .service-tile:hover { transform: none; } }
.dest-card { min-height: 280px; background: #093e59; }
.dest-card img { display: block; }
.card-hover .card-img-top { background: #e9eef1; display: block; }
.site-logo { height: 46px; width: auto; }
@media (max-width: 575.98px) { .site-nav .site-logo { height: 32px; } }
