

/* ===============================
   Footer CSS Start
================================ */
/* ===============================
   FOOTER – ISOLATED & SAFE
================================ */




#site-footer {
  background: #0b1c2d;
  color: #e5e7eb;
  font-size: 14px;
}


/* TRUST BAR */
#site-footer .footer-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: #071525;
  padding: 14px 24px;
  text-align: center;
  border-bottom: 1px solid #12324f;
}

#site-footer .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  white-space: normal;
}

#site-footer .trust-item svg {
  color: #48bb78;
  flex-shrink: 0;
}

/* MAIN GRID – DESKTOP DEFAULT */
/* ===============================
   FOOTER CONTAINER – WIDE & CENTERED
================================ */
#site-footer .footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

#site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-content: center;
}

/* Trust bar centered */
#site-footer .footer-trust {
  max-width: 1200px;
  margin: 0 auto;
}

/* TEXT & LINKS */
#site-footer h4 {
  margin: 0 0 12px;
  color: #9be15d;
}

#site-footer p,
#site-footer li,
#site-footer a {
  color: #cbd5e1;
}

#site-footer a,
#site-footer a:visited {
  text-decoration: none;
}

#site-footer a:hover {
  color: #9be15d;
}

/* REMOVE LIST STYLING */
#site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#site-footer ul li {
  margin-bottom: 6px;
}

/* PAYMENTS */
#site-footer .footer-payments {
  background: #071525;
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid #12324f;
}

#site-footer .footer-payments p {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #94a3b8;
}

#site-footer .payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#site-footer .payment-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 12px;
}

#site-footer .payment-item svg {
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* COPYRIGHT */
#site-footer .footer-bottom {
  text-align: center;
  padding: 12px;
  background: #071525;
  border-top: 1px solid #12324f;
  font-size: 13px;
  color: #94a3b8;
}

/* ===============================
   TABLET
================================ */
@media (max-width: 1023px) {
  #site-footer .footer-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 24px;
  }
  
  #site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  #site-footer .footer-trust {
    max-width: 900px;
    margin: 0 auto;
    padding: 14px 24px;
  }
}

/* ===============================
   MOBILE – ACCORDION
================================ */
@media (max-width: 768px) {

#site-footer .footer-trust {
    grid-template-columns: repeat(2, 1fr); /* 2 × 2 grid */
    padding: 12px 16px;
  }

  #site-footer .trust-item {
    font-size: 13px;
  }

  #site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #site-footer .footer-main {
    padding: 20px 16px;
  }

  #site-footer .accordion-header {
    cursor: pointer;
    padding: 12px 0;
    border-bottom: 1px solid #12324f;
    position: relative;
    font-size: 15px;
  }

  #site-footer .accordion-header::after {
    content: "▾";
    position: absolute;
    right: 0;
    color: #9be15d;
    transition: transform 0.25s ease;
  }

  #site-footer .accordion.active .accordion-header::after {
    transform: rotate(180deg);
  }

  /* Accordion container */
  #site-footer .accordion-content {
    height: 0;
    overflow: hidden;

    transition:
      height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s ease;

    opacity: 0;
  }

  /* Open state */
  #site-footer .accordion.active .accordion-content {
    opacity: 1;
  }

  /* Pioneer Holidays – always open */
  #site-footer .no-accordion .accordion-content {
    height: auto !important;
    opacity: 1 !important;
  }


  
/* ===============================
   FOOTER ACCORDION – SMOOTH
================================ */

#site-footer .accordion-content {
  height: 0;
  overflow: hidden;

  opacity: 0;
  transform: translateY(-6px);

  transition:
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* OPEN STATE */
#site-footer .accordion.active .accordion-content {
  opacity: 1;
  transform: translateY(0);
}

/* Pioneer Holidays – always open */
#site-footer .no-accordion .accordion-content {
  height: auto !important;
  opacity: 1 !important;
  transform: none !important;
}


#site-footer .accordion-header::after {
  content: "▾";
  position: absolute;
  right: 0;
  color: #9be15d;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-footer .accordion.active .accordion-header::after {
  transform: rotate(180deg);
}
  
}

.page-section:has(#site-footer) {
  background: transparent !important;
  padding: 0 !important;
}

#site-footer {
  background-color: #0b1c2d !important;
}


.tour-section {
  background: #f8fafc;        /* light premium bg */
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}

/* =========================================
   FIX: WhatsApp vs Footer overlap (MOBILE)
========================================= */
@media (max-width: 768px) {

  .whatsapp-float {
    z-index: 9999;          /* higher than footer */
    bottom: 20px;           /* lift above footer content */
  }

}



