/* =========================
   RESET
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================== */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 28, 77, 0.95);
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #e5b64a;
}

.header-btn {
  background: #e5b64a;
  color: #081c4d;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.header-btn:hover {
  background: #d4a438;
}

/* Prevent white flash while images load */
.logo img {
  height: 65px;
  width: auto;
  display: block;
  background: transparent;
}

/* Hero background placeholder — shows navy until banner loads */
.hero {
  position: relative;
  height: calc(100vh - 110px);
  min-height: 550px;
  overflow: hidden;
  margin-top: 110px;
  background: #081c4d;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Dark overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 650px;
  color: #fff;
}

/* Hero buttons */
.hero-buttons {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 20px;
}

/* =========================
   BUTTONS
========================== */
.primary-btn {
  background: #e5b64a;
  color: #081c4d;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.primary-btn:hover {
  transform: translateY(-3px);
  background: #d4a438;
}

.secondary-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.secondary-btn:hover {
  background: #fff;
  color: #081c4d;
}

/* =========================
   SECTION TITLE
========================== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
  color: #081c4d;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
}

/* =========================
   WHY CHOOSE US
========================== */
.why-us {
  padding: 80px 0;
  background: #f8f9ff;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 40px;
  color: #e5b64a;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #081c4d;
  margin-bottom: 10px;
}

/* =========================
   DESTINATION SECTIONS
========================== */
.destination-section {
  padding: 80px 20px;
  background: #fff;
}

.international-bg {
  background: #f0f4ff;
}

.accordion-container {
  max-width: 800px;
  margin: auto;
}

.accordion {
  width: 100%;
  background: #081c4d;
  color: #fff;
  padding: 18px 25px;
  border: none;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.accordion:hover,
.accordion.active {
  background: #e5b64a;
  color: #081c4d;
}

.panel {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 10px 10px;
  margin-bottom: 10px;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.itinerary {
  padding: 20px 0;
}

.itinerary h3 {
  color: #081c4d;
  margin-bottom: 10px;
}

.itinerary p {
  margin-bottom: 6px;
  color: #444;
}

/* FAQ */
.faq-btn {
  background: #f0f4ff;
  border: none;
  color: #081c4d;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 10px 0;
  transition: 0.3s;
}

.faq-btn:hover {
  background: #e5b64a;
}

/* FIX: .faq-panel.show was referenced in JS but never defined in CSS */
.faq-panel {
  display: none;
  padding: 10px 0;
}

.faq-panel.show {
  display: block;
}

.faq-item {
  margin-bottom: 12px;
  padding: 12px;
  background: #f8f9ff;
  border-radius: 8px;
}

.faq-item h4 {
  color: #081c4d;
  margin-bottom: 5px;
}

.faq-item p {
  color: #555;
}

/* =========================
   FEATURED PACKAGE
========================== */
.featured-package {
  padding: 80px 0;
  background: linear-gradient(135deg, #081c4d, #1a3a8a);
  color: #fff;
}

.featured-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.featured-text span {
  background: #e5b64a;
  color: #081c4d;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.featured-text h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.7;
}

/* =========================
   TESTIMONIALS
========================== */
.testimonials {
  padding: 80px 20px;
  background: #f8f9ff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.testimonial-card p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-card h4 {
  color: #e5b64a;
  font-size: 20px;
}

/* =========================
   CONTACT
========================== */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #081c4d;
}

.contact-form button {
  background: #081c4d;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e5b64a;
  color: #081c4d;
}

/* =========================
   FOOTER LEGAL SECTIONS
========================== */
.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 10px;
}

.footer-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  width: auto;
  transition: 0.3s;
}

.footer-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #e5b64a;
  color: #e5b64a;
}

.footer-legal-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 22px 25px;
  margin: 12px auto;
  max-width: 820px;
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal-panel h4 {
  color: #e5b64a;
  font-size: 15px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-legal-panel p {
  margin-bottom: 10px;
}

.footer-copy {
  margin-top: 25px;
  font-size: 12px;
  opacity: 0.5;
}

/* =========================
   FOOTER
========================== */
footer {
  background: #081c4d;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.footer-content img {
  height: 70px;
  display: block;
  margin: 0 auto 15px;
}

.footer-content p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* =========================
   WHATSAPP FLOAT
========================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =========================
   MOBILE — max-width: 768px
========================== */
@media (max-width: 768px) {

  /* Header */
  nav {
    display: none;
  }

  .header-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Hero */
  .hero {
    height: calc(100vh - 90px);
    min-height: 320px;
    margin-top: 90px;
  }

  .slide img {
    object-fit: contain;
    background: #081c4d;
  }

  .hero-buttons {
    bottom: 30px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Section title */
  .section-title h2 {
    font-size: 26px;
  }

  /* Featured */
  .featured-content {
    flex-direction: column;
  }

  .featured-text h2 {
    font-size: 24px;
  }

  /* Accordion */
  .accordion {
    font-size: 14px;
    padding: 14px 18px;
  }

} /* END @media (max-width: 768px) */