:root {
  --primary-color: #2b6297;
  --secondary-color: #d8a83e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Hero Section with Navigation Overlay */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
}

/* Top Navigation Bar */
.top-nav {
  /* background-color: rgba(0, 0, 0, 0.3); */
  background-color: var(--primary-color);
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffd700;
}

/* Main Navigation Bar */
.navbar {
  /* background-color: rgba(0, 0, 0, 0.3); */
  background-color: var(--primary-color);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  position: fixed !important;
  top: 37.5px;
  left: 0;
  width: 100%;
  z-index: 999999 !important;
  backdrop-filter: blur(5px);
}

.navbar.scrolled {
  top: 0 !important;
  background-color: var(--primary-color);
  /* background-color: rgba(0, 0, 0, 0.6); optional darker background when scrolled */
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
  margin-top: 15px !important;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: #ffd700;
}

.nav-links a.active {
  color: #ffd700;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
}

/* Menu Toggle Button (Hamburger) */
.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Side Navigation */
.side-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 9999999;
  transition: left 0.6s ease;
  overflow-y: auto;
  padding-top: 80px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.side-nav.active {
  right: 0;
}

.side-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-nav-links a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}

.side-nav-links a:hover,
.side-nav-links a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffd700;
}

.side-nav-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Overlay for side nav */
.side-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999998;
  display: none;
}

.side-nav-overlay.active {
  display: block;
}

/* Show menu toggle on mobile and hide regular nav */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
    align-items: right !important;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }
}
.search-icon {
  margin-right: 20px;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.book-btn {
  background-color: #ff6b6b;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 15px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-top: 100px;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.instruction {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  font-style: italic;
}

.search-container {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 150px;
}

.search-input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  font-size: 1rem;
  outline: none;
  background: white;
}

.search-btn {
  padding: 0 25px;
  background-color: #e9b949;
  color: #2c5530;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #d8a83e;
}

.btn {
  display: inline-block;
  background-color: #ff6b6b;
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  border: 2px solid #ff6b6b;
}

.btn:hover {
  background-color: transparent;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
  /* background: var(--primary-color); */
  background-color: rgba(0, 0, 0, 0.3);
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  text-align: center;
  color: #fff;
}

.feature-box {
  flex: 1 1 200px;
  max-width: 250px;
  display: block !important;
}

.feature-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  color: white;
  margin: 0;
}

/* ====== PACKAGES SECTION ====== */
.packages {
  position: relative;
  background: url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1950&q=80")
    center/cover no-repeat;
  color: #fff;
  overflow: visible !important;
  z-index: 0;
}

/* Overlay for top section */
/* .packages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 22%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
} */
.filter {
  background: var(--primary-color);
  z-index: 1;
}

/* ====== TOP SEARCH SECTION ====== */
.packages-top {
  position: relative;
  z-index: 1;
  padding: 60px 20px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(8px);
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  flex-wrap: nowrap; /* prevent wrapping by default */
}

.search-box input,
.search-box select {
  background: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 16px;
  font-size: 15px;
  width: 150px;
  outline: none;
}

.search-box button {
  background: #3a81be;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 12px 30px;
  cursor: pointer;
  transition: 0.3s;
}

.search-box button:hover {
  background: #2f6ba1;
}

/* ====== BOTTOM SLIDER SECTION ====== */
.packages-bottom {
  position: relative;
  z-index: 2;
  padding: 40px 60px 100px;
  color: #fff;
}

.packages-bottom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.packages-bottom-header h2 {
  font-size: 30px;
  font-weight: 600;
}

.packages-bottom-header a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/* Swiper Styling */
.tourSwiper {
  width: 100%;
  padding-bottom: 40px;
  overflow: hidden !important;
}

.tourSwiper .swiper-wrapper {
  display: flex;
  margin: 0;
}

.tourSwiper .swiper-slide {
  background: #fff;
  border-radius: 10px;
  color: #000;
  overflow: hidden;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  height: 450px !important;
}

.tourSwiper .swiper-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Package card styles */
.tourSwiper .package-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tourSwiper .package-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

/* Overlay */
.tourSwiper .package-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  color: #fff;
}

.tourSwiper .package-overlay h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.tourSwiper .package-overlay p {
  margin: 2px 0;
  font-size: 14px;
}

/* Buttons */
.tourSwiper .package-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.tourSwiper .package-buttons .btn {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
}

.tourSwiper .package-buttons .book-now {
  background-color: #ff6600;
  color: #fff;
}

.tourSwiper .package-buttons .book-now:hover {
  background-color: #e65c00;
}

.tourSwiper .package-buttons .enquiry {
  background-color: #fff;
  color: #000;
}

.tourSwiper .package-buttons .enquiry:hover {
  background-color: #f0f0f0;
}

/* Details box */
.tourSwiper .package-details {
  background: #fff;
  color: #000;
  padding: 15px;
  margin: 15px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tourSwiper .details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.tourSwiper .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tourSwiper .detail-item .icon {
  font-size: 20px;
  color: #4fb3f6;
}

.tourSwiper .price {
  font-size: 16px;
  font-weight: bold;
}

/* Swiper buttons (optional) */
.tourSwiper .swiper-button-next,
.tourSwiper .swiper-button-prev {
  color: #fff;
}

.destinations h2 {
  font-size: 30px;
  display: inline-block;
  margin: 0;
  color: var(--primary-color);
}

.destinations a {
  float: right;
  font-size: 18px;
  color: #2a73ff;
  text-decoration: none;
  margin-top: 8px;
}

.destinations p {
  color: #666;
  font-size: 15px;
  margin: 10px 0 30px;
  line-height: 1.6;
}

.destination-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}

.card {
  position: relative;
  width: 100%;
  height: 400px !important;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1));
  opacity: 0.8;
  transition: all 0.4s ease;
}

.card .info {
  position: absolute;
  bottom: 25px;
  left: 20px;
  color: #fff;
  z-index: 2;
  transition: all 0.4s ease;
}

.card .info h4 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.card .info span {
  font-size: 14px;
  color: #b0c4de;
  margin-left: 24px;
  /* aligns with icon */
}

.card .info .view-btn {
  display: none;
  margin-top: 10px;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

/* Hover Effects */
.card:hover img {
  transform: scale(1.08);
}

.card:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
}

.card:hover .info {
  bottom: 40px;
}

.card:hover .info .view-btn {
  display: inline-block;
}

.card:hover .info .view-btn:hover {
  color: #0dcaf0;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.activities-newsletter {
  margin: 0 auto;
  padding: 30px 20px 100px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.activities {
  flex: 1;
}

/* Titles */
.activities h3 {
  font-size: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #333;
}

.activities h3 i {
  color: #2a73ff;
  margin-right: 8px;
}

/* Tour Links */
.tour-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 10px 20px;
}

.tour-links a {
  color: #2a73ff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.tour-links a:hover {
  color: #1a4fcc;
}

/* Newsletter */
.newsletter p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.newsletter form {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.newsletter input {
  flex: 1;
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  margin-right: 10px;
}

.newsletter button {
  background: #2a73ff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.newsletter button:hover {
  background: #1a4fcc;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  font-size: 16px;
  color: #777;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #2a73ff;
}

.promo-section {
  position: relative;
  background: url("./images/promotion.jpg") no-repeat center center/cover;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
}

/* Gradient Overlay */
.promo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 136, 0, 0.6),
    rgba(58, 123, 213, 0.7)
  );
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 1 !important;
  max-width: 600px;
  padding: 20px 50px;
  text-align: left;
  margin-left: auto;
}

.promo-content h2 {
  font-size: 38px;
  margin: 0 0 15px;
  font-weight: bold;
}

.promo-content h2 span {
  color: #ffb347;
  /* Highlight discount */
}

.promo-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.promo-content button {
  background: #fff;
  color: #333;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.promo-content button:hover {
  background: #2a73ff;
  color: #fff;
}

.article-1,
.article-2,
.article-3 {
  margin-bottom: 70px;
}

.articles img {
  width: 100%;
  border-radius: 15px;
}

/* Aticles Section */
.articles-section {
  max-width: 1200px;
  margin: auto;
}

.articles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.articles-header h1 {
  font-weight: 600;
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 30px;
}

.articles-header h1::before {
  content: "💡";
  margin-right: 8px;
}

.articles-header a {
  text-decoration: none;
  color: #3a6ff7;
  font-size: 18px;
}

.articles h4 {
  color: var(--secondary-color);
}

.why-section {
  background: linear-gradient(to right, #3f5eca, #4a8ef7);
  color: white;
  padding: 40px 20px;
  align-items: center;
}

.why-section {
  font-family: "Poppins", sans-serif;
}

.why-item {
  color: #fff;
  max-width: 200px;
}

.why-icon span {
  display: inline-block;
  background: #ffffff22;
  padding: 10px;
  border-radius: 50%;
}

/* Footer */
.footer-logo {
  margin-left: -10px;
  margin-bottom: 10px;
}

.footer-socials a {
  text-decoration: none;
  color: var(--primary-color) !important;
  font-size: 28px;
  transition: 0.3s ease-in-out;
}

.footer-socials a:hover {
  color: var(--secondary-color) !important;
}

.footer-top h5 {
  color: var(--secondary-color);
}

.footer-top a {
  text-decoration: none;
  color: #333;
}

.footer-top a:hover {
  color: var(--primary-color);
}

.footer-top i {
  color: var(--primary-color);
}

.footer-bottom a {
  text-decoration: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Swiper background slides */
.heroSwiper {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 90vh !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 0 !important;
}

.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.heroSwiper .swiper-slide {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Keep everything else above */
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Center content */
.hero-content {
  text-align: center;
  color: white;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.search-container {
  display: inline-flex;
  background: white;
  border-radius: 50px;
  overflow: hidden;
}

.search-input {
  border: none;
  padding: 10px 20px;
  width: 250px;
  outline: none;
}

.search-btn {
  background: #4668d6;
  border: none;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
}

.blogSwiper {
  width: 100%;
  overflow: hidden;
}

.blogSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.article-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.article-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.article-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.article-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Swiper pagination styling */
.blogSwiper .swiper-pagination-bullet {
  background: #007bff;
  opacity: 0.6;
}

.blogSwiper .swiper-pagination-bullet-active {
  background: #ff6600;
  opacity: 1;
}

.testimonials {
  background: #f8f9fa;
  padding: 80px 0;
}

.testimonials h2 {
  font-weight: 700;
  color: #333;
}

.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

@media (width<1200px) {
  .card-5 {
    display: none !important;
  }
}

@media (width<992px) {
  .hero {
    height: 70vh;
  }
  .hero-content {
    margin-top: 180px;
  }
  .search-box {
    flex-wrap: wrap; /* allow wrapping on tablets & phones */
    justify-content: center;
  }

  .search-box input,
  .search-box select,
  .search-box button {
    flex: 1 1 45%; /* two per row for tablets */
  }

  .feature-box {
    flex: 1 1 calc(50% - 50px); /* 2 per row */
    max-width: calc(50% - 50px);
  }

  .card-4 {
    display: none !important;
  }

  .activities-newsletter {
    display: block;
  }

  .newsletter h3 {
    margin-top: 50px;
  }

  .pb-80 {
    padding-bottom: 40px;
  }

  .articles-header a {
    margin-right: 20px;
  }
  .footer-socials {
    margin-bottom: 30px;
  }
  .footer-bottom {
    text-align: center;
  }
}



/* Responsive Design */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .logo {
    margin-right: 300px;
  }
}


@media(width<786px){
  .social-links{
    display: none;
  }
  .logo {
    margin-right: 40px;
  }
  .hero-content{
    margin-top: 0;
  }
  
}