 /* Reset & basic styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f5f7fa;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-bottom: 2px solid rgba(86, 204, 242, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo a {
  font-size: 1.8rem;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, #56CCF2, #2F80ED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
}

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

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

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #56CCF2, #2F80ED);
  transition: width 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #2F80ED;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #2F80ED;
}

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

.lang-btn {
  background: linear-gradient(135deg, #56CCF2, #2F80ED);
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(86, 204, 242, 0.3);
}

.lang-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(86, 204, 242, 0.5);
}

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

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #56CCF2, #2F80ED);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(86, 204, 242, 0.4);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(86, 204, 242, 0.6);
}

.btn.center {
  display: block;
  margin: 2rem auto 0;
}

/* HERO Slider */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.hero .swiper,
.hero .swiper-wrapper {
  height: 100%;
}

.hero .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 80vh;
}

.hero .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  color: #ffffff;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  font-weight: 900;
  letter-spacing: 2px;
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  background: rgba(86, 204, 242, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 3;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(86, 204, 242, 0.8);
  transform: scale(1.1);
}

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

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #56CCF2;
  width: 30px;
  border-radius: 10px;
}

/* Sections */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: #ffffff;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #56CCF2, #2F80ED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #56CCF2, #2F80ED);
  border-radius: 2px;
}

.section p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* IMPROVED Cards Container & Trip Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.trip-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(86, 204, 242, 0.2);
  border-color: #56CCF2;
}

.trip-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trip-card:hover img {
  transform: scale(1.08);
}

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.trip-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a202c;
  line-height: 1.3;
  margin-bottom: 12px;
}

.trip-details {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 18px;
  flex-grow: 1;
}

.trip-details p {
  margin-bottom: 10px;
}

.trip-details p:first-child {
  color: #475569;
  font-size: 0.98rem;
}

.trip-details i {
  color: #56CCF2;
  margin-right: 6px;
}

.price {
  font-weight: 800;
  font-size: 1.5rem;
  color: #2F80ED;
  margin: 15px 0;
  letter-spacing: 0.3px;
}

.explore-btn {
  background: linear-gradient(135deg, #56CCF2, #2F80ED);
  color: white;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(86, 204, 242, 0.3);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.explore-btn::before {
  content: '';
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(86, 204, 242, 0.4);
  background: linear-gradient(135deg, #2F80ED, #1a5fb4);
}

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

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

.review-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

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

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

.review-card .author {
  font-weight: 700;
  color: #333;
  font-size: 1.1rem;
}

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

.video-review video {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.reviews-next,
.reviews-prev {
  color: #2F80ED !important;
}

.reviews-pagination .swiper-pagination-bullet {
  background: #2F80ED;
}

/* Contact Section */
.contact-section {
  text-align: center;
}

.whatsapp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  margin: 2rem auto;
}

.whatsapp-contact-btn i {
  font-size: 1.5rem;
}

.whatsapp-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.booking-form {
  max-width: 600px;
  margin: 0 auto 3rem;
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeUp 0.8s ease-out;
}

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

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

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background: #f9fafb;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: #2F80ED;
  box-shadow: 0 0 0 4px rgba(86, 204, 242, 0.1);
  background: #fff;
}

.booking-form button.btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
}

.social-icons a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #56CCF2, #2F80ED);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(86, 204, 242, 0.3);
}

.social-icons a:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 25px rgba(86, 204, 242, 0.5);
}

.social-icons .icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* Footer */
footer {
  background: rgba(10, 14, 39, 0.95);
  padding: 2.5rem;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
  border-top: 3px solid rgba(86, 204, 242, 0.5);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  animation: pulse 2s infinite;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.15);
}

.floating-whatsapp i {
  font-size: 2rem;
  color: #fff;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.8);
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 2rem;
  border-radius: 20px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content iframe {
  margin-top: 1rem;
  width: 100%;
  height: 70vh;
  border-radius: 12px;
}

.close {
  float: right;
  font-size: 2rem;
  cursor: pointer;
  color: #2F80ED;
  transition: color 0.3s;
}

.close:hover {
  color: #56CCF2;
}

.mt-4 {
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 1rem;
    margin: 2rem 1rem;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .trip-card img {
    height: 200px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .trip-title {
    font-size: 1.25rem;
  }
  
  .reviewsSwiper {
    padding: 0 20px 40px;
  }
  
  .floating-whatsapp {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  
  .floating-whatsapp i {
    font-size: 1.7rem;
  }
}

img, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}