/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    color: #333;
    background: #f8f1e9;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    color: #1a3c34;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

h1 { font-size: 3.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { font-size: 1rem; }

.text-center { text-align: center; }
.text-primary { color: #1a3c34; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: #1a3c34;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

header .row {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 8px;
}

.logo span {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    padding: 5px 8px;
    transition: color 0.3s;
}

nav ul li a:hover { color: #f5c518; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Button Styles */
.btn {
    background: linear-gradient(45deg, #f5c518, #ffd700);
    color: rgb(27, 25, 25);
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.btn:hover {
    background: linear-gradient(45deg, #e6b800, #f5c518);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f5c518;
    color: #1a3c34;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f5c518;
    color: rgb(34, 30, 30);
}

/* Section Styles */
.section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(59, 139, 109, 0.3), rgba(248, 225, 168, 0.3));
}

.section p.intro {
    font-size: 0.95rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section--hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 110px 0 40px 0; /* Increased top padding */
}

.section--hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.section--hero .container {
    position: relative;
    z-index: 2;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.card h3 { font-size: 1.3rem; margin: 10px 0; }
.card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { font-size: 0.9rem; margin-bottom: 10px; }
.card i { font-size: 1.8rem; color: #1a3c34; margin-bottom: 8px; }

/* Image-Content Row */
.image-content-row {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.image-content-row .content {
    padding: 15px;
}

.image-content-row .content h3 { font-size: 1.3rem; margin-bottom: 8px; }
.image-content-row .content p { font-size: 0.9rem; }

.image-content-row .image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Welcome Section */
.welcome {
    position: relative;
    padding: 70px 0;
    margin-top: 70px;
    min-height: 500px;
    overflow: hidden;
}

.welcome video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.welcome-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.welcome-left {
    padding: 20px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin-top: 120px;
}

.welcome-left h1 {
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.welcome-left h1 .welcome-prefix {
    font-family: 'Playfair Display', serif;
    color: #f5c518;
    font-size: 3.2rem;
}

.welcome-left p {
    font-size: 1.5rem;
    color: #f5c518; /* Gold color */
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7); /* Lighter shadow for better contrast */
    font-family: 'Lora', serif; /* A more elegant font */
}

/* Page-Specific Header Fixes */
.page-about .section,
.page-activities .section,
.page-safari-packages .section,
.page-trekking .section,
.page-destinations .section,
.page-accommodations .section,
.page-vehicles .section,
.page-testimonials .section,
.page-booking .section {
    margin-top: 70px;
}

/* Footer Styles */
footer {
    background: #1a3c34;
    color: white;
    padding: 30px 0 15px;
}

.footer-column h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #f5c518;
    margin-bottom: 10px;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li { margin-bottom: 6px; }

.quick-links li a {
    color: white;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.quick-links li a:hover { color: #f5c518; }

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: white;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.social-links a:hover { color: #f5c518; }

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
}

.footer-bottom a:hover { color: #f5c518; }

/* Media Queries (990px) */
@media (max-width: 990px) {
    header { height: 60px; }

    .hamburger { display: none; }

    nav {
        display: flex !important;
        position: static;
        width: auto;
        background: none;
        padding: 0;
        transform: none;
        box-shadow: none;
        flex-grow: 1;
        justify-content: flex-end;
    }
    
    nav ul {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    nav ul li a {
        font-size: 0.95rem;
        padding: 6px 12px;
    }

    .logo a {
        margin-left: 0;
    }
}

/* --- Simu layout for header from 1149px and below --- */
@media (max-width: 1149px) {
    header { height: 60px; }
    .hamburger { display: block; margin-left: auto; }
    nav {
        display: none;
        position: fixed;
        top: 60px;
        right: 0;
        width: 260px;
        background: #1a3c34;
        padding: 15px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        box-shadow: 0 2px 12px #0005;
    }
    nav.active {
        display: block;
        transform: translateX(0);
    }
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    nav ul li a {
        font-size: 1rem;
        padding: 10px 14px;
        display: block;
    }
    .logo a {
        margin-left: 8px;
    }
    .logo span {
        white-space: nowrap;
    }
}

/* Ondoa simu layout kwenye 767px, rules zimesogezwa juu */
@media (max-width: 767px) {
    /* Ziacha rules nyingine za content, usirudie header/nav/hamburger */
    .page-about .section,
    .page-activities .section,
    .page-safari-packages .section,
    .page-trekking .section,
    .page-destinations .section,
    .page-accommodations .section,
    .page-vehicles .section,
    .page-testimonials .section,
    .page-booking .section {
        margin-top: 60px;
    }
    .section { padding: 40px 0; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1rem; }
    p { font-size: 0.9rem; }
    .section p.intro { font-size: 0.9rem; max-width: 95%; }
    .btn, .btn-secondary { padding: 6px 15px; font-size: 0.8rem; }
    .card img { height: 150px; }
    .card h3 { font-size: 1.2rem; }
    .card h4 { font-size: 1rem; }
    .card p { font-size: 0.85rem; }
    .card i { font-size: 1.6rem; }
    .image-content-row { flex-direction: column; margin-bottom: 15px; }
    .image-content-row .content { padding: 10px; order: 1; }
    .image-content-row .content h3 { font-size: 1.2rem; }
    .image-content-row .content p { font-size: 0.85rem; }
    .image-content-row .image { order: 2; width: 100%; }
    .image-content-row .image img { height: 180px; }
    .welcome { padding: 50px 10px; min-height: 400px; margin-top: 60px; }
    .welcome-left { padding: 15px; max-width: 95%; }
    .welcome-left h1 { font-size: 2rem; }
    .welcome-left h1 .welcome-prefix { font-size: 2.2rem; }
    .welcome-left p { font-size: 1.2rem; max-width: 95%; }
    .section--hero { padding: 50px 0; min-height: 300px; }
    .section--hero h1 { font-size: 1.8rem; }
    .section--hero p { font-size: 0.9rem; }
    footer { padding: 20px 0 10px; }
    .footer-column { text-align: center; margin-bottom: 15px; }
    .social-links { justify-content: center; }
}

/* Media Queries (576px) */
@media (max-width: 576px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 0.95rem; }
    p { font-size: 0.85rem; }

    .section p.intro { font-size: 0.85rem; max-width: 95%; }

    .btn, .btn-secondary { font-size: 0.75rem; }

    .card img { height: 120px; }
    .card h3 { font-size: 1.1rem; }
    .card h4 { font-size: 0.95rem; }
    .card p { font-size: 0.8rem; }
    .card i { font-size: 1.5rem; }

    .image-content-row .content { padding: 8px; }
    .image-content-row .content h3 { font-size: 1.1rem; }
    .image-content-row .content p { font-size: 0.8rem; }
    .image-content-row .image img { height: 150px; }

    .welcome { padding: 40px 10px; min-height: 350px; }
    .welcome-left { padding: 10px; }
    .welcome-left h1 { font-size: 1.8rem; }
    .welcome-left h1 .welcome-prefix { font-size: 2rem; }
    .welcome-left p { font-size: 1rem; }

    .section--hero { padding: 40px 0; min-height: 250px; }
    .section--hero h1 { font-size: 1.6rem; }
    .section--hero p { font-size: 0.85rem; }

    .footer-column h3 { font-size: 1rem; }
    .quick-links li a { font-size: 0.85rem; }
    .footer-bottom p { font-size: 0.8rem; }
    .social-links a { font-size: 1.2rem; }
}

/* --- Modernized Itinerary Detail Layout --- */
.itinerary-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.itinerary-hero-img {
  flex: 2 1 350px;
  min-width: 320px;
  max-width: 600px;
  border-radius: 18px;
  box-shadow: 0 6px 32px #0002, 0 1.5px 6px #1a3c3422;
  width: 100%;
  transition: transform 0.25s cubic-bezier(.4,2,.6,1);
}
.itinerary-hero-img:hover {
  transform: scale(1.025) rotate(-1deg);
}
.itinerary-quickinfo {
  flex: 1 1 240px;
  min-width: 220px;
  background: linear-gradient(135deg, #eafaf1 60%, #f5c51822 100%);
  border-radius: 16px;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 2px 12px #0001;
  margin-top: 12px;
  border: 1.5px solid #e0e0e0;
}
.itinerary-quickinfo h4 {
  margin-top: 0;
  font-size: 1.15em;
  color: #1a3c34;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.itinerary-quickinfo ul li {
  margin-bottom: 7px;
  font-size: 1em;
  color: #2a4d2e;
}
.itinerary-route-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 36px auto;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 2px 16px #0001;
  border-radius: 12px;
  overflow: hidden;
}
.itinerary-route-table th, .itinerary-route-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  font-size: 1.05em;
}
.itinerary-route-table th {
  background: linear-gradient(90deg, #f5c51833 0%, #eafaf1 100%);
  color: #1a3c34;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.itinerary-route-table tr:last-child td {
  border-bottom: none;
}
.itinerary-day {
  margin-bottom: 22px;
  border-left: 5px solid #f5c518;
  background: linear-gradient(90deg, #fffbe6 60%, #eafaf1 100%);
  padding: 20px 26px 14px 24px;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 2px 8px #0001;
  transition: box-shadow 0.2s;
}
.itinerary-day:hover {
  box-shadow: 0 4px 18px #f5c51833;
}
.itinerary-day h3 {
  margin-top: 0;
  color: #1a3c34;
  font-size: 1.13em;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.itinerary-inclusions {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 36px auto;
}
.itinerary-inclusions .col {
  flex: 1 1 250px;
  min-width: 220px;
  background: linear-gradient(135deg, #eafaf1 60%, #fffbe6 100%);
  border-radius: 12px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 10px #0001;
  border: 1.5px solid #e0e0e0;
}
.itinerary-inclusions .col h4 {
  color: #1a3c34;
  font-weight: 700;
  margin-bottom: 10px;
}
.itinerary-inclusions .col ul {
  padding-left: 0;
  list-style: none;
}
.itinerary-inclusions .col ul li {
  margin-bottom: 8px;
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.itinerary-inclusions .col:first-child ul li::before {
  content: "✔️";
  color: #2a4d2e;
  font-size: 1em;
  margin-right: 5px;
}
.itinerary-inclusions .col:last-child ul li::before {
  content: "❌";
  color: #c0392b;
  font-size: 1em;
  margin-right: 5px;
}
.itinerary-book-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f5c518 60%, #eafaf1 100%);
  color: #1a3c34;
  font-size: 1.13em;
  padding: 16px 44px;
  border-radius: 8px;
  margin: 36px auto 0 auto;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 18px #f5c51833, 0 2px 8px #0002;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}
.itinerary-book-btn:hover {
  background: linear-gradient(90deg, #eafaf1 0%, #f5c518 100%);
  color: #fff;
  box-shadow: 0 6px 24px #f5c51855;
}
@media (max-width: 800px) {
  .itinerary-hero { flex-direction: column; align-items: stretch; }
  .itinerary-inclusions { flex-direction: column; gap: 18px; }
  .itinerary-hero-img { max-width: 100%; }
}

/* --- Hero Section for Itinerary --- */
.itinerary-hero-section {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a3c34;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 0 40px 0; /* Increased top padding */
  margin-bottom: 0;
}
.itinerary-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #1a3c34cc 40%, #00000088 100%);
  z-index: 1;
  border-radius: 0 0 32px 32px;
}
.itinerary-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 2vw;
}
.itinerary-hero-content h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px #0008;
}
.itinerary-hero-content .itinerary-hero-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 18px;
  flex-wrap: nowrap;
  max-width: 100vw;
  overflow-x: auto;
}

.itinerary-hero-badge {
  background: #f5c518ee;
  color: #1a3c34;
  font-weight: 700;
  border-radius: 16px;
  padding: 12px 40px;
  font-size: 1em;
  box-shadow: 0 2px 8px #0002;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: inline-block;
}
.itinerary-hero-content p {
  font-size: 1.15em;
  color: #fff;
  text-shadow: 0 1px 6px #000a;
  margin-bottom: 0;
}

/* --- Improved Tabs Navigation (Pill Style) --- */
.itinerary-tabs-nav {
  position: sticky;
  top: 70px;
  z-index: 20;
  background: #fff;
  box-shadow: 0 2px 12px #0001;
  display: flex;
  justify-content: center;
  gap: 12px;
  border-bottom: 2px solid #f5c51844;
  padding: 0 0 0 0;
  min-height: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.itinerary-tabs-nav::-webkit-scrollbar { display: none; }
.itinerary-tab-link {
  display: inline-block;
  padding: 12px 28px 10px 28px;
  color: #1a3c34;
  font-weight: 700;
  font-size: 1.08em;
  text-decoration: none;
  background: #f7f7f7;
  border: none;
  border-radius: 32px 32px 0 0;
  margin-bottom: -2px;
  box-shadow: 0 1px 4px #0001;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  position: relative;
}
.itinerary-tab-link.active, .itinerary-tab-link:focus {
  color: #fff;
  background: linear-gradient(90deg, #f5c518 60%, #eafaf1 100%);
  border-bottom: 3px solid #f5c518;
  box-shadow: 0 4px 16px #f5c51833;
  z-index: 2;
}
.itinerary-tab-link:hover:not(.active) {
  background: #eafaf1;
  color: #f5c518;
}
@media (max-width: 800px) {
  .itinerary-tabs-nav {
    gap: 6px;
    padding: 0 6px;
    min-height: 44px;
  }
  .itinerary-tab-link {
    padding: 8px 16px 7px 16px;
    font-size: 1em;
    border-radius: 22px 22px 0 0;
  }
}

/* --- Section Spacing --- */
.itinerary-section {
  padding: 48px 0 24px 0;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .itinerary-hero-section { min-height: 220px; padding: 70px 0 20px 0; }
  .itinerary-hero-content h1 { font-size: 1.5rem; }
  .itinerary-tabs-nav { top: 56px; }
  .itinerary-tab-link { padding: 10px 12px 8px 12px; font-size: 1em; }
  .itinerary-section { padding: 28px 0 12px 0; }
}

html {
  scroll-behavior: smooth;
}

/* --- Single Document Itinerary Layout (Updated for systematic alignment) --- */
.itinerary-single-layout {
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 16px #0001;
  margin-top: 0;
  padding-bottom: 40px;
}
.itinerary-row {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  margin: 40px 0 32px 0;
  flex-wrap: wrap;
}
.itinerary-overview {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 480px;
  margin-right: auto;
}
.itinerary-rates {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 340px;
  margin-left: 0;
}
.itinerary-overview h2, .itinerary-rates h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1a3c34;
}
.itinerary-rates > div {
  margin-top: 8px;
}
.itinerary-daybyday {
  margin: 32px 0 32px 0;
}
.itinerary-daybyday h2 {
  font-size: 1.3rem;
  color: #1a3c34;
  margin-bottom: 18px;
  text-align: center;
}
.itinerary-route-table {
  font-size: 0.97em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.itinerary-daybyday .itinerary-day h3 {
  font-size: 1.05em;
}
.itinerary-inclusions-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0 32px 0;
  flex-wrap: wrap;
}
.itinerary-inclusions-col, .itinerary-exclusions-col {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 380px;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 1px 6px #0001;
}
.itinerary-inclusions-col h2, .itinerary-exclusions-col h2 {
  font-size: 1.15rem;
  color: #1a3c34;
  margin-bottom: 10px;
  text-align: center;
}
.itinerary-inclusions-col ul, .itinerary-exclusions-col ul {
  padding-left: 18px;
  margin-bottom: 0;
}
.itinerary-howtoget {
  margin: 40px 0 0 0;
  background: #eafaf1;
  border-radius: 12px;
  padding: 28px 18px 18px 18px;
  box-shadow: 0 1px 6px #0001;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.itinerary-howtoget h2 {
  font-size: 1.15rem;
  color: #1a3c34;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .itinerary-row, .itinerary-inclusions-row {
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    align-items: stretch;
  }
  .itinerary-overview, .itinerary-rates, .itinerary-inclusions-col, .itinerary-exclusions-col {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .itinerary-inclusions-col h2, .itinerary-exclusions-col h2 {
    text-align: left;
  }
}

/* --- Hero Overview Improvements --- */
.itinerary-hero-content {
  padding-top: 36px;
  padding-bottom: 36px;
}
.itinerary-short-desc {
  font-size: 1.12em !important;
  max-width: 100vw !important;
  margin: 0 auto !important;
  opacity: 0.97;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  padding: 0 2vw;
  letter-spacing: 0.01em;
}

/* --- Top Cards Row for Itinerary (3 cards, responsive) --- */
.itinerary-topcards-row {
  display: flex;
  gap: 40px;
  margin: 48px 0 36px 0;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.itinerary-topcard {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #0001;
  padding: 24px 18px 18px 18px;
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.itinerary-topcard h2 {
  font-size: 1.15rem;
  color: #1a3c34;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.itinerary-topcard p, .itinerary-topcard ul {
  font-size: 0.98em;
  margin-bottom: 0.5em;
}
.itinerary-topcard ul {
  padding-left: 18px;
}
@media (max-width: 1200px) {
  .itinerary-topcards-row {
    gap: 18px;
    max-width: 100%;
  }
  .itinerary-topcard {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .itinerary-topcards-row {
    flex-direction: column;
    gap: 18px;
    max-width: 100%;
  }
  .itinerary-topcard {
    max-width: 100%;
    align-items: stretch;
  }
}

/* --- Highlights Card List: Remove dot, add check icon --- */
/*
.itinerary-highlights-card ul {
  list-style: none;
  padding-left: 0;
}
.itinerary-highlights-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 1em;
  line-height: 1.6;
}
.itinerary-highlights-card ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
  color: #1a3c34;
}
*/

/* Ensure highlights card uses gold dots like other lists */
.itinerary-highlights-card ul {
  list-style: disc inside;
  padding-left: 18px;
  margin-bottom: 0.5em;
}
.itinerary-highlights-card ul li {
  color: #1a3c34;
}
.itinerary-highlights-card ul li::marker {
  color: #f5c518;
  font-size: 1.2em;
}

/* --- Force remove dot and add icons for all itinerary lists --- */
.itinerary-single-layout ul,
.itinerary-single-layout ul li,
.itinerary-inclusions-col ul,
.itinerary-inclusions-col ul li,
.itinerary-exclusions-col ul,
.itinerary-exclusions-col ul li,
.itinerary-howtoget ul,
.itinerary-howtoget ul li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 0.5em;
}

/* Restore gold dots for topcard and highlights lists */
.itinerary-topcard ul,
.itinerary-highlights-card ul {
  list-style: disc inside !important;
  padding-left: 18px !important;
  margin-bottom: 0.5em;
}
.itinerary-topcard ul li,
.itinerary-highlights-card ul li {
  color: #1a3c34;
}
.itinerary-topcard ul li::marker,
.itinerary-highlights-card ul li::marker {
  color: #f5c518;
  font-size: 1.2em;
}

/* Inclusions, overview, highlights, rates, how to get there: gold dot */
.itinerary-inclusions-col ul,
.itinerary-topcard ul,
.itinerary-howtoget ul {
  color: #1a3c34;
}
.itinerary-inclusions-col ul li,
.itinerary-topcard ul li,
.itinerary-howtoget ul li {
  color: #1a3c34;
}
.itinerary-inclusions-col ul li::marker,
.itinerary-topcard ul li::marker,
.itinerary-howtoget ul li::marker {
  color: #f5c518;
  font-size: 1.2em;
}

/* Exclusions: red dot */
.itinerary-exclusions-col ul {
  color: #c0392b;
}
.itinerary-exclusions-col ul li {
  color: #c0392b;
}
.itinerary-exclusions-col ul li::marker {
  color: #c0392b;
  font-size: 1.2em;
}

/* How to get there: check icon */
.itinerary-howtoget ul li {
  /* Remove position, padding-left, and icon rules so gold dots show */
  /* position: relative; */
  /* padding-left: 26px !important; */
  margin-bottom: 8px;
  font-size: 1em;
  line-height: 1.6;
}
.itinerary-howtoget ul li::before {
  /* Remove check icon */
  content: unset;
}

/* Topcard lists (overview, rates, highlights): check icon */
/*
.itinerary-topcard ul li {
  position: relative;
  padding-left: 26px !important;
  margin-bottom: 8px;
  font-size: 1em;
  line-height: 1.6;
}
.itinerary-topcard ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
  color: #1a3c34;
}
*/

/* Gold dots for all normal lists in itinerary layout, except inclusions and exclusions */
.itinerary-layout ul:not(.inclusions ul):not(.exclusions ul) {
  list-style-type: disc;
  list-style-position: inside;
  color: inherit;
  padding-left: 1.2em;
}
.itinerary-layout ul:not(.inclusions ul):not(.exclusions ul) li {
  position: relative;
  margin-bottom: 0.5em;
}
.itinerary-layout ul:not(.inclusions ul):not(.exclusions ul) li::marker {
  color: #D4AF37; /* gold */
  font-size: 1.2em;
}

/* Force gold dots for How to Get There section */
.itinerary-howtoget ul {
  list-style: disc inside !important;
  padding-left: 18px !important;
}
.itinerary-howtoget ul li {
  color: #1a3c34;
}
.itinerary-howtoget ul li::marker {
  color: #f5c518 !important;
  font-size: 1.2em;
}

/* Force gold dots for How to Get There and Top Cards Row sections */
.itinerary-howtoget ul,
.itinerary-howtoget ul li,
.itinerary-topcard ul,
.itinerary-topcard ul li {
  list-style: disc inside !important;
  padding-left: 18px !important;
}
.itinerary-howtoget ul li::marker,
.itinerary-topcard ul li::marker {
  color: #f5c518 !important;
  font-size: 1.2em;
}

/* --- Improved Gallery Page Styles --- */
.gallery-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45)), url('../images/Image01.webp') center/cover no-repeat;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 0px 2px #fff, 0 0 24px #fff8;
}
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
}

.gallery-section {
  padding: 40px 0 60px 0;
  background: #f8f9fa;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.gallery-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.gallery-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.gallery-thumb-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

/* Lightbox Modal - improved for fullscreen image */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  text-align: center;
}
.lightbox-modal.active {
  display: flex;
}
.lightbox-content {
  max-width: 98vw;
  max-height: 98vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  margin: 0;
  background: none;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 0 12px;
  line-height: 1.2;
}
.lightbox-close:hover {
  color: #ffd700;
}

@media (max-width: 700px) {
  .lightbox-close {
    top: 10px;
    right: 16px;
    font-size: 2rem;
    padding: 0 8px;
  }
}

@media (max-width: 900px) {
  .gallery-hero {
    min-height: 220px;
  }
  .hero-title {
    font-size: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 0px 2px #fff, 0 0 12px #fff8;
  }
  .gallery-section {
    padding: 20px 0 30px 0;
  }
  .gallery-thumb-wrapper {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 600px) {
  .gallery-hero {
    min-height: 140px;
  }
  .hero-title {
    font-size: 1.3rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.45), 0 0px 2px #fff, 0 0 8px #fff8;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .gallery-thumb-wrapper {
    aspect-ratio: 4/3;
  }
}

/* --- Contact Page Styles --- */
.contact-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 48px;
}
.contact-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45)), url('../images/Image36.webp') center/cover no-repeat;
  z-index: 1;
}
.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.contact-section {
  background: #f8f9fa;
  padding: 50px 0 60px 0;
}
.contact-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-form-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 28px 28px 28px;
  max-width: 420px;
  width: 100%;
  margin-bottom: 24px;
}
.contact-form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.contact-form .form-group {
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  background: #f7f7f7;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #009688;
  outline: none;
}
.contact-form button.btn {
  background: #009688;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button.btn:hover {
  background: #00796b;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 260px;
  max-width: 340px;
  width: 100%;
}
.contact-info-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 18px;
}
.contact-info-card h3 {
  font-size: 1.1rem;
  margin: 0 0 4px 0;
  font-weight: 700;
}
.contact-info-card p {
  margin: 0;
  color: #444;
  font-size: 1rem;
}
.contact-icon {
  font-size: 2rem;
  color: #009688;
  margin-top: 2px;
  min-width: 32px;
  text-align: center;
}
.contact-info-card.social .contact-icon {
  color: #3b5998;
}
.social-link {
  color: #009688;
  font-size: 1.3rem;
  margin-right: 10px;
  transition: color 0.2s;
}
.social-link:last-child {
  margin-right: 0;
}
.social-link:hover {
  color: #00796b;
}

@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .contact-info-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    max-width: 100%;
  }
  .contact-info-card {
    flex: 1 1 180px;
    min-width: 160px;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 24px 0 30px 0;
  }
  .contact-form-card {
    padding: 18px 8px 16px 8px;
  }
  .contact-info-cards {
    flex-direction: column;
    gap: 12px;
  }
  .contact-info-card {
    padding: 12px 8px;
  }
}

/* --- New Contact Page Layout Styles --- */
.contact-info-row-section {
  background: #f8f9fa;
  padding: 36px 0 0 0;
}
.contact-info-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.contact-info-card.big {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-info-card.big:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.03);
}
.contact-info-card.big .contact-icon {
  font-size: 2.2rem;
  color: #009688;
  min-width: 40px;
  text-align: center;
}
.contact-info-card.big h3 {
  font-size: 1.1rem;
  margin: 0 0 4px 0;
  font-weight: 700;
}
.contact-info-card.big p {
  margin: 0;
  color: #444;
  font-size: 1rem;
}

.contact-section-centered {
  background: #f8f9fa;
  padding: 0 0 60px 0;
}
.contact-form-card-centered {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 38px 36px 28px 36px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form-card-centered h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: 700;
  text-align: center;
}
.contact-form .form-group {
  margin-bottom: 18px;
  width: 100%;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 1rem;
}
.contact-form label i {
  color: #009688;
  margin-right: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  background: #f7f7f7;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #009688;
  outline: none;
}
.contact-form button.btn {
  background: #009688;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.contact-form button.btn i {
  margin-right: 6px;
}
.contact-form button.btn:hover {
  background: #00796b;
}
.contact-social-row {
  margin-top: 22px;
  text-align: center;
}
.contact-social-row .social-link {
  color: #009688;
  font-size: 1.6rem;
  margin: 0 12px;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.contact-social-row .social-link:hover {
  color: #00796b;
  transform: scale(1.18);
}

@media (max-width: 900px) {
  .contact-info-row {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .contact-info-card.big {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 0;
  }
  .contact-form-card-centered {
    padding: 22px 8px 16px 8px;
    margin-top: 24px;
  }
}
@media (max-width: 600px) {
  .contact-info-row-section {
    padding: 18px 0 0 0;
  }
  .contact-section-centered {
    padding: 0 0 30px 0;
  }
  .contact-form-card-centered {
    padding: 12px 2vw 10px 2vw;
    margin-top: 16px;
  }
  .contact-info-card.big {
    padding: 14px 8px;
  }
  .contact-social-row .social-link {
    font-size: 1.3rem;
    margin: 0 7px;
  }
}

.whatsapp-btn {
  background: #25d366;
  color: #fff !important;
  border-radius: 6px;
  padding: 6px 14px 6px 10px;
  font-weight: 700;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  box-shadow: 0 2px 8px rgba(34,139,34,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.whatsapp-btn i {
  font-size: 1.2em;
  margin-right: 4px;
}
.whatsapp-btn:hover, .whatsapp-btn:focus {
  background: #128c7e;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(34,139,34,0.13);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .row .logo,
  .logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
  }
  .logo a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
  }
  .logo img {
    height: 38px !important;
    width: auto !important;
    margin: 0 8px 0 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }
  .logo span {
    display: inline-block !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    color: white !important;
    margin: 0 !important;
    letter-spacing: 0.5px !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }
}
@media (max-width: 1024px) {
  .itinerary-hero-content .itinerary-hero-badges {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    overflow-x: visible;
  }
  .itinerary-hero-badge {
    padding: 10px 24px;
    font-size: 1em;
    margin-bottom: 8px;
  }
  .itinerary-short-desc {
    padding: 0 6vw;
    font-size: 1.05em !important;
  }
}

/* Only hero heading and overview (intro) on about page should be white */
.page-about .section--hero h1 {
  color: #fff;
  text-shadow: 0 2px 12px #0008;
}
.page-about .section--hero .intro {
  color: #fff;
  text-shadow: 0 1px 6px #000a;
}
.page-activities .section--hero h1 {
  color: #fff;
  text-shadow: 0 2px 12px #0008;
}
.page-activities .section--hero .intro {
  color: #fff;
  text-shadow: 0 1px 6px #000a;
}

/* === Mobile Header Hide/Show Animation === */
@media (max-width: 991px) {
  header {
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    will-change: transform;
  }
  header.header--hidden {
    transform: translateY(-100%);
    box-shadow: none;
  }
  header.header--visible {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
}