:root {
  --primary: #023047;
  --secondary: #00B4D8;
  --accent: #FB8500;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --dark: #1E1E1E;
  --gray: #6C757D;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Navigation Bar */
.main-navbar {
  position: absolute;
  top: -102px;
  left: 6px;
  width: 100%;
  padding: 20px 40px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: row;
}

.nav-logo {
  height: 458px;
  width: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

a {
  text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes skeletonPulse {
  0% {
    background-position: 150% 50%;
  }

  100% {
    background-position: -50% 50%;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s infinite linear;
  border-radius: 4px;
}

.skeleton-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  display: flex;
  flex-direction: column;
}

.skeleton-img {
  height: 250px;
  width: 100%;
}

.skeleton-content {
  padding: 20px;
  flex: 1;
}

.skeleton-text {
  height: 20px;
  margin-bottom: 10px;
  width: 80%;
}

.skeleton-text.short {
  width: 40%;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 48, 71, 0.6) 0%, rgba(2, 48, 71, 0.2) 100%);
  z-index: 1;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 10s linear;
  transform: scale(1.05);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 25px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-details {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  animation: fadeInUp 1.4s ease-out;
}

.hero-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--secondary);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
  border: none;
  cursor: pointer;
  z-index: 5;
}

.btn:hover {
  background-color: #0096b4;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 180, 216, 0.5);
  color: var(--white);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-5px) scale(1.05);
}

/* Section Common */
.section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
}

/* Inclusions Section */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.inclusion-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.inclusion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.inclusion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.inclusion-card:hover::before {
  transform: scaleX(1);
}

.inclusion-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(33, 158, 188, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
}

.inclusion-card:hover .inclusion-icon {
  background-color: var(--secondary);
  color: var(--white);
}

.inclusion-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Packages Section */
.packages-section {
  background-color: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-end;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.package-content {
  padding: 30px 20px;
  width: 100%;
  color: var(--white);
  position: relative;
  z-index: 2;
  transform: translateY(40px);
  transition: transform 0.4s ease;
}

.package-card:hover .package-content {
  transform: translateY(0);
}

.package-badge {
  background: var(--accent);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 10px rgba(251, 133, 0, 0.4);
}

.package-title {
  font-size: 1.8rem;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.1;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.package-features {
  list-style: none;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  height: 0;
}

.package-card:hover .package-features {
  opacity: 1;
  height: auto;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.package-btn {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.package-card:hover .package-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Itinerary Section */
.itinerary-section {
  background-color: var(--white);
  padding: 100px 0;
}

.itinerary-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}

.destination-chip {
  background: var(--light);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.destination-chip:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-4px) scale(1.05);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #034b6e 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.price-tag {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 15px 30px;
  border-radius: 15px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 30px;
}

.price-sub {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  opacity: 0.8;
  display: block;
  margin-top: 5px;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-wpp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0px 6px 25px rgba(37, 211, 102, 0.6);
  color: #FFF;
}

/* Buddy Image Float */
.buddy-float {
  position: absolute;
  position: absolute;
  top: -162px;
  right: -52px;
  height: 178px;
  width: auto;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.whatsapp-float:hover .buddy-float {
  transform: translateY(-10px) rotate(5deg);
}

@keyframes pulse-wpp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Footer */
footer {
  background-color: #111;
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-details {
    flex-direction: column;
    gap: 15px;
  }

  .section {
    padding: 60px 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 30px;
  }

  .main-navbar {
    padding: 15px 20px;
  }

  .nav-logo {
    height: 381px;
  }

  .buddy-float {
    height: 70px;
    top: -55px;
    right: -15px;
  }
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--light);
  width: 90%;
  max-width: 800px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(50px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal.show .modal-content {
  transform: translateY(0) scale(1);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--white);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 20;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.close-modal:hover {
  transform: scale(1.2);
}

.modal-header {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.modal-body {
  padding: 40px;
}

.modal-body h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  margin-top: -21px;
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: white;
}

.modal-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 25px;
  padding-top: 20px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .modal-info-grid {
    grid-template-columns: 1fr;
  }
}

.modal-info-grid h3 {
  font-size: 1.2rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.modal-info-grid ul {
  list-style-type: none;
}

.modal-info-grid li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.05rem;
}

.modal-info-grid li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
}

/* Music Control Button - Moved to Top */
.music-control {
  position: fixed;
  top: 25px;
  right: 80px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.music-control:hover {
  transform: scale(1.1);
  background: rgba(0, 180, 216, 0.2);
  border-color: #00B4D8;
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

.music-control i {
  font-size: 1.2rem;
}

/* Music Tooltip */
.music-tooltip {
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.music-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 180, 216, 0.4);
}

.music-control:not(.playing) .music-tooltip.visible {
  opacity: 1;
  right: 130%;
  animation: floatTooltip 3s ease-in-out infinite;
}

.music-tooltip.hidden {
  opacity: 0 !important;
  transform: translateY(-50%) scale(0.9) !important;
  pointer-events: none;
}

@keyframes floatTooltip {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-5px); }
}

/* Sound Waves Animation */
.music-waves {
  position: absolute;
  bottom: 6px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.music-control.playing .music-waves {
  opacity: 1;
}

.music-waves span {
  width: 2px;
  background: #00B4D8;
  animation: wave 1s ease-in-out infinite alternate;
}

.music-waves span:nth-child(2) {
  animation-delay: 0.2s;
  height: 100%;
}

.music-waves span:nth-child(1) {
  animation-delay: 0.4s;
  height: 60%;
}

.music-waves span:nth-child(3) {
  animation-delay: 0.1s;
  height: 80%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-indicator i {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  color: var(--vibrant-cyan);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes wave {
  0% {
    height: 20%;
  }

  100% {
    height: 100%;
  }
}

@media (max-width: 768px) {
  .music-control {
    top: 20px;
    right: 70px;
    width: 40px;
    height: 40px;
  }
}