/* GLOBAL RESET */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* HEADER STYLING */
/* Top Contact Bar */
.top-contact {
  background-color: #0f2e2e;
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.top-contact a {
  color: #ffe600;
  text-decoration: none;
}

.top-contact a:hover {
  text-decoration: underline;
}

/* Main Header */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 100;
}

.header-logo img {
  height: 70px;
  width: auto;
}
.header-main {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.header-main {
  transition: box-shadow 0.3s ease;
}


/* Navigation */
.nav-wrapper {
  flex-grow: 1;
  text-align: right;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #0f2e2e;
  font-weight: 600;
  padding: 8px 12px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ffe600;
}

/* Desktop view */
.nav-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #0f2e2e;
  font-weight: 500;
}


/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0f2e2e;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
  }

  .nav-wrapper.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}


/* === Custom Booking Form (Contact Form 7) Styles === */
.custom-booking-form {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.custom-booking-form h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.custom-booking-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 20px;
}

.custom-booking-form input[type="text"],
.custom-booking-form input[type="email"],
.custom-booking-form input[type="tel"],
.custom-booking-form input[type="date"],
.custom-booking-form select,
.custom-booking-form textarea {
  width: 100%;
  padding: 16px 18px; /* Increased padding for more space inside fields */
  margin-top: 6px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.custom-booking-form textarea {
  height: 120px;
  resize: vertical;
}

.custom-booking-form .submit-button {
  display: inline-block;
  width: 100%; /* Make button span full width */
  background-color: #e66a2c;
  color: #fff;
  border: none;
  padding: 16px 0;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-booking-form .submit-button:hover {
  background-color: #c5531f;
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  background: url('/wp-content/uploads/2025/07/footer-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(15, 46, 46, 0.85);
  z-index: -1;
  pointer-events: none;
}

.footer-container,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.outbounds-row .footer-column {
  grid-column: 1 / -1; /* Make it span the entire row */
  text-align: center;
}


.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffe600;
}

.footer-column p,
.footer-column a,
.footer-bottom p {
  font-size: 15px;
  color: #ddd;
  text-decoration: none;
  line-height: 1.6;
}

.footer-column a:hover {
  color: #ffe600;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 20px;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #25D366; /* WhatsApp green */
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-items: center; /* center badges horizontally */
  align-items: center;   /* center badges vertically */
}

.badge-grid img {
  max-width: 150px;  /* limit max width */
  width: 100%;       /* allow image to shrink inside grid cell */
  height: auto;      /* keep aspect ratio */
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  object-fit: contain; /* fit image inside without cropping */
  display: block;
}

.footer-bottom {
  background-color: #021818;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding: 20px;
  font-size: 14px;
  color: #bbb;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: #ffe600;
  color: #0f2e2e;
  font-size: 20px;
  border: 2px solid #0f2e2e;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
  z-index: 999;
  display: none;
}

.back-to-top i {
  line-height: 44px;
  display: block;
}

.back-to-top:hover {
  background-color: #0f2e2e;
  color: #ffe600;
  transform: translateY(-4px);
}

.review-slider {
  position: relative;
  max-width: 600px;
  margin: 50px auto;
  overflow: hidden;
}

.review-slide {
  display: none;
  text-align: center;
}

.review-slide.active {
  display: block;
}

.review-box {
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
}

.review-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.review-name {
  margin: 0;
  font-size: 1.2em;
  color: #333;
}

.review-date {
  color: #999;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.stars {
  color: #00af87;
  font-size: 20px;
  margin-bottom: 15px;
}

.review-text {
  color: #555;
  font-size: 1em;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eee;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

button.prev:hover,
button.next:hover {
  background-color: #ddd;
}

button.prev {
  left: -30px;
}

button.next {
  right: -30px;
}

<style>
  .table-container {
    overflow-x: auto;
    margin: 20px 0;
  }

  table.kili-routes {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
  }

  table.kili-routes th,
  table.kili-routes td {
    border: 1px solid #ccc;
    padding: 12px 15px;
    text-align: left;
  }

  table.kili-routes th {
    background-color: #f5f5f5;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    table.kili-routes {
      font-size: 14px;
    }
  }
</style>

<style>
  .trek-group {
    margin-bottom: 30px;
  }
  .trek-group h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #D88503;
  }
  .trek-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .trek-buttons a {
    background: #D88503;
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    transition: background 0.3s;
  }
  .trek-buttons a:hover {
    background: #2e7d32;
  }
</style>
