  
  body {
        font-family: 'Inter', sans-serif;
        color: #594B3F; /* Primary brown text */
        background: linear-gradient(to bottom, #FFFFFF, #FAF3E0); /* Soft white → beige */
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Playfair Display', serif;
        color: #594B3F;
    }

    /* Navbar default (transparent at top) */
    #main-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      transition: background 0.4s ease, box-shadow 0.4s ease;
      background: transparent; /* transparent at top */
    }

    /* Navbar when scrolled */
    #main-header.scrolled {
      background: linear-gradient(to right, #594B3F, #463B32);
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      animation: navbarFadeIn 0.5s ease forwards;
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    /* Hero captions */
    .caption {
      position: absolute;
      bottom: 30%;
      left: 10%;
      max-width: 600px;
      color: #fff;
      text-shadow: 0 4px 12px rgba(0,0,0,0.6);
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }
    .carousel-slide.active .caption {
      opacity: 1;
      transform: translateY(0);
    }

    .caption h1 {
         color: #fff;
      font-size: 3.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
      animation: fadeSlideDown 1s ease forwards;
    }
    .caption p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      animation: fadeSlideUp 1.2s ease forwards;
    }
    .caption .btn {
      background: linear-gradient(135deg, #594B3F, #8A7463);
      padding: 12px 28px;
      border-radius: 9999px;
      font-weight: bold;
      transition: background 0.3s ease;
      animation: fadeInBtn 1.5s ease forwards;
    }
    .caption .btn:hover {
      background: linear-gradient(135deg, #8A7463, #594B3F);
    }

    /* Carousel slides */
    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 1.2s ease, transform 6s ease;
    }
    .carousel-slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }

    /* Dark Overlay */
    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(89, 75, 63, 0.55); /* Semi-transparent brown */
    }

    /* Animations */
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInBtn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes navbarFadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Carousel Indicators */
    #carousel-indicators {
      z-index: 20;
    }
    .carousel-indicator {
      width: 14px;
      height: 14px;
      border: 2px solid #fff;
      border-radius: 50%;
      background-color: rgba(250, 243, 224, 0.6);
      transition: all 0.4s ease;
    }
    .carousel-indicator.active {
      background-color: #594B3F; 
      box-shadow: 0 0 12px #fff, 0 0 20px rgba(255,255,255,0.6);
      transform: scale(1.3);
    }
    .carousel-indicator:hover {
      background-color: #463B32;
    }

    /* ===============================
       NovaQuest Brand Colors (Brown palette)
       =============================== */
    .text-nova-brown { color: #594B3F; }
    .bg-nova-brown { background-color: #594B3F; }
    .bg-nova-brown:hover { background-color: #463B32; }

    .text-nova-light { color: #FAF3E0; }
    .bg-nova-light { background-color: #FAF3E0; }

    /* Gradient utility */
    .bg-nova-gradient {
        background: linear-gradient(135deg, #594B3F, #8D7B68, #FAF3E0);
    }

    /* Buttons */
    .btn-nova {
        background: linear-gradient(to right, #594B3F, #8D7B68);
        color: #FAF3E0;
        border: none;
        transition: opacity 0.3s ease;
    }
    .btn-nova:hover { opacity: 0.85; }

    .btn-nova-light {
        background: linear-gradient(to right, #FAF3E0, #FFFFFF);
        color: #594B3F;
        border: 1px solid #594B3F;
        transition: opacity 0.3s ease;
    }
    .btn-nova-light:hover { opacity: 0.9; }

/* Destination Card */
.destination-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.destination-card:hover {
  transform: translateY(-8px);
}

/* Image container */
.image-container {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255,255,255,0.9);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #594B3F;
}

/* Duration */
.duration {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

/* Content */
.content {
  padding: 20px;
}
.title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #594B3F;
  margin-bottom: 10px;
}
.description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}
.tags span {
  background: #f3f3f3;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #594B3F;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.learn-more {
  font-weight: 600;
  color: #594B3F;
  text-decoration: none;
  transition: color 0.3s ease;
}
.learn-more:hover {
  color: #8c7b6b;
}
.book-now {
  background: #594B3F;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.book-now:hover {
  background: #7a6858;
}

.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #594B3F;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.contact-info, .contact-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-info h3 {
  color: #594B3F;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
}

.info-item {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
  border-color: #594B3F;
  outline: none;
}

.form-row {
  display: flex;
  gap: 15px;
}

button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #594B3F, #7d6b5a);
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #7d6b5a, #594B3F);
}
/* Floating WhatsApp Button */
.whatsapp-button {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 1000;
  animation: wave 2s infinite;
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
}

/* Wave Animation */
@keyframes wave {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* WhatsApp Chatbox */
.whatsapp-chatbox {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
  z-index: 1001;
}

.whatsapp-chatbox.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Header */
.chat-header {
  background: #25d366;
  color: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-header h4 {
  margin: 0;
  font-size: 15px;
}

.chat-header span {
  font-size: 12px;
  color: #e9ffe9;
}

.agent-pic {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.chat-header button {
  margin-left: auto;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Body */
.chat-body {
  padding: 15px;
  background: #f5f5f5;
  font-size: 14px;
  color: #333;
  min-height: 80px;
}

.message.bot {
  background: #e1ffc7;
  padding: 10px 12px;
  border-radius: 12px 12px 12px 0;
  display: inline-block;
  max-width: 85%;
}

/* Footer */
.chat-footer {
  padding: 12px;
  background: #fff;
  border-top: 1px solid #ddd;
}

.chat-btn {
  display: block;
  text-align: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 12px;
  font-weight: bold;
  transition: background 0.3s;
}

.chat-btn:hover {
  background: #1ebe5d;
}

    /* Footer */
    footer {
        background: linear-gradient(to right, #594B3F, #463B32);
        color: #FAF3E0;
    }





    