/*
Theme Name: Patjud Adventures
Theme URI: https://patjudadventures.com
Author: Patjud Adventures
Author URI: https://patjudadventures.com
Description: A premium, fully responsive WordPress theme for safari and travel companies. Features animated hero, tour cards with brief introductions, countdown timer, testimonials, and dynamic package tabs. Saleable and ready for use.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: travel, safari, responsive, full-width-template, custom-colors, custom-menu, featured-images, footer-widgets, theme-options
Text Domain: patjud-adventures
*/

:root {
    --primary-green: #1b4d3e;
    --accent-gold: #c5a059;
    --dark-footer: #111111;
    --text-grey: #888888;
    --sand-bg: #f9f7f2;
    --white: #ffffff;
    --dark: #222222;
}

/* ========================================
   THIRD-PARTY CONFLICT GUARD
   A separate plugin/snippet on this install injects an element with
   class "rmt-mobile-topbar" that duplicates this theme's own header
   (it is NOT part of this theme's markup). We target this EXACT
   class only — a wildcard match on any "rmt-" class risks hiding a
   legitimate wrapper (e.g. a page-content wrapper used by a slide
   menu plugin), which would blank out the whole page.

   The plugin's own CSS also uses !important on the same single-class
   selector, which makes it a specificity tie decided only by which
   stylesheet loads last — that's why it kept winning intermittently.
   Padding extra (harmless) ancestor selectors onto ours raises its
   specificity above a plain ".rmt-mobile-topbar" so it wins outright,
   regardless of load order. A MutationObserver in main.js backs this
   up in case the plugin re-shows it via inline styles later.
======================================== */
html body .rmt-mobile-topbar,
html body div.rmt-mobile-topbar {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--sand-bg);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========================================
   TYPOGRAPHY
======================================== */
p { margin-bottom: 1rem; color: #555; }

/* ========================================
   HEADER SECTION — topbar + main navbar,
   unified inside one sticky <header>
======================================== */
#site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    transition: all 0.4s ease;
}

#site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }

/* -- Top info strip -- */
.header-topbar {
    background-color: var(--primary-green);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.header-topbar .navbar-container {
    padding-top: 8px;
    padding-bottom: 8px;
}

.header-topbar .contact-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-topbar .contact-group span { display: flex; align-items: center; gap: 8px; }
.header-topbar .contact-group i { color: var(--accent-gold); }

.header-topbar .social-group { display: flex; gap: 12px; }

.header-topbar .social-group a {
    color: white;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: 0.3s;
}

.header-topbar .social-group a:hover { background: var(--accent-gold); }

/* -- Main navbar row -- */
.header-main {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

#site-header,
#site-header .navbar-container {
    display: flex !important;
}

.navbar-container {
    display: flex;
    flex-wrap: nowrap !important;      /* logo + nav must always share one row on desktop */
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
    width: 100%;
}

#site-header { flex-direction: column; }
.header-topbar .navbar-container,
.header-main .navbar-container { display: flex !important; }

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;              /* never let the logo get squeezed/pushed by the nav */
    min-height: 40px;            /* keeps row height stable even if the logo is briefly empty */
}

.site-logo img { height: 65px; width: auto; max-width: 100%; display: block; }
.site-logo .text-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-green);
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
}

/* Main Navigation — high-specificity, !important guards against any
   plugin/cache/legacy stylesheet that also targets WordPress's default
   `ul.menu` output and would otherwise knock the nav out of this row. */
.main-nav,
nav.main-nav {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    flex-shrink: 1;
    min-width: 0;
}

/* Logo + close button shown only inside the mobile off-canvas panel */
.main-nav-mobile-header { display: none; }

.main-nav ul,
.main-nav ul.menu,
.main-nav > ul,
#site-header .main-nav ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 5px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-nav ul li,
.main-nav ul.menu li {
    position: relative;
    display: flex !important;
    list-style: none !important;
}
.main-nav ul li a {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    border-radius: 4px;
    transition: 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a { color: var(--primary-green); }

.main-nav ul li a.btn-book-now {
    background: var(--accent-gold);
    color: white;
    padding: 10px 22px;
    border-radius: 4px;
    margin-left: 10px;
}

.main-nav ul li a.btn-book-now:hover { background: var(--primary-green); color: white; }

/* Dropdown */
.main-nav ul li ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-top: 3px solid var(--accent-gold);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
}

.main-nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav ul li ul li a {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    border-radius: 0;
    color: #444;
}

.main-nav ul li ul li a:hover {
    color: var(--primary-green);
    background: var(--sand-bg);
    padding-left: 25px;
}

/* -- Header "Book Now" CTA button -- */
.header-book-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-gold), #b3894a);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 16px rgba(197,160,89,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.header-book-btn i { font-size: 0.9rem; }

.header-book-btn:hover {
    background: linear-gradient(135deg, var(--primary-green), #123a2e);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(27,77,62,0.35);
}

.header-book-btn:active { transform: translateY(0); }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary-green);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 5px;
    overflow: hidden;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;   /* margin, not flex gap — gap isn't reliably supported everywhere and can collapse the 3 lines together */
    transition: 0.3s;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 8s ease;
}

.hero-section:hover .hero-bg-img { transform: scale(1.05); }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: var(--primary-green);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    font-size: 1.2rem;
    box-shadow: 0 0 0 6px rgba(27,77,62,0.2);
}

.scroll-arrow a:hover { background: var(--accent-gold); color: white; }

/* ========================================
   STATS BAR
======================================== */
.stats-bar {
    background: var(--primary-green);
    padding: 30px 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item { color: white; }
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}
.stat-label { font-size: 0.85rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   SECTION STYLES
======================================== */
.section { padding: 90px 5%; }
.section-alt { background: white; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ========================================
   PACKAGE TABS
======================================== */
.tabs-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.tab-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: #555;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover { border-color: var(--primary-green); color: var(--primary-green); }

.tab-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(27,77,62,0.25);
}

.tab-pane { display: none; animation: fadeIn 0.4s ease; }
.tab-pane.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ========================================
   TOUR CARDS (with brief intro)
======================================== */
.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.tour-img-wrap {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.tour-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-img-wrap img { transform: scale(1.08); }

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.tour-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }

.tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-meta span { display: flex; align-items: center; gap: 5px; }

.tour-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

/* ✅ BRIEF INTRODUCTION (key feature) */
.tour-intro {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.highlight-tag {
    font-size: 0.75rem;
    background: var(--sand-bg);
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(27,77,62,0.15);
}

.tour-card-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
    margin-top: auto;
}

.tour-price { display: flex; flex-direction: column; }
.price-from { font-size: 0.72rem; color: var(--text-grey); text-transform: uppercase; letter-spacing: 1px; }
.price-amount { font-size: 1.3rem; font-weight: 700; color: var(--primary-green); line-height: 1; }
.price-per { font-size: 0.72rem; color: var(--text-grey); }

.tour-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-view-tour {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-green);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-view-tour:hover { background: var(--accent-gold); color: white; transform: translateX(3px); }
.btn-view-tour i { font-size: 0.75rem; }

.btn-send-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary-green);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 50px;
    border: 1.5px solid var(--primary-green);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-send-enquiry:hover {
    background: var(--primary-green);
    color: white;
}

.btn-send-enquiry i { font-size: 0.72rem; }

/* ========================================
   COUNTDOWN
======================================== */
.countdown-section {
    background: linear-gradient(rgba(27,77,62,0.88), rgba(0,0,0,0.65)),
                url('') center/cover no-repeat fixed;
    color: white;
    padding: 100px 5%;
    text-align: center;
}

.countdown-inner { max-width: 700px; margin: 0 auto; }
.countdown-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.countdown-inner h2 { color: white; font-size: 2.5rem; margin-bottom: 10px; }
.countdown-inner h2 span { color: var(--accent-gold); }
.countdown-inner p { color: rgba(255,255,255,0.8); margin-bottom: 40px; }

.timer-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 25px 20px;
    min-width: 110px;
    border-radius: 12px;
    text-align: center;
}

.time-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: white;
    line-height: 1;
    display: block;
}

.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-top: 8px;
    display: block;
}

/* ========================================
   INFINITE SLIDING CARDS (Most Sought)
======================================== */
.slider-section { padding: 90px 0; background: var(--sand-bg); overflow: hidden; }
.slider-section .section-header { padding: 0 5%; }

.slider-track-wrap { overflow: hidden; position: relative; }
.slider-track-wrap::before,
.slider-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}
.slider-track-wrap::before { left: 0; background: linear-gradient(to right, var(--sand-bg), transparent); }
.slider-track-wrap::after { right: 0; background: linear-gradient(to left, var(--sand-bg), transparent); }

.slider-track {
    display: flex;
    width: max-content;
    animation: slideLoop 28s linear infinite;
}

.slider-track:hover { animation-play-state: paused; }

.sort-card {
    width: 340px;
    margin: 0 15px 10px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    flex-shrink: 0;
    transition: 0.3s;
}

.sort-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(27,77,62,0.15); }

.sort-card-img { position: relative; height: 210px; overflow: hidden; }
.sort-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.sort-card:hover .sort-card-img img { transform: scale(1.06); }

.sort-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.sort-body { padding: 22px; }
.sort-title { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.sort-intro { font-size: 0.88rem; color: #666; line-height: 1.6; margin-bottom: 15px; }
.sort-price { font-weight: 700; color: var(--primary-green); font-size: 1.1rem; margin-bottom: 15px; display: block; }

.sort-btn {
    display: block;
    width: 100%;
    padding: 11px;
    text-align: center;
    background: var(--primary-green);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.sort-btn:hover { background: var(--accent-gold); }

/* ========================================
   WHY CHOOSE US
======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.feature-card:hover { transform: translateY(-6px); border-bottom-color: var(--accent-gold); }

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--sand-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-green);
    transition: 0.3s;
}

.feature-card:hover .feature-icon { background: var(--primary-green); color: white; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: #666; margin: 0; }

/* ========================================
   TESTIMONIALS
======================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    color: var(--sand-bg);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.review-card:hover { transform: translateY(-5px); border-color: var(--accent-gold); }

.reviewer-info { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.reviewer-trip { font-size: 0.78rem; color: var(--text-grey); }
.review-stars { color: #ffc107; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: #555; line-height: 1.7; font-style: italic; margin: 0; }

/* ========================================
   PARTNERS SLIDER
======================================== */
.partners-section { padding: 50px 0; background: white; overflow: hidden; border-top: 1px solid #eee; }

.partners-track {
    display: flex;
    width: max-content;
    animation: slideLoop 20s linear infinite;
}

.partners-track:hover { animation-play-state: paused; }

.partner-item {
    width: 200px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: 0.3s;
    flex-shrink: 0;
}

.partner-item:hover { opacity: 1; }
.partner-item i { font-size: 2.2rem; color: var(--primary-green); }
.partner-item span { font-size: 0.8rem; font-weight: 600; color: #666; text-align: center; }

/* ========================================
   CTA BANNER
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0d3025 100%);
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.cta-section h2 { color: white; font-size: 2.5rem; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 35px; font-size: 1.05rem; }

.btn-cta {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 45px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover { background: white; color: var(--primary-green); transform: translateY(-3px); }

/* ========================================
   FOOTER
======================================== */
#site-footer {
    background: var(--dark-footer);
    color: #aaa;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
}

.footer-col p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }

.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #888; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--accent-gold); padding-left: 5px; }
.footer-links a i { color: var(--accent-gold); font-size: 0.75rem; }

.footer-contact li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; }
.footer-contact li i { color: var(--accent-gold); margin-top: 3px; flex-shrink: 0; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.9rem;
    transition: 0.3s;
}
.footer-social a:hover { background: var(--accent-gold); color: white; }

.newsletter-form { margin-top: 15px; }
.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 6px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
}
.newsletter-form input::placeholder { color: #666; }
.newsletter-form button {
    width: 100%;
    padding: 12px;
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}
.newsletter-form button:hover { background: var(--primary-green); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 5%;
    text-align: center;
    font-size: 0.82rem;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #555; font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--accent-gold); }

/* ========================================
   MODAL
======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
    background: white;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    position: relative;
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    color: var(--primary-green);
    font-size: 1rem;
    transition: 0.3s;
}

.modal-close:hover { background: var(--primary-green); color: white; }

.modal-img { height: 380px; overflow: hidden; border-radius: 16px 16px 0 0; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }

.modal-body-content { padding: 40px 50px 50px; }
.modal-title { font-size: 2rem; margin-bottom: 8px; }
.modal-price-display {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.modal-price-display span { font-size: 0.85rem; color: var(--text-grey); font-weight: 400; }

.modal-description { font-size: 0.95rem; line-height: 1.8; color: #555; margin-bottom: 25px; }

.modal-includes h4 { color: var(--primary-green); margin-bottom: 15px; font-size: 1.1rem; }
.modal-includes ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.modal-includes ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}
.modal-includes ul li::before { content: '✓'; color: var(--accent-gold); font-weight: 700; }

.modal-book-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.modal-book-btn:hover { background: var(--primary-green); }

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLoop {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========================================
   WORDPRESS CORE
======================================== */
.wp-block-image img { border-radius: 8px; }
.aligncenter { text-align: center; margin: 0 auto; }
.alignright { float: right; margin-left: 20px; }
.alignleft { float: left; margin-right: 20px; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-grey); text-align: center; margin-top: 5px; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    /* Keep logo + full menu + CTA on one row down to tablet width */
    .main-nav ul { gap: 0; }
    .main-nav ul li a { padding: 10px 10px; font-size: 0.8rem; }
    .main-nav ul li a.btn-book-now { padding: 10px 14px; margin-left: 4px; }
    .header-book-btn { padding: 10px 16px; font-size: 0.75rem; }
    .header-topbar .contact-group span:nth-child(3) { display: none; } /* drop address first to save space */
}

@media (max-width: 768px) {
    .header-topbar .navbar-container { flex-direction: column; gap: 10px; text-align: center; }

    /* Hide email on mobile, keep only the phone number — bigger and bolder */
    .header-topbar .contact-group span:nth-child(2) { display: none; }
    .header-topbar .contact-group span:first-child {
        font-size: 1.05rem;
        font-weight: 700;
        letter-spacing: 0.3px;
    }
    .header-topbar .contact-group span:first-child i { font-size: 1rem; }

    #patjud-mobile-toggle,
    #site-header .mobile-toggle,
    .mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;   /* proper touch target, keeps the icon centered within it */
        flex-shrink: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 999999 !important;
        pointer-events: auto !important;
        background: #1b4d3e !important;
        border-radius: 50% !important;
        overflow: hidden !important;
    }

    #patjud-mobile-toggle span,
    #site-header .mobile-toggle span,
    .mobile-toggle span {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: #ffffff !important;
        width: 20px !important;
        height: 2px !important;
        margin: 3px 0 !important;
    }

    .header-book-btn span { display: none; }   /* icon-only CTA to save space next to the hamburger */
    .header-book-btn { padding: 12px; border-radius: 50%; }
    .header-book-btn i { font-size: 1.05rem; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0 30px 40px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        overflow-y: auto;
    }

    .main-nav-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 25px 0 18px;
        margin-bottom: 15px;
        border-bottom: 1px solid #f0f0f0;
        flex-shrink: 0;
    }

    .main-nav-mobile-logo { display: flex; align-items: center; }
    .main-nav-mobile-logo img { height: 42px; width: auto; }
    .main-nav-mobile-logo .text-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-green);
    }

    .main-nav-mobile-close {
        background: var(--sand-bg);
        border: none;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        color: #333;
        font-size: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: 0.3s;
    }
    .main-nav-mobile-close:hover { background: var(--primary-green); color: white; }

    .main-nav.open { right: 0; }
    
    .main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
    .main-nav ul li { width: 100%; }
    .main-nav ul li a { padding: 12px 0; font-size: 1rem; border-bottom: 1px solid #f0f0f0; }
    
    .main-nav ul li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        display: none;
    }
    
    .main-nav ul li ul.show { display: block; }
    
    /* Hero — roughly half the desktop height on mobile */
    .hero-section { height: 50vh; min-height: 320px; }
    .hero-content h1 { font-size: 2.2rem; }

    /* Both hero buttons fit on one row instead of stacking */
    .hero-buttons { flex-wrap: nowrap; gap: 10px; width: 100%; max-width: 360px; margin: 0 auto; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        flex: 1 1 0;
        padding: 13px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
        text-align: center;
    }

    /* Stats bar hidden on mobile */
    .stats-bar { display: none; }

    /* Scroll-down arrow hidden on mobile */
    .scroll-arrow { display: none; }

    .tab-pane.active { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .modal-body-content { padding: 25px; }
    .modal-includes ul { grid-template-columns: 1fr; }
    
    .countdown-section { padding: 60px 5%; }
    .timer-grid { flex-wrap: nowrap; gap: 8px; }
    .time-box { min-width: 0; flex: 1 1 0; padding: 12px 4px; }
    .time-number { font-size: 1.7rem; }
    .time-label { font-size: 0.62rem; letter-spacing: 1px; }

    /* Most Popular Safaris — the auto-scroll marquee is designed for
       wide screens where several cards show at once; on a phone it just
       cuts cards off at both edges mid-scroll. Replace it with a
       swipeable, snap-to-card carousel that always shows exactly one
       full card at a time. */
    .slider-track-wrap::before,
    .slider-track-wrap::after {
        display: none; /* remove the edge fade — it implied more cards were peeking in */
    }

    .slider-track {
        animation: none !important;
        width: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 5% 10px;
        gap: 0;
    }

    .sort-card {
        width: 85vw;
        max-width: 340px;
        margin: 0 8px 10px;
        scroll-snap-align: center;
    }

    .sort-card:first-child { margin-left: 0; }
    .sort-card-dupe { display: none; } /* the duplicate set only exists for the desktop marquee loop */
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 60px 5%; }
    .timer-grid { gap: 6px; }
    .time-box { padding: 10px 2px; }
    .time-number { font-size: 1.4rem; }
    .time-label { font-size: 0.56rem; letter-spacing: 0.5px; }
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-wrap {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-secondary-img {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-badge-box {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--primary-green);
    color: white;
    padding: 18px 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(27,77,62,0.3);
}

.about-badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
}

.about-text-wrap { padding: 20px 0; }
.about-text-wrap > p { font-size: 0.95rem; line-height: 1.85; color: #555; margin-bottom: 18px; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 46px;
    height: 46px;
    background: var(--sand-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.about-feature-item:hover .about-feature-icon {
    background: var(--primary-green);
    color: white;
}

.about-feature-item strong {
    display: block;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.about-feature-item p {
    font-size: 0.82rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   REVIEWER AVATAR IMAGE
======================================== */
.reviewer-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--accent-gold);
}

/* ========================================
   RESPONSIVE — ABOUT
======================================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrap { max-width: 550px; margin: 0 auto; }
    .about-secondary-img { right: 0; bottom: -20px; width: 170px; height: 140px; }
    .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .about-secondary-img { display: none; }
    .about-badge-box { left: 15px; top: 15px; }
}

/* ========================================
   HOMEPAGE TOUR SECTIONS
======================================== */
.tour-section {
    padding: 80px 5%;
}

.tour-section-inner {
    max-width: 1300px;
    margin: 0 auto;
}

/* 4-column card grid */
.tour-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Section header accent flag + icon */
.tour-section .section-tag {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* View All Button */
.section-view-all {
    text-align: center;
    margin-top: 10px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-green);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 35px;
    border-radius: 50px;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27,77,62,0.2);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* Section alternating background stripe */
.tour-section:nth-child(even) .btn-view-all {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.tour-section:nth-child(even) .btn-view-all:hover {
    background: var(--accent-gold);
    color: white;
}

/* Section left border accent */
.tour-section .section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ========================================
   RESPONSIVE — TOUR SECTIONS
======================================== */
@media (max-width: 1200px) {
    .tour-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .tour-cards-grid { grid-template-columns: 1fr; }
    .tour-section { padding: 60px 5%; }
}

/* ================================================
   HOMEPAGE SECTIONS  (4 tour category sections)
================================================ */
.homepage-section { padding: 90px 5%; }

.homepage-section-inner {
    max-width: 1300px;
    margin: 0 auto;
}

/* 4-column grid of cards */
.hs-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 44px;
}

/* Empty state */
.hs-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: #999;
    font-size: 0.95rem;
}
.hs-empty a { color: var(--primary-green); font-weight: 600; }

/* View All button */
.hs-view-all { text-align: center; }

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 13px 38px;
    border-radius: 50px;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    transition: all 0.3s ease;
}
.btn-view-all:hover {
    background: var(--primary-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27,77,62,0.18);
}
.btn-view-all i { transition: transform 0.3s; }
.btn-view-all:hover i { transform: translateX(5px); }

/* Alternate section — gold button */
.homepage-section:nth-child(even) .btn-view-all {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}
.homepage-section:nth-child(even) .btn-view-all:hover {
    background: var(--accent-gold);
    color: #fff;
}

/* Section tag icon spacing */
.homepage-section .section-tag i { margin-right: 5px; }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1200px) {
    .hs-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .hs-cards-grid { grid-template-columns: 1fr; }
    .homepage-section { padding: 60px 5%; }
}

/* ================================================
   PARTNERS — dynamic logo images
================================================ */
.partner-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    opacity: 0.55;
    transition: opacity 0.3s;
}
.partner-item a:hover { opacity: 1; }

.partner-logo-img {
    height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.partner-item a:hover .partner-logo-img { filter: grayscale(0%); }

/* ================================================
   FOOTER — dynamic columns
================================================ */
.footer-logo img { height: 55px; width: auto; margin-bottom: 15px; }
.footer-site-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-col-content {
    font-size: 0.88rem;
    color: #aaa;
    line-height: 1.8;
}
.footer-col-content a { color: #999; }
.footer-col-content a:hover { color: var(--accent-gold); }
.footer-col-content ul { list-style: none; padding: 0; }
.footer-col-content ul li { margin-bottom: 10px; }
.footer-col-content ul li::before { content: '›'; color: var(--accent-gold); margin-right: 8px; }

/* ================================================
   HERO SLIDER
================================================ */
.hero-slider { position:relative; }

.hero-slides-wrap { position:absolute; inset:0; }

.hero-slide {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 0.9s ease;
    display:flex;
    align-items:center;
    justify-content:center;
}
.hero-slide.active { opacity:1; z-index:1; }

.hero-dots {
    position:absolute;
    bottom:80px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:5;
}
.hero-dot {
    width:12px; height:12px;
    border-radius:50%;
    background:rgba(255,255,255,0.5);
    border:2px solid white;
    cursor:pointer;
    transition:0.3s;
}
.hero-dot.active { background:var(--accent-gold); border-color:var(--accent-gold); transform:scale(1.2); }

.hero-arrow {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    background:rgba(255,255,255,0.15);
    border:2px solid rgba(255,255,255,0.5);
    color:white;
    width:50px; height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.3s;
    font-size:1rem;
    backdrop-filter:blur(4px);
}
.hero-arrow:hover { background:var(--accent-gold); border-color:var(--accent-gold); }
.hero-prev { left:30px; }
.hero-next { right:30px; }

/* ================================================
   PARTNERS CAROUSEL (4 visible cards)
================================================ */
.partners-section { background:white; padding-bottom:50px; border-top:1px solid #eee; }
.partners-carousel-wrap {
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 5%;
}
.partners-carousel {
    flex:1;
    overflow:hidden;
}
.partners-track-inner {
    display:flex;
    transition:transform 0.5s ease;
    gap:20px;
}
.partner-item {
    flex:0 0 calc(25% - 15px);
    min-width:calc(25% - 15px);
    background:#f9f7f2;
    border-radius:12px;
    padding:30px 20px;
    text-align:center;
    border:1px solid #eee;
    transition:0.3s;
}
.partner-item:hover {
    border-color:var(--accent-gold);
    box-shadow:0 8px 25px rgba(197,160,89,0.12);
    transform:translateY(-4px);
}
.partner-item a {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:inherit;
}
.partner-item i {
    font-size:2.5rem;
    color:var(--primary-green);
    opacity:0.6;
    transition:0.3s;
}
.partner-item:hover i { opacity:1; }
.partner-item span {
    font-size:0.82rem;
    font-weight:600;
    color:#666;
    font-family:'Poppins',sans-serif;
}
.partner-logo-img {
    height:50px;
    width:auto;
    max-width:130px;
    object-fit:contain;
    filter:grayscale(80%);
    transition:0.3s;
}
.partner-item:hover .partner-logo-img { filter:grayscale(0%); }

.partners-arrow {
    width:42px; height:42px;
    border-radius:50%;
    background:var(--primary-green);
    color:white;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:0.9rem;
    flex-shrink:0;
    transition:0.3s;
    z-index:2;
}
.partners-arrow:hover { background:var(--accent-gold); }

@media (max-width:900px) {
    .partner-item { flex:0 0 calc(50% - 10px); min-width:calc(50% - 10px); }
}
@media (max-width:500px) {
    .partner-item { flex:0 0 calc(100%); min-width:100%; }
}

/* ================================================
   SINGLE TOUR PAGE
================================================ */
.tour-hero-banner {
    position:relative;
    height:55vh;
    min-height:380px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
}
.tour-hero-bg {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transition:transform 8s ease;
}
.tour-hero-banner:hover .tour-hero-bg { transform:scale(1.04); }
.tour-hero-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.tour-hero-content {
    position:relative;
    z-index:2;
    padding:40px 5% 45px;
    color:white;
    width:100%;
    max-width:900px;
}
.tour-breadcrumb {
    display:flex;
    align-items:center;
    gap:8px;
    font-size:0.8rem;
    color:rgba(255,255,255,0.75);
    margin-bottom:15px;
    flex-wrap:wrap;
}
.tour-breadcrumb a { color:rgba(255,255,255,0.75); }
.tour-breadcrumb a:hover { color:var(--accent-gold); }
.tour-breadcrumb span { color:rgba(255,255,255,0.5); }
.tour-hero-content h1 {
    font-size:clamp(1.8rem,3vw,2.8rem);
    color:white;
    margin-bottom:18px;
    line-height:1.2;
}
.tour-hero-meta {
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    align-items:center;
}
.tour-hero-meta span {
    background:rgba(255,255,255,0.18);
    backdrop-filter:blur(6px);
    padding:6px 16px;
    border-radius:50px;
    font-size:0.85rem;
    display:flex;
    align-items:center;
    gap:7px;
}
.tour-hero-meta span i { color:var(--accent-gold); }
.tour-hero-badge {
    background:var(--accent-gold) !important;
    font-weight:700;
    letter-spacing:0.5px;
}

/* Layout */
.tour-page-wrap {
    display:grid;
    grid-template-columns:1fr 360px;
    gap:40px;
    max-width:1200px;
    margin:0 auto;
    padding:60px 5% 80px;
    align-items:start;
}

/* Main column blocks */
.tour-section-block {
    background:white;
    border-radius:12px;
    padding:35px;
    margin-bottom:25px;
    box-shadow:0 2px 20px rgba(0,0,0,0.05);
    border:1px solid #f0f0f0;
}
.tour-block-title {
    font-size:1.5rem;
    color:var(--primary-green);
    margin-bottom:20px;
    padding-bottom:12px;
    border-bottom:2px solid var(--accent-gold);
    display:inline-block;
}
.tour-block-content { font-size:0.95rem; line-height:1.9; color:#555; }
.tour-block-content p { margin-bottom:1rem; }

/* Highlights */
.tour-highlights-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}
.tour-highlight-item {
    display:flex;
    align-items:center;
    gap:12px;
    font-size:0.9rem;
    color:#444;
    padding:10px 14px;
    background:#f9f7f2;
    border-radius:8px;
}
.tour-highlight-item i { color:var(--accent-gold); font-size:1rem; flex-shrink:0; }

/* Includes */
.tour-includes-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}
.tour-include-item {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:0.88rem;
    color:#555;
}

/* Itinerary */
.tour-itinerary { line-height:1.9; color:#555; font-size:0.93rem; }
.tour-itinerary h3, .tour-itinerary h4 { color:var(--primary-green); margin:20px 0 10px; }

/* Gallery */
.tour-gallery-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}
.tour-gallery-item img {
    width:100%; height:160px;
    object-fit:cover;
    border-radius:8px;
    transition:0.3s;
}
.tour-gallery-item:hover img { transform:scale(1.04); }

/* Enquiry form */
.tour-enquiry-form { display:flex; flex-direction:column; gap:18px; }
.enquiry-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
/* Honeypot spam-trap field — invisible to real visitors, left in the
   normal document flow (not display:none) since some bots specifically
   skip display:none fields. Real users never see or reach it. */
.patjud-hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.enquiry-field { display:flex; flex-direction:column; gap:6px; }
.enquiry-field label { font-size:0.85rem; font-weight:600; color:#444; font-family:'Poppins',sans-serif; }
.enquiry-field input,
.enquiry-field select,
.enquiry-field textarea {
    padding:12px 14px;
    border:1.5px solid #ddd;
    border-radius:8px;
    font-family:'Poppins',sans-serif;
    font-size:0.9rem;
    transition:0.3s;
    background:white;
}
.enquiry-field input:focus,
.enquiry-field select:focus,
.enquiry-field textarea:focus {
    outline:none;
    border-color:var(--primary-green);
    box-shadow:0 0 0 3px rgba(27,77,62,0.08);
}

/* Arithmetic CAPTCHA */
.patjud-captcha-field { background: var(--sand-bg); padding: 14px; border-radius: 10px; }
.patjud-captcha-field .required { color: #d9534f; }
.patjud-captcha-row { display: flex; align-items: center; gap: 10px; }
.patjud-captcha-question {
    background: white;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-green);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}
.patjud-captcha-row input[name="captcha_answer"] { flex: 1; min-width: 0; }
.patjud-captcha-refresh {
    background: white;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-green);
    transition: 0.3s;
}
.patjud-captcha-refresh:hover { background: var(--primary-green); color: white; border-color: var(--primary-green); transform: rotate(180deg); }

/* Book Now — detailed booking form modal */
.modal-box-wide { max-width: 700px; }

.modal-eyebrow {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.patjud-check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.patjud-check-list-inline { flex-direction: row; flex-wrap: wrap; gap: 16px; }
.patjud-check-list label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 400;
    color: #444;
    cursor: pointer;
}
.patjud-check-list input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.btn-book-now-submit {
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .modal-box-wide .enquiry-row { grid-template-columns: 1fr; }
}

.btn-enquiry-submit {
    padding:14px 30px;
    background:var(--primary-green);
    color:white;
    border:none;
    border-radius:8px;
    font-size:1rem;
    font-weight:700;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
    display:flex;
    align-items:center;
    gap:10px;
    justify-content:center;
    transition:0.3s;
    width:100%;
}
.btn-enquiry-submit:hover { background:var(--accent-gold); }
.enquiry-success {
    padding:14px 18px;
    background:#f0fff4;
    color:#22c55e;
    border-radius:8px;
    margin-top:10px;
    font-size:0.9rem;
    display:flex;
    align-items:center;
    gap:8px;
}
.enquiry-error {
    padding:14px 18px;
    background:#fff0f0;
    color:#ef4444;
    border-radius:8px;
    margin-top:10px;
    font-size:0.9rem;
}

/* Sidebar */
.tour-sidebar-card {
    background:white;
    border-radius:16px;
    padding:30px;
    box-shadow:0 8px 40px rgba(0,0,0,0.08);
    border:1px solid #f0f0f0;
    position:sticky;
    top:110px;
    margin-bottom:30px;
}
.sidebar-price-block {
    text-align:center;
    padding:20px 0 25px;
    border-bottom:1px solid #f0f0f0;
    margin-bottom:22px;
}
.sidebar-price-from { display:block; font-size:0.78rem; color:#999; text-transform:uppercase; letter-spacing:1px; margin-bottom:4px; }
.sidebar-price { display:block; font-size:2.2rem; font-weight:700; color:var(--primary-green); font-family:'Playfair Display',serif; line-height:1; }
.sidebar-price-per { display:block; font-size:0.78rem; color:#999; margin-top:4px; }

.btn-whatsapp-book {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:14px;
    background:#25D366;
    color:white;
    border-radius:50px;
    font-weight:700;
    font-size:0.9rem;
    letter-spacing:0.5px;
    text-transform:uppercase;
    text-decoration:none;
    transition:0.3s;
    margin-bottom:12px;
}
.btn-whatsapp-book:hover { background:#1ebe5c; transform:translateY(-2px); color:white; }
.btn-whatsapp-book i { font-size:1.2rem; }

.btn-enquiry-link {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:13px;
    background:transparent;
    color:var(--primary-green);
    border:2px solid var(--primary-green);
    border-radius:50px;
    font-weight:700;
    font-size:0.9rem;
    letter-spacing:0.5px;
    text-transform:uppercase;
    text-decoration:none;
    transition:0.3s;
    margin-bottom:22px;
}
.btn-enquiry-link:hover { background:var(--primary-green); color:white; }

.sidebar-details { border-top:1px solid #f0f0f0; padding-top:18px; }
.sidebar-detail-row {
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
    font-size:0.88rem;
    color:#555;
}
.sidebar-detail-row i { color:var(--accent-gold); margin-top:2px; flex-shrink:0; width:14px; }
.sidebar-detail-row strong { color:#333; }
.sidebar-detail-row a { color:var(--primary-green); }

.sidebar-help-box {
    background:#f9f7f2;
    border-radius:10px;
    padding:18px;
    margin-top:20px;
}
.sidebar-help-box p { font-size:0.88rem; color:#555; margin:0 0 12px; }
.sidebar-help-link {
    display:flex;
    align-items:center;
    gap:8px;
    font-size:0.85rem;
    color:var(--primary-green);
    font-weight:600;
    text-decoration:none;
    margin-bottom:8px;
}
.sidebar-help-link:hover { color:var(--accent-gold); }
.sidebar-help-link i { color:var(--accent-gold); }

/* Related tours */
.sidebar-related { background:white; border-radius:16px; padding:25px; box-shadow:0 4px 20px rgba(0,0,0,0.06); border:1px solid #f0f0f0; }
.sidebar-related-title { font-size:1.1rem; margin-bottom:18px; color:var(--primary-green); }
.sidebar-related-card {
    display:flex;
    gap:12px;
    align-items:center;
    text-decoration:none;
    margin-bottom:15px;
    padding-bottom:15px;
    border-bottom:1px solid #f5f5f5;
}
.sidebar-related-card:last-child { margin-bottom:0; padding-bottom:0; border-bottom:none; }
.sidebar-related-card img { width:75px; height:60px; object-fit:cover; border-radius:8px; flex-shrink:0; }
.sidebar-related-info h4 { font-size:0.88rem; color:#333; margin:0 0 4px; line-height:1.3; font-family:'Poppins',sans-serif; font-weight:600; }
.sidebar-related-info span { font-size:0.78rem; color:#999; }
.sidebar-related-card:hover .sidebar-related-info h4 { color:var(--primary-green); }

/* WhatsApp CTA button (homepage) */
.btn-whatsapp { background:#25D366 !important; }
.btn-whatsapp:hover { background:#1ebe5c !important; }

/* ========================================
   SITE CONTENT LAYOUT (posts, pages, archives)
   Two-column layout: main content + sidebar
======================================== */
.site-content-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 5% 80px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

.site-main-col { min-width: 0; }

/* The 4-column tour-card grid assumes full page width; inside the
   narrower main column (sidebar takes ~370px) that's too cramped,
   so make it fluid here instead of relying on viewport-based breakpoints. */
.site-main-col .hs-cards-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }


.site-sidebar-col {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* -- Generic widget box -- */
.widget {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}

.widget h4,
.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary-green);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sand-bg);
}

/* -- Search widget -- */
.sidebar-search-form { display: flex; gap: 0; }
.sidebar-search-form input[type="search"] {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid #e2e2e2;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}
.sidebar-search-form input[type="search"]:focus { outline: none; border-color: var(--primary-green); }
.sidebar-search-form button {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0 18px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: 0.3s;
}
.sidebar-search-form button:hover { background: var(--accent-gold); }

/* -- Tour categories list -- */
.sidebar-cat-list { list-style: none; }
.sidebar-cat-list li { border-bottom: 1px solid #f2f2f2; }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 2px;
    color: #444;
    font-size: 0.92rem;
    font-weight: 500;
    transition: 0.25s;
}
.sidebar-cat-list a:hover { color: var(--primary-green); padding-left: 6px; }
.sidebar-cat-list .cat-count {
    background: var(--sand-bg);
    color: var(--text-grey);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
}

/* -- Recent posts widget -- */
.sidebar-recent-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.sidebar-recent-item { display: flex; gap: 12px; align-items: center; }
.sidebar-recent-item img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
.sidebar-recent-item .recent-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    line-height: 1.35;
    display: block;
    margin-bottom: 4px;
}
.sidebar-recent-item:hover .recent-title { color: var(--primary-green); }
.sidebar-recent-item .recent-date { font-size: 0.75rem; color: var(--text-grey); }

/* -- Contact CTA widget -- */
.sidebar-cta-widget {
    background: linear-gradient(135deg, var(--primary-green), #123a2e);
    border: none;
    color: white;
    text-align: center;
}
.sidebar-cta-widget h4 { color: white; border-bottom-color: rgba(255,255,255,0.2); }
.sidebar-cta-widget p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 18px; }
.sidebar-cta-widget .btn-cta {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sidebar-cta-widget .btn-cta:hover { background: white; color: var(--primary-green); }

/* ========================================
   ARCHIVE / CATEGORY CARD GRID
   Used for blog archives and tour category listings —
   every card is guaranteed an image (real thumbnail or fallback).
======================================== */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.post-card-img-wrap { position: relative; height: 200px; overflow: hidden; }
.post-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-img-wrap img { transform: scale(1.08); }

.post-card-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card-cat { color: var(--accent-gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.post-card-title { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.post-card-title a { color: #222; }
.post-card-title a:hover { color: var(--primary-green); }
.post-card-excerpt { color: #666; font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; flex: 1; }
.post-card-link { color: var(--primary-green); font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }
.post-card-link:hover { gap: 10px; color: var(--accent-gold); }

/* ========================================
   SIMPLE PAGE / POST HERO BANNER
======================================== */
.simple-page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green), #123a2e);
    padding: 70px 5% 50px;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}
.simple-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.65));
}
.simple-page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.simple-page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 10px; }
.simple-page-breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.simple-page-breadcrumb a { color: rgba(255,255,255,0.8); }
.simple-page-breadcrumb a:hover { color: var(--accent-gold); }

/* ========================================
   SINGLE POST / PAGE CONTENT TYPOGRAPHY
======================================== */
.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 18px 0 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
    color: var(--text-grey);
}
.single-post-meta span { display: flex; align-items: center; gap: 6px; }
.single-post-meta i { color: var(--accent-gold); }

.post-featured-img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; margin-bottom: 35px; }

.post-content-body { font-size: 1.02rem; line-height: 1.9; color: #444; }
.post-content-body h2 { font-size: 1.6rem; margin: 35px 0 18px; color: var(--primary-green); }
.post-content-body h3 { font-size: 1.3rem; margin: 30px 0 15px; color: var(--primary-green); }
.post-content-body p { margin-bottom: 20px; }
.post-content-body ul, .post-content-body ol { margin: 0 0 20px 25px; }
.post-content-body li { margin-bottom: 8px; }
.post-content-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }
.post-content-body blockquote {
    border-left: 4px solid var(--accent-gold);
    padding: 15px 25px;
    margin: 25px 0;
    background: var(--sand-bg);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #555;
}
.post-content-body a { color: var(--primary-green); text-decoration: underline; }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0; }
.post-tags a {
    background: var(--sand-bg);
    color: var(--primary-green);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    transition: 0.3s;
}
.post-tags a:hover { background: var(--primary-green); color: white; }

.post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.post-nav-links .nav-prev,
.post-nav-links .nav-next {
    background: var(--sand-bg);
    border-radius: 12px;
    padding: 18px 20px;
    transition: 0.3s;
}
.post-nav-links .nav-next { text-align: right; }
.post-nav-links a:hover { background: var(--primary-green); }
.post-nav-links a:hover .nav-label,
.post-nav-links a:hover .nav-title { color: white; }
.post-nav-links .nav-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-grey); display: block; margin-bottom: 6px; }
.post-nav-links .nav-title { font-size: 0.92rem; font-weight: 600; color: #333; }

/* ── RESPONSIVE SIDEBAR / ARCHIVE LAYOUT ── */
@media (max-width: 1024px) {
    .site-content-layout { grid-template-columns: 1fr; }
    .site-sidebar-col { position: static; }
}
@media (max-width: 768px) {
    /* Hero banner shared by posts, pages, archives, and tour categories —
       was full desktop height/padding on every device; cut it down so
       mobile visitors reach the actual content much sooner. */
    .simple-page-hero { padding: 40px 5% 25px; }
    .simple-page-hero h1 { font-size: 1.5rem; }
    .simple-page-breadcrumb { font-size: 0.78rem; }

    .site-content-layout { padding: 25px 5% 50px; gap: 30px; }

    .site-sidebar-col { gap: 18px; }
    .widget { padding: 18px; }
    .widget h4, .widget-title { font-size: 1.05rem; margin-bottom: 14px; padding-bottom: 10px; }

    .post-featured-img { margin-bottom: 20px; }
    .single-post-meta { margin: 12px 0 20px; padding-bottom: 18px; gap: 12px; }
}
@media (max-width: 680px) {
    .archive-grid { grid-template-columns: 1fr; }
    .post-nav-links { grid-template-columns: 1fr; }
    .post-featured-img { height: 200px; }
}

/* ── RESPONSIVE SINGLE TOUR ── */
@media (max-width:1024px) {
    .tour-page-wrap { grid-template-columns:1fr; }
    .tour-sidebar-card { position:static; }
}
@media (max-width:768px) {
    /* Hero was 55vh + 40px/45px padding on every device — way too tall
       once you're just trying to reach the itinerary on a phone. */
    .tour-hero-banner { height:32vh; min-height:230px; }
    .tour-hero-content { padding:25px 5% 25px; }
    .tour-hero-content h1 { font-size:1.5rem; margin-bottom:12px; }
    .tour-hero-meta { gap:8px; }
    .tour-hero-meta span { padding:5px 12px; font-size:0.78rem; }
    .tour-page-wrap { padding:25px 5% 50px; gap:25px; }
}
@media (max-width:680px) {
    .enquiry-row { grid-template-columns:1fr; }
    .tour-highlights-grid, .tour-includes-grid { grid-template-columns:1fr; }
    .tour-gallery-grid { grid-template-columns:repeat(2,1fr); }
}

/* ========================================
   FLOATING WHATSAPP CHAT WIDGET
======================================== */
.wa-float-widget {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 2147483647 !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
}

.wa-float-widget > * { pointer-events: auto; }

.wa-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: waPulse 2.5s ease-in-out infinite;
}

.wa-float-btn:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37,211,102,0.55); }

@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0); }
}

.wa-float-popup {
    width: 320px;
    max-width: calc(100vw - 48px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.97);
    transform-origin: bottom right;
    transition: all 0.25s ease;
}

.wa-float-widget.open .wa-float-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-float-popup-header {
    background: linear-gradient(135deg, #1b4d3e, #123a2e);
    color: white;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-float-popup-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wa-float-popup-header strong { display: block; font-size: 0.95rem; }
.wa-float-popup-header span { font-size: 0.75rem; color: rgba(255,255,255,0.75); }
.wa-float-popup-header > div:nth-child(2) { flex: 1; min-width: 0; }

.wa-float-popup-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.wa-float-popup-close:hover { background: rgba(255,255,255,0.3); }

.wa-float-popup-body { padding: 18px; background: #ece5dd; }

.wa-float-bubble {
    background: white;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: relative;
}

.wa-float-start-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px;
    text-align: center;
}
.wa-float-start-btn:hover { background: #1ebe5c; }
.wa-float-start-btn i { font-size: 1.1rem; }

@media (max-width: 480px) {
    .wa-float-widget { bottom: 16px; right: 16px; gap: 12px; }
    .wa-float-btn { width: 52px; height: 52px; font-size: 1.5rem; }
    .wa-float-popup { width: calc(100vw - 32px); }
}
