
/* All classes prefixed with "marangu-" to avoid conflicts */
.marangu-section {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}
.marangu-title {
  font-size: 32px;
  color: #333;
  text-align: center;
}
.marangu-row {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.marangu-col-full {
  flex: 0 0 100%;
  padding: 12px;
  box-sizing: border-box;
}
#kilimanjaro-map {
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: #f0f0f0;
  z-index: 0;
  position: relative;
}
.marangu-moving-arrow { background: transparent; border: none; }
/* Responsive map height on smaller screens */
@media (max-width: 868px) {
  #kilimanjaro-map {
    height: 450px;
  }
}

/* Animation for fade-in effect */
@keyframes fadeIn {
  99% { visibility: hidden; }
  100% { visibility: visible; }
}
/* Clearfix for floated elements */
.clearfix:after, .operator__header:after, .tabs:after, .row:after, .content:after {
  content: "";
  display: table;
  clear: both;
}
/* Reset default styles */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  font-size: 16px;
  background-color: #f2f2f2;
  font-family: "Noto Sans", "Arial", sans-serif;
  color: #444;
  height: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 16px;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  font: inherit;
}
/* Typography */
b, strong, h1, h2, h3, h4, .strong {
  font-weight: 600;
}
h1 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #2a7018;
  margin-top: 0.5rem;
}
.serif {
  font-family: "Gentium Basic", serif;
}
.sans {
  font-family: "Noto Sans", "Arial", sans-serif;
}
/* Links */
a, .a {
  display: inline;
  background: none;
  border: none;
  color: #0378a0;
  text-decoration: none;
  cursor: pointer;
}
.a {
  font-size: .9375rem;
  line-height: 1.25rem;
  font-weight: normal;
}
.a:focus {
  outline: none;
  text-decoration: underline;
}
a.txt--underline, .a--underlined {
  text-decoration: underline;
}
.a--dashed {
  border-bottom: 1px dashed;
}
.a--dotted {
  color: #444;
  border-bottom: 1px dotted;
}
@media(hover: hover) {
  a:not(.a--dashed):not(.a--dotted):not(.a--underlined):not(a.wildlife):hover, .a:not(.a--dashed):not(.a--dotted):not(.a--underlined):not(a.wildlife):hover {
    text-decoration: underline;
  }
  .a--underlined:hover {
    text-decoration: none;
  }
}
/* Colors */
.sb-darkgrey { color: #444; }
.sb-grey { color: #b3b3b3; }
.sb-mediumgrey { color: #666; }
.sb-green { color: #2a7018; }
.sb-red { color: #a50a08; }
.sb-white { color: #fff; }
/* Text Styles */
.strikethrough { text-decoration: line-through; }
.fs-12 { font-size: .75rem; }
.fs-13 { font-size: .8125rem; }
.fs-14 { font-size: .875rem; }
.fs-18 { font-size: 1.125rem; }
.fs-20 { font-size: 1.25rem; }
.fs-24 { font-size: 1.5rem; line-height: 1.875rem; }
.fs-34 { font-size: 2.125rem; line-height: 2.375rem; }
.weight-normal { font-weight: normal !important; }
.weight-bold { font-weight: bold !important; }
.nowrap { white-space: nowrap; }
.center { text-align: center; }
.truncated {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100% !important;
  max-width: 100%;
  min-width: 0 !important;
  display: inline-block !important;
}
.truncated--inline { width: auto !important; }
/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}
.container--main {
  padding: .9375rem 0 1.875rem;
  width: auto;
  text-align: left;
}
.container--main img {
  max-width: 100%;
}
.container--main--white {
  background: #fff;
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0 .625rem 1.875rem;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, .18);
}
.container--padded {
  padding: 1.25rem .625rem;
}
.container__unpad {
  margin: 0 -0.625rem;
}
.container--hero {
  position: relative;
  z-index: 1;
  margin-top: -0.9375rem;
}
.container--hero:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
}
.container--hero__heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 40vw;
  z-index: 1;
  color: #fff;
  padding: 0 0 .625rem;
  text-shadow: 1px 1px 5px #000;
  font-family: "Gentium Basic", serif;
}
.container--hero__text {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1.25rem;
  margin-bottom: -1.25rem;
  background: #fff;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, .18);
}
.container--hero__text p:not(:last-child) {
  margin-bottom: 1.375rem;
}
.container--hero__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  height: 40vw;
  width: 100%;
  object-fit: cover;
}
.content {
  background-color: #fff;
  display: block;
  color: #444;
  z-index: 10;
  padding: .625rem;
}
.content--tabbed {
  padding: 0 !important;
}
/* Flexbox and Grid */
.row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.col {
  padding-left: .625rem;
  padding-right: .625rem;
  float: left;
  height: 100%;
}
.col-6 { width: 50%; }
.col-9-5 { width: 79.1666666667%; }
.col--shrink { width: auto; }
.col--grow { float: none; width: auto; overflow: hidden; }
.flex {
  display: flex;
}
.flex__item, .flex>* {
  display: flex;
  white-space: nowrap;
}
.flex--center { justify-content: center; }
.flex--multiline { flex-wrap: wrap; white-space: normal; }
.flex--gutter { margin: 0 -0.625rem; }
.flex--gutter .flex__item, .flex--gutter>* {
  padding: 0 .625rem !important;
}
.flex--gutter-2d {
  margin: 0 -0.625rem -0.9375rem;
  transform: translateY(-0.46875rem);
}
.flex--gutter-2d .flex__item, .flex--gutter-2d>* {
  padding: .46875rem .625rem;
}
.flex--equal {
  justify-content: space-between;
}
.flex--equal .flex__item {
  display: block;
}
.flex__shrink {
  flex-grow: 0;
}
.flex__grow {
  flex-grow: 1;
  min-width: 0;
}
/* Tabs - Reduced font sizes progressively for better fit while remaining readable */
.tourtabs {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tourtab {
  position: relative;
  padding: 12px 20px;
  margin: 0 10px;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.tourtab:hover {
  color: #28a745;
  transform: translateY(-2px);
}
.tourtab.active {
  color: #28a745;
  font-weight: 700;
}
.tourtab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #28a745, #34c759);
  border-radius: 2px 2px 0 0;
}
.tourtab::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 4px;
  height: 4px;
  background-color: #28a745;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tourtab:hover::before,
.tourtab.active::before {
  opacity: 1;
}
/* Progressive font size reduction + horizontal scroll on small screens for perfect fit */
@media (max-width: 1200px) {
  .tourtab {
    font-size: 11.5px;
    padding: 11px 18px;
    margin: 0 8px;
  }
}
@media (max-width: 992px) {
  .tourtab {
    font-size: 11px;
    padding: 10px 16px;
    margin: 0 6px;
  }
}
@media (max-width: 768px) {
  .tourtabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 10px;
    justify-content: flex-start;
  }
  .tourtabs::-webkit-scrollbar {
    display: none;
  }
  .tourtab {
    font-size: 10px;
    padding: 8px 12px;
    margin: 0 4px;
    min-width: fit-content;
  }
}
@media (max-width: 576px) {
  .tourtab {
    font-size: 9.5px;
    padding: 7px 10px;
    margin: 0 3px;
  }
}
@media (max-width: 480px) {
  .tourtab {
    font-size: 9px;
    padding: 6px 8px;
    margin: 0 2px;
  }
}
/* Titlebar */
.titlebar {
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
}
.titlebar h1 {
  font-size: 1.5rem;
  position: relative;
  top: -0.125rem;
}
.titlebar h2 {
  font-size: 1.125rem;
  position: relative;
  top: -0.25rem;
}
.titlebar .row {
  padding: .625rem 0;
}
/* Buttons */
.btn {
  border: 0;
  border-radius: .3125rem;
  font-weight: 600;
  font-size: 1rem;
  height: 2.25rem;
  line-height: 2.0625rem;
  width: 100%;
  color: #fff;
  padding-bottom: .3125rem;
  cursor: pointer;
  text-shadow: 1px 1px 1px #333;
  font-family: "Noto Sans", "Arial", sans-serif;
  background-color: #2a7018;
  border-bottom: 1px solid #1a4d10;
  border-top: 1px solid #2a7018;
}
.btn--white {
  background-color: #fff;
  border: 1px solid #2a7018;
  color: #2a7018;
  text-shadow: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, .18);
}
.btn--white:active {
  box-shadow: 0 0 6px rgba(0, 0, 0, .18) inset;
}
.btn--white.active {
  background-color: #f2f2f2;
  color: #2a7018;
  box-shadow: 0 0 0 rgba(0, 0, 0, .18);
  cursor: default;
}
.btn--white.inactive {
  background-color: #f2f2f2;
  color: #999;
  box-shadow: 0 0 0 rgba(0, 0, 0, .18);
  cursor: default;
  opacity: .5;
}
.btn--roundwhite {
  border: 1px solid #2a7018;
  text-shadow: none;
  font-weight: bold;
  background-color: #fff;
  color: #2a7018;
}
.btn--roundwhite[data-state=disabled], .btn--roundwhite[data-state=disabled]:hover {
  opacity: .5 !important;
  cursor: initial;
  background-color: #fff !important;
  color: #2a7018 !important;
}
@media(hover: hover) {
  .btn--white:hover {
    background-color: #f2f2f2;
  }
  .btn--roundwhite:hover {
    background-color: #2a7018;
    color: #fff;
  }
}
/* Sidebar */
.tour__sidebar {
  position: sticky;
  top: 10vh;
  z-index: 1000;
}
.tour-sidebar-wrapper {
  position: sticky;
  top: 100px;
  right: 0;
  align-self: flex-start;
  margin-left: 30px;
  width: 100%;
  max-width: 320px;
}
.tour-sidebar {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e0e0e0;
  width: 320px;
}
.sidebar-pricing {
  background-color: #f9fafb;
  color: #465b2d;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-pricing-mobile{
    display: none;
}
.price-amount {
  font-size: 28px;
  font-weight: 700;
  color: #2e7d32;
  display: block;
}
.price-per {
  font-size: 14px;
  color: #666;
}
.inclusions-link a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}
.customization-panel {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
}
.panel-title {
  text-align: center;
  margin: 0 0 15px 0;
  font-size: 18px;
  color: #333;
}
.customization-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.option-item {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.option-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 10px;
  border-radius: 4px;
}
.green-bg {
  background-color: #2e7d32;
  color: white;
}
.red-bg {
  background-color: #e63946;
  color: white;
}
.option-link {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  display: block;
}
.custom-select-wrapper {
  position: relative;
  width: 100%;
}
.custom-select-wrapper select {
  width: 100%;
  padding: 10px 30px 10px 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  appearance: none;
  color: #333;
}
.custom-select-wrapper select:invalid {
  color: #666;
}
.custom-select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path fill="%230066cc" d="M7 10l5 5 5-5z"/></svg>') no-repeat center;
  pointer-events: none;
}
.cta-button {
  width: 100%;
  padding: 12px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}
.cta-button:hover {
  background: #218838;
}
.cta-arrow {
  margin-left: 10px;
}
.benefits-section {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.benefit-icon {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 14px;
  flex-shrink: 0;
}
.benefit-text {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}
.benefit-text a {
  color: #2e7d32;
  text-decoration: none;
}
.concierge-section {
  padding: 20px;
  background-color: #f8faf8;
}
.concierge-badge {
  display: flex;
  gap: 12px;
}
.badge-content h4 {
  margin: 0 0 5px 0;
  font-size: 15px;
  color: #333;
}
.badge-content p {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}
.concierge-link {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}
/* Safari Content */
.safari__content__block--inclusions,
.safari__content__block--exclusions {
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #f9f9f9;
}
.safari__content__block--inclusions h2 {
  color: #2e7d32;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.safari__content__block--exclusions h2 {
  color: #d32f2f;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.list--safari {
  list-style: none;
  padding: 0;
}
.list--safari li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}
.list--safari li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
}
.safari__content__block--exclusions .list--safari li:before {
  content: "\2717";
  color: #d32f2f;
}
.txt--small.txt--muted {
  color: #757575;
  font-size: 0.85rem;
  font-style: italic;
}
.sbi--check-circle,
.sbi--cross-circle {
  margin-right: 8px;
  font-size: 1.2rem;
}
/* Responsive Design */
@media (min-width: 744px) {
  h1 {
    font-size: 1.875rem;
    line-height: 2.125rem;
  }
  .container--main[role=main]:not(.container--withsidebar),
  .container--padded {
    padding-left: .9375rem;
    padding-right: .9375rem;
  }
  .container--hero {
    margin: -0.9375rem -0.9375rem -1.875rem;
    padding: .9375rem;
  }
  .container--hero:after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5) 50%, transparent);
    padding: 0;
    height: 100%;
  }
  .container--hero__heading {
    padding: .625rem 0 1.25rem;
    height: auto;
  }
  .container--hero__text {
    margin-bottom: .9375rem;
    color: #fff;
    background: rgba(0, 0, 0, 0);
    padding: 0;
    box-shadow: none;
  }
  .content {
    padding: .625rem 1.875rem;
  }
}
@media (min-width: 970px) {
  h1 {
    font-size: 2.375rem;
    line-height: 2.5rem;
  }
  .container {
    max-width: 76.875rem;
  }
  .container--main--white {
    max-width: 73.75rem;
    margin: 0 auto;
  }
  .container--hero {
    max-width: none;
    padding: 3.125rem .9375rem 7.5rem;
  }
  .container--hero__text {
    font-size: 1rem;
    line-height: 1.625rem;
  }
}
#imgbackground{
}
@media (max-width: 768px) {
  #imgbackground {
    width: 90%;
    height: 100%;
    margin-left: 14px;
    display: block;
  }
}
@media (max-width: 768px) {
  .tour-sidebar-wrapper{
    margin: 25px;
    width: 336;
    margin-left: 3px;
  }
  .tour-sidebar {
    width: 336px;
  }
}
/* Default styling for sidebar-pricing */
.sidebar-pricing {
  background-color: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}
/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
  .sidebar-pricing {
    display: none;
    background-color: black;
    color: gold;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2147483647;
    isolation: isolate;
  }
  #pricec {
    color: black;
  }
  .sidebar-pricing.hidden {
    opacity: 0;
    pointer-events: none;
  }
}
/* Ensure the parent container doesn't interfere */
.tour-sidebar {
  position: relative;
}
/* Optional: Adjust footer styling */
footer {
  position: relative;
  z-index: 2001;
}
.customization-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
}
.option-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.option-icon {
  font-size: 18px;
  color: #a00;
}
.custom-select-wrapper select,
.custom-select-wrapper input[type="date"] {
  width: 100%;
  padding: 8px;
  font-size: 14px;
}
/* Zoom effect for accommodation images */
.gallery__preview--row img {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery__preview--row img:hover {
  transform: scale(1.1);
}
p {
  text-align: justify;
  text-justify: inter-word;
  word-spacing: -0.05em;
  letter-spacing: normal;
}
@media (max-width: 768px) {
  .imgpagehead img {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .imgpagehead.imgpagehead--tour#imgbackground {
    margin-top: 35px;
  }
}
@media (max-width: 768px) {
  .sidebar-pricing-mobile {
    display: block;
    background-color: white;
    color: gold;
    position: fixed;
    bottom: 0;
    left: 16px;
    right: 16px;
    z-index: 2000;
    isolation: isolate;
  }
  #pricec {
    color: black;
  }
  .sidebar-pricing-mobile.hidden {
    opacity: 0;
    pointer-events: none;
  }
}
      .section-title {
        font-size: clamp(2.2rem, 4vw, 2.8rem);
        line-height: 1.2;
        color: #355e3b;
        font-weight: 800;
        margin: 60px 0 35px 0;
        text-align: left;
        position: relative;
        padding-bottom: 25px;
      }
      .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 120px;
        height: 6px;
        background-color: #c19b76;
        border-radius: 4px;
      }
      .section-title::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 3px;
        width: 280px;
        height: 2px;
        background-color: rgba(193, 155, 118, 0.4);
      }
      .section-title .sbi {
        margin-right: 15px;
        font-size: 1.4em;
        vertical-align: middle;
      }
    
    .pdf-download {
        text-align: center;
        max-width: 100%;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .pdf-download {
            display: flex;
            justify-content: center;
        }
    }
    .download-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        background-color: #465b2d;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        text-decoration: none;
        white-space: nowrap;
        max-width: 100%;
        box-sizing: border-box;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: background-color 0.3s, box-shadow 0.3s;
    }
    .download-btn.sticky {
        position: fixed;
        top: 123px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: calc(100% - 20px);
    }
    .download-btn:hover {
        background-color: #33421f;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .download-btn:active {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .download-btn svg {
        width: 20px;
        height: 20px;
        color: #ffffff;
        flex-shrink: 0;
    }
    .modal {
        display: none;
        position: fixed;
        z-index: 1001;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        align-items: center;
        justify-content: center;
    }
    .modal-content {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        width: 90%;
        max-width: 400px;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        position: relative;
        min-height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .modal-content form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .close {
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
    }
    .close:hover {
        color: #000;
    }
    .modal-content h2 {
        margin-top: 0;
        font-size: 20px;
        color: #333;
    }
    .modal-content p {
        margin: 10px 0 20px;
        color: #666;
    }
    .modal-content label {
        font-size: 14px;
        color: #333;
    }
    .modal-content input {
        padding: 10px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 4px;
        outline: none;
    }
    .modal-content input:focus {
        border-color: #465b2d;
    }
    .submit-btn {
        padding: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        background-color: #465b2d;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    .submit-btn:hover {
        background-color: #33421f;
    }
    @media (max-width: 480px) {
        .download-btn {
            padding: 8px 12px;
            font-size: 12px;
            gap: 4px;
        }
        .download-btn svg {
            width: 16px;
            height: 16px;
        }
        .pdf-download {
            padding: 6px 8px;
        }
        .modal-content {
            padding: 15px;
        }
        .modal-content h2 {
            font-size: 18px;
        }
        .modal-content p {
            font-size: 14px;
        }
        .modal-content input,
        .submit-btn {
            font-size: 12px;
            padding: 8px;
        }
    }

  /* Slightly taller on mobile for better coverage */
  #tour-route-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #f0f0f0;
    height: 750px;
    position: relative;
  }
  @media (max-width: 1400px) { #tour-route-map { height: 700px; } }
  @media (max-width: 1200px) { #tour-route-map { height: 650px; } }
  @media (max-width: 992px) { #tour-route-map { height: 600px; } }
  @media (max-width: 868px) { #tour-route-map { height: 550px; } }
  @media (max-width: 768px) { #tour-route-map { height: 520px; } }
  @media (max-width: 576px) { #tour-route-map { height: 500px; } }
  @media (max-width: 480px) { #tour-route-map { height: 480px; } }
  @media (max-width: 360px) { #tour-route-map { height: 460px; } }
  /* Title responsive */
  .route-map-title {
    text-align: left;
    margin-left: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
  }
  @media (max-width: 992px) { .route-map-title { margin-left: 15px; font-size: 30px; } }
  @media (max-width: 768px) { .route-map-title { margin-left: 12px; font-size: 28px; } }
  @media (max-width: 480px) { .route-map-title { font-size: 26px; margin-left: 10px; } }
  /* HR responsive */
  .route-map-hr {
    border-top: 1px solid #ddd;
    margin: 15px 20px;
  }
  @media (max-width: 768px) { .route-map-hr { margin: 12px 15px; } }
  /* Tooltip - lighter text, smaller size */
  .route-tooltip {
    background: rgba(70, 91, 45, 0.97) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 400 !important;
    font-size: 9px !important;
    padding: 4px 7px !important;
    border-radius: 8px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    white-space: nowrap;
    max-width: none !important;
  }
  @media (max-width: 768px) {
    .route-tooltip {
      font-size: 8px !important;
      padding: 3px 5px !important;
    }
  }
  .custom-dot-icon { background: transparent; border: none; }
  .leaflet-control-attribution { font-size: 10px; background: rgba(255,255,255,0.7); }
  /* Force map elements to stay below any fixed/sticky header when scrolling */
  #tour-route-map .leaflet-tile-pane { z-index: 50 !important; }
  #tour-route-map .leaflet-overlay-pane { z-index: 100 !important; }
  #tour-route-map .leaflet-shadow-pane { z-index: 150 !important; }
  #tour-route-map .leaflet-marker-pane { z-index: 200 !important; }
  #tour-route-map .leaflet-tooltip-pane { z-index: 250 !important; }
  #tour-route-map .leaflet-popup-pane { z-index: 300 !important; }

            .day {
                background: #ffffff;
                border-radius: 12px;
                margin: 0 15px 30px;
                box-shadow: 0 4px 16px rgba(0,0,0,0.1);
                overflow: hidden;
                transition: box-shadow 0.3s ease;
            }
            .day:hover {
                box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            }
            .day-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 18px 20px;
                cursor: pointer;
                user-select: none;
                font-weight: 700;
                font-size: 18px;
                color: #fff;
                transition: background 0.3s ease;
            }
            .day-header:hover {
                opacity: 0.92;
            }
            .day-header .title-text {
                font-size: 19px;
                line-height: 1.3;
            }
            .day-header .day-number {
                font-weight: normal;
                opacity: 0.9;
                margin-right: 8px;
            }
            .toggle-icon {
                font-size: 28px;
                font-weight: bold;
                min-width: 30px;
                text-align: center;
            }
            .day-content {
                overflow: hidden;
                transition: max-height 0.6s ease, padding 0.6s ease, opacity 0.5s ease;
                max-height: 0;
                opacity: 0;
                padding: 0 20px;
            }
            .day.open .day-content {
                max-height: 3000px;
                opacity: 1;
                padding: 0 20px 20px;
            }
            .day-content img {
                width: 100%;
                height: auto;
                max-height: 400px;
                object-fit: cover;
                border-radius: 8px;
                margin: 20px 0;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }
            .day-content .description {
                text-align: justify;
                font-size: 15.5px;
                line-height: 1.7;
                color: #444;
            }
            .day-content .description-title {
                font-size: 20px;
                color: #355e3b;
                margin: 0 0 15px;
                font-weight: 700;
            }
            .day-info {
                padding: 0 20px 25px;
                border-top: 1px dashed #ddd;
            }
            @media (max-width: 768px) {
                .day-header {
                    padding: 15px 18px;
                    font-size: 17px;
                }
                .day-header .title-text {
                    font-size: 18px;
                }
                .day-content img {
                    margin: 15px 0;
                }
            }
        
/* Hide the original sidebar booking form + benefits on mobile */
@media (max-width: 768px) {
    .tour-sidebar .customization-panel,
    .tour-sidebar .benefits-section {
        display: none;
    }
}
/* Hide the duplicated mobile version on desktop */
@media (min-width: 769px) {
    .mobile-booking-section {
        display: none;
    }
}
/* Base Styles (Desktop First) */
.mobile-booking-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    margin: 50px auto;
    max-width: 600px;
    padding: 30px;
    text-align: center;
    font-size: 1rem;
}
.mobile-booking-section .contact-info p {
    font-size: 1.75rem;
    color: #355e3b;
    margin-bottom: 20px;
    line-height: 1.3;
    word-wrap: break-word;
}
.cta-button {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    flex-wrap: wrap;
}
.mobile-booking-section .benefits-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 1rem;
}
/* Responsive Typography */
/* Tablets */
@media (max-width: 1024px) {
    .mobile-booking-section {
        padding: 25px;
        font-size: 0.95rem;
    }
    .mobile-booking-section .contact-info p {
        font-size: 1.5rem;
    }
}
/* Large Phones */
@media (max-width: 768px) {
    .mobile-booking-section {
        margin: 30px auto;
        padding: 20px;
        font-size: 0.9rem;
    }
    .mobile-booking-section .contact-info p {
        font-size: 1.25rem;
    }
    .cta-button {
        font-size: 0.85rem;
        padding: 7px 10px;
    }
}
/* Small Phones */
@media (max-width: 480px) {
    .mobile-booking-section {
        margin: 20px auto;
        padding: 15px;
        font-size: 0.85rem;
    }
    .mobile-booking-section .contact-info p {
        font-size: 1.1rem;
    }
    .cta-button {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    .benefits-section {
        font-size: 0.85rem;
    }
}
/* Extra Small Devices */
@media (max-width: 360px) {
    .mobile-booking-section {
        padding: 10px;
        font-size: 0.8rem;
    }
    .mobile-booking-section .contact-info p {
        font-size: 1rem;
    }
    .cta-button {
        font-size: 0.75rem;
        padding: 5px 7px;
    }
}

        *, *::before, *::after {
            box-sizing: border-box;
        }
        .container-faq {
            width: 100%;
        }
        .content-faq {
            width: 100%;
            padding: 1.5rem;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .question {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed #eee;
        }
        .question:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .question h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 0.8rem;
            line-height: 1.4;
        }
        .question .answer {
            font-size: 1rem;
            line-height: 1.7;
            color: #444;
            margin-top: 0;
        }
        .question .answer p {
            margin-bottom: 1rem;
        }
        .question .answer p:last-child {
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .question h3 {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 480px) {
            .content-faq {
                padding: 1rem;
            }
        }
    

        :root {
            --gap: 32px;
            --card-padding: 28px;
            --card-radius: 16px;
            --shadow: 0 8px 24px rgba(0,0,0,0.09);
            --hover-shadow: 0 16px 40px rgba(0,0,0,0.14);
        }
        * { box-sizing: border-box; }
        .container-reviews {
            width: 100%;
            max-width: none;
            margin: 0 auto;
            padding: 0 5px;
        }
        h2 {
            text-align: left;
            margin: 2.5rem 0 3.5rem;
            color: #355e3b;
            font-size: clamp(2.2rem, 4vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            position: relative;
            padding-bottom: 25px;
        }
        h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 120px;
            height: 6px;
            background-color: #c19b76;
            border-radius: 4px;
        }
        h2::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 3px;
            width: 280px;
            height: 2px;
            background-color: rgba(193, 155, 118, 0.4);
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: var(--gap);
            padding: 0.5rem 0;
        }
        .review-card {
            background: white;
            border-radius: var(--card-radius);
            padding: var(--card-padding);
            box-shadow: var(--shadow);
            transition: all 0.28s ease;
            border: 1px solid #f1f5f9;
        }
        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--hover-shadow);
        }
        .reviewer {
            font-weight: 700;
            font-size: 1.22rem;
            margin-bottom: 0.6rem;
            color: #111827;
        }
        .location-info {
            margin-bottom: 1.2rem;
            color: #4b5563;
            font-size: 0.94rem;
        }
        .country-line {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 0.35rem;
        }
        .flag img {
            width: 22px;
            height: auto;
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.12);
        }
        .country-code {
            font-weight: 600;
            color: #374151;
        }
        .review-date {
            opacity: 0.85;
        }
        .rating {
            display: flex;
            align-items: center;
            margin: 1rem 0 1.2rem;
            font-size: 1.55rem;
            font-weight: 600;
        }
        .stars {
            color: #fbbf24;
            letter-spacing: 4px;
        }
        .score {
            margin-left: 0.9rem;
            color: #111827;
            font-size: 1.05rem;
            font-weight: 500;
        }
        .title {
            font-size: 1.38rem;
            font-weight: 700;
            color: #111827;
            margin: 0 0 1.1rem;
        }
        .text {
            color: #4b5563;
            margin-bottom: 1rem;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .text.expanded {
            -webkit-line-clamp: unset;
            overflow: visible;
            text-overflow: clip;
        }
        .toggle-link {
            color: #3b82f6;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.2s;
            display: inline-block;
            margin-top: 0.6rem;
        }
        .toggle-link:hover {
            color: #2563eb;
            text-decoration: underline;
        }
        @media (max-width: 1100px) {
            .reviews-grid { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 28px; }
            :root { --card-padding: 24px; }
        }
        @media (max-width: 850px) {
            .reviews-grid { grid-template-columns: 1fr; gap: 40px; padding: 0; }
            .review-card { margin-left: auto; margin-right: auto; max-width: 100%; width: 100%; padding: 24px; }
        }
        @media (max-width: 480px) {
            .review-card { padding: 20px; border-radius: 12px; }
            .title { font-size: 1.28rem; }
            .rating { font-size: 1.45rem; }
            .stars { letter-spacing: 3px; }
        }
    

    .related-tours-carousel {
        position: relative;
        max-width: 1200px;
        margin: 40px auto;
        padding: 70px 10px 0;
        overflow: hidden;
    }
    .carousel-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 30px;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        align-items: stretch;
    }
    .carousel-track::-webkit-scrollbar {
        display: none;
    }
    .tour-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        border-top: 4px solid #c19b76;
        min-height: 380px;
    }
    .tour-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    }
    .tour-card-content {
        padding: 30px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .tour-card-title {
        font-size: 19px;
        font-weight: 700;
        color: #355e3b;
        margin: 0 0 18px;
        line-height: 1.4;
    }
    .tour-card-desc {
        font-size: 15px;
        color: #333;
        line-height: 1.5;
        margin-bottom: 25px;
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        word-break: break-word;
    }
    .content-spacer {
        flex: 1;
    }
    .read-more-btn {
        margin-bottom: 10px;
        align-self: flex-start;
        padding: 12px 28px;
        background-color: #c19b76;
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        border-radius: 30px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .read-more-btn:hover {
        background-color: #a67c52;
        transform: translateY(-3px);
    }
    .tour-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%;
    }
    .carousel-btn {
        position: absolute;
        top: 20px;
        background: rgba(255,255,255,0.95);
        border: 2px solid #355e3b;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        font-size: 24px;
        font-weight: bold;
        color: #355e3b;
        cursor: pointer;
        z-index: 20;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .carousel-btn:hover {
        background: #355e3b;
        color: #ffffff;
        transform: scale(1.1);
        box-shadow: 0 8px 18px rgba(0,0,0,0.3);
    }
    .carousel-prev {
        left: 15px;
    }
    .carousel-next {
        right: 15px;
    }
    @media (min-width: 768px) {
        .tour-card {
            flex: 0 0 45%;
            min-height: 420px;
        }
        .carousel-btn {
            width: 45px;
            height: 45px;
            font-size: 28px;
        }
        .carousel-prev {
            left: 20px;
        }
        .carousel-next {
            right: 20px;
        }
    }
    @media (min-width: 1024px) {
        .tour-card {
            flex: 0 0 32%;
            min-height: 460px;
        }
        .carousel-btn {
            width: 48px;
            height: 48px;
            font-size: 30px;
        }
    }
    @media (max-width: 640px) {
        .related-tours-carousel {
            padding: 60px 10px 0;
        }
        .carousel-btn {
            width: 36px;
            height: 36px;
            font-size: 22px;
            top: 15px;
        }
        .carousel-prev {
            left: 8px;
        }
        .carousel-next {
            right: 8px;
        }
        .tour-card {
            flex: 0 0 88%;
            min-height: 360px;
        }
        .tour-card-content {
            padding: 25px;
        }
        .tour-card-desc {
            font-size: 14.8px;
            margin-bottom: 20px;
        }
        .read-more-btn {
            padding: 11px 24px;
            font-size: 15px;
        }
    }
