/* style.css - Combined and cleaned CSS */

@font-face {
  font-family: Figtree;
  src: url('../../assets/fonts/figtree.ttf');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Figtree, sans-serif;
  background: honeydew;
  overflow-x: hidden;
}

.body {
  margin: 120px 5% 0;
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ====================== HEADER & NAVIGATION ====================== */
header {
  position: fixed;
  width: 100%;
  background: #1D2F1F;
  border-bottom: 5px solid #fff;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  height: auto;
  max-width:  60px;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

.nav-bar {
  display: flex;
  justify-content: center;
  background: inherit;
}

.nav-items {
  display: flex;
  list-style: none;
  gap: 10px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  padding: 5px;
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  opacity: 0;
  min-width: 240px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 100;
  transition: opacity 0.3s ease;
}

.dropdown a {
  color: #333;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
}

.dropdown a:hover {
  background: #0C5128;
  color: #fff;
}

.nav-item:hover .dropdown {
  display: block;
  opacity: 1;
}

/* Mobile Drawer */
.drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 75%;
  height: 60vh;
  overflow: auto;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 2000;
  padding: 20px;
}

.drawer ul {
  list-style: none;
  padding-left: 0;
}

.drawer li a {
  display: block;
  padding: 10px;
  color: #333;
  border-bottom: 2px solid #0C5128;
  margin: 10px auto;
  text-decoration: none;
  font-weight: 600;
}

.close-icon {
  float: right;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  list-style: none;
  padding-left: 15px;
  color: #fff;
  margin-top: 0;
}

.mobile-submenu li a {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #fff;
  background: #0C5128;
  color: #fff;
  margin: 4px auto;
}

.mobile-dropdown-toggle.open .mobile-submenu {
  display: block;
}

.mobile-dropdown-toggle > a {
  cursor: pointer;
  position: relative;
}

.mobile-dropdown-toggle > a::after {
  content: "▾";
  float: right;
}

/* ====================== GENERAL SECTION STYLES ====================== */
section {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin: 10px auto;
  background-color: #fff;
  padding: 40px 5%;
  max-width: 1400px;
}

/* Hero Section */
.hero-section {
  padding: 60px 5%;
  text-align: center;
  background-color: #fff;
}

.hero-icon {
  display: none;
  margin-bottom: 20px;
}

.hero-section h1 {
  text-transform: uppercase;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: #1D2F1F;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  color: #333;
  text-align: justify;
  margin-bottom: 30px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .btn-primary,
.related-tours .btn-primary {
  background-color: #0C5128;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 40px;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.hero-section .btn-primary:hover {
  background-color: #e69500;
}

/* Image Styles */
.image {
  background-color: #fff;
  max-width: 100%;
  margin: 10px auto;
  padding: 1rem;
}

.image img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 6px;
}

.image figcaption {
  color: #2F2F2F;
  font-style: italic;
  padding: 1rem;
  text-align: center;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

/* Highlights Section */
.highlights-section {
  background-color: #fff;
  padding: 40px 5%;
  color: #3a3a3a;
}

.highlights-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #1D2F1F;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.highlights-section ul {
  list-style: square;
  text-align: left;
  padding: 0 20px;
  margin: 1rem 0;
}

.highlights-section ul li {
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.6;
}

.highlights-section ul li strong {
  color: #1C2D1A;
  font-weight: 600;
}

/* Overview Section */
.overview-section {
  padding: 40px 5%;
  color: #1a3b5d;
}

.overview-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: left;
  margin-bottom: 20px;
  color: #1D2F1F;
}

.overview-section h3 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  text-align: left;
  margin: 20px 0;
  color: #1D2F1F;
}

.overview-section h4 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  text-align: left;
  margin: 20px 0;
  color: #1D2F1F;
}

.overview-section ul,
.overview-section ol {
  list-style: square;
  padding: 0 20px;
  text-align: left;
}

.overview-section ul li,
.overview-section ol li {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  color: #2F2F2F;
  margin-bottom: 10px;
}

.overview-section p,
.overview-section .note {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.75;
  text-align: justify;
  color: #2F2F2F;
  margin-bottom: 20px;
}

.overview-section a,
.faq-section a {
  text-decoration: none;
  color: #151d69;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.75);
}

/* Itinerary Section */
.itinerary-section {
  padding: 20px 2%;
}

.itinerary-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 10px;
  color: #1D2F1F;
  text-transform: uppercase;
  text-align: center;
}

.itinerary-section .day {
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 6px 10px -6px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.itinerary-section h3 {
  font-size: clamp(1.2rem, 3vw, 1.35rem);
  color: #1D2F1F;
  text-align: left;
  margin-bottom: 10px;
}

.itinerary-section p {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  text-align: justify;
  line-height: 1.75;
  color: #333;
}

/* Accordion Styles */
.accordion-container {
    max-width: 1100px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e1e5e9;
    margin-bottom: 1rem;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #0C5128;
}

.accordion-header h3 {
    font-family: "Figtree", sans-serif;
    margin: 0;
    flex-grow: 1;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0C5128;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content.active {
    max-height: 2000px; /* Adjust as needed */
    padding-bottom: 1.5rem;
}

.day-content {
    padding-right: 30px;
}

.day-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.day-content p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.day-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.day-content li {
    margin-bottom: 0.5rem;
}

/* Features Section */
.features-highlights-section {
  padding: 40px 5%;
  text-align: left;
  background-color: #fff;
}

.features-highlights-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #1D2F1F;
  margin-bottom: 30px;
}

.feature-item {
  background: #fff;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  text-align: left;
  color: #1C2D1A;
  margin-bottom: 10px;
}

.feature-item ul {
  margin-left: 20px;
  text-align: left;
  list-style-type: disc;
}

.features-highlights-section p,
.feature-item p,
.feature-item li {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  text-align: justify;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 40px 5%;
  text-align: center;
}

.gallery-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #1D2F1F;
  margin-bottom: 20px;
}

.gallery-section p {
  color: #555;
  text-align: center;
  margin: 0 auto 20px;
  max-width: 90%;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  max-height: 30vh;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.07);
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Video Promo Section */
.video-promo {
  display: none;
  padding: 40px 5%;
  text-align: center;
}

.video-promo h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 20px;
  color: #1D2F1F;
}

.video-promo p {
  margin-bottom: 20px;
  text-align: justify;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
}

.video-promo .frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-promo .frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #ffa500;
}

/* Preparation Section */
.preparation-section {
  padding: 40px 5%;
  color: #1a3b2c;
}

.preparation-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1d3c2e;
}

.preparation-section p {
  text-align: justify;
  margin: 0 auto 20px;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  color: #2F2F2F;
}

.preparation-section h3 {
  text-align: left;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: #1D2F1F;
  margin: 20px 0 10px;
}

/* Pricing & Customization */
.pricing-customization-section {
  padding: 40px 5%;
  color: #1D2F1F;
  text-align: left;
}

.pricing-customization-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 20px;
  color: #1D2F1F;
}

.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.tier-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tier-card h3 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  margin-bottom: 10px;
  padding-bottom: 0.5em;
  border-bottom: 2px dashed #1D2F1F;
  color: #1D2F1F;
}

.tier-card .price-range {
  font-weight: bold;
  margin-bottom: 12px;
  color: #1D2F1F;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
}

.tier-card ul {
  list-style-type: square;
  padding-left: 20px;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  color: #333;
}

.tier-card ul li {
  margin-bottom: 10px;
}

.customization {
  margin-top: 40px;
  text-align: left;
}

.customization h3 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-bottom: 15px;
  color: #1D2F1F;
}

.customization ul {
  list-style-type: square;
  padding-left: 20px;
  text-align: justify;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  color: #333;
  margin-bottom: 20px;
}

/* Included & Excluded */
.included-section {
  padding: 40px 5%;
}

.included-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #1D2F1F;
  margin-bottom: 30px;
}

.included-excluded-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.included,
.excluded {
  flex: 1 1 45%;
  background-color: #f9f9f9;
  padding: 20px;
  border-bottom: 2px dashed #1D2F1F;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.included h3,
.excluded h3 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #1D2F1F;
  margin-bottom: 15px;
}

.included ul,
.excluded ul {
  list-style: none;
  text-align: left;
  padding-left: 0;
}

.included li,
.excluded li {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  color: #333;
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 10px;
}

.included li::before {
  content: '✔';
  color: green;
  position: absolute;
  left: 0;
}

.excluded li::before {
  content: '✖';
  color: red;
  position: absolute;
  left: 0;
}

/* Accommodation */
.accommodation-section {
  padding: 40px 5%;
  color: #1a3b5d;
}

.accommodation-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 20px;
  color: #1D2F1F;
}

.accommodation-section p {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
  color: #333;
}

.accommodation {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
}

.accommodation ul {
  list-style: square;
  padding: 0 20px;
  text-align: justify;
  color: #2F2F2F;
}

.accommodation ul li {
  margin-bottom: 10px;
}

.accommodation h3,
.accommodation-card h3 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: #1D2F1F;
  text-align: left;
  margin-bottom: 10px;
}

.accommodation-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 20px;
}

.accommodation-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 15px;
  text-align: center;
}

.accommodation-card img {
  width: 100%;
  height: auto;
  max-height: 25vh;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Why Choose */
.why-choose-section {
  padding: 40px 5%;
  background-color: #fdfdfd;
  color: #1a3b5d;
}

.why-choose-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: left;
  margin-bottom: 20px;
  color: #1D2F1F;
}

.why-choose-section h3 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  text-align: left;
  margin: 20px 0 10px;
  color: #1D2F1F;
}

.why-choose-section p,
.related-tours p {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 15px;
  color: #333;
}

.why-choose-section ul {
  list-style: square;
  padding: 0 20px;
  text-align: justify;
}

.why-choose-section ul li {
  line-height: 1.8;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  color: #2F2F2F;
  margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
  background-color: #0C5128;
  color: #fff;
  padding: 40px 5%;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 15px;
}

.cta-section p {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  max-width: 90%;
  text-align: justify;
  margin: 0 auto 20px;
}

.cta-benefits {
  list-style: none;
  max-width: 90%;
  margin: 0 auto 20px;
  padding: 0;
  text-align: left;
}

.cta-benefits li {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  position: relative;
  padding-left: 25px;
}

.cta-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

.cta-urgency {
  font-weight: bold;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  margin-bottom: 20px;
  color: #fff;
}

.btn-primary {
  background-color: #fff;
  color: #0C5128;
  font-weight: 700;
  padding: 12px 30px;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0C5128;
  color: #fff;
  outline: 2px solid #fff;
}

.booking-btn:hover {
  background-color: #059669;
  cursor: pointer;
}

/* Inquiry Form */
.inquiry-section {
  padding: 40px 5%;
  color: #1f2937;
}

.inquiry-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: center;
  color: #1D2F1F;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #1D2F1F;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  text-align: left;
  margin-bottom: 8px;
  color: #374151;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  font-family: Figtree, sans-serif;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
}

.submit-btn {
  background-color: #1D2F1F;
  color: #fff;
  padding: 12px 25px;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  font-family: Figtree, sans-serif;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.submit-btn:hover {
  background-color: #059669;
}

/* Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  width: 400px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.popup-content h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 10px;
  color: #0C5128;
}

.popup-content p {
  margin-bottom: 20px;
  color: #333;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
}

.popup-content button {
  background-color: #0C5128;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-content button:hover {
  background-color: #14324a;
}

/* Packing Checklist */
.packing-checklist-section {
  padding: clamp(40px, 8vw, 60px) clamp(15px, 3vw, 20px);
}

.packing-checklist-section h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: clamp(15px, 3vw, 20px);
  color: #1D2F1F;
}

.packing-checklist-section p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  text-align: justify;
  max-width: clamp(600px, 80vw, 700px);
  margin: 0 auto clamp(20px, 4vw, 40px);
  color: #2F2F2F;
}

.packing-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 30vw, 260px), 1fr));
  gap: clamp(15px, 3vw, 30px);
}

.packing-item {
  padding: clamp(15px, 3vw, 20px);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.packing-item svg {
  fill: #1D2F1F;
  margin-bottom: clamp(10px, 2vw, 15px);
  width: clamp(30px, 5vw, 40px);
  height: auto;
}

.packing-item h3 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: clamp(8px, 2vw, 10px);
  color: #1D2F1F;
}

.packing-item p {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  text-align: justify;
  color: #2F2F2F;
  line-height: 1.4;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-family: Figtree, sans-serif;
}

table thead {
  background-color: #f4f4f4;
}

table th {
  text-align: left;
  padding: 12px 15px;
  border-bottom: 2px solid #ddd;
  font-weight: 600;
  color: #333;
}

table td {
  padding: 10px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
  color: #444;
}

table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Related Tours */
.related-tours {
  padding: 40px 5%;
}

.related-tours h2 {
  text-align: left;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 30px;
  color: #1D2F1F;
}

.related-tours .tours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 1.7rem;
}

.related-tours .tour {
  background-color: #e3c9a8;
  border-radius: 8px;
  border: 2px solid #e3c9a8;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.related-tours .tour img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
}

.related-tours .tour .contents {
  padding: 15px;
}

.related-tours .tour .contents h3 {
  font-size: clamp(1.35rem, 3vw, 1.4rem);
  margin-bottom: 10px;
  color: #1D2F1F;
}

.related-tours .tour .contents p {
  text-align: left;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  color: #2F2F2F;
}

.related-tours .tour .contents a {
  display: inline-block;
  text-decoration: none;
  background-color: #1C2D1A;
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 10px;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
}

/* FAQ */
.faq-section {
  background-color: #f9fafb;
  padding: 40px 5%;
  color: #1f2937;
}

.faq-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: left;
  color: #1D2F1F;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
}

.faq-question {
  font-weight: bold;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  cursor: pointer;
  color: #1D2F1F;
  display: flex;
  text-align: left;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  text-align: left;
  color: #374151;
  line-height: 1.6;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  color: #1D2F1F;
}

.faq-question.active::after {
  content: "−";
}

/* Footer */
.site-footer {
  background-color: #303841;
  color: #fff;
  padding: 40px 5% 20px;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  width: 100%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 200px;
  text-align: left;
}

.footer-column h3,
.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: clamp(1.21rem, 2.5vw, 1.33rem);
}

.footer-column p {
  color: #fff;
  line-height: 1.6;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 8px;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
}

.footer-column a {
  color: #E3C9A8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #fff2;
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25D366;
  border-radius: 50%;
  width: clamp(50px, 8vw, 60px);
  height: clamp(50px, 8vw, 60px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: clamp(24px, 5vw, 32px);
  height: clamp(24px, 5vw, 32px);
  fill: #fff;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 480px) {
  .body {
    margin: 80px 3% 0;
  }
  .body p, section p {
    text-align: left;
  }
  section {
    padding: 30px 3%;
    border: 2px solid #E3C9A8;
  }
  .hero-section h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  .hero-subtitle {
    font-size: clamp(1.15rem, 3vw, 1.5rem);
  }
  .image img {
    max-height: 50vh;
  }
  .gallery-grid img {
    max-height: 25vh;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }
  table thead { display: none; }
  table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
  }
  table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
  table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
    color: #333;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .header-top {
    justify-content: space-between;
  }
  .nav-items { display: none; }
  .menu-icon { display: block; }

  .body {
    margin: 90px 3% 0;
  }
  .body p, section p {
    text-align: left;
  }
  .inquiry-section h2 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }
  .included-excluded-wrapper {
    flex-direction: column;
  }
  .included, .excluded {
    flex: 1 1 100%;
  }
  .pricing-tiers {
    flex-direction: column;
  }
  .related-tours .tours {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }
  .accordion-header {
        padding: 1.25rem 0;
        font-size: 1.1rem;
    }
    
    .accordion-icon {
        font-size: 1.3rem;
        width: 25px;
        height: 25px;
    }
    
    .day-content {
        padding-right: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .body {
    margin: 100px 4% 0;
  }
  .image img {
    max-height: 60vh;
  }
  .gallery-grid img {
    max-height: 25vh;
  }
  .related-tours .tours {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (min-width: 1025px) {
  .image img {
    max-height: 70vh;
  }
  .gallery-grid img {
    max-height: 25vh;
  }
}
#scrollTopBtn {
    position: fixed;
    left: 20px;       
    bottom: 40px;     
    z-index: 99;      
    background-color: #303841; 
    color: white;
    border: none;
    opacity: 0.65;
    outline: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }

    /* Floating Menu Button */
.float-menu-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #e67e22; /* Warm safari orange – change to your brand */
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.float-menu-btn:hover {
  background: #d35400;
  transform: scale(1.1);
}

/* Panel */
.float-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  margin-top: 35px;
  max-width: 90vw;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  color: white;
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.float-menu-panel.active {
  right: 0;
}

.float-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.float-menu-header span {
  font-size: 1.2rem;
  font-weight: bold;
}

.float-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.float-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.float-menu-list li {
  margin: 8px 0;
}

.float-menu-list a {
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding-left 0.3s ease;
}

.float-menu-list a:hover,
.float-menu-list a.active {
  padding-left: 10px;
  color: #e67e22;
  font-weight: 600;
}

/* Mobile overlay when open */
.float-menu-panel.active ~ .float-menu-btn {
  opacity: 0;
  pointer-events: none;
}

/* Desktop tweak – show as dropdown instead of full overlay */
@media (max-width: 992px) {
  .float-menu-panel {
    top: 40px;
    bottom: auto;
    height: auto;
    max-height: 80vh;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.4);
  }
  @media (min-width: 992px) {
  .float-menu-panel {
    top: 90px;
    bottom: auto;
    height: auto;
    max-height: 80vh;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.4);
  }
}