@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');

/* Privacy bar main container */
.privacy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 35px 20px;
  z-index: 10000; 
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  font-family: "Montserrat", Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;
  transform: translateY(100%); 
  transition: transform 0.4s ease-out;
  overflow: hidden;
}

/* Privacy bar active */
.privacy-bar.active {
  transform: translateY(0);
}

.privacy-bar.closing {
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}

/* Content container */
.privacy-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

/* Paragraph text */
.privacy-content p {
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
  text-align: left;
  font-weight: 300;
  font-family: "Montserrat", Arial, sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  flex: 1;
}

/* Privacy policy link */
.privacy-link {
  color: #03a495;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-family: "Montserrat", Arial, sans-serif;
  display: inline;
}

.privacy-link:hover {
  color: white;
  text-decoration: none;
}

/* Close button */
.privacy-btn {
  background-color: transparent;
  color: white;
  border: 2px solid #a3862b;
  padding: 13px 31px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s ease;
  min-width: 80px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  margin-left: 80px;
}

.privacy-btn:hover {
  transform: scale(0.95);
  background-color: rgba(163, 134, 43, 0.1);
}

body {
  transition: padding-bottom 0.4s ease !important;
}

.main-content {
  position: relative;
  z-index: 1;
}

.hero-section {
  transition: none !important; 
}

.hero-overlay {
  transition: none !important; 
}

/* =========================
   Responsive - tablet
   ========================= */
@media (max-width: 768px) {
  .privacy-bar {
    padding: 20px 15px;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }

  .privacy-content p {
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
    flex: none;
  }

  .privacy-btn {
    width: auto;
    max-width: 200px;
    min-width: 120px;
    padding: 10px 20px;
    font-size: 12px;
    margin-left: 0;
  }

}

/* =========================
   Responsive - mobile
   ========================= */
@media (max-width: 480px) {
  .privacy-bar {
    padding: 15px 12px;
  }

  .privacy-content {
    padding: 0 12px;
    gap: 12px;
  }

  .privacy-content p {
    font-size: 11px;
    line-height: 1.3;
  }

  .privacy-btn {
    padding: 8px 18px;
    font-size: 11px;
    min-width: 110px;
  }

}

.hero-section,
.packages-section,
.package-overview,
.itinerary,
.niah,
.our-services {
  position: relative;
  z-index: 2;
}


@media (max-width: 768px) {
  .hero-overlay {
    transform: none !important;
  }
}