/* ===============================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f1115;
  color: #ffffff;
}

/* ===============================
   NAVBAR
================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(10, 12, 18, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
  color: #c9a14a;
}

/* ===============================
   HERO SECTION + SLIDESHOW
================================ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  padding-top: 70px;
  overflow: hidden;
}

/* HERO SLIDESHOW */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
}

/* HERO OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-content h1 {
  font-size: 64px;
}

.hero-content p {
  margin: 10px 0 30px;
  letter-spacing: 6px;
  color: #c9a14a;
}

/* HERO SEARCH BAR */
.search-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.search-bar input,
.search-bar select {
  padding: 10px;
  border-radius: 6px;
  border: none;
  min-width: 140px;
}

.search-bar button {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  background: #c9a14a;
  cursor: pointer;
}

/* ===============================
   SECTION CONTAINERS
================================ */
.container {
  padding: 100px 40px;
}

.container h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* ===============================
   DESTINATION GRID
================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* DESTINATION CARD */
.card {
  background: #12161d;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

/* CARD SLIDESHOW */
.card-slideshow {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.card-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.card-slideshow img.active {
  opacity: 1;
}

/* CARD CONTENT */
.card h3 {
  margin-top: 15px;
  font-size: 20px;
}

.card p {
  margin: 8px 0;
  color: #c9a14a;
}

.card a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* ===============================
   PACKAGE PAGE HERO
================================ */
.package-hero {
  position: relative;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
}

.package-hero .hero-slideshow {
  position: absolute;
  inset: 0;
}

.package-hero .hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.package-hero .hero-slideshow img.active {
  opacity: 1;
}

.package-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

.package-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.package-hero-content h1 {
  font-size: 48px;
}

.package-hero-content p {
  margin: 10px 0;
  font-size: 18px;
}

.package-hero-content span {
  color: #c9a227;
  font-weight: bold;
}

/* ===============================
   STAY & INCLUSIONS
================================ */
.package-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
  max-width: 900px;
  margin: 80px auto;
}

.info-box {
  background: #151922;
  padding: 25px;
  border-radius: 14px;
}

.info-box h3 {
  color: #c9a227;
  margin-bottom: 15px;
}

.info-box ul {
  list-style: none;
}

.info-box li {
  margin-bottom: 10px;
  color: #ddd;
}

/* ===============================
   ITINERARY (ACCORDION)
================================ */
.itinerary-section {
  max-width: 900px;
  margin: 80px auto;
}

.itinerary-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.day {
  background: #151922;
  border-radius: 12px;
  margin-bottom: 15px;
}

.day summary {
  cursor: pointer;
  padding: 18px;
  font-size: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.day summary::-webkit-details-marker {
  display: none;
}

.day-badge {
  background: #c9a227;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
}

.day-content {
  padding: 20px;
  color: #ccc;
  border-top: 1px solid #222;
}

/* ===============================
   ABOUT DESTINATION
================================ */
.about-destination {
  max-width: 900px;
  margin: 80px auto;
  color: #ddd;
}

.about-destination h2 {
  margin-bottom: 20px;
}

/* ===============================
   ENQUIRY CTA
================================ */
.enquiry-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 70px auto;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn.whatsapp {
  background: #25d366;
  color: #000;
  font-weight: bold;
}

.btn.beyond {
  background: #c9a227;
  color: #000;
  font-weight: bold;
}

/* ===============================
   FOOTER
================================ */
footer {
  text-align: center;
  padding: 40px;
}

footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero {
    height: 70vh;
  }

  .card-slideshow {
    height: 220px;
  }

  .package-hero-content h1 {
    font-size: 36px;
  }
}

/* ===============================
   PACKAGE PAGE CARD IMAGE FIX
   (IMPORTANT – DO NOT REMOVE)
================================ */

/* Card container */
.card {
  background: #12161d;
  border-radius: 18px;
  overflow: hidden;              /* HARD STOP for images */
  text-align: center;
  padding-bottom: 20px;
}

/* Card image wrapper (implicit) */
.card img {
  width: 100%;
  height: 180px;                 /* FIXED HEIGHT */
  object-fit: cover;             /* NO STRETCH */
  display: block;
}

/* Card content spacing */
.card h3 {
  margin-top: 14px;
  font-size: 20px;
}

.card p {
  margin: 6px 0 10px;
  color: #c9a14a;
}

.card a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .card img {
    height: 160px;
  }
}

/* ===============================
   CARD HOVER EFFECT
================================ */

.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Slight image zoom on hover */
.card img {
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.08);
}

/* CTA emphasis */
.card a {
  display: inline-block;
  margin-top: 6px;
  transition: color 0.3s ease;
}

.card:hover a {
  color: #c9a14a;
}

/* FLOATING BEYONDER LOGO (HOME ONLY) */
.floating-logo {
  position: absolute;
  top: 35px;
  left: 40px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  background: #000;
  padding: 4px;
}
/* ===============================
   ENQUIRY POPUP (CENTER MODAL)
================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-box {
  background: #12161d;
  padding: 30px 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  animation: popupFade 0.35s ease;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}

.popup-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

.popup-box input,
.popup-box select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
}

.popup-box button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #c9a227;
  color: #000;
  font-size: 16px;
  cursor: pointer;
}
/* ===============================
   POPUP OVERLAY
================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* POPUP BOX */
.popup-box {
  background: #12161d;
  width: 100%;
  max-width: 520px;
  padding: 35px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: popupFade 0.35s ease;
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* POPUP TEXT */
.popup-box h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 8px;
}

.popup-subtext {
  text-align: center;
  color: #bbb;
  margin-bottom: 25px;
}

/* FORM */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-form input {
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

/* TWO COLUMN ROW */
.popup-row {
  display: flex;
  gap: 12px;
}

/* SUBMIT BUTTON */
.popup-submit {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #c9a227;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

/* ANIMATION */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .popup-row {
    flex-direction: column;
  }
}
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.thank-you-box {
  background: white;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  width: 90%;
  max-width: 350px;
}

.thank-you-box h2 {
  margin-bottom: 10px;
}

.thank-you-box p {
  margin-bottom: 20px;
  color: #555;
}

.thank-you-box button {
  padding: 10px 18px;
  background: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
/* Popup form spacing fix */
.popup-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px; /* space between each field */
}

/* Ensure all inputs/selects have breathing room */
.popup-form input,
.popup-form select,
.contact-form input,
.contact-form select {
  width: 100%;
}

/* If you have two fields side by side */
.form-row {
  display: flex;
  gap: 12px;
}

/* Make sure fields inside form-row don't stick */
.form-row > * {
  flex: 1;
}
.popup-form button,
.contact-form button {
  margin-top: 10px;
}
