@charset "utf-8";
/* CSS Document */

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #333;
}

section {
  scroll-margin-top: 80px; /* adjust if navbar is ~70px tall */
}

/* Navbar container */
.navbar {
  background-color: #0a2540;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;

}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.navbar-logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

/* Links */
.navbar-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-links li {
  margin: 0 15px;
}
.navbar-links a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
  transition: 0.3s;
}
.navbar-links a:hover {
  color: #38bdf8;
  border-bottom: 2px solid #38bdf8;
}

/* Login Masuk Button */
.login-btn {
  background: linear-gradient(to right, #2563eb, #f97316);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.login-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}


		/* Hero Section */
        .cta-button {
          background: #fff;
          color: #ff8c00;
          padding: 12px 24px;
          border-radius: 5px;
          text-decoration: none;
          font-weight: bold;
          transition: 0.3s;
        }
        
        .cta-button:hover {
          background: #ff7300;
          color: white;
        }
		
		.hero-slider {
		  position: relative;
		  width: 100%;
		  height: 80vh;
		  overflow: hidden;
		}
		
		.slides {
		  width: 100%;
		  height: 100%;
		  position: relative;
		}
		
		.hero-slider .slide {
		  width: 100%;
		  height: 100%;
		  object-fit: cover;
		  position: absolute;
		  top: 0;
		  left: 0;
		  opacity: 0;
		  transition: opacity 1s ease-in-out;
		}
		
		.hero-slider .slide.active {
  			opacity: 1;
  			z-index: 1;
		}
		
		.hero-overlay {
		  position: absolute;
		  top: 50%;
		  left: 50%;
		  transform: translate(-50%, -50%);
		  text-align: center;
		  color: white;
		  z-index: 2;
		}
		
		.hero-overlay h1 {
		  font-size: 48px;
		  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
		}
		
		.hero-overlay p {
		  font-size: 20px;
		  margin: 10px 0;
		}
		
		.hero-overlay .cta-button {
		  background: #fff;
		  color: #ff8c00;
		  padding: 12px 24px;
		  border-radius: 5px;
		  text-decoration: none;
		  font-weight: bold;
		}
		
		.prev, .next {
		  position: absolute;
		  top: 50%;
		  transform: translateY(-50%);
		  font-size: 30px;
		  padding: 12px;
		  color: white;
		  background-color: rgba(0,0,0,0.5);
		  border: none;
		  cursor: pointer;
		  z-index: 3;
		  border-radius: 50%;
		}
		
		.prev:hover, .next:hover {
		  background-color: rgba(0,0,0,0.7);
		}
		
		.prev { left: 20px; }
		.next { right: 20px; }
		
		/* Promo */	
		
	.promo-carousel {
  padding: 60px 20px;
  background: #f9fafb;
  text-align: center;
}

.carousel-title {
  font-size: 28px;
  color: #0a2540;
  margin-bottom: 20px;
}

.carousel-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.promo-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: left;
}

.promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.promo-info {
  padding: 15px;
}

.promo-info h3 {
  font-size: 18px;
  color: #0a2540;
  margin: 0 0 8px;
}

.subtitle {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 10px;
}

.desc {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.price {
  font-size: 14px;
  color: #333;
}

.discount {
  font-weight: bold;
  color: #ef4444;
}

.original {
  text-decoration: line-through;
  color: #aaa;
  margin-left: 10px;
}

.save {
  display: block;
  color: #22c55e;
  font-size: 12px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0a2540;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.promo-prev {
  left: 10px;
}

.promo-next {
  right: 10px;
}

.carousel-btn:hover {
  background: #2563eb;
}


		/* Destination */		
.destinations {
  background: #e0f4ff;
  padding: 60px 20px;
  text-align: center;
}
.destinations h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0a2540;
}
.destinations p {
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}
.destination-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.destination-card {
  width: 300px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s;
}
.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.image-container {
  position: relative;
}
.image-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #fbbf24;
}
.card-content {
  padding: 20px;
  text-align: left;
}
.card-content h3 {
  margin-bottom: 10px;
  color: #0a2540;
}
.card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 15px;
  color: #888;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  font-size: 20px;
  font-weight: bold;
  color: #0284c7;
}
.price span {
  font-size: 12px;
  color: #888;
}
.book-btn {
  background: linear-gradient(to right, #2563eb, #f97316);
  padding: 8px 16px;
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
}
.book-btn:hover {
  opacity: 0.9;
}


/* SERVICES */
.services-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}
.services-section h2 {
  font-size: 32px;
  color: #0a2540;
  margin-bottom: 10px;
}
.services-section .subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 40px;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.service-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(to right, #2563eb, #f97316);
  color: white;
  font-size: 24px;
  line-height: 60px;
  border-radius: 50%;
}
.service-card h3 {
  color: #0f172a;
  margin-bottom: 10px;
  font-size: 18px;
}
.service-card p {
  color: #64748b;
  font-size: 14px;
}

 /* Testimonials */
  .testimonial-slider {
  padding: 60px 20px;
  background-color: #e0f4ff;
  text-align: center;
}

.testimonial-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 900px;
  margin: auto;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  flex: 0 0 100%;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-info img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ff8c00;
}

/* Footer */
        .footer {
  background: #0a2540;
  color: #f1f5f9;
  padding: 60px 20px 30px;
  font-size: 14px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.footer-left {
  flex: 1 1 300px;
}
.footer-logo {
  font-size: 20px;
  font-weight: bold;
  color: #00bfff;
  margin-bottom: 10px;
}
.footer-left p {
  margin-bottom: 20px;
}
.footer-socials a img {
  width: 32px;
  margin-right: 10px;
}
.footer-links {
  flex: 1 1 200px;
}
.footer-links h4 {
  color: white;
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-links ul li a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 40px;
}

		.whatsapp-float {
		  position: fixed;
		  width: 60px;
		  height: 60px;
		  bottom: 25px;
		  right: 25px;
		  background-color: #25D366;
		  color: white;
		  border-radius: 50%;
		  text-align: center;
		  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
		  z-index: 1000;
		  display: flex;
		  justify-content: center;
		  align-items: center;
		  transition: transform 0.3s;
		}
		
		.whatsapp-float img {
		  width: 32px;
		  height: 32px;
		}
		
		.whatsapp-float:hover {
		  transform: scale(1.1);
		}