/* === BASE RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #0a2540;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* === CONTAINER === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === HEADER === */
.site-header {
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-nav ul {
  display: flex;
  gap: 20px;
}
.main-nav a {
  font-weight: 500;
  color: #0a2540;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #fcd462;
}

/* === MOBILE NAVIGATION === */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #0a2540;
  cursor: pointer;
}
.menu-toggle.active {
  color: #fcd462;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    display: none;
    z-index: 1000;
  }
  .main-nav.nav-active {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
}
/* === HERO SECTION === */
.hero {
  color: white;
  text-align: center;
  padding: 0;
}
.hero .swiper {
  height: 90vh;
  position: relative;
}
.hero .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero .swiper-slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1);
  transition: transform 6s ease-in-out;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1.08); /* Slow zoom effect */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.2));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 20px;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }
}

.hero .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease, transform 6s ease-in-out;
  z-index: 1;
}
.hero .swiper-slide-active::before {
  opacity: 1;
  transform: scale(1.08);
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 20px;
}
.hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
/* === HERO TEXT FADE-IN / FADE-OUT === */
.hero .swiper-slide .text-fader {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  will-change: opacity, transform;
  pointer-events: none;
}

.hero .swiper-slide-active .text-fader {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* === BUTTONS === */
button,
.btn {
  background-color: #fcd462;
  color: #0a2540;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover,
.btn:hover {
  background-color: #0a2540;
  color: #fff;
}

/* === SWIPER STYLES === */
.swiper-button-next,
.swiper-button-prev {
  color: #fcd462;
}
.swiper-pagination-bullet {
  opacity: 0.6;
  background: #fff;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fcd462;
}

/* === SCROLL TO TOP BUTTON === */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fcd462;
  color: #0a2540;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: none;
  z-index: 1000;
}
.scroll-top:hover {
  background-color: #0a2540;
  color: white;
}
/* === FOOTER === */
.site-footer {
  background-color: #0a2540;
  color: white;
  padding: 50px 20px 20px;
}
.site-footer .footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.site-footer h3,
.site-footer h4 {
  color: #fcd462;
}
.site-footer ul li {
  margin-bottom: 10px;
}
.site-footer a {
  color: white;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #fcd462;
}
.site-footer .fab {
  font-size: 1.5rem;
  margin-right: 10px;
}

/* === TESTIMONIALS === */
.testimonials {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}
.testimonials .section-title {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 40px;
}
.testimonial-card {
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: #333;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-meta img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}
.testimonial-meta h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #0a2540;
}
.testimonial-meta span {
  font-size: 0.9rem;
  color: #888;
}

/* === NEWSLETTER (Above Footer) === */
.newsletter {
  background: rgba(249, 249, 249, 0.96);
  padding: 60px 30px;
  margin: 60px auto 0;
  text-align: center;
  max-width: 960px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.newsletter h2 {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 10px;
}
.newsletter p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.newsletter-form input[type="email"] {
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 30px;
  width: 300px;
  max-width: 100%;
}
.newsletter-form .btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  border: none;
  background: #fcd462;
  color: #0a2540;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter-form .btn:hover {
  background: #0a2540;
  color: white;
}
/* === TOUR LISTING PAGE === */
.tour-listing {
  padding: 80px 20px;
  background: #fff;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  color: #0a2540;
  margin-bottom: 40px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tour-card {
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tour-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-info h3 {
  font-size: 1.2rem;
  color: #0a2540;
}

.tour-meta {
  font-size: 0.9rem;
  color: #777;
}

.tour-price {
  font-size: 1rem;
  color: #333;
  margin-top: auto;
}

.tour-info .btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 25px;
}

/* === MOBILE NAVIGATION === */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #0a2540;
  cursor: pointer;
}
.menu-toggle.active {
  color: #fcd462;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    display: none;
    z-index: 1000;
  }

  .main-nav.nav-active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .main-nav a {
    color: #0a2540;
  }
}

/* === RESPONSIVE TWEAKS FOR TOUR LISTING === */
@media (max-width: 768px) {
  .tour-info {
    padding: 16px;
    gap: 12px;
  }

  .tour-info h3 {
    font-size: 1.1rem;
  }

  .tour-meta,
  .tour-price {
    font-size: 0.95rem;
  }

  .tour-info .btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}

/* === SCROLL TOP === */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fcd462;
  color: #0a2540;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: none;
  z-index: 1000;
}
.scroll-top:hover {
  background-color: #0a2540;
  color: white;
}
/* === TOUR DETAIL PAGE === */
.tour-detail {
  padding: 80px 20px;
  background: #fff;
}

.tour-header h1 {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 5px;
}

.tour-duration {
  color: #666;
  margin-bottom: 30px;
}

.tour-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.tour-image {
  flex: 1 1 400px;
}

.tour-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 400px;
}

.tour-content {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tour-content h3 {
  color: #0a2540;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.tour-content ul {
  list-style: disc inside;
  margin: 0;
  padding-left: 1rem;
  color: #444;
}

.tour-booking {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.tour-price {
  font-size: 1.3rem;
  color: #0a2540;
  font-weight: bold;
}

.tour-content .btn {
  padding: 12px 24px;
  border-radius: 30px;
}

/* === TOUR GALLERY SWIPER === */
.tour-gallery {
  padding: 40px 0;
  margin-bottom: 40px;
}
.tour-gallery .swiper {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.tour-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.6s ease;
}
.tour-gallery .swiper-slide img:hover {
  transform: scale(1.03);
}
.tour-gallery .swiper-pagination-bullet-active {
  background-color: #fcd462;
}
.tour-gallery .swiper-button-next,
.tour-gallery .swiper-button-prev {
  color: #fcd462;
}

@media (max-width: 768px) {
  .tour-gallery .swiper {
    height: 220px;
  }

  .tour-booking {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .tour-booking .btn {
    width: 100%;
    text-align: center;
  }

  .tour-price {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}
/* === BOOKING STEP 1 === */
.booking-step {
  padding: 80px 20px;
  background: #fff;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  color: #0a2540;
  font-weight: 600;
}

.booking-form input[type="date"],
.booking-form input[type="number"],
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1rem;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-group label {
  font-weight: 400;
  color: #444;
}

.booking-form .btn {
  padding: 12px 24px;
  border-radius: 30px;
  background: #fcd462;
  color: #0a2540;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-form .btn:hover {
  background: #0a2540;
  color: #fff;
}

/* === MOBILE ADJUSTMENTS === */
@media (max-width: 768px) {
  .booking-step {
    padding: 50px 15px;
  }

  .booking-form {
    padding: 0 10px;
    gap: 16px;
  }

  .booking-form .form-group {
    margin-bottom: 20px;
  }

  .booking-form input,
  .booking-form select {
    font-size: 1rem;
  }

  .booking-form .btn {
    width: 100%;
    text-align: center;
  }

  .checkbox-group {
    flex-direction: column;
  }
}
/* === BOOKING FORM FINAL TWEAKS === */
.booking-form .guest-input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-bottom: 10px;
  width: 100%;
}

/* Confirmation section (for step 4) */
.confirmation-message {
  text-align: center;
  padding: 60px 20px;
  background: #f4f8fa;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  max-width: 600px;
  margin: 0 auto;
}
.confirmation-message h2 {
  color: #0a2540;
  margin-bottom: 20px;
}
.confirmation-message p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
}
.confirmation-message .btn {
  margin-top: 10px;
  display: inline-block;
}

/* Payment icons/buttons row */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}
.payment-methods .method {
  flex: 1 1 120px;
  padding: 14px;
  background: #fff;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.payment-methods .method:hover {
  background: #fcd462;
  border-color: #fcd462;
  color: #0a2540;
  font-weight: bold;
}

/* === GLOBAL MOBILE CLEANUP === */
@media (max-width: 768px) {
  .form-group label,
  .booking-form label {
    font-size: 0.95rem;
  }

  .booking-form input,
  .booking-form select,
  .booking-form .btn {
    font-size: 1rem;
  }

  .confirmation-message {
    padding: 40px 15px;
  }

  .payment-methods {
    flex-direction: column;
    gap: 10px;
  }

  .payment-methods .method {
    width: 100%;
  }
}

/* === AUTH PAGES (Login/Register/Reset) === */
.auth-page {
  padding: 80px 20px;
  background: #f4f4f4;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-box {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.auth-box h2 {
  text-align: center;
  font-size: 26px;
  color: #0a2540;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.auth-box h2 i {
  font-size: 20px;
  color: #0a2540;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-form input[type="number"],
.auth-form input[type="tel"],
.auth-form input[type="date"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.auth-form input:focus {
  border-color: #fcd462;
  outline: none;
}

.auth-form button {
  padding: 12px;
  background: #0a2540;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.auth-form button:hover {
  background: #071b30;
}

.auth-links {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 18px;
}

.auth-links a {
  color: #0a2540;
  text-decoration: none;
  margin: 0 4px;
}

.auth-links a:hover {
  text-decoration: underline;
}

.error-msg,
.success-msg {
  padding: 12px 16px;
  margin-bottom: 18px;
  border-radius: 6px;
  font-size: 0.92rem;
  text-align: center;
}

.error-msg {
  background: #ffe0e0;
  color: #b30000;
  border: 1px solid #f5c2c2;
}

.success-msg {
  background: #e0ffe5;
  color: #007b1e;
  border: 1px solid #b2e0bd;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .auth-box {
    padding: 30px 20px;
    border-radius: 10px;
  }

  .auth-box h2 {
    font-size: 22px;
  }

  .auth-form input,
  .auth-form button {
    font-size: 15px;
  }
}

/* === WHY CHOOSE US SECTION === */
.why-us {
  padding: 80px 20px;
  background: #f0f4f8;
  text-align: center;

  /* ADD THIS LINE to push it away from the button above */
  margin-top: 60px;
}


.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fcd462;
}

.why-card h3 {
  font-size: 1.2rem;
  color: #0a2540;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
}
