/* Reset & basic styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
  color: #222;
  background: #fff;
}
/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 30px;
  border-bottom: 2px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #8e3b46;
}

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

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #8e3b46;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  background: none;
  border: 1px solid #8e3b46;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #8e3b46;
  transition: all 0.2s ease-in-out;
}
.lang-btn:hover {
  background: #8e3b46;
  color: #fff;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.social-icons .icon {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover .icon {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 65px;
    right: 0;
    width: 100%;
    display: none;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  background: #068cd9;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #068cd9;
}

.btn.center {
  display: block;
  margin: 2rem auto 0;
}
/* Icon-only contact button (same size as others, no text) */
.contact-btn.icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 20px;
  line-height: 44px;
  text-align: center;
  display: inline-block;
}

.contact-btn.facebook {
  background-color: #3b5998;
  color: white;
}

.contact-btn.facebook:hover {
  background-color: #2d4373;
}


/* HERO Slider */
.hero .swiper,
.hero .swiper-wrapper {
  height: 100%;
}
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: visible;
}

.hero .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  color: #ffffff;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 1.5rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  z-index: 3;
  transition: color 0.3s ease;
  cursor: pointer;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-prev:focus {
  color: #068cd9; /* Highlight color on hover/focus */
  outline: none;
}

.swiper-pagination {
  z-index: 3;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}


/* Sections */
.section {
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.section p {
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

/* Trips Slider */
.tripsSwiper {
  position: relative;
  padding: 0 50px 50px;
}

.tripsSwiper .swiper-slide {
  height: auto;
}

.trip-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.trip-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.trip-card .content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.trip-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.trip-card p {
  flex-grow: 1;
  margin-bottom: 1rem;
}
.trip-card .price {
  font-weight: 700;
  color: #068cd9;
}

/* Trips Slider Controls */
.trips-next,
.trips-prev {
  color: #068cd9 !important;
}

.trips-pagination .swiper-pagination-bullet {
  background: #068cd9;
}

/* Reviews Section */
.reviews-section {
  background: #f9fafb;
}

.reviewsSwiper {
  position: relative;
  padding: 0 50px 50px;
}

.review-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card .stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-card .quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 1.1rem;
  line-height: 1.6;
}

.review-card .author {
  font-weight: 600;
  color: #374151;
}

.review-card .location {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* Reviews Slider Controls */
.video-review {
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
}

.video-review video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.video-review video {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reviews-next,
.reviews-prev {
  color: #068cd9 !important;
}

.reviews-pagination .swiper-pagination-bullet {
  background: #068cd9;
}

/* Contact */
.booking-form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font: inherit;
}
.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-btn {
  background: #374151;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.3s ease;
}
.contact-btn:hover {
  background: #1f2937;
}
.booking-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.booking-form .form-group {
  margin-bottom: 1.5rem;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fdfdfd;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.booking-form button.btn {
  width: 100%;
  background: #007aff;
  color: #fff;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.booking-form button.btn:hover {
  background: #005ecc;
}
.booking-form {
  animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Footer */
footer {
  background: #f3f4f6;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tripsSwiper,
  .reviewsSwiper {
    padding: 0 20px 40px;
  }
}
