/* css/main.css */
/* HighPass Tours Theme - Main Styles */

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #ff6b35;
    --accent-color: #F76C5E;
    --dark-color: #1A1A1A;
    --light-color: #F8F8F8;
    --text-color: #333333;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --error-color: #F44336;
}

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

*:focus,
*:focus-visible,
*:focus-within,
a:focus,
button:focus,
[role="button"]:focus,
[tabindex]:focus {
    outline: none !important;
    box-shadow: none !important;
}

html,
body {
    width: 100%;
    /* height removed */
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    overflow-x: hidden;  /* prevent horizontal scroll on iOS Safari */
    /* Stops iOS rubber-band overscroll. Past the end of a long page WebKit
       bounces and paints the canvas background beneath the footer — which
       reads as a large empty block below the site and is why no desktop
       engine, Chromium or WebKit headless, could ever reproduce it: the
       bounce only exists on a touch device. Harmless elsewhere; also
       disables pull-to-refresh, which this site does not use. */
    overscroll-behavior-y: none;
}

/* Belt and braces: if a browser ignores overscroll-behavior, the area the
   bounce exposes is painted from the root element, so give it the footer's
   colour instead of the page's cream. A bounce then shows more footer rather
   than an empty block. */
html { background-color: #143241; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    width: 100%;
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; color: var(--primary-color); }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Paragraphs */
p {
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #003D6B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Container */
.container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.row {
    width: 100%;
    margin: 0;
}

[class*="col-"] {
    padding: 0 !important;
}

/* Theme Standard Width - Full Width */
.site-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.site-main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Override WordPress global-styles layout constraints from theme.json */
.wp-site-blocks {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.wp-site-blocks > * {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 100% !important;
}

.is-layout-flow > * {
    max-width: 100% !important;
}

body .is-layout-constrained > .alignwide {
    max-width: 100% !important;
}

body .is-layout-constrained > .alignfull {
    max-width: none !important;
}

/* Elementor sections - full width */
.elementor-section {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Elementor container - full width */
.elementor-container {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ensure inner sections full width */
.elementor-section-wrap {
    width: 100%;
}

/* Elementor editor loading spinner layout */
body.elementor-panel-loading #elementor-panel-state-loading {
    align-items: center;
    inset: 0;
    justify-content: center;
    position: absolute;
    z-index: 2;
    display: block !important; /* override Elementor flex that keeps spinner stuck */
    background: transparent !important;
}

/* Page Title - Hidden */
.entry-title {
    display: none !important;
    visibility: hidden !important;
}

/* Header */
.site-header {
    background: var(--secondary-color, #004E89);
    color: #ffffff;
    padding: 0px;
    z-index: 1000;
}

/* ═══════════════════════════════════════════════════
   TOP BAR — sits above nav, own container 
   ═══════════════════════════════════════════════════ */
.header-top {
    background-color: #2d3436;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-top > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 14px 24px;
    min-height: 46px;
}
.header-top a { color: inherit; text-decoration: none; transition: opacity .15s; }
.header-top a:hover { opacity: .75; }

/* Top Bar items */
.header-top__left,
.header-top__right,
.header-top__center {
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-top__left { gap: 8px; }
.header-top__right { gap: 8px; margin-left: auto; }
.header-top__center { gap: 8px; }
/* Auto pipe dividers between top-bar items */
.header-top__left > *:not(:first-child)::before,
.header-top__right > *:not(:first-child)::before {
    content: '|';
    margin-right: 8px;
    opacity: .35;
    font-size: 12px;
    font-weight: 300;
}
.header-top__left > .header-top__social::before,
.header-top__right > .header-top__social::before { content: none; }
.header-top__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    white-space: nowrap;
    letter-spacing: .01em;
}
.header-top__item i { font-size: 11px; opacity: .65; }
.header-top__item--welcome { font-weight: 600; letter-spacing: .02em; }
.header-top__item--hours i { opacity: .55; }
.header-top__divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.2);
    display: inline-block;
}

/* Compact language switcher (native <details>/<summary>, no JS needed) */
.header-top__lang-switch { position: relative; display: inline-flex; }
.header-top__lang-switch > summary {
    cursor: pointer;
    list-style: none;
}
.header-top__lang-switch > summary::-webkit-details-marker { display: none; }
.header-top__lang-switch[open] > summary .fa-caret-down { transform: rotate(180deg); }
.header-top__item--lang-switch .fa-caret-down { font-size: 9px; opacity: .6; transition: transform .15s ease; margin-left: 1px; }
.header-top__lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 200;
    min-width: 160px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    padding: 6px;
    display: flex;
    flex-direction: column;
}
.header-top .header-top__lang-menu a.header-top__lang-option {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #1c2d35 !important;
    white-space: nowrap;
}
.header-top__lang-option:hover { background: var(--he-warm-2, #f7ede0); }
.header-top .header-top__lang-menu a.header-top__lang-option.is-current { font-weight: 600; color: #1a3c4e !important; background: var(--he-warm-1, #fdf6ed); }

/* Top Bar social */
.header-top__social {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,.18);
    margin-left: 6px;
}
.header-top__social a {
    color: inherit;
    font-size: 13px;
    opacity: .65;
    transition: opacity .15s;
}
.header-top__social a:hover { opacity: 1; }

/* Top Bar layout variants */
.header-top--centered-layout > .container { justify-content: center; }
.header-top--announcement { background: var(--primary-color, #FF6B35); }
.header-top--announcement > .container { justify-content: center; text-align: center; padding: 11px 24px; }
.header-top__announcement-text { font-size: 13px; font-weight: 600; letter-spacing: .3px; }

/* ── Login / Account Dropdown ──────────────────────── */
.header-top__login-wrap{position:relative;display:inline-flex;align-items:center}
.header-top__login-wrap .header-top__item--login{cursor:pointer;display:inline-flex;align-items:center;gap:5px}
.header-top .header-top__login-dropdown{visibility:hidden !important;opacity:0 !important;position:absolute;top:100%;right:0;min-width:190px;background:#fff;border-radius:8px;box-shadow:0 8px 30px rgba(0,0,0,0.15),0 2px 8px rgba(0,0,0,0.08);padding:6px 0;padding-top:14px;z-index:9999;margin-top:0;border:1px solid #e2e8f0;transition:opacity 0.15s ease,visibility 0.15s ease;pointer-events:none}
.header-top .header-top__login-dropdown::after{content:'';position:absolute;top:-12px;left:0;right:0;height:12px}
.header-top .header-top__login-dropdown::before{content:'';position:absolute;top:8px;right:16px;width:10px;height:10px;background:#fff;border-left:1px solid #e2e8f0;border-top:1px solid #e2e8f0;transform:rotate(45deg);z-index:1}
.header-top .header-top__login-dropdown a{display:flex !important;align-items:center;gap:10px;padding:9px 16px;color:#334155 !important;font-size:13px;font-weight:500;text-decoration:none !important;transition:background 0.15s;opacity:1 !important;white-space:nowrap}
.header-top .header-top__login-dropdown a:hover{background:#f1f5f9;color:#334155 !important}
.header-top .header-top__login-dropdown a i{width:16px;text-align:center;color:#64748b !important;font-size:13px;opacity:1 !important}
.header-top .header-top__login-dropdown .login-dropdown__logout{border-top:1px solid #e2e8f0;margin-top:4px;padding-top:10px;color:#dc2626 !important}
.header-top .header-top__login-dropdown .login-dropdown__logout i{color:#dc2626 !important}
.header-top .header-top__login-dropdown .login-dropdown__logout:hover{background:#fef2f2}
.header-top__login-wrap:hover .header-top__login-dropdown{visibility:visible !important;opacity:1 !important;pointer-events:auto}
.header-top__item--login i.fa-sign-in-alt{margin-right:2px}

/* ═══════════════════════════════════════════════════
   NAVIGATION BAR — separate from top bar
   ═══════════════════════════════════════════════════ */
.site-nav.navbar {
    padding: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}
.site-nav > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 72px;
}

/* ─── Sticky Header ─── */
.site-header.is-sticky .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    animation: hptSlideDown .3s ease;
}
@keyframes hptSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.navbar-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}
.site-logo img { max-height: 60px; width: auto; }
.custom-logo { max-height: 52px; width: auto; }

.navbar-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 100;
    min-width: 44px;
    min-height: 44px;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

.navbar-collapse {
    display: flex;
    justify-content: end;
    flex: 1 1 auto;
    margin-left: 36px;
}
.navbar-collapse .nav,
.site-nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.site-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    transition: color .15s;
}
.site-nav a:hover { color: var(--primary-color); }

/* ═══════════════════════════════════════════════════
   DROPDOWN MENUS & MEGA MENU
   ═══════════════════════════════════════════════════ */

/* ─── Parent item caret indicator ─── */
.site-nav .menu-item-has-children > a {
    position: relative;
    padding-right: 18px !important;
}
.site-nav .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .25s;
    opacity: .5;
}
.site-nav .menu-item-has-children:hover > a::after,
.site-nav .menu-item-has-children.hpt-open > a::after {
    transform: translateY(-50%) rotate(180deg);
    opacity: .8;
}

/* ─── Standard dropdown (sub-menu) ─── */
.site-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    border-top: 3px solid var(--primary-color, #1a8a8a);
    padding: 8px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s, visibility .25s, transform .25s;
    list-style: none;
    display: block;
}

/* Parent li needs relative positioning */
.site-nav .nav > li,
.site-nav .navbar-nav > li {
    position: relative;
}

/* Show on hover (desktop) */
.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children.hpt-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.site-nav .sub-menu li {
    display: block;
    position: relative;
}
.site-nav .sub-menu li a {
    display: block;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #444 !important;
    white-space: nowrap;
    transition: background .15s, color .15s, padding-left .2s;
    border-radius: 0;
}
.site-nav .sub-menu li a:hover {
    background: rgba(26,138,138,.06);
    color: var(--primary-color, #1a8a8a) !important;
    padding-left: 24px !important;
}
.site-nav .sub-menu li.current-menu-item > a {
    color: var(--primary-color, #1a8a8a) !important;
    font-weight: 600 !important;
}

/* ─── Nested sub-menu (level 3) ─── */
.site-nav .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-radius: 0 8px 8px 8px;
    border-top: none;
    border-left: 3px solid var(--primary-color, #1a8a8a);
}
/* Caret for nested items points right */
.site-nav .sub-menu .menu-item-has-children > a::after {
    content: '\f105';
    right: 12px;
    transform: translateY(-50%);
}
.site-nav .sub-menu .menu-item-has-children:hover > a::after {
    transform: translateY(-50%) translateX(2px);
}

/* ─── Mega Menu ─────────────────────────────────────
   Add CSS class "mega-menu" to a top-level menu item
   in WP Admin → Appearance → Menus (Screen Options →
   check CSS Classes). Its children become columns.
   ──────────────────────────────────────────────────── */
.site-nav .mega-menu > .sub-menu {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 680px;
    max-width: 960px;
    width: max-content;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    padding: 20px;
    border-radius: 0 0 12px 12px;
}
.site-nav .mega-menu:hover > .sub-menu,
.site-nav .mega-menu.hpt-open > .sub-menu {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}
/* Each column (child li) in mega menu */
.site-nav .mega-menu > .sub-menu > li {
    padding: 0 10px;
}
.site-nav .mega-menu > .sub-menu > li > a {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #222 !important;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 8px 10px 6px !important;
    border-bottom: 2px solid rgba(26,138,138,.15);
    margin-bottom: 4px;
}
.site-nav .mega-menu > .sub-menu > li > a:hover {
    padding-left: 10px !important;
    color: var(--primary-color, #1a8a8a) !important;
}
/* Mega menu nested links */
.site-nav .mega-menu > .sub-menu .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    display: block;
}
.site-nav .mega-menu > .sub-menu .sub-menu li a {
    padding: 7px 10px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    white-space: normal;
}
.site-nav .mega-menu > .sub-menu .sub-menu li a:hover {
    padding-left: 14px !important;
}
/* No nested caret in mega menu */
.site-nav .mega-menu .sub-menu .menu-item-has-children > a::after {
    display: none;
}

/* ─── Tourm-specific dropdown overrides ─── */
.hpt-header--tourm .site-nav .sub-menu {
    border-top-color: #1a8a8a;
}
.hpt-header--tourm .site-nav .sub-menu li a:hover {
    color: #1a8a8a !important;
    background: rgba(26,138,138,.06);
}

/* ─── Flavor-specific: dark nav needs light dropdowns ─── */
.hpt-header--flavor .site-nav .sub-menu {
    border-top-color: var(--primary-color, #FF6B35);
}

/* ═══════════════════════════════════════════════════ */

/* ─── Header CTA ─── */
.hpt-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 30px;
    background: var(--primary-color, #FF6B35);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background .2s, transform .15s;
    white-space: nowrap;
    margin-left: 16px;
    border: 2px solid transparent;
}
.hpt-header-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.hpt-header-cta--outline {
    background: transparent;
    color: var(--dark-color) !important;
    border: 2px solid var(--dark-color);
    border-radius: 50px;
    padding: 9px 26px;
    font-size: 14px;
}
.hpt-header-cta--outline:hover {
    background: var(--dark-color);
    color: #fff !important;
}
.hpt-header-cta--pill {
    border-radius: 50px;
    padding: 10px 32px;
    background: var(--dark-color, #1A1A1A);
}
.hpt-header-cta--pill:hover { background: #333; }
.hpt-header-cta--ghost {
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}
.hpt-header-cta--ghost:hover {
    background: var(--primary-color);
    color: #fff !important;
}

/* ─── Navbar right group ─── */
.navbar-right-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}

/* ─── Phone widget ─── */
.hpt-header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
}
.hpt-header-phone i {
    font-size: 16px;
    color: var(--primary-color);
    background: var(--light-color, #f5f5f5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hpt-header-phone__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    font-size: 14px;
    font-weight: 700;
}
.hpt-header-phone__text small {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .03em;
}

/* ─── Search toggle ─── */
.hpt-header-search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background .15s;
}
.hpt-header-search-toggle:hover { background: var(--light-color, #f5f5f5); }

/* ─── Search overlay ─── */
.hpt-header-search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    z-index: 999;
    padding: 16px 0;
}
.hpt-header-search-overlay form {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}
.hpt-header-search-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 15px;
    outline: none;
}
.hpt-header-search-input:focus { border-color: var(--primary-color); }
.hpt-header-search-submit,
.hpt-header-search-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
}
.hpt-header-search-close { color: var(--error-color); }

/* ═══════════════════════════════════════════════════
   HEADER STYLE 1: Classic
   Top bar (split) → Logo left, nav right, CTA
   ═══════════════════════════════════════════════════ */
/* (default layout — no extra rules needed) */

/* ═══════════════════════════════════════════════════
   HEADER STYLE 2: Tourm  —  EXACT replica
   Dark top bar → White nav with teal logo panel using
   PNG mask for the organic swoop shape + clustered
   menu + dark pill CTA
   ═══════════════════════════════════════════════════ */

/* --- Top Bar: DARK charcoal, white text (matches Tourm) --- */
.hpt-header--tourm .header-top {
    background-color: #2d3436;
    color: rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.hpt-header--tourm .header-top a { color: rgba(255,255,255,.85); }
.hpt-header--tourm .header-top a:hover { color: #fff; opacity: 1; }
.hpt-header--tourm .header-top > .container.container {
    width: 90% !important;
    max-width: 1776px !important;
    margin: 0 auto !important;
    padding: 11px 0 !important;
}
.hpt-header--tourm .header-top__item { color: rgba(255,255,255,.85); font-size: 13px; }
.hpt-header--tourm .header-top__item i { color: rgba(255,255,255,.6); }
.hpt-header--tourm .header-top__left > *:not(:first-child)::before,
.hpt-header--tourm .header-top__right > *:not(:first-child)::before {
    color: rgba(255,255,255,.25);
}

/* --- Nav Bar --- */
.hpt-header--tourm .site-nav.navbar {
    border-bottom: none;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    position: relative;
    overflow: visible;
    z-index: 100;
}

/* Container: items START from left, CTA pushed to right */
.hpt-header--tourm .site-nav > .container.container {
    width: 90% !important;
    max-width: 1776px !important;
    margin: 0 auto !important;
    min-height: 92px;
    padding: 0 !important;
    position: relative;
    z-index: 1;
    justify-content: flex-start;
    overflow: visible;
}

/* ── Teal logo panel — PNG mask swoop ─────────────────
   Uses mask-image on a positioned div to create the
   organic curve. Matches Tourm's .logo-bg exactly.
   ──────────────────────────────────────────────────── */
.hpt-header--tourm .tourm-logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 19%;
    height: 92px;
    z-index: -1;
    background-color: #1a8a8a;
    -webkit-mask-image: url(/standalone/assets/images/logo_bg_mask.png);
    mask-image: url(/standalone/assets/images/logo_bg_mask.png);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    pointer-events: none;
}

.hpt-header--tourm .navbar-header {
    position: relative;
    gap: 0;
    z-index: 2;
    flex-shrink: 0;
}

/* Logo: circle icon + text */
.hpt-header--tourm .site-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    position: relative;
    z-index: 2;
    padding: 0 16px 0 0;
}
/* When logo image is uploaded — show it directly */
.hpt-header--tourm .site-logo-img {
    max-height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}
/* When no logo — show icon circle + text */
.hpt-header--tourm .site-logo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.hpt-header--tourm .site-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.hpt-header--tourm .site-logo-icon i {
    font-size: 24px;
    color: #fff;
}
.hpt-header--tourm .site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.hpt-header--tourm .site-logo-text strong {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    white-space: nowrap;
}
.hpt-header--tourm .site-logo-text small {
    font-size: 12px;
    color: #f58a2c;
    font-weight: 600;
    letter-spacing: .03em;
    margin-top: 2px;
    white-space: nowrap;
}

/* ── Navigation links ── */
.hpt-header--tourm .navbar-collapse {
    justify-content: end !important;
    margin-left: 36px;
}
.hpt-header--tourm .navbar-collapse .nav,
.hpt-header--tourm .site-nav ul.navbar-nav,
.hpt-header--tourm .site-nav .navbar-nav {
    gap: 6px !important;
    justify-content: flex-start !important;
    flex-wrap: wrap;
}
.hpt-header--tourm .navbar-nav > li > a {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-transform: none;
    padding: 8px 14px;
    border-radius: 4px;
    white-space: nowrap;
    transition: color .15s, background .15s;
}
.hpt-header--tourm .navbar-nav > li > a:hover {
    color: #1a8a8a;
    background: rgba(26,138,138,.05);
}

/* ── CTA: dark pill pushed to right end ── */
.hpt-header--tourm .navbar-right-group {
    margin-left: auto;
    gap: 14px;
    flex-shrink: 0;
}
.hpt-header--tourm .hpt-header-cta--tourm {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #2d3436;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: background .25s, transform .15s, box-shadow .25s;
    white-space: nowrap;
    border: none;
    letter-spacing: .02em;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.hpt-header--tourm .hpt-header-cta--tourm:hover {
    background: #1a8a8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26,138,138,.3);
}
.hpt-header--tourm .hpt-header-cta--tourm i {
    font-size: 13px;
    transition: transform .25s;
}
.hpt-header--tourm .hpt-header-cta--tourm:hover i {
    transform: translateX(4px);
}

/* ── Tourm responsive: large-screen mask-panel breakpoints ── */
@media (min-width: 1930px) {
    .hpt-header--tourm .tourm-logo-bg { width: 30%; }
}
@media (min-width: 2570px) {
    .hpt-header--tourm .tourm-logo-bg { width: 40%; }
}
@media (max-width: 1299px) {
    .hpt-header--tourm .tourm-logo-bg { width: 28%; }
}
@media (max-width: 1199px) {
    .hpt-header--tourm .tourm-logo-bg { width: 40%; height: 80px; }
    .hpt-header--tourm .site-nav > .container { min-height: 80px; }
}
/* 991px breakpoint moved to responsive.css for consistency with 1024px hamburger */

/* ═══════════════════════════════════════════════════
   HEADER STYLE 3: GoFly (Modern)
   Announcement bar → Logo | Centered nav | Phone+Search+CTA
   ═══════════════════════════════════════════════════ */
.hpt-header--gofly .navbar-collapse {
    justify-content: center;
    flex: 1;
}
.hpt-header--gofly .navbar-nav--center { justify-content: center; }
.hpt-header--gofly .site-nav { border-bottom: 1px solid var(--border-color); }

/* ═══════════════════════════════════════════════════
   HEADER STYLE 4: Flavor (Logo centred above nav)
   Topbar → centred logo → full-width nav bar
   ═══════════════════════════════════════════════════ */
.hpt-header--flavor .site-nav > .container {
    flex-direction: column;
    padding: 0;
}
.hpt-header--flavor .navbar-header {
    padding: 18px 24px 12px;
    justify-content: center;
    width: 100%;
}
.hpt-header--flavor .custom-logo { max-height: 60px; }
.hpt-header--flavor .navbar-bottom {
    width: 100%;
    background: var(--dark-color, #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    min-height: 50px;
}
.hpt-header--flavor .navbar-bottom .nav { gap: 32px; }
.hpt-header--flavor .navbar-bottom a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 14px 0;
}
.hpt-header--flavor .navbar-bottom a:hover { color: var(--primary-color); }
.hpt-header--flavor .navbar-bottom .hpt-header-cta {
    margin-left: 24px;
    padding: 8px 22px;
    border-radius: 4px;
    font-size: 13px;
}

/* ═══════════════════════════════════════════════════
   HEADER STYLE 5: Starter (Minimal — no top bar)
   Just logo left, nav right, clean single line
   ═══════════════════════════════════════════════════ */
.hpt-header--starter .site-nav { border-bottom: 1px solid var(--border-color); }
.hpt-header--starter .site-nav > .container { min-height: 76px; }

/* Main Content */
main {
    min-height: calc(100vh - 300px);
    min-height: calc(100svh - 300px); /* iOS: plain vh overshoots the visible area */
    padding: 0;
}

/* ═══════════════════════════════════════════
   FOOTER — Modern multi-section layout
   Inspired by GetYourGuide / TourRadar / Klook
   ═══════════════════════════════════════════ */

/* Base */
.site-footer {
    margin-top: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ── Section 1: Trust / Partners Bar ── */
.footer-trust-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
    border-bottom: 1px solid #e0e4e8;
    padding: 24px 0;
}
.footer-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-review-badge a,
.footer-review-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    text-decoration: none;
    color: inherit;
}
.footer-review-badge .review-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
}
.footer-review-badge .review-stars {
    display: flex;
    gap: 2px;
}
.footer-review-badge .star-icon {
    color: #ddd;
}
.footer-review-badge .star-icon.filled {
    color: #00b67a;
}
.footer-review-badge .review-count {
    font-size: 0.85rem;
    color: #666;
}
.footer-review-badge .review-count strong {
    color: #333;
}
.footer-review-badge .review-score {
    font-weight: 700;
    font-size: 0.95rem;
    color: #00b67a;
}
.footer-review-badge .star-icon.partial {
    position: relative;
    color: #ddd;
}
.footer-review-badge .star-icon.partial polygon {
    fill: #ddd;
    stroke: #00b67a;
}
.footer-review-badge .star-icon.partial::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #00b67a;
    clip-path: inset(0 calc(100% - var(--star-fill, 50%)) 0 0);
    mix-blend-mode: source-in;
}
.footer-review-embed {
    display: flex;
    align-items: center;
}
.footer-trust-logos {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-trust-logos .trust-title {
    font-weight: 600;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.trust-logos-list {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-logos-list img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}
.trust-logos-list a:hover img,
.trust-logos-list span:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ── Section 2: Main Footer ── */
.footer-main {
    background-color: var(--dark-color, #1A1A1A);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 48px;
    position: relative;
}
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color, #FF6B35), var(--secondary-color, #004E89), var(--primary-color, #FF6B35));
}
.footer-main__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

/* Brand column */
.footer-main__brand {
    padding-right: 20px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    text-decoration: none;
}
.footer-logo img {
    /* !important: <body> carries a sitewide "elementor" class (see
       standalone/index.php's <body> tag), and Elementor's own base CSS
       (custom-frontend.min.css, loaded on pages with Elementor-style
       widgets, e.g. /about/) ships a same-specificity ".elementor img"
       rule that resets height to auto and wins on load order there,
       inflating this footer logo on those pages only. The footer is
       shared/universal, so it must win regardless of what a given page
       happens to load. */
    height: 44px !important;
    width: auto !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.footer-logo--text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.footer-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0 0 20px;
    max-width: 320px;
}

/* Contact info */
.footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.footer-contact__item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
    stroke: currentColor;
}
a.footer-contact__item:hover {
    color: var(--primary-color, #FF6B35);
}

/* Social icons inline */
.footer-social-inline {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.footer-social-inline .social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social-inline .social-icon:hover {
    color: #fff;
    background: var(--primary-color, #FF6B35);
    border-color: var(--primary-color, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}
.footer-social-inline .social-icon svg {
    width: 16px;
    height: 16px;
}

/* Link columns */
.footer-main__heading {
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 20px;
    padding-bottom: 12px;
    position: relative;
}
.footer-main__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary-color, #FF6B35);
    border-radius: 1px;
}
.footer-main__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-main__links li {
    margin-bottom: 10px;
}
.footer-main__links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}
.footer-main__links a:hover {
    color: var(--primary-color, #FF6B35);
    padding-left: 4px;
}
.footer-main__view-all {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-main__view-all a {
    color: var(--primary-color, #FF6B35) !important;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.3px;
}
.footer-main__view-all a:hover {
    color: #fff !important;
}

/* Widget fallback row */
.footer-widgets-row {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-columns-grid {
    display: grid;
    gap: 30px;
}
.footer-columns-grid.cols-1 { grid-template-columns: 1fr; }
.footer-columns-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.footer-columns-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.footer-columns-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.footer-col h2,
.footer-col h3,
.footer-col h4,
.footer-col .widget-title {
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    position: relative;
    display: block;
}
.footer-col .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary-color, #FF6B35);
    border-radius: 1px;
}
.footer-col .widget {
    margin-bottom: 20px;
}
.footer-col .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col .widget ul li {
    margin-bottom: 8px;
}
.footer-col .widget a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}
.footer-col .widget a:hover {
    color: var(--primary-color, #FF6B35);
    padding-left: 4px;
}

/* Footer gallery/image constraints */
.footer-col .wp-block-gallery,
.footer-col .wp-block-gallery.is-layout-flex,
.footer-col .wp-block-gallery.wp-block-gallery-is-layout-flex {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    flex-wrap: unset;
}
.footer-col .wp-block-gallery .wp-block-image,
.footer-col .wp-block-gallery .wp-block-image.size-large {
    margin: 0 !important;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    width: 100% !important;
    max-width: 100% !important;
}
.footer-col .wp-block-gallery .wp-block-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    max-width: 100%;
}
.footer-col .widget_media_image img,
.footer-col .widget img {
    max-width: 100%;
    height: auto;
}

/* ── Section 3: Bottom Bar ── */
.footer-bottom-bar {
    background-color: var(--dark-color, #1A1A1A);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-bar-section h5 {
    color: rgba(255,255,255,0.45);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
}

/* Payment Icons */
.footer-payments .payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.footer-payments .payment-icon {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.footer-payments .payment-icon:hover {
    opacity: 1;
}
.footer-payments .payment-icon svg {
    display: block;
}

/* App Download Badges */
.footer-apps .app-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-apps .app-badge {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-apps .app-badge:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}
.footer-apps .app-badge svg {
    display: block;
}

/* ── Section 4: Copyright / Legal Bar ── */
.footer-copyright-bar {
    background-color: rgba(0,0,0,0.3);
    padding: 16px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-copyright-text p {
    margin: 0;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}
.footer-copyright-text a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-copyright-text a:hover {
    color: var(--primary-color, #FF6B35);
}
.footer-credit {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
}
.footer-credit a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-credit a:hover {
    color: var(--primary-color, #FF6B35);
}
.footer-legal-nav .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 6px;
    align-items: center;
}
.footer-legal-nav .legal-links li {
    display: flex;
    align-items: center;
}
.footer-legal-nav .legal-links li:not(:last-child)::after {
    content: '·';
    margin-left: 6px;
    color: rgba(255,255,255,0.2);
}
.footer-legal-nav .legal-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}
.footer-legal-nav .legal-links a:hover {
    color: var(--primary-color, #FF6B35);
}

/* ── Footer Responsive ── */
@media (max-width: 1024px) {
    .footer-main__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-main__brand {
        grid-column: 1 / -1;
        padding-right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .footer-main__brand .footer-logo,
    .footer-main__brand .footer-tagline {
        grid-column: 1 / -1;
    }
}
@media (max-width: 991px) {
    .footer-columns-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-trust-inner {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 32px;
    }
    .footer-main__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-main__brand {
        display: block;
        text-align: center;
    }
    .footer-main__brand .footer-tagline {
        max-width: 100%;
    }
    .footer-main__brand .footer-contact {
        align-items: center;
    }
    .footer-main__brand .footer-social-inline {
        justify-content: center;
    }
    .footer-main__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-main__col {
        text-align: center;
    }
    .footer-main__links a:hover {
        padding-left: 0;
    }
    .footer-columns-grid.cols-2,
    .footer-columns-grid.cols-3,
    .footer-columns-grid.cols-4 {
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-copyright-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal-nav .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .trust-logos-list {
        gap: 14px;
        justify-content: center;
    }
    .trust-logos-list img {
        height: 42px;
    }
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.hpt-search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    align-items: end;
    margin-bottom: 20px;
}

/* Booking Widget */
.booking-widget {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.booking-widget h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    font-size: 1.25rem;
}

.booking-price {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-price .price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-price .price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.booking-price .price-unit {
    display: block;
    font-size: 0.875rem;
    color: #666;
}

.booking-form {
    margin-top: 1rem;
}

.booking-notice {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--light-color);
    border-radius: 4px;
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-notice i {
    color: var(--primary-color);
}

.helper-text {
    font-size: 0.75rem;
    color: #999;
    font-weight: normal;
}

.price-breakdown-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 6px;
}

.price-breakdown-container h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.price-line.discount {
    color: var(--success-color);
    font-weight: 600;
}

.price-line.total {
    border-top: 2px solid var(--border-color);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-line .total-amount {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.price-loading,
.price-error {
    text-align: center;
    padding: 1rem;
    color: #666;
}

.price-loading i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.price-error {
    color: var(--error-color);
}

.sidebar-section {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    /* Remove height and max-height */
}

.sidebar-section h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
}

.sidebar-section ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-section ul li:last-child {
    border-bottom: none;
}
/* Remove scroll from sidebar filters on all screens */
.sidebar-section, .sidebar-section ul, .sidebar-section ul li, .sidebar-section ul li:last-child {
    /* No overflow property here */
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.post-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    /* overflow property removed */
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.post-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 15px;
}

.post-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

/* Lightbox */
.hpt-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.hpt-lightbox.is-open {
    display: flex;
}

.hpt-lightbox img {
    max-width: 90vw;
    /* max-height removed */
    border-radius: 6px;
}

.hpt-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* Map Styles */
.hpt-tour-map-section,
.hpt-activity-map-section {
    margin: 1.5rem 0;
    padding: 0;
    background: transparent;
}

.hpt-tour-map-section__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hpt-tour-map-section__title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 17px;
    background: #FF6B35;
    border-radius: 2px;
    flex-shrink: 0;
}

.hpt-tour-map-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 0 0 14px;
}

.hpt-tour-map-location-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.hpt-tour-map-location-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.hpt-tour-map-location-card__name {
    font-size: 16px;
    line-height: 1.3;
    color: #111827;
}

.hpt-tour-map-location-card__address {
    font-size: 13px;
    line-height: 1.45;
    color: #6b7280;
}

.hpt-tour-map-location-card--pickup {
    border-left: 4px solid #22c55e;
}

.hpt-tour-map-location-card--dropoff {
    border-left: 4px solid #ef4444;
}

.hpt-section-title {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hpt-tour-map,
.hpt-activity-map {
    width: 100%;
    height: 340px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
    z-index: 1;
}

/* Leaflet Map Overrides */
.hpt-tour-map .leaflet-container,
.hpt-activity-map .leaflet-container {
    border-radius: 10px;
}

/* Hide Leaflet/CARTO attribution */
.hpt-tour-map .leaflet-control-attribution,
.hpt-activity-map .leaflet-control-attribution {
    display: none !important;
}

.hpt-tour-map .leaflet-popup-content-wrapper,
.hpt-activity-map .leaflet-popup-content-wrapper {
    background: #1a1a2e;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    border: none;
}

.hpt-tour-map .leaflet-popup-tip,
.hpt-activity-map .leaflet-popup-tip {
    background: #1a1a2e;
}

.hpt-tour-map .leaflet-popup-content,
.hpt-activity-map .leaflet-popup-content {
    color: #fff;
    font-size: 0.82rem;
    margin: 10px 14px;
}

.hpt-tour-map .leaflet-popup-content strong,
.hpt-activity-map .leaflet-popup-content strong {
    display: block;
    margin-bottom: 3px;
    font-size: 0.88rem;
    color: #FF6B35;
}

/* Permanent waypoint name labels */
.hpt-map-waypoint-label {
    background: rgba(26, 26, 46, 0.82) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 3px 7px !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22) !important;
}

.hpt-map-waypoint-label.leaflet-tooltip-top::before {
    display: none !important;
}

/* Cart Page */
.hpt-cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin: 2rem 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-item-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
}

.cart-item-info h4 a {
    color: var(--secondary-color);
    text-decoration: none;
}

.cart-item-info h4 a:hover {
    color: var(--primary-color);
}

.cart-item-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #666;
}

.cart-item-price .price-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

.cart-item-price .price-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-item-actions .btn-remove {
    background: transparent;
    border: none;
    color: var(--error-color);
    font-size: 1.25rem;
    cursor: pointer;
}

.cart-loading {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

.cart-summary {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    position: sticky;
    top: 20px;
}

.cart-summary h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.summary-line.total {
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-color);
    border-radius: 8px;
    margin: 2rem 0;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

/* Order Confirmation */
.order-confirmation {
    max-width: 900px;
    margin: 2rem auto;
}

.confirmation-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    color: #fff;
    margin-bottom: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.confirmation-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.order-details-card,
.booking-details-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.order-info .info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-info .info-item .label {
    font-size: 0.875rem;
    color: #666;
}

.order-info .info-item .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.booking-item {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.booking-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-item-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.next-steps {
    background: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.75rem 0;
    display: flex;
    gap: 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    background: #f5f5f5;
    margin-bottom: 30px;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

.breadcrumb-item .separator {
    margin: 0 8px;
    color: #999;
}

/* Casual deterrent, not real protection — a determined visitor can still save any
   image via DevTools/network tab. Keeps images from being drag-saved by accident/
   casually. Never applied to form fields (see assets/js/anti-copy.js for the JS side). */
img {
    -webkit-user-drag: none;
    user-drag: none;
}



/* cache-bust: force new CSS bundle hash after css-bundle-v2.php fix, 2026-08-16 */

/* Shared honeypot-field hider — used by every antispam form (security.php's
   he_antispam_fields(), plus the tour/activity request modals) so the same
   pattern isn't repeated inline at every call site. */
.he-honeypot-hide {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.he-honeypot-hide--block {
    width: 0;
    height: 0;
}

/* css/responsive.css */
/* Responsive Styles
   ═══════════════════════════════════════════════════
   Breakpoints:
     1200px  – large desktops
     1024px  – tablets / hamburger menu kicks in
     768px   – tablets portrait / topbar stacks
     480px   – phones
     375px   – small phones (iPhone SE, Galaxy S)
     320px   – Z Fold closed, very narrow screens
     280px   – Z Fold extreme narrow
   ═══════════════════════════════════════════════════ */

/* Chatbot panel: inline-styled at a fixed 380px width anchored to the
   trigger button's right edge (standalone/index.php's he_render_chatbot_widget())
   with no responsive override at all — on any viewport under ~410px wide,
   it inevitably runs off the LEFT edge of the screen (confirmed live via a
   real headless-browser measurement at 375px: the panel's left edge landed
   at -29px, off-screen). `!important` is required here since inline styles
   otherwise always win over an external stylesheet. */
@media (max-width: 480px) {
    #cb-panel {
        width: calc(100vw - 24px) !important;
        max-width: 380px !important;
        right: -12px !important;
        bottom: 76px !important;
        max-height: min(560px, 80vh) !important;
    }
}

/* ─── 1200px: large desktop tweaks ─── */
@media (max-width: 1200px) {
    .header-top > .container {
        padding: 12px 20px;
    }
    .site-nav > .container {
        padding: 0 20px;
    }
    /* Nav items: tighten gaps & shrink text to prevent overflow */
    .navbar-collapse .nav,
    .site-nav ul {
        gap: 8px;
    }
    .site-nav a {
        font-size: 13px;
        padding: 6px 4px;
    }
    .hpt-header--tourm .navbar-collapse .nav,
    .hpt-header--tourm .site-nav ul.navbar-nav,
    .hpt-header--tourm .site-nav .navbar-nav {
        gap: 2px !important;
    }
    .hpt-header--tourm .site-nav a {
        font-size: 13px;
        padding: 6px 8px;
    }
    .hpt-header--tourm .navbar-collapse {
        margin-left: 16px;
    }
    .hpt-header--tourm .hpt-header-cta--tourm {
        padding: 11px 20px;
        font-size: 13px;
    }
    .hpt-header--tourm .site-nav > .container.container,
    .hpt-header--tourm .header-top > .container.container {
        width: 94% !important;
    }
}

/* ─── 1024px: tablets — hamburger menu, mobile nav ─── */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    /* Topbar: tighten spacing */
    .header-top > .container {
        padding: 10px 16px;
        gap: 8px;
    }
    .header-top__item {
        font-size: 12px;
    }
    .header-top__left > *:not(:first-child)::before,
    .header-top__right > *:not(:first-child)::before {
        margin-right: 6px;
    }
    .hpt-header--tourm .site-nav > .container.container,
    .hpt-header--tourm .header-top > .container.container {
        width: 96% !important;
    }

    /* ── Header mobile ── */
    .site-header {
        padding: 0;
    }

    /* ── Navbar toggle: show hamburger ── */
    .navbar-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    /* ── Collapse nav ── */
    .navbar-collapse {
        display: none;
        width: 100%;
        order: 10;
    }
    .navbar-collapse.show {
        display: block !important;
        margin-top: 0;
    }

    /* ── Mobile nav layout ── */
    .site-nav > .container {
        flex-wrap: wrap;
        min-height: 60px;
        padding: 0 15px;
    }
    .navbar-collapse .nav,
    .site-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
    }
    .navbar-collapse .nav li a,
    .site-nav ul li a {
        display: block;
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(0,0,0,.06);
        font-size: 15px;
    }

    /* CTA / right group: hide on mobile — shown inside collapsed menu if needed */
    .navbar-right-group {
        display: none !important;
    }
    .hpt-header-cta {
        display: none !important;
    }

    /* ── Mobile dropdown/mega resets ── */
    .site-nav .sub-menu {
        position: static !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        border-top: none !important;
        border-left: 3px solid var(--primary-color, #1a8a8a) !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-width: 0 !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: none;
        background: rgba(0,0,0,.02);
    }
    .site-nav .menu-item-has-children.hpt-open > .sub-menu {
        display: block;
    }
    .site-nav .sub-menu li a {
        padding-left: 28px !important;
        font-size: 14px !important;
    }
    .site-nav .sub-menu .sub-menu li a {
        padding-left: 44px !important;
        font-size: 13px !important;
    }
    .site-nav .menu-item-has-children > a::after {
        display: none !important;
    }
    /* Mobile submenu toggle button */
    .hpt-submenu-toggle {
        position: absolute;
        right: 0;
        top: 0;
        width: 44px;
        height: 44px;
        background: none;
        border: 1px solid rgba(0,0,0,.06);
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #555;
        font-size: 12px;
        transition: background .15s;
        z-index: 2;
    }
    .hpt-submenu-toggle:hover {
        background: rgba(0,0,0,.04);
    }
    .site-nav .menu-item-has-children {
        position: relative;
    }
    /* Mega-menu: single column on mobile */
    .site-nav .mega-menu > .sub-menu {
        display: none !important;
        grid-template-columns: 1fr !important;
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        padding: 0 !important;
    }
    .site-nav .mega-menu.hpt-open > .sub-menu {
        display: block !important;
    }
    .site-nav .mega-menu > .sub-menu > li {
        padding: 0;
    }
    .site-nav .mega-menu > .sub-menu .sub-menu {
        display: block !important;
        border: none !important;
    }

    /* Right group hidden on mobile (CTA/phone/search handled in collapsed menu) */
    .hpt-header-phone__text small { display: none; }
    .hpt-header-search-overlay form { padding: 0 16px; }

    /* ── Tourm specific at 1024 ── */
    .hpt-header--tourm .navbar-collapse {
        margin-left: 0;
        width: 100%;
        background: #fff;
    }
    .hpt-header--tourm .site-nav > .container.container {
        width: 100% !important;
        min-height: 60px;
        padding: 0 15px !important;
        flex-wrap: wrap;
    }
    .hpt-header--tourm .tourm-logo-bg {
        height: 60px;
        width: 55%;
    }
    .hpt-header--tourm .site-logo-icon {
        width: 42px;
        height: 42px;
    }
    .hpt-header--tourm .site-logo-text strong {
        font-size: 18px;
    }
    .hpt-header--tourm .site-logo-text small {
        font-size: 10px;
    }
    .hpt-header--tourm .site-logo-img {
        max-height: 44px;
    }

    /* Footer */
    .footer-widgets {
        grid-template-columns: 1fr;
    }

    /* Posts Grid */
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .post-image {
        height: 200px;
    }
}

/* ─── 768px: tablet portrait — topbar stacks ─── */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* ── Top bar: stack to centered column ── */
    .header-top > .container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 8px 12px;
        min-height: auto;
    }
    .header-top__left,
    .header-top__right,
    .header-top__center {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
    .header-top__right {
        margin-left: 0;
    }
    .header-top__social {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        justify-content: center;
    }
    .header-top__divider {
        display: none;
    }
    /* Pipe dividers: hide on mobile to save space */
    .header-top__left > *:not(:first-child)::before,
    .header-top__right > *:not(:first-child)::before {
        content: none;
    }
    .header-top__item {
        font-size: 12px;
        gap: 5px;
    }

    /* ── Tourm topbar tablet/mobile ── */
    .hpt-header--tourm .header-top > .container.container {
        width: 100% !important;
        padding: 8px 15px !important;
        flex-direction: column;
        text-align: center;
    }

    /* Main content */
    main {
        padding: 20px 0;
    }

    /* Forms */
    input[type="text"],
    input[type="email"],
    input[type="date"],
    input[type="number"],
    select,
    textarea {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ─── 480px: small phones ─── */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }

    .container {
        padding: 0 10px;
    }

    /* Top bar: further reduce */
    .header-top > .container {
        padding: 6px 10px;
    }
    .header-top__item {
        font-size: 11px;
        gap: 4px;
    }
    .header-top__social a {
        font-size: 12px;
    }
    .header-top__social {
        gap: 8px;
    }

    /* Nav bar */
    .site-nav > .container {
        min-height: 54px;
        padding: 0 10px;
    }
    .site-nav a {
        font-size: 0.9rem;
    }
    .navbar-collapse .nav li a,
    .site-nav ul li a {
        padding: 11px 12px !important;
        font-size: 14px;
    }

    /* Tourm specifics */
    .hpt-header--tourm .tourm-logo-bg {
        width: 65%;
        height: 54px;
    }
    .hpt-header--tourm .site-nav > .container.container {
        min-height: 54px;
        padding: 0 10px !important;
    }
    .hpt-header--tourm .header-top > .container.container {
        padding: 6px 10px !important;
    }
    .hpt-header--tourm .site-logo-wrap {
        gap: 10px;
        padding: 0 10px 0 0;
    }
    .hpt-header--tourm .site-logo-icon {
        width: 36px;
        height: 36px;
    }
    .hpt-header--tourm .site-logo-icon i {
        font-size: 18px;
    }
    .hpt-header--tourm .site-logo-text strong {
        font-size: 16px;
    }
    .hpt-header--tourm .site-logo-text small {
        font-size: 9px;
    }
    .hpt-header--tourm .site-logo-img {
        max-height: 38px;
    }
    .hpt-header--tourm .hpt-header-cta--tourm {
        padding: 9px 16px;
        font-size: 12px;
        gap: 6px;
    }

    .hpt-submenu-toggle {
        width: 38px;
        height: 38px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .post-card {
        border-radius: 4px;
    }
    .post-content {
        padding: 15px;
    }

    /* Maps */
    .hpt-tour-map-section,
    .hpt-activity-map-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    .hpt-tour-map,
    .hpt-activity-map {
        height: 350px;
    }

    /* Cart */
    .hpt-cart-wrapper {
        grid-template-columns: 1fr;
    }
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .cart-item-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    .cart-summary {
        position: relative;
        top: 0;
    }

    /* Order Confirmation */
    .booking-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .action-buttons {
        flex-direction: column;
    }
    .order-info {
        grid-template-columns: 1fr;
    }
}

/* ─── 375px: small phones (iPhone SE, Galaxy S) ─── */
@media (max-width: 375px) {
    .container {
        padding: 0 8px;
    }

    /* Top bar: ultra compact */
    .header-top > .container {
        padding: 5px 8px;
        gap: 2px;
    }
    .header-top__item {
        font-size: 10px;
    }
    .header-top__item i {
        font-size: 9px;
    }
    /* Hide email text, keep icons on very small screens */
    .header-top__item--email {
        font-size: 0;
    }
    .header-top__item--email i {
        font-size: 12px;
    }
    /* Hide address text completely */
    .header-top__item--address span { display: none; }

    /* Nav bar */
    .site-nav > .container {
        min-height: 50px;
        padding: 0 8px;
    }
    .site-logo img,
    .custom-logo {
        max-height: 36px;
    }

    /* Tourm */
    .hpt-header--tourm .tourm-logo-bg {
        width: 72%;
        height: 50px;
    }
    .hpt-header--tourm .site-nav > .container.container {
        min-height: 50px;
        padding: 0 8px !important;
    }
    .hpt-header--tourm .site-logo-icon {
        width: 32px;
        height: 32px;
    }
    .hpt-header--tourm .site-logo-icon i {
        font-size: 16px;
    }
    .hpt-header--tourm .site-logo-text strong {
        font-size: 14px;
    }
    .hpt-header--tourm .site-logo-text small {
        font-size: 8px;
    }
    .hpt-header--tourm .site-logo-img {
        max-height: 34px;
    }
    .hpt-header--tourm .hpt-header-cta--tourm {
        padding: 8px 14px;
        font-size: 11px;
    }

    .navbar-toggle {
        padding: 6px 8px;
    }
    .navbar-toggle .icon-bar {
        width: 18px;
        margin: 3px 0;
    }
}

/* ─── 320px: Z Fold closed & ultra-narrow ─── */
@media (max-width: 320px) {
    html {
        font-size: 13px;
    }
    .container {
        padding: 0 6px;
    }

    /* Top bar: minimal — hide non-essential items */
    .header-top > .container {
        padding: 4px 6px;
        gap: 2px;
    }
    .header-top__item--address,
    .header-top__item--hours,
    .header-top__item--welcome {
        display: none;
    }
    .header-top__item {
        font-size: 10px;
    }
    .header-top__social {
        gap: 6px;
    }
    .header-top__social a {
        font-size: 11px;
    }

    /* Nav: ultra compact */
    .site-nav > .container {
        min-height: 46px;
        padding: 0 6px;
    }
    .site-logo img,
    .custom-logo {
        max-height: 30px;
    }
    .navbar-toggle {
        padding: 5px 7px;
    }
    .navbar-toggle .icon-bar {
        width: 16px;
        height: 2px;
        margin: 3px 0;
    }
    .navbar-collapse .nav li a,
    .site-nav ul li a {
        padding: 10px 8px !important;
        font-size: 13px;
    }
    .site-nav .sub-menu li a {
        padding-left: 20px !important;
        font-size: 12px !important;
    }
    .site-nav .sub-menu .sub-menu li a {
        padding-left: 32px !important;
        font-size: 12px !important;
    }
    .hpt-submenu-toggle {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }

    /* Tourm specifics */
    .hpt-header--tourm .tourm-logo-bg {
        width: 80%;
        height: 46px;
    }
    .hpt-header--tourm .site-nav > .container.container {
        min-height: 46px;
        padding: 0 6px !important;
    }
    .hpt-header--tourm .site-logo-wrap {
        gap: 6px;
        padding: 0 6px 0 0;
    }
    .hpt-header--tourm .site-logo-icon {
        width: 28px;
        height: 28px;
    }
    .hpt-header--tourm .site-logo-icon i {
        font-size: 14px;
    }
    .hpt-header--tourm .site-logo-text strong {
        font-size: 12px;
    }
    .hpt-header--tourm .site-logo-text small {
        display: none;
    }
    .hpt-header--tourm .site-logo-img {
        max-height: 28px;
    }
    /* CTA: icon only on ultra-narrow */
    .hpt-header--tourm .hpt-header-cta--tourm {
        padding: 7px 12px;
        font-size: 11px;
        gap: 4px;
    }

    /* Right group compact */
    .navbar-right-group {
        padding: 8px;
        gap: 6px;
    }

    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.15rem; }
    h3 { font-size: 1rem; }
}

/* ─── 280px: Z Fold inner edge / extreme narrow ─── */
@media (max-width: 280px) {
    .container {
        padding: 0 4px;
    }
    /* Hide topbar entirely on extremely narrow screens */
    .header-top {
        display: none;
    }
    .site-nav > .container {
        min-height: 42px;
        padding: 0 4px;
    }
    .hpt-header--tourm .site-nav > .container.container {
        min-height: 42px;
        padding: 0 4px !important;
    }
    .hpt-header--tourm .tourm-logo-bg {
        width: 90%;
        height: 42px;
    }
    .hpt-header--tourm .site-logo-text strong {
        font-size: 11px;
    }
    .hpt-header--tourm .site-logo-icon {
        width: 24px;
        height: 24px;
    }
    .navbar-collapse .nav li a,
    .site-nav ul li a {
        padding: 9px 6px !important;
        font-size: 12px;
    }
}

/* css/custom-theme.css */
/**
 * Hunza Explorers — Custom Frontend Theme Layer
 *
 * Additive CSS-only overlay on top of main.css / hptours-style.
 * No PHP or JS changes. All rules use specific selectors to prevent
 * unintended cross-component bleed.
 *
 * Load order: after hptours-style, hptours-tour-card, hptours-responsive.
 */

/* ─── Design Tokens ──────────────────────────────────────────────────────── */
:root {
    /* Brand palette — warm mountain earth tones */
    --he-primary:    #1a3c4e;   /* deep slate navy */
    --he-secondary:  #e3640c;   /* Hunza saffron-orange */
    --he-accent:     #c8490a;   /* deeper amber for hover */
    --he-warm-1:     #fdf6ed;   /* page wash */
    --he-warm-2:     #f7ede0;   /* card face */
    --he-warm-3:     #eedcca;   /* card border / divider */
    --he-warm-4:     #e1cdb5;   /* stronger border */
    --he-text:       #1c2d35;   /* body copy */
    --he-muted:      #5d7580;   /* secondary copy */
    --he-radius-sm:  8px;
    --he-radius-md:  14px;
    --he-radius-lg:  20px;
    --he-shadow:     0 6px 24px rgba(26, 60, 78, 0.10);
    --he-shadow-sm:  0 2px 10px rgba(26, 60, 78, 0.07);

    /* Override theme variables to match Hunza branding */
    --primary-color:   #1a3c4e;
    --secondary-color: #e3640c;
    --accent-color:    #c8490a;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--he-warm-1);
    color: var(--he-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    color: var(--he-primary);
}

h1 { color: var(--he-primary); }

/* ─── Global link / button tokens ───────────────────────────────────────── */
a {
    color: var(--he-primary);
}

a:hover {
    color: var(--he-secondary);
}

.btn-primary,
.button.wc-forward,
.woocommerce .button.alt,
input[type="submit"].btn-primary {
    background-color: var(--he-secondary);
    border-color: var(--he-secondary);
}

.btn-primary:hover,
.button.wc-forward:hover,
.woocommerce .button.alt:hover {
    background-color: var(--he-accent);
    border-color: var(--he-accent);
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.site-header,
.header-inner,
header.site-header {
    background-color: var(--he-primary);
}

/* Top-level nav links */
.main-nav > ul > li > a,
.nav-menu > li > a,
.primary-menu > li > a {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.main-nav > ul > li > a:hover,
.nav-menu > li > a:hover,
.primary-menu > li > a:hover {
    color: #f7c97e;
}

/* Dropdown */
.main-nav .sub-menu,
.nav-menu .sub-menu {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    box-shadow: var(--he-shadow);
}

.main-nav .sub-menu a,
.nav-menu .sub-menu a {
    color: var(--he-primary);
}

.main-nav .sub-menu a:hover,
.nav-menu .sub-menu a:hover {
    color: var(--he-secondary);
    background: var(--he-warm-2);
}

/* ─── Site footer ────────────────────────────────────────────────────────── */
.site-footer,
footer.site-footer {
    background-color: var(--he-primary);
    color: #d9e8ef;
}

.site-footer a,
footer.site-footer a {
    color: #f0c97c;
}

.site-footer a:hover,
footer.site-footer a:hover {
    color: #fff;
}

/* ─── Tour cards (hpt_tour cards) ───────────────────────────────────────── */
.tour-card,
.hptours-tour-card,
article.type-hpt_tour {
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    background: #fff;
    box-shadow: var(--he-shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.tour-card:hover,
.hptours-tour-card:hover,
article.type-hpt_tour:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-3px);
}

.tour-card .tour-card-price,
.hptours-tour-card .price,
.tour-price {
    color: var(--he-secondary);
    font-weight: 700;
}

/* ─── Section wrappers ───────────────────────────────────────────────────── */
.section-title,
.section-heading {
    font-family: 'Outfit', sans-serif;
    color: var(--he-primary);
}

/* Content wrappers with warm card treatment */
.content-area .entry-content,
.page-content {
    color: var(--he-text);
}

/* ─── Forms ──────────────────────────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="password"],
select,
textarea {
    border: 1.5px solid var(--he-warm-4);
    border-radius: var(--he-radius-sm);
    background: #fff;
    color: var(--he-text);
    font-family: 'Space Grotesk', sans-serif;
    transition: border-color 0.18s, box-shadow 0.18s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    border-color: var(--he-secondary);
    box-shadow: 0 0 0 3px rgba(227, 100, 12, 0.15);
    outline: none;
}

/* ─── Breadcrumbs ────────────────────────────────────────────────────────── */
.breadcrumb,
.breadcrumbs {
    color: var(--he-muted);
    font-size: 0.85rem;
}

.breadcrumb a,
.breadcrumbs a {
    color: var(--he-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER — top bar + main nav
   ═══════════════════════════════════════════════════════════════════════════ */

/* Top info bar */
.header-top {
    background-color: var(--he-primary);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-top__item,
.header-top__item a {
    color: rgba(255,255,255,0.78);
    font-size: 0.82rem;
}

.header-top__item a:hover {
    color: #f7c97e;
}

/* Main header / tourm header */
.hpt-header--tourm {
    background: var(--he-primary);
    box-shadow: 0 2px 14px rgba(26,60,78,0.18);
}

/* Header CTA button */
.hpt-header-cta,
.hpt-header-cta--tourm {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border: none;
    transition: background 0.18s;
    padding: 5px 10px 5px 10px !important;
}

.hpt-header-cta:hover,
.hpt-header-cta--tourm:hover {
    background: var(--he-accent);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MEGA MENU
   ═══════════════════════════════════════════════════════════════════════════ */

.hpt-mega-panel,
.hpt-mega-panel--tours,
.hpt-mega-panel--destinations,
.hpt-mega-panel--activities {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: 0 0 var(--he-radius-lg) var(--he-radius-lg);
    box-shadow: 0 12px 40px rgba(26,60,78,0.14);
}

.hpt-mega-dest-tabs {
    background: var(--he-warm-2);
    border-right: 1px solid var(--he-warm-3);
}

.hpt-mega-dest-tab {
    color: var(--he-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: var(--he-radius-sm);
    transition: background 0.15s, color 0.15s;
}

.hpt-mega-dest-tab:hover,
.hpt-mega-dest-tab.active {
    background: var(--he-secondary);
    color: #fff;
}

.hpt-mega-dest-panel__title {
    color: var(--he-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.hpt-mega-dest-child__name {
    color: var(--he-primary);
    font-weight: 600;
}

.hpt-mega-dest-child:hover .hpt-mega-dest-child__name {
    color: var(--he-secondary);
}

.hpt-mega-see-all,
.hpt-mega-view-all,
.hpt-mega-dest-see-more {
    color: var(--he-secondary);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.hpt-mega-tour-card {
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    overflow: hidden;
    background: #fff;
}

.hpt-mega-tour-card__title {
    color: var(--he-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════════════════════ */

.hptours-hero-slider {
    border-radius: 0;
}

/* Overlay gradient: warm, deeper navy at bottom */
.hptours-hero-slide__overlay {
    background: linear-gradient(
        to top,
        rgba(26, 60, 78, 0.85) 0%,
        rgba(26, 60, 78, 0.35) 50%,
        rgba(0,0,0,0.05) 100%
    );
}

/* Slide title */
.hptours-hero-slide__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hptours-hero-slide__desc {
    color: rgba(255,255,255,0.88);
    font-family: 'Space Grotesk', sans-serif;
}

/* Hero CTA buttons */
.hptours-hero-button--primary {
    background: var(--he-secondary);
    border-color: var(--he-secondary);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border-radius: var(--he-radius-sm);
    transition: background 0.18s, transform 0.18s;
}

.hptours-hero-button--primary:hover {
    background: var(--he-accent);
    border-color: var(--he-accent);
    transform: translateY(-2px);
}

.hptours-hero-button--secondary {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: var(--he-radius-sm);
    backdrop-filter: blur(4px);
}

.hptours-hero-button--secondary:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Badges / pills */
.hptours-hero-badge,
.hptours-hero-badge--location {
    background: rgba(26,60,78,0.72);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
}

.hptours-hero-tag,
.hptours-hero-pill {
    background: rgba(227, 100, 12, 0.85);
    color: #fff;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* Hero search card */
.hptours-hero-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: 0 12px 40px rgba(26,60,78,0.20);
    backdrop-filter: blur(8px);
}

.hptours-hero-card__title {
    color: var(--he-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.hptours-hero-card__label {
    color: var(--he-muted);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.hptours-hero-card .hptours-hero-card__cta,
.hptours-hero-card__cta--search {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
}

.hptours-hero-card .hptours-hero-card__cta:hover,
.hptours-hero-card__cta--search:hover {
    background: var(--he-accent);
}

/* Pagination dots / nav */
.hptours-hero-slider__pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.55);
    opacity: 1;
}

.hptours-hero-slider__pagination .swiper-pagination-bullet-active {
    background: var(--he-secondary);
    transform: scale(1.2);
}

.hptours-hero-slider__nav button {
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    border-radius: 50%;
    transition: background 0.18s;
    backdrop-filter: blur(4px);
}

.hptours-hero-slider__nav button:hover {
    background: var(--he-secondary);
    border-color: var(--he-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOUR CATEGORY SLIDER
   ═══════════════════════════════════════════════════════════════════════════ */

.hptours-category-slider {
    background: var(--he-warm-1);
}

.hptours-category-slider__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

.hptours-category-slider__subtitle {
    color: var(--he-muted);
    font-family: 'Space Grotesk', sans-serif;
}

.hptours-category-card {
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--he-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.hptours-category-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-4px);
}

.hptours-category-card__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOUR CARDS (compact grid on homepage)
   ═══════════════════════════════════════════════════════════════════════════ */

.hpt-card-compact {
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    background: #fff;
    box-shadow: var(--he-shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    font-family: 'Space Grotesk', sans-serif;
}

.hpt-card-compact:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-3px);
}

.hpt-card-compact__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
    line-height: 1.3;
}

.hpt-card-compact__dest {
    color: var(--he-muted);
    font-size: 0.82rem;
}

.hpt-card-compact__price {
    color: var(--he-secondary);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.hpt-card-compact__type,
.hpt-card-compact__dur {
    background: var(--he-warm-2);
    color: var(--he-primary);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 3px 9px;
}

.hpt-card-compact__btn {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s;
}

.hpt-card-compact__btn:hover {
    background: var(--he-accent);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DESTINATIONS GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.destination-grid,
.destination-mixed-grid {
    gap: 14px;
}

.destination-card,
.destination-card-large,
.destination-card-small {
    border-radius: var(--he-radius-lg);
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.destination-card:hover,
.destination-card-large:hover,
.destination-card-small:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-3px);
}

.destination-overlay {
    background: linear-gradient(
        to top,
        rgba(26,60,78,0.80) 0%,
        rgba(26,60,78,0.20) 60%,
        transparent 100%
    );
}

.destination-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
}

.destination-subtitle,
.destination-description,
.dest-widget-subtitle,
.dest-widget-description {
    color: rgba(255,255,255,0.82);
    font-family: 'Space Grotesk', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PLAN TRIP SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.plan-trip-section {
    background: var(--he-warm-1);
}

.plan-trip-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

.plan-trip-subtitle {
    color: var(--he-muted);
    font-family: 'Space Grotesk', sans-serif;
}

.plan-trip-image-card {
    border-radius: var(--he-radius-lg);
    overflow: hidden;
    box-shadow: var(--he-shadow);
}

.plan-trip-feature-item {
    border-left: 3px solid var(--he-secondary);
    padding-left: 12px;
}

.plan-trip-button {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s, transform 0.18s;
}

.plan-trip-button:hover {
    background: var(--he-accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */

.hptours-testimonials {
    background: var(--he-warm-1);
}

.hptours-testimonials__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

.hptours-testimonials__subtitle {
    color: var(--he-muted);
}

/* Arrow nav */
.hptours-testimonials__arrow {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    color: var(--he-primary);
    border-radius: 50%;
    box-shadow: var(--he-shadow-sm);
    transition: background 0.18s, color 0.18s;
}

.hptours-testimonials__arrow:hover {
    background: var(--he-secondary);
    border-color: var(--he-secondary);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RECENT GALLERY
   ═══════════════════════════════════════════════════════════════════════════ */

.recent-gallery-widget {
    background: var(--he-primary);
}

.recent-gallery-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
}

.recent-gallery-subtitle {
    color: rgba(255,255,255,0.72);
}

.gallery-item {
    border-radius: var(--he-radius-md);
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PLAN TOUR REQUEST FORM / POPUP
   ═══════════════════════════════════════════════════════════════════════════ */

.highpass-tour-request-popup {
    background: #fff;
    border-radius: var(--he-radius-lg);
    box-shadow: 0 20px 60px rgba(26,60,78,0.22);
    border: 1px solid var(--he-warm-3);
}

.highpass-tour-request-header {
    background: var(--he-primary);
    border-radius: var(--he-radius-lg) var(--he-radius-lg) 0 0;
}

.highpass-modal-header {
    background: var(--he-primary);
    color: #fff;
}

.highpass-tour-request-title,
.highpass-form-section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer-main {
    background: var(--he-primary);
    color: rgba(255,255,255,0.80);
    font-family: 'Space Grotesk', sans-serif;
}

.footer-main__heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
}

.footer-main__links a {
    color: rgba(255,255,255,0.72);
    transition: color 0.18s;
}

.footer-main__links a:hover {
    color: #f7c97e;
}

/* Keep backend menu hierarchy visible in footer columns */
.footer-main__links--sub {
    margin-top: 6px;
    margin-left: 14px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.18);
}

.footer-main__links--sub .footer-main__links--sub {
    margin-left: 12px;
}

.footer-main__links--sub a {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.66);
}

.footer-main__view-all {
    color: var(--he-secondary);
    font-weight: 600;
}

/* Trust bar */
.footer-trust-bar {
    background: rgba(0,0,0,0.20);
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Review badge */
.footer-review-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--he-radius-md);
}

.review-score {
    color: #f7c97e;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.review-stars {
    color: #f7c97e;
}

/* Social links inline */
.footer-social-inline a {
    color: rgba(255,255,255,0.65);
    transition: color 0.18s;
}

.footer-social-inline a:hover {
    color: #f7c97e;
}

/* Copyright bar */
.footer-copyright-bar {
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-copyright-text,
.footer-copyright-text a {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
}

.footer-copyright-text a:hover {
    color: #f7c97e;
}

.footer-legal-nav a {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
}

.footer-legal-nav a:hover {
    color: rgba(255,255,255,0.85);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE TOUR PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Outer container */
.tour-detail-container {
    background: var(--he-warm-1);
}

/* Breadcrumbs */
.tour-breadcrumbs,
.tour-breadcrumbs a {
    color: var(--he-muted);
}

.tour-breadcrumbs a:hover {
    color: var(--he-secondary);
}

/* Tour title / header */
.tour-header .tour-title,
.tour-header h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

/* Rating stars */
.tour-rating .review-stars-fill {
    color: #f59e0b;
}

/* Quick info bar */
.tour-quick-info .info-item {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    box-shadow: var(--he-shadow-sm);
}

.tour-quick-info .info-label {
    color: var(--he-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tour-quick-info .info-value {
    color: var(--he-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Gallery */
.modern-gallery-grid .modern-main,
.modern-gallery-grid .modern-thumb {
    border-radius: var(--he-radius-md);
    overflow: hidden;
}

.view-all-overlay {
    background: rgba(26,60,78,0.75);
    backdrop-filter: blur(4px);
    border-radius: 999px;
}

/* Tour overview / content sections */
.tour-overview,
.tour-itinerary,
.tour-inclusions,
.tour-departures,
.tour-reviews,
.tour-faq,
.tour-faqs,
.tour-related {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
    margin-bottom: 20px;
}

/* Booking tabs */
.tour-booking-tabs__head {
    background: var(--he-warm-2);
    border-bottom: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg) var(--he-radius-lg) 0 0;
}

.tour-booking-tab-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
    border-radius: var(--he-radius-sm);
    transition: background 0.18s, color 0.18s;
}

.tour-booking-tab-btn:hover,
.tour-booking-tab-btn.active {
    background: var(--he-secondary);
    color: #fff;
}

/* Itinerary day cards */
.day-header {
    background: var(--he-warm-2);
    border-left: 4px solid var(--he-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

.day-number {
    color: var(--he-secondary);
    font-weight: 800;
}

/* Inclusions / exclusions list */
.inclusions-list li::before {
    color: var(--he-secondary);
}

/* Departures */
.departure-card-modern {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    box-shadow: var(--he-shadow-sm);
}

.departure-price-large {
    color: var(--he-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.btn-confirm-dates {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s;
}

.btn-confirm-dates:hover {
    background: var(--he-accent);
}

/* FAQ */
.tour-faq__q-wrap,
.tour-faqs__list .tour-faq__q-wrap {
    background: var(--he-warm-2);
    border-bottom: 1px solid var(--he-warm-3);
}

.tour-faq__q-text,
.tour-faqs__head {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

.tour-faq__toggle {
    color: var(--he-secondary);
}

/* Review section */
.review-summary-card {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
}

.review-score {
    color: var(--he-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.review-breakdown-bar {
    background: var(--he-warm-3);
}

.review-breakdown-bar::after {
    background: var(--he-secondary);
}

/* Sidebar */
.tour-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-actions {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow);
}

/* Brochure modal */
.hpt-brochure-modal__header {
    background: var(--he-primary);
    color: #fff;
    border-radius: var(--he-radius-lg) var(--he-radius-lg) 0 0;
}

.hpt-brochure-form__submit {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
}

.hpt-brochure-form__submit:hover {
    background: var(--he-accent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOUR SEARCH / ARCHIVE PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Search hero banner */
.hpt-search-hero {
    background: linear-gradient(135deg, var(--he-primary) 0%, #0d2a38 100%);
}

.hpt-search-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
}

/* Sidebar filters */
.hpt-search-sidebar {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
}

.hpt-filter-section {
    border-bottom: 1px solid var(--he-warm-3);
}

.hpt-filter-toggle {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

.hpt-checkbox-label {
    color: var(--he-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.hpt-apply-filters-btn {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s;
}

.hpt-apply-filters-btn:hover {
    background: var(--he-accent);
}

.hpt-clear-filters {
    color: var(--he-muted);
    font-size: 0.85rem;
}

/* Results header — advanced-search.css (loaded after this file) also targets
   this selector with its own padding-bottom/border-bottom/margin-bottom;
   !important here keeps this compact card look from being partially
   overridden property-by-property. */
.hpt-results-header {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-bottom: 1px solid var(--he-warm-3) !important;
    border-radius: var(--he-radius-md);
    padding: 12px 18px !important;
    margin-bottom: 20px !important;
}

.hpt-results-count {
    color: var(--he-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Result cards */
.hpt-card-image-wrapper {
    border-radius: var(--he-radius-lg) var(--he-radius-lg) 0 0;
    overflow: hidden;
}

.hpt-card-content {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-top: none;
    border-radius: 0 0 var(--he-radius-lg) var(--he-radius-lg);
}

.hpt-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
    line-height: 1.3;
}

.hpt-card-footer {
    border-top: 1px solid var(--he-warm-2);
    background: var(--he-warm-1);
    border-radius: 0 0 var(--he-radius-lg) var(--he-radius-lg);
}

.hpt-btn-primary,
.hpt-view-btn {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
}

.hpt-btn-primary:hover,
.hpt-view-btn:hover {
    background: var(--he-accent);
    color: #fff;
}

.hpt-discount-badge {
    background: var(--he-secondary);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* Active filter tags */
.hptours-filter-tag {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    color: var(--he-primary);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.hptours-filter-remove {
    color: var(--he-secondary);
}

/* Search widget */
.hptours-search-widget-title,
.hptours-search-widget-header {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-hero__overlay {
    background: linear-gradient(
        to bottom,
        rgba(26,60,78,0.65) 0%,
        rgba(26,60,78,0.40) 100%
    );
}

.contact-hero__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
}

.contact-hero__subtitle {
    color: rgba(255,255,255,0.82);
}

.contact-hero__badge {
    background: var(--he-secondary);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* Info cards */
.contact-card {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-3px);
}

.contact-card__icon-wrap {
    background: var(--he-warm-2);
    border-radius: 50%;
    color: var(--he-secondary);
}

.contact-card__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

/* Section headings */
.contact-section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

/* Form wrapper */
.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
}

.contact-form__submit {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s, transform 0.18s;
}

.contact-form__submit:hover {
    background: var(--he-accent);
    transform: translateY(-2px);
}

/* Sidebar */
.contact-sidebar {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
}

/* Branch cards */
.contact-branch-card {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
}

.contact-branch-card--head {
    background: var(--he-primary);
    color: #fff;
    border-radius: var(--he-radius-md) var(--he-radius-md) 0 0;
}

/* Social links */
.contact-social__link {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-radius: 50%;
    color: var(--he-primary);
    transition: background 0.18s, color 0.18s;
}

.contact-social__link:hover {
    background: var(--he-secondary);
    border-color: var(--he-secondary);
    color: #fff;
}

/* Reasons / features */
.contact-reason {
    border-left: 3px solid var(--he-secondary);
    padding-left: 14px;
}

/* Map */
.contact-map {
    border-radius: var(--he-radius-lg);
    overflow: hidden;
    border: 1px solid var(--he-warm-3);
    box-shadow: var(--he-shadow-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DESTINATIONS ARCHIVE  (.da-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.da-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--he-primary) 0%, #0d2a38 100%);
}

.da-hero__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
}

.da-hero__subtitle {
    color: rgba(255,255,255,0.80);
    font-family: 'Space Grotesk', sans-serif;
}

.da-hero__badge {
    background: var(--he-secondary);
    color: #fff;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
}

.da-stats {
    background: var(--he-warm-2);
    border-top: 1px solid var(--he-warm-3);
    border-bottom: 1px solid var(--he-warm-3);
}

.da-stats__number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-secondary);
}

.da-stats__label {
    color: var(--he-muted);
    font-size: 0.82rem;
}

.da-stats__divider {
    background: var(--he-warm-3);
}

.da-toolbar {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    box-shadow: var(--he-shadow-sm);
}

.da-view-btn.active {
    background: var(--he-secondary);
    color: #fff;
    border-color: var(--he-secondary);
}

.da-country-card {
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.da-country-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-4px);
}

.da-country-card__overlay {
    background: linear-gradient(to top, rgba(26,60,78,0.82) 0%, transparent 60%);
}

.da-country-card__name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
}

.da-country-card__desc {
    color: rgba(255,255,255,0.80);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
}

.da-country-card__explore {
    background: var(--he-secondary);
    color: #fff;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
}

.da-child-card {
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
    transition: box-shadow 0.18s, transform 0.18s;
}

.da-child-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-2px);
}

.da-child-card__name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

.da-child-card__arrow {
    color: var(--he-secondary);
}

.da-cta {
    background: linear-gradient(135deg, var(--he-primary) 0%, #163a4e 100%);
}

.da-cta__text {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.da-cta__btn {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s;
}

.da-cta__btn:hover {
    background: var(--he-accent);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DESTINATION DETAIL PAGE  (.dest-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.dest-hero {
    position: relative;
    overflow: hidden;
    background: var(--he-primary);
}

.dest-breadcrumbs,
.dest-breadcrumbs a {
    color: var(--he-muted);
}

.dest-breadcrumbs a:hover {
    color: var(--he-secondary);
}

.dest-intro__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

.dest-intro__tagline {
    color: var(--he-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.dest-intro__ai-summary {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    border-left: 4px solid var(--he-secondary);
}

.dest-seasons__title,
.dest-regions__title,
.dest-tours__title,
.dest-why-choose__title,
.dest-faq__title,
.dest-customer-exp__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

.dest-season-card {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.dest-season-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-2px);
}

.dest-season-card__label {
    font-family: 'Outfit', sans-serif;
}

.dest-region-card {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.dest-region-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-3px);
}

.dest-region-card__link {
    color: var(--he-secondary);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.dest-why-choose__card {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
    transition: box-shadow 0.2s;
}

.dest-why-choose__card:hover {
    box-shadow: var(--he-shadow);
}

.dest-why-choose__icon {
    color: var(--he-secondary);
}

.dest-why-choose__card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

.dest-tours__browse-all {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.dest-faq__item {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    margin-bottom: 8px;
}

.dest-faq__question {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

.dest-faq__toggle {
    color: var(--he-secondary);
}

.dest-faq__answer {
    color: var(--he-text);
    border-top: 1px solid var(--he-warm-3);
}

.dest-customer-exp__item {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG ARCHIVE + SINGLE POST  (.hpt-blog-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.hpt-blog-archive-hero {
    background: linear-gradient(135deg, var(--he-primary) 0%, #0d2a38 100%);
}

.hpt-blog-archive-hero__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
}

.hpt-blog-archive-hero__desc {
    color: rgba(255,255,255,0.80);
}

.hpt-blog-pill {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    color: var(--he-primary);
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    transition: background 0.18s, color 0.18s;
}

.hpt-blog-pill:hover,
.hpt-blog-pill.active {
    background: var(--he-secondary);
    border-color: var(--he-secondary);
    color: #fff;
}

.hpt-blog-card {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.hpt-blog-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-3px);
}

.hpt-blog-card__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
    line-height: 1.35;
}

.hpt-blog-card__title:hover {
    color: var(--he-secondary);
}

.hpt-blog-card__date,
.hpt-blog-card__read-time {
    color: var(--he-muted);
    font-size: 0.80rem;
}

.hpt-blog-card__footer {
    border-top: 1px solid var(--he-warm-2);
    background: var(--he-warm-1);
}

.hpt-blog-cat-badge {
    background: var(--he-warm-2);
    color: var(--he-primary);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border: 1px solid var(--he-warm-3);
}

.hpt-blog-featured-card {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    overflow: hidden;
    box-shadow: var(--he-shadow);
}

.hpt-blog-featured-card__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

.hpt-blog-hero {
    background: var(--he-primary);
    position: relative;
    overflow: hidden;
}

.hpt-blog-hero__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
}

.hpt-blog-hero__meta {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}

.hpt-blog-article__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

.hpt-blog-article__content h2,
.hpt-blog-article__content h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--he-primary);
}

.hpt-blog-article__content a {
    color: var(--he-secondary);
}

.hpt-blog-article__content a:hover {
    color: var(--he-accent);
}

.hpt-blog-author-box {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
}

.hpt-blog-author-box__name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

.hpt-blog-breadcrumbs,
.hpt-blog-breadcrumbs a {
    color: var(--he-muted);
    font-size: 0.82rem;
}

.hpt-blog-breadcrumbs a:hover {
    color: var(--he-secondary);
}

.hpt-blog-postnav,
.hpt-blog-postnav__link--next {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    color: var(--he-primary);
}

.hpt-blog-widget {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    box-shadow: var(--he-shadow-sm);
    margin-bottom: 16px;
}

.hpt-blog-share {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
}

.hpt-blog-cta {
    background: linear-gradient(135deg, var(--he-primary) 0%, #163a4e 100%);
    border-radius: var(--he-radius-lg);
    color: #fff;
}

.hpt-comments {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOUR REQUEST FORM / MODAL (global — every page)
   ═══════════════════════════════════════════════════════════════════════════ */

.highpass-modal-overlay {
    background: rgba(26,60,78,0.55);
    backdrop-filter: blur(4px);
}

.highpass-modal-container {
    background: #fff;
    border-radius: var(--he-radius-lg);
    box-shadow: 0 20px 60px rgba(26,60,78,0.22);
    border: 1px solid var(--he-warm-3);
}

.highpass-modal-header,
.highpass-tour-request-header {
    background: var(--he-primary);
    border-radius: var(--he-radius-lg) var(--he-radius-lg) 0 0;
    color: #fff;
}

.highpass-tour-request-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
}

.highpass-form-section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

.highpass-submit-btn {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s, transform 0.18s;
}

.highpass-submit-btn:hover {
    background: var(--he-accent);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MY ACCOUNT / AUTH PAGE  (.hpt-auth-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.hpt-auth-wrap {
    background: var(--he-warm-1);
    min-height: 100vh;
    min-height: 100svh; /* iOS: plain vh overshoots the visible area */
}

.hpt-auth-hero {
    background: linear-gradient(135deg, var(--he-primary) 0%, #0d2a38 100%);
}

.hpt-auth-card {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: 0 16px 48px rgba(26,60,78,0.14);
}

.hpt-auth-subtitle {
    color: var(--he-muted);
    font-family: 'Space Grotesk', sans-serif;
}

.hpt-auth-divider {
    border-color: var(--he-warm-3);
    color: var(--he-muted);
}

.hpt-form-group label {
    color: var(--he-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
}

.hpt-btn-primary {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s, transform 0.18s;
}

.hpt-btn-primary:hover {
    background: var(--he-accent);
    color: #fff;
    transform: translateY(-1px);
}

.hpt-pw-toggle {
    color: var(--he-secondary);
}

.hpt-auth-footer a {
    color: var(--he-secondary);
    font-weight: 600;
}

.hpt-auth-email-note {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-sm);
    color: var(--he-muted);
    font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MY REQUESTS / CUSTOMER DASHBOARD  (.hpt-dashboard, .hpt-dash-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.hpt-dashboard {
    background: var(--he-warm-1);
}

.hpt-dash-hero {
    background: linear-gradient(135deg, var(--he-primary) 0%, #0d2a38 100%);
    color: #fff;
}

.hpt-lookup-card {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
}

.hpt-lookup-hint {
    color: var(--he-muted);
    font-size: 0.82rem;
}

.hpt-lookup-row input {
    border: 1.5px solid var(--he-warm-4);
    border-radius: var(--he-radius-sm);
    font-family: 'Space Grotesk', sans-serif;
}

.hpt-lookup-row input:focus {
    border-color: var(--he-secondary);
    box-shadow: 0 0 0 3px rgba(227,100,12,0.15);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CART PAGE  (.hpc-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.hpc-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

/* Progress steps */
.hpc-steps {
    background: var(--he-warm-2);
    border-bottom: 1px solid var(--he-warm-3);
}

.hpc-step__num {
    background: var(--he-warm-3);
    color: var(--he-primary);
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.hpc-step--active .hpc-step__num {
    background: var(--he-secondary);
    color: #fff;
}

.hpc-step__label {
    color: var(--he-muted);
    font-size: 0.80rem;
}

.hpc-step--active .hpc-step__label {
    color: var(--he-primary);
    font-weight: 700;
}

/* Cart items list */
.hpc-items {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
}

/* Order summary sidebar */
.hpc-sidebar,
.hpc-order {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow-sm);
}

.hpc-order__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
    border-bottom: 1px solid var(--he-warm-3);
}

.hpc-order__line--total {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
    border-top: 2px solid var(--he-warm-3);
}

/* Promo code */
.hpc-promo {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
}

.hpc-promo__label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

.hpc-promo__btn {
    background: var(--he-primary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s;
}

.hpc-promo__btn:hover {
    background: var(--he-secondary);
}

/* Checkout CTA */
.hpc-btn--checkout {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: background 0.18s, transform 0.18s;
}

.hpc-btn--checkout:hover {
    background: var(--he-accent);
    transform: translateY(-2px);
}

/* Trust badges */
.hpc-trust {
    border-top: 1px solid var(--he-warm-3);
    color: var(--he-muted);
    font-size: 0.82rem;
}

/* Empty cart */
.hpc-empty {
    background: var(--he-warm-2);
    border-radius: var(--he-radius-lg);
    text-align: center;
}

.hpc-empty__icon {
    color: var(--he-warm-4);
}

.hpc-continue__link {
    color: var(--he-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHECKOUT PAGE  (.ck-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.ck-btn--primary {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s, transform 0.18s;
}

.ck-btn--primary:hover {
    background: var(--he-accent);
    transform: translateY(-2px);
}

.ck-empty__inner {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   404 PAGE  (.error-404-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.error-404-wrap {
    background: var(--he-warm-1);
}

.error-404-code {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--he-warm-4);
    line-height: 1;
    letter-spacing: -0.04em;
}

.error-404-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--he-primary);
}

.error-404-desc {
    color: var(--he-muted);
    font-family: 'Space Grotesk', sans-serif;
}

.error-404-btn-primary {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    transition: background 0.18s;
}

.error-404-btn-primary:hover {
    background: var(--he-accent);
    color: #fff;
}

.error-404-btn-outline {
    border: 2px solid var(--he-primary);
    color: var(--he-primary);
    border-radius: var(--he-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    background: transparent;
    transition: background 0.18s, color 0.18s;
}

.error-404-btn-outline:hover {
    background: var(--he-primary);
    color: #fff;
}

.error-404-section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--he-primary);
}

.error-404-search input {
    border: 1.5px solid var(--he-warm-4);
    border-radius: var(--he-radius-sm);
    font-family: 'Space Grotesk', sans-serif;
}

.error-404-tour-card {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.error-404-tour-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-3px);
}

.error-404-dest-tag {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    color: var(--he-primary);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: background 0.18s, color 0.18s;
}

.error-404-dest-tag:hover {
    background: var(--he-secondary);
    border-color: var(--he-secondary);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   AI CHATBOT WIDGET  (.hpt-cb-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.hpt-cb {
    --cb-primary: var(--he-primary);
    --cb-primary-dark: #143241;
    --cb-accent: var(--he-secondary);
    --cb-bg: var(--he-warm-1);
    --cb-text: var(--he-text);
    --cb-muted: #64748b;
    --cb-border: var(--he-warm-3);
    --cb-radius: 16px;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hpt-cb__trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hpt-cb__trigger.is-open .hpt-cb__trigger-icon--chat { display: none; }
.hpt-cb__trigger.is-open .hpt-cb__trigger-icon--close { display: block; }

.hpt-cb__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.hpt-cb__panel {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    max-height: 560px;
    display: flex;
    flex-direction: column;
    animation: cbSlideUp .3s cubic-bezier(.4,0,.2,1);
}

@keyframes cbSlideUp {
    from { opacity: 0; transform: translateY(16px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hpt-cb__header {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.hpt-cb__header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hpt-cb__avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
    padding: 2px;
}

.hpt-cb__avatar--icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hpt-cb__close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hpt-cb__messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
    max-height: 320px;
}

.hpt-cb__leadgate {
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid var(--he-warm-3);
}

.hpt-cb__leadgate-title {
    font: 700 18px/1.2 Outfit, sans-serif;
    color: var(--he-primary);
}

.hpt-cb__leadgate-subtitle {
    margin-top: 6px;
    color: #5d7282;
    font: 500 13px/1.45 'Space Grotesk', sans-serif;
}

.hpt-cb__lead-form {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.hpt-cb__lead-label {
    color: var(--he-primary);
    font: 700 12px/1 Outfit, sans-serif;
}

.hpt-cb__lead-input {
    width: 100%;
    box-sizing: border-box;
    border: 1.5px solid var(--he-warm-4);
    border-radius: 8px;
    padding: 10px 12px;
    font: 500 14px/1.35 'Space Grotesk', sans-serif;
    color: var(--he-text);
}

.hpt-cb__lead-input:focus {
    border-color: var(--he-secondary);
    box-shadow: 0 0 0 3px rgba(227,100,12,0.15);
    outline: none;
}

.hpt-cb__lead-error {
    min-height: 18px;
    color: #b91c1c;
    font: 600 12px/1.4 'Space Grotesk', sans-serif;
}

.hpt-cb__lead-submit {
    margin-top: 2px;
    width: 100%;
    border: none;
    border-radius: 8px;
    background: var(--he-secondary);
    color: #fff;
    padding: 11px 12px;
    font: 700 14px/1 Outfit, sans-serif;
    cursor: pointer;
}

.hpt-cb__lead-submit:hover {
    background: var(--he-accent);
}

.hpt-cb__lead-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.hpt-cb:not(.is-verified) .hpt-cb__messages,
.hpt-cb:not(.is-verified) .hpt-cb__suggestions,
.hpt-cb:not(.is-verified) .hpt-cb__input-area {
    display: none;
}

.hpt-cb.is-verified .hpt-cb__leadgate {
    display: none;
}

.hpt-cb__msg {
    display: flex;
    max-width: 88%;
}

.hpt-cb__msg--bot { align-self: flex-start; }
.hpt-cb__msg--user { align-self: flex-end; }

.hpt-cb__msg-bubble {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.55;
    word-wrap: break-word;
}

.hpt-cb__typing {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    border-radius: 14px;
    width: fit-content;
}

.hpt-cb__typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    animation: cbTyping 1.2s ease infinite;
}

.hpt-cb__typing span:nth-child(2) { animation-delay: .15s; }
.hpt-cb__typing span:nth-child(3) { animation-delay: .3s; }

@keyframes cbTyping {
    0%,100% { opacity: .3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}

.hpt-cb__suggestions {
    padding: 8px 16px 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex-shrink: 0;
}

.hpt-cb__chip {
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    white-space: nowrap;
}

.hpt-cb__input-area {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 12px 14px;
    flex-shrink: 0;
}

.hpt-cb__input {
    flex: 1;
    padding: 10px 14px;
    font-size: 14px;
    resize: none;
    max-height: 100px;
    line-height: 1.4;
    box-sizing: border-box;
}

.hpt-cb__send {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.hpt-cb__send:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.hpt-cb__footer {
    font-size: 11px;
    text-align: center;
    padding: 6px 16px 10px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .hpt-cb {
        bottom: 16px;
        right: 16px;
    }
    .hpt-cb__panel {
        width: calc(100vw - 24px);
        right: -12px;
        max-height: 70vh;
    }
}

.hpt-cb__trigger {
    background: var(--he-secondary);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(227,100,12,0.40);
    border: none;
    transition: background 0.18s, transform 0.18s;
}

.hpt-cb__trigger:hover {
    background: var(--he-accent);
    transform: scale(1.08);
}

.hpt-cb__panel {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    box-shadow: 0 16px 48px rgba(26,60,78,0.18);
    overflow: hidden;
}

.hpt-cb__header {
    background: var(--he-primary);
    color: #fff;
}

.hpt-cb__header-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
}

.hpt-cb__header-status {
    color: rgba(255,255,255,0.70);
    font-size: 0.78rem;
}

.hpt-cb__dot {
    background: #4ade80;
}

.hpt-cb__messages {
    background: var(--he-warm-1);
}

.hpt-cb__msg--bot .hpt-cb__msg-bubble {
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: 0 var(--he-radius-md) var(--he-radius-md) var(--he-radius-md);
    color: var(--he-text);
    font-family: 'Space Grotesk', sans-serif;
}

.hpt-cb__msg:not(.hpt-cb__msg--bot) .hpt-cb__msg-bubble {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-md) 0 var(--he-radius-md) var(--he-radius-md);
}

.hpt-cb__suggestions .hpt-cb__chip {
    background: var(--he-warm-2);
    border: 1px solid var(--he-warm-3);
    color: var(--he-primary);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    transition: background 0.15s, color 0.15s;
}

.hpt-cb__suggestions .hpt-cb__chip:hover {
    background: var(--he-secondary);
    border-color: var(--he-secondary);
    color: #fff;
}

.hpt-cb__input-area {
    background: #fff;
    border-top: 1px solid var(--he-warm-3);
}

.hpt-cb__input {
    border: 1.5px solid var(--he-warm-4);
    border-radius: var(--he-radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    color: var(--he-text);
}

.hpt-cb__input:focus {
    border-color: var(--he-secondary);
    box-shadow: 0 0 0 3px rgba(227,100,12,0.15);
}

.hpt-cb__send {
    background: var(--he-secondary);
    color: #fff;
    border-radius: var(--he-radius-sm);
    border: none;
    transition: background 0.15s;
}

.hpt-cb__send:hover {
    background: var(--he-accent);
}

.hpt-cb__tour-cards {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.hpt-cb__tour-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 8px;
    align-items: start;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--he-warm-3);
    border-radius: 10px;
    padding: 6px;
}

.hpt-cb__tour-card:hover {
    border-color: var(--he-secondary);
    box-shadow: 0 4px 14px rgba(26, 60, 78, 0.12);
}

.hpt-cb__tour-card-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.hpt-cb__tour-card-body {
    min-width: 0;
}

.hpt-cb__tour-card-title {
    font: 700 12px/1.35 Outfit, sans-serif;
    color: var(--he-primary);
    margin-bottom: 3px;
}

.hpt-cb__tour-card-excerpt {
    font: 400 11px/1.45 'Space Grotesk', sans-serif;
    color: #5d7282;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hpt-cb__tour-card-link {
    margin-top: 6px;
    font: 700 11px/1 Outfit, sans-serif;
    color: var(--he-secondary);
}

/* =====================================================
   27. ACTIVITY CARD WIDGETS (hpt-act-compact / city / detailed)
   ===================================================== */

.hpt-act-compact,
.hpt-act-city,
.hpt-act-detailed {
    background: #fff;
    border-radius: var(--he-radius-md);
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
    border: 1.5px solid var(--he-warm-3);
    transition: box-shadow .25s, transform .25s;
}
.hpt-act-compact:hover,
.hpt-act-city:hover,
.hpt-act-detailed:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-4px);
}
.hpt-act-compact__img,
.hpt-act-city__img-wrap {
    aspect-ratio: 3/2;
    overflow: hidden;
}
.hpt-act-compact__img img,
.hpt-act-city__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hpt-act-compact__body,
.hpt-act-city__body {
    padding: 16px 18px;
}
.hpt-act-compact__title,
.hpt-act-city__title {
    font-family: var(--he-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--he-primary);
    margin-bottom: 6px;
    line-height: 1.35;
}
.hpt-act-compact__meta,
.hpt-act-city__dest {
    font-family: var(--he-font-body);
    font-size: .8rem;
    color: rgba(26,60,78,.55);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hpt-act-compact__chip {
    display: inline-block;
    background: var(--he-warm-2);
    color: var(--he-primary);
    border-radius: 20px;
    padding: 3px 10px;
    font-family: var(--he-font-body);
    font-size: .75rem;
    font-weight: 600;
    margin-right: 4px;
}
.hpt-act-compact__type {
    font-size: .78rem;
    color: var(--he-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hpt-act-compact__footer,
.hpt-act-city__footer {
    padding: 12px 18px;
    border-top: 1px solid var(--he-warm-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hpt-act-compact__cta,
.hpt-act-city__cta {
    background: var(--he-secondary);
    color: #fff;
    border: none;
    border-radius: var(--he-radius-sm);
    padding: 7px 16px;
    font-family: var(--he-font-heading);
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}
.hpt-act-compact__cta:hover,
.hpt-act-city__cta:hover { background: var(--he-accent); color: #fff; }
.hpt-act-compact__featured::before {
    content: 'Featured';
    background: var(--he-secondary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 0 0 var(--he-radius-sm) 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
/* City card overlays */
.hpt-act-city__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,60,78,.55) 0%, transparent 60%);
}
.hpt-act-city__pill {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,.92);
    color: var(--he-primary);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: .75rem;
    font-weight: 700;
}
.hpt-act-city__pill--guide { background: var(--he-secondary); color: #fff; }
/* Detailed card */
.hpt-act-detailed__img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.hpt-act-detailed__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hpt-act-detailed__body { padding: 18px 20px; }
.hpt-act-detailed__badge {
    display: inline-block;
    background: var(--he-secondary);
    color: #fff;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.hpt-act-detailed__sale {
    background: #dc2626;
    color: #fff;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: .72rem;
    font-weight: 700;
    margin-left: 4px;
}
.hpt-act-detailed__highlights {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hpt-act-detailed__highlights li {
    font-family: var(--he-font-body);
    font-size: .82rem;
    color: rgba(26,60,78,.65);
    display: flex;
    align-items: center;
    gap: 5px;
}
.hpt-act-detailed__footer {
    padding: 12px 20px;
    border-top: 1px solid var(--he-warm-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hpt-act-detailed__cta {
    background: var(--he-secondary);
    color: #fff;
    border: none;
    border-radius: var(--he-radius-sm);
    padding: 9px 20px;
    font-family: var(--he-font-heading);
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}
.hpt-act-detailed__cta:hover { background: var(--he-accent); color: #fff; }

/* =====================================================
   28. STAFF PROFILE PAGE
   ===================================================== */

.hpt-staff-profile { max-width: 1100px; margin: 0 auto; padding: 0 16px 60px; }
.hpt-staff-profile__hero {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 0 0 var(--he-radius-lg) var(--he-radius-lg);
    margin-bottom: -80px;
    background: var(--he-primary);
}
.hpt-staff-profile__hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--he-primary) 0%, #0e2535 100%);
}
.hpt-staff-profile__hero-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--he-primary) 0%, rgba(227,100,12,.25) 100%);
}
.hpt-staff-profile__grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    margin-top: 80px;
    align-items: start;
}
@media(max-width: 768px) {
    .hpt-staff-profile__grid { grid-template-columns: 1fr; }
}
.hpt-staff-profile__avatar-wrap {
    position: relative;
    z-index: 2;
}
.hpt-staff-profile__avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--he-radius-md);
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: var(--he-shadow);
}
.hpt-staff-profile__avatar--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--he-warm-2);
    font-size: 4rem;
    color: var(--he-primary);
}
.hpt-staff-profile__name {
    font-family: var(--he-font-heading);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--he-primary);
    margin: 0 0 4px;
}
.hpt-staff-profile__role {
    font-family: var(--he-font-body);
    font-size: 1rem;
    color: var(--he-secondary);
    font-weight: 600;
    margin-bottom: 18px;
}
.hpt-staff-profile__panel {
    background: #fff;
    border: 1.5px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: var(--he-shadow-sm);
}
.hpt-staff-profile__panel--contact {
    background: var(--he-warm-1);
    border-color: var(--he-warm-3);
}
.hpt-staff-profile__intro-card {
    background: #fff;
    border: 1.5px solid var(--he-warm-3);
    border-radius: var(--he-radius-md);
    padding: 24px;
    box-shadow: var(--he-shadow-sm);
}
.hpt-staff-profile__intro-content {
    font-family: var(--he-font-body);
    font-size: .97rem;
    color: rgba(26,60,78,.80);
    line-height: 1.75;
}
.hpt-staff-profile__social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.hpt-staff-profile__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--he-warm-2);
    color: var(--he-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .9rem;
    transition: background .2s, color .2s;
}
.hpt-staff-profile__social-link:hover {
    background: var(--he-secondary);
    color: #fff;
}
.hpt-staff-profile__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--he-secondary);
    font-family: var(--he-font-body);
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    margin-top: 32px;
}
.hpt-staff-profile__back:hover { color: var(--he-accent); }
.hpt-staff-profile__cta {
    width: 100%;
    background: var(--he-secondary);
    color: #fff;
    border: none;
    border-radius: var(--he-radius-sm);
    padding: 12px 0;
    font-family: var(--he-font-heading);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: background .2s;
    margin-top: 16px;
}
.hpt-staff-profile__cta:hover { background: var(--he-accent); color: #fff; }

/* The sitewide warm body background bleeds through contact sections that have
   no background of their own; the original theme renders them on white. Scoped
   here (not in contact-page.css) so that file stays identical to the theme's. */
.contact-page {
    background: #fff;
}

/* =====================================================
   29. OUR STAFF WIDGET (hpt-our-staff-*)
   ===================================================== */

.hpt-our-staff-widget {
    padding: 80px 24px;
}
.hpt-our-staff-card {
    background: #fff;
    border-radius: var(--he-radius-md);
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
    border: 1.5px solid var(--he-warm-3);
    transition: box-shadow .25s, transform .25s;
    position: relative;
}
.hpt-our-staff-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-4px);
}
.hpt-our-staff-card__cover {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.hpt-our-staff-card__cover-photo { width: 100%; height: 100%; object-fit: cover; }
.hpt-our-staff-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,60,78,.70) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s;
}
.hpt-our-staff-card:hover .hpt-our-staff-card__overlay { opacity: 1; }
.hpt-our-staff-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--he-warm-2);
    padding: 24px;
}
.hpt-our-staff-card__photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--he-shadow-sm);
}
.hpt-our-staff-card__body {
    padding: 16px 18px;
}
.hpt-our-staff-card__body--panel { padding: 20px 22px; }
.hpt-our-staff-card__name {
    font-family: var(--he-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--he-primary);
    margin-bottom: 2px;
}
.hpt-our-staff-card__role {
    font-family: var(--he-font-body);
    font-size: .82rem;
    color: var(--he-secondary);
    font-weight: 600;
    margin-bottom: 8px;
}
.hpt-our-staff-card__bio {
    font-family: var(--he-font-body);
    font-size: .85rem;
    color: rgba(26,60,78,.65);
    line-height: 1.6;
}
.hpt-our-staff-card__accent-line {
    height: 3px;
    background: linear-gradient(90deg, var(--he-secondary) 0%, var(--he-accent) 100%);
    border-radius: 0 0 2px 2px;
}
.hpt-our-staff-card__social {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.hpt-our-staff-card__social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--he-warm-2);
    color: var(--he-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .8rem;
    transition: background .2s, color .2s;
}
.hpt-our-staff-card__social-link:hover { background: var(--he-secondary); color: #fff; }
.hpt-our-staff-card__btn {
    display: inline-block;
    background: var(--he-secondary);
    color: #fff;
    border: none;
    border-radius: var(--he-radius-sm);
    padding: 7px 16px;
    font-family: var(--he-font-heading);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
    margin-top: 10px;
}
.hpt-our-staff-card__btn:hover { background: var(--he-accent); color: #fff; }
.hpt-our-staff-card__horizontal {
    display: grid;
    grid-template-columns: 120px 1fr;
}
/* Widget layout variants */
.hpt-our-staff-widget--classic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.hpt-our-staff-widget--d2 { grid-template-columns: repeat(2, 1fr); }
.hpt-our-staff-widget--d3 { grid-template-columns: repeat(3, 1fr); }
.hpt-our-staff-widget--d4 { grid-template-columns: repeat(4, 1fr); }
.hpt-our-staff-widget--elegant-overlay .hpt-our-staff-card__overlay { opacity: 1; }
.hpt-our-staff-widget--horizontal-profile .hpt-our-staff-card { display: grid; grid-template-columns: 100px 1fr; }

/* =====================================================
   30. ADVANCED SEARCH / SEARCH RESULTS
   ===================================================== */

.hpt-search-hero { /* covered in Tour Search/Archive block above */ }

/* Advanced search sidebar filters */
.hpt-filters-header {
    font-family: var(--he-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--he-primary);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--he-warm-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hpt-filter-section {
    border-bottom: 1px solid var(--he-warm-2);
    padding: 14px 0;
}
.hpt-filter-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--he-font-body);
    font-size: .9rem;
    font-weight: 600;
    color: var(--he-primary);
}
.hpt-filter-content { padding-top: 10px; }
.hpt-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.hpt-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--he-font-body);
    font-size: .85rem;
    color: rgba(26,60,78,.75);
    cursor: pointer;
}
.hpt-checkbox-label input[type="checkbox"] {
    accent-color: var(--he-secondary);
}
.hpt-count {
    font-size: .75rem;
    color: rgba(26,60,78,.45);
    margin-left: 2px;
}
.hpt-clear-filters {
    background: none;
    border: none;
    color: var(--he-secondary);
    font-family: var(--he-font-body);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}
.hpt-clear-filters:hover { color: var(--he-accent); }
.hpt-apply-filters-btn {
    width: 100%;
    background: var(--he-secondary);
    color: #fff;
    border: none;
    border-radius: var(--he-radius-sm);
    padding: 11px 0;
    font-family: var(--he-font-heading);
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    transition: background .2s;
}
.hpt-apply-filters-btn:hover { background: var(--he-accent); }
/* Search result card elements */
.hpt-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.hpt-card-excerpt {
    font-family: var(--he-font-body);
    font-size: .85rem;
    color: rgba(26,60,78,.65);
    line-height: 1.6;
    margin-bottom: 8px;
}
.hpt-card-details {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-family: var(--he-font-body);
    font-size: .8rem;
    color: rgba(26,60,78,.55);
}
.hpt-card-image-wrapper {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: var(--he-radius-sm) var(--he-radius-sm) 0 0;
}
.hpt-card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hpt-card-overlays { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.hpt-card-quick-actions { position: absolute; top: 10px; right: 10px; }
.hpt-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--he-font-body);
    font-size: .8rem;
    color: var(--he-secondary);
    font-weight: 600;
}
.hpt-discount-badge {
    background: #dc2626;
    color: #fff;
    border-radius: var(--he-radius-sm);
    padding: 3px 8px;
    font-size: .72rem;
    font-weight: 700;
}
.hpt-no-results {
    text-align: center;
    padding: 60px 20px;
    font-family: var(--he-font-body);
    color: rgba(26,60,78,.55);
}
.hpt-no-results h3 {
    font-family: var(--he-font-heading);
    font-size: 1.4rem;
    color: var(--he-primary);
    margin-bottom: 10px;
}
.hpt-original-price {
    font-size: .88rem;
    color: #aaa;
    text-decoration: line-through;
    margin-right: 4px;
}
.hpt-price-label {
    font-family: var(--he-font-body);
    font-size: .72rem;
    color: rgba(26,60,78,.50);
    display: block;
}
.hpt-price-per {
    font-size: .78rem;
    color: rgba(26,60,78,.50);
    margin-left: 2px;
}
.hpt-hero-illustration {
    max-width: 380px;
    width: 100%;
    height: auto;
    opacity: .85;
}
/* Advanced search container / layout */
.hpt-container { max-width: 1260px; margin: 0 auto; padding: 0 16px; }
.hpt-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: var(--he-radius-sm);
    padding: 9px 20px;
    font-family: var(--he-font-heading);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, color .2s;
    text-decoration: none;
    border: none;
}
.hpt-btn-primary {
    background: var(--he-secondary);
    color: #fff;
}
.hpt-btn-primary:hover { background: var(--he-accent); color: #fff; }
.hpt-btn-secondary {
    background: #fff;
    color: var(--he-primary);
    border: 1.5px solid var(--he-warm-3);
}
.hpt-btn-secondary:hover {
    background: var(--he-warm-1);
    border-color: var(--he-secondary);
    color: var(--he-secondary);
}
.hpt-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 32px 0 16px;
}
.hpt-pagination a,
.hpt-pagination .current {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: var(--he-radius-sm);
    font-family: var(--he-font-heading);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--he-primary);
    background: var(--he-warm-1);
    border: 1.5px solid var(--he-warm-3);
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.hpt-pagination a:hover,
.hpt-pagination .current {
    background: var(--he-secondary);
    color: #fff;
    border-color: var(--he-secondary);
}

/* =====================================================
   31. HERO SEARCH WIDGET (hptours-hero-search)
   ===================================================== */

.hptours-hero-search {
    background: #fff;
    border-radius: var(--he-radius-md);
    box-shadow: var(--he-shadow);
    padding: 24px 28px;
    border: 1.5px solid var(--he-warm-3);
}
.hptours-hero-search input,
.hptours-hero-search select {
    border: 1.5px solid var(--he-warm-3);
    border-radius: var(--he-radius-sm);
    padding: 10px 14px;
    font-family: var(--he-font-body);
    font-size: .95rem;
    color: var(--he-primary);
    transition: border-color .2s;
    width: 100%;
}
.hptours-hero-search input:focus,
.hptours-hero-search select:focus {
    outline: none;
    border-color: var(--he-secondary);
}
.hptours-hero-search button[type="submit"] {
    background: var(--he-secondary);
    color: #fff;
    border: none;
    border-radius: var(--he-radius-sm);
    padding: 11px 28px;
    font-family: var(--he-font-heading);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}
.hptours-hero-search button[type="submit"]:hover { background: var(--he-accent); }



/* css/mega-menu.css */
/* =============================================
   MEGA MENU — HighPass Tours
   Modern, full-width dropdown panels
   ============================================= */

/* ---- Base Reset ---- */
.hpt-mega-parent {
    position: static !important; /* Panel positions relative to navbar, not <li> */
}

.hpt-mega-hidden {
    display: none !important;
}

/* ---- Trigger Link ---- */
.hpt-mega-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

.hpt-mega-chevron {
    transition: transform 0.25s ease;
    margin-top: 1px;
}

.hpt-mega-parent.is-open .hpt-mega-chevron {
    transform: rotate(180deg);
}

/* ---- Panel ---- */
.hpt-mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    border-top: 3px solid #FF6B35;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.hpt-mega-parent.is-open > .hpt-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hpt-mega-panel__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 30px;
}

/* ---- Columns Layout (Destinations) ---- */
.hpt-mega-cols {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hpt-mega-col {
    min-width: 160px;
    flex: 1;
}

.hpt-mega-col__title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hpt-mega-col__title i {
    color: #FF6B35;
    font-size: 14px;
}

.hpt-mega-col__title a {
    color: inherit;
    text-decoration: none;
}

.hpt-mega-col__title a:hover {
    color: #FF6B35;
}

.hpt-mega-col__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hpt-mega-col__links li {
    margin-bottom: 6px;
}

.hpt-mega-col__links a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, padding-left 0.2s ease;
    line-height: 1.4;
}

.hpt-mega-col__links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #FF6B35;
    display: inline-block;
    transition: width 0.2s ease;
    flex-shrink: 0;
}

.hpt-mega-col__links a:hover {
    color: #FF6B35;
}

.hpt-mega-col__links a:hover::before {
    width: 12px;
}

/* View All CTA */
.hpt-mega-col--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 160px;
    min-width: auto;
}

.hpt-mega-view-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a1a2e;
    padding: 24px;
    border-radius: 12px;
    border: 2px dashed #e0e0e0;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.hpt-mega-view-all:hover {
    border-color: #FF6B35;
    background: #fff8f5;
    color: #FF6B35;
}

.hpt-mega-view-all__icon {
    width: 48px;
    height: 48px;
    background: #fff5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FF6B35;
    transition: background 0.3s ease;
}

.hpt-mega-view-all:hover .hpt-mega-view-all__icon {
    background: #FF6B35;
    color: #fff;
}

.hpt-mega-view-all__text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}


/* ---- Tours Layout ---- */
.hpt-mega-tours-layout {
    display: flex;
    gap: 40px;
}

.hpt-mega-tours__types {
    flex: 1;
}

.hpt-mega-tours__featured {
    flex: 0 0 320px;
    border-left: 1px solid #f0f0f0;
    padding-left: 40px;
}

.hpt-mega-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

.hpt-mega-type-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: #fafafa;
}

.hpt-mega-type-item:hover {
    background: #fff5f0;
    color: #FF6B35;
    transform: translateX(2px);
}

.hpt-mega-type-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    color: #FF6B35;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

/* Tour Cards */
.hpt-mega-tour-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
    margin-bottom: 8px;
}

.hpt-mega-tour-card:hover {
    background: #f9f9f9;
}

.hpt-mega-tour-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.hpt-mega-tour-card__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hpt-mega-tour-card__title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
}

.hpt-mega-tour-card__meta {
    font-size: 12px;
    color: #999;
}

.hpt-mega-see-all {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #FF6B35;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.hpt-mega-see-all:hover {
    color: #e55a25;
    text-decoration: underline;
}


/* ---- Activities Layout ---- */
.hpt-mega-activities-layout {
    text-align: center;
}

.hpt-mega-activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.hpt-mega-activity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.25s ease;
    background: #fafafa;
    overflow: hidden;
}

.hpt-mega-activity-card:hover {
    background: #fff5f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.12);
}

.hpt-mega-activity-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.hpt-mega-activity-card__info {
    text-align: center;
    width: 100%;
    min-width: 0;
}

.hpt-mega-activity-card__title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.hpt-mega-activity-card__desc {
    font-size: 11px;
    color: #999;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 3px;
    line-height: 1.4;
}

/* ---- Destinations outer wrapper ---- */
.hpt-mega-panel--destinations .hpt-mega-panel__inner {
    padding: 20px 24px;
}

.hpt-mega-dest-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* ---- Destinations Layout (flat/grid fallback) ---- */
.hpt-mega-dest__grid-wrap {
    flex: 1;
}

.hpt-mega-dest__cta {
    flex: 0 0 130px;
    border-left: 1px solid #f0f0f0;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hpt-mega-dest__count {
    font-size: 11px;
    color: #aaa;
    margin: 0;
    text-align: center;
}

.hpt-mega-dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 6px;
}

.hpt-mega-dest-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 7px;
    text-decoration: none;
    color: #333;
    font-size: 12.5px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: #fafafa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hpt-mega-dest-item:hover {
    background: #fff5f0;
    color: #FF6B35;
    transform: translateX(2px);
}

.hpt-mega-dest-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 5px;
    color: #FF6B35;
    font-size: 11px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

/* ── TAB SIDEBAR layout (hierarchical) ──────────────────────────────────────── */
.hpt-mega-dest-tabs-wrap {
    flex: 1;
    display: flex;
    min-width: 0;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Left: country/region tab rail */
.hpt-mega-dest-tabs {
    display: flex;
    flex-direction: column;
    width: 190px;
    flex-shrink: 0;
    background: #f3f4f6;
    border-right: 2px solid #e8e8e8;
    overflow-y: auto;
    max-height: 270px;
}

.hpt-mega-dest-tab {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    transition: color 0.15s ease, background 0.15s ease;
    cursor: pointer;
    white-space: normal;
    line-height: 1.35;
    word-break: break-word;
}

.hpt-mega-dest-tab:last-child {
    border-bottom: none;
}

.hpt-mega-dest-tab i {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
    transition: color 0.15s ease;
    width: 15px;
    text-align: center;
}

.hpt-mega-dest-tab span {
    flex: 1;
    min-width: 0;
}

.hpt-mega-dest-tab em {
    font-style: normal;
    font-size: 10.5px;
    color: #999;
    background: #e3e5e8;
    border-radius: 9px;
    padding: 1px 6px;
    flex-shrink: 0;
    transition: all 0.15s ease;
    min-width: 18px;
    text-align: center;
}

/* Active / hover tab */
.hpt-mega-dest-tab:hover {
    color: #FF6B35;
    background: #fff;
}

.hpt-mega-dest-tab.is-active {
    color: #FF6B35;
    background: #fff;
    font-weight: 700;
}

.hpt-mega-dest-tab:hover i,
.hpt-mega-dest-tab.is-active i {
    color: #FF6B35;
}

.hpt-mega-dest-tab:hover em,
.hpt-mega-dest-tab.is-active em {
    background: #fff0e8;
    color: #FF6B35;
}

/* Orange LEFT-border accent for active tab */
.hpt-mega-dest-tab.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #FF6B35;
    border-radius: 0 3px 3px 0;
}

/* Right: destination panels */
.hpt-mega-dest-panels {
    flex: 1;
    min-width: 0;
    padding: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.hpt-mega-dest-panel {
    display: none;
    padding: 12px 16px 12px;
    flex-direction: column;
    gap: 8px;
}

.hpt-mega-dest-panel.is-active {
    display: flex;
    animation: hptd-fadein 0.18s ease;
}

/* Panel header: country name + link */
.hpt-mega-dest-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 2px;
}

.hpt-mega-dest-panel__title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.hpt-mega-dest-panel__title i {
    color: #FF6B35;
    font-size: 11px;
}

.hpt-mega-dest-panel__title:hover {
    color: #FF6B35;
}

.hpt-mega-dest-panel__link {
    font-size: 11.5px;
    font-weight: 600;
    color: #FF6B35;
    text-decoration: none;
    white-space: nowrap;
}

.hpt-mega-dest-panel__link:hover {
    text-decoration: underline;
}

@keyframes hptd-fadein {
    from { opacity: 0; transform: translateX(4px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* 2-column grid inside each panel */
.hpt-mega-dest-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
    margin-bottom: 8px;
}

.hpt-mega-dest-child {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 8px;
    font-size: 12.5px;
    color: #333;
    text-decoration: none;
    border-radius: 7px;
    transition: background 0.15s ease, color 0.15s ease;
    min-width: 0;
}

.hpt-mega-dest-child:hover {
    background: #fff5f0;
    color: #FF6B35;
}

.hpt-mega-dest-child__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 5px;
    color: #FF6B35;
    font-size: 10px;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.hpt-mega-dest-child:hover .hpt-mega-dest-child__icon {
    background: #fff0e8;
}

.hpt-mega-dest-child__name {
    flex: 1;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hpt-mega-dest-child__cnt {
    font-size: 10.5px;
    color: #bbb;
    flex-shrink: 0;
}

.hpt-mega-dest-see-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: #FF6B35;
    text-decoration: none;
    padding: 3px 0;
    transition: gap 0.15s ease;
}

.hpt-mega-dest-see-more span {
    font-weight: 400;
    color: #aaa;
}

.hpt-mega-dest-see-more:hover {
    gap: 7px;
    text-decoration: underline;
}

.hpt-mega-dest-see-more--solo {
    margin-top: 8px;
    font-size: 13px;
}

/* ---- Empty State ---- */
.hpt-mega-empty {
    text-align: center;
    color: #999;
    font-size: 14px;
    padding: 20px;
}


/* =============================================
   MOBILE — Accordion Style
   ============================================= */
@media (max-width: 991px) {
    .hpt-mega-parent {
        position: relative !important;
    }

    .hpt-mega-panel {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        border-top: none;
        box-shadow: none;
        background: #f8f9fa;
        transform: none;
        /* Start collapsed */
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: max-height 0.4s ease;
        border-radius: 0;
    }

    .hpt-mega-parent.is-open > .hpt-mega-panel {
        max-height: 2000px;
        transform: none;
    }

    .hpt-mega-panel__inner {
        padding: 16px 20px;
    }

    /* Stack columns */
    .hpt-mega-cols {
        flex-direction: column;
        gap: 20px;
    }

    .hpt-mega-col {
        min-width: 100%;
    }

    .hpt-mega-col--cta {
        flex: 1;
    }

    /* Tours layout stack */
    .hpt-mega-tours-layout {
        flex-direction: column;
    }

    .hpt-mega-tours__featured {
        flex: 1;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 20px;
    }

    .hpt-mega-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hpt-mega-activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .hpt-mega-types-grid {
        grid-template-columns: 1fr;
    }

    .hpt-mega-activities-grid {
        grid-template-columns: 1fr;
    }

    .hpt-mega-tour-card img {
        width: 60px;
        height: 45px;
    }
}


/* =============================================
   NAVBAR PARENT ANCHOR POSITION FIX
   Ensure the navbar container is the positioning context
   ============================================= */
.site-nav.navbar,
.site-header .navbar {
    position: relative;
}

/* Ensure mega panels don't cause horizontal scroll */
body {
    overflow-x: hidden;
}

/* css/homepage.css */
/* =========================================================
   HighPass Tours — Homepage & Page Template Styles
   Premium ThemeForest-quality CSS
   ========================================================= */

/* ─── SECTION DEFAULTS ─── */
.hp-section { padding: 80px 0; }
.hp-section--gray { background: #f7f8fc; }
.hp-section--dark { background: var(--secondary-color, #004E89); color: #fff; }
.hp-section--dark .hp-section__title { color: #fff; }

.hp-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.hp-section__badge {
    display: inline-block;
    font-size: .8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
}
.hp-section__badge::before,
.hp-section__badge::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    vertical-align: middle;
    margin: 0 12px;
    opacity: .5;
}
.hp-section__title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--dark-color);
}
.hp-section__desc {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
}
.hp-section__more {
    text-align: center;
    margin-top: 40px;
}

/* ─── BUTTONS ─── */
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 50px; }
.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--dark-color);
    border-color: #fff;
}
.btn svg { margin-left: 6px; vertical-align: middle; }

/* ═══════════════════════════════════════════════
   HERO SLIDER (v1)
   ═══════════════════════════════════════════════ */
.hp-hero { position: relative; height: 90vh; min-height: 600px; max-height: 900px; overflow: hidden; }
.hp-hero__slider { width: 100%; height: 100%; }
.hp-hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    z-index: 1;
}
.hp-hero__slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 100%);
    z-index: 1;
}
.hp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: #fff;
}
.hp-hero__tagline {
    display: inline-block;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 16px;
    opacity: .9;
}
.hp-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hp-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: .9;
}
.hp-hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hp-hero__buttons .btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}
.hp-hero__buttons .btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Hero controls */
.hp-hero__controls { position: absolute; bottom: 50%; z-index: 10; width: 100%; }
.hp-hero__arrow {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    backdrop-filter: blur(4px);
}
.hp-hero__arrow:hover { background: var(--primary-color); border-color: var(--primary-color); }
.hp-hero__arrow--prev { left: 24px; }
.hp-hero__arrow--next { right: 24px; }
.hp-hero__dots {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.hp-hero__dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent;
    cursor: pointer;
    transition: all .3s ease;
}
.hp-hero__dot.is-active { background: var(--primary-color); border-color: var(--primary-color); width: 30px; border-radius: 6px; }

/* ─── SEARCH BAR ─── */
.hp-hero__search {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 10;
    padding: 20px 0;
}
.hp-search-bar {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    overflow: hidden;
    align-items: stretch;
}
.hp-search-bar__field {
    flex: 1;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f0f0f0;
}
.hp-search-bar__field label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}
.hp-search-bar__field select {
    border: none;
    outline: none;
    font-size: .9375rem;
    color: #6b7280;
    background: transparent;
    cursor: pointer;
    padding: 4px 0;
    -webkit-appearance: none;
}
.hp-search-bar__submit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .3s;
}
.hp-search-bar__submit:hover { background: var(--accent-color); }

/* ═══════════════════════════════════════════════
   CATEGORY CARDS
   ═══════════════════════════════════════════════ */
.hp-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}
.hp-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    text-decoration: none;
    color: var(--dark-color);
    transition: all .3s ease;
}
.hp-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.hp-category-card__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255, 107, 53, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-color);
    transition: all .3s;
}
.hp-category-card:hover .hp-category-card__icon {
    background: var(--primary-color);
    color: #fff;
}
.hp-category-card__title { font-size: .9375rem; font-weight: 600; margin-bottom: 4px; text-align: center; }
.hp-category-card__count { font-size: .8125rem; color: #9ca3af; }

/* ═══════════════════════════════════════════════
   TOUR CARD (homepage grid)
   ═══════════════════════════════════════════════ */
.hp-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.hp-tour-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all .3s ease;
}
.hp-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.hp-tour-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.hp-tour-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.hp-tour-card:hover .hp-tour-card__image img { transform: scale(1.08); }
.hp-tour-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}
.hp-tour-card__badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2;
}
.hp-tour-card__badge--sale { background: #ef4444; color: #fff; }
.hp-tour-card__location {
    position: absolute;
    bottom: 14px; left: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    color: #fff;
    font-size: .8125rem;
    font-weight: 500;
    z-index: 2;
}
.hp-tour-card__wishlist {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all .3s;
    z-index: 2;
}
.hp-tour-card__wishlist:hover { color: #ef4444; background: #fff; }

.hp-tour-card__body { padding: 20px; }
.hp-tour-card__meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.hp-tour-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .8125rem;
    color: #6b7280;
}
.hp-tour-card__diff {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .75rem !important;
    font-weight: 600;
}
.hp-tour-card__diff--easy { background: #d1fae5; color: #059669; }
.hp-tour-card__diff--moderate { background: #fef3c7; color: #d97706; }
.hp-tour-card__diff--challenging { background: #fee2e2; color: #dc2626; }
.hp-tour-card__diff--extreme { background: #ede9fe; color: #7c3aed; }

.hp-tour-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}
.hp-tour-card__title a { color: var(--dark-color); text-decoration: none; }
.hp-tour-card__title a:hover { color: var(--primary-color); }

.hp-tour-card__excerpt {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.hp-tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}
.hp-tour-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.hp-tour-card__price-old {
    font-size: .875rem;
    color: #9ca3af;
    text-decoration: line-through;
}
.hp-tour-card__price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}
.hp-tour-card__price-unit {
    font-size: .8125rem;
    color: #9ca3af;
}
.hp-tour-card__cta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap .3s;
}
.hp-tour-card__cta:hover { gap: 8px; color: var(--accent-color); }

/* ═══════════════════════════════════════════════
   DESTINATION CARDS
   ═══════════════════════════════════════════════ */
.hp-destinations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}
.hp-dest-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}
.hp-dest-card--large { grid-column: span 2; }
.hp-dest-card__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}
.hp-dest-card:hover .hp-dest-card__bg { transform: scale(1.08); }
.hp-dest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}
.hp-dest-card__content {
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 24px;
    z-index: 2;
}
.hp-dest-card__title { font-size: 1.375rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.hp-dest-card__count { font-size: .875rem; opacity: .85; }
.hp-destinations__grid--full { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; }

/* ═══════════════════════════════════════════════
   FEATURES / WHY US
   ═══════════════════════════════════════════════ */
.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.hp-feature {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: all .3s ease;
}
.hp-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.hp-feature__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.hp-feature__icon--blue   { background: #dbeafe; color: #2563eb; }
.hp-feature__icon--green  { background: #d1fae5; color: #059669; }
.hp-feature__icon--purple { background: #ede9fe; color: #7c3aed; }
.hp-feature__icon--orange { background: #ffedd5; color: #ea580c; }
.hp-feature h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 8px; }
.hp-feature p { font-size: .875rem; color: #6b7280; line-height: 1.6; margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   STATS COUNTER
   ═══════════════════════════════════════════════ */
.hp-stats {
    position: relative;
    padding: 70px 0;
    background: var(--secondary-color, #004E89);
    overflow: hidden;
}
.hp-stats__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.3), transparent);
}
.hp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.hp-stat { text-align: center; color: #fff; }
.hp-stat__number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}
.hp-stat__suffix { font-size: 2rem; font-weight: 700; color: var(--primary-color); }
.hp-stat__label {
    font-size: .9375rem;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.hp-testimonials__slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.hp-testimonial {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    border: 1px solid #eee;
    transition: all .3s;
}
.hp-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.hp-testimonial__stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    margin-bottom: 16px;
}
.hp-testimonial__text {
    font-size: .9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
    font-style: italic;
}
.hp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hp-testimonial__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.hp-testimonial__name {
    display: block;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--dark-color);
}
.hp-testimonial__tour {
    font-size: .8125rem;
    color: #9ca3af;
}

/* ═══════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════ */
.hp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.hp-blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all .3s;
}
.hp-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.hp-blog-card__image {
    display: block;
    position: relative;
    height: 220px;
    overflow: hidden;
}
.hp-blog-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.hp-blog-card:hover .hp-blog-card__image img { transform: scale(1.06); }
.hp-blog-card__date {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.1;
}
.hp-blog-card__day { display: block; font-size: 1.25rem; font-weight: 700; }
.hp-blog-card__month { display: block; font-size: .6875rem; text-transform: uppercase; letter-spacing: 1px; }

.hp-blog-card__body { padding: 20px; }
.hp-blog-card__cat {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.hp-blog-card__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.hp-blog-card__title a { color: var(--dark-color); text-decoration: none; }
.hp-blog-card__title a:hover { color: var(--primary-color); }
.hp-blog-card__excerpt {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
}
.hp-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap .3s;
}
.hp-blog-card__link:hover { gap: 8px; }

/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */
.hp-cta {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0073aa 100%);
    overflow: hidden;
}
.hp-cta__overlay {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hp-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
    color: #fff;
}
.hp-cta__title { font-size: 2.25rem; font-weight: 700; margin-bottom: 16px; color: #fff; }
.hp-cta__text { font-size: 1.0625rem; opacity: .9; margin-bottom: 32px; line-height: 1.7; }
.hp-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Team grid */
.hp-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.hp-team-card {
    text-align: center;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all .3s;
}
.hp-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.hp-team-card__image {
    height: 280px;
    overflow: hidden;
}
.hp-team-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.hp-team-card:hover .hp-team-card__image img { transform: scale(1.06); }
.hp-team-card__body { padding: 20px; }
.hp-team-card__name { font-size: 1.0625rem; font-weight: 600; margin-bottom: 4px; }
.hp-team-card__role { font-size: .8125rem; color: var(--primary-color); margin-bottom: 8px; }
.hp-team-card__social { display: flex; gap: 8px; justify-content: center; }
.hp-team-card__social a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all .3s;
    font-size: .75rem;
}
.hp-team-card__social a:hover { background: var(--primary-color); color: #fff; }

/* ═══════════════════════════════════════════════
   BREADCRUMB (reusable page hero)
   ═══════════════════════════════════════════════ */
.hp-page-hero {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0073aa 100%);
    color: #fff;
    text-align: center;
}
.hp-page-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.hp-page-hero__breadcrumb {
    font-size: .875rem;
    opacity: .7;
}
.hp-page-hero__breadcrumb a { color: #fff; }

/* ═══════════════════════════════════════════════
   HOMEPAGE V2 — VIDEO HERO
   ═══════════════════════════════════════════════ */
.hp-hero--video { background: #000; }
.hp-hero--video video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .65;
}
.hp-hero--video .hp-hero__content { text-align: center; max-width: 800px; margin: 0 auto; }
.hp-hero--video .hp-hero__title { font-size: 4rem; }
.hp-hero--video .hp-hero__buttons { justify-content: center; }

/* ═══════════════════════════════════════════════
   HOMEPAGE V3 — MINIMAL / SPLIT
   ═══════════════════════════════════════════════ */
.hp-hero--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    height: auto;
    max-height: none;
}
.hp-hero--split .hp-hero__left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #fff;
}
.hp-hero--split .hp-hero__right {
    position: relative;
    overflow: hidden;
    background: var(--secondary-color);
}
.hp-hero--split .hp-hero__right img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hp-hero--split .hp-hero__content { max-width: 560px; color: var(--dark-color); }
.hp-hero--split .hp-hero__tagline { color: var(--primary-color); }
.hp-hero--split .hp-hero__title { color: var(--dark-color); text-shadow: none; font-size: 3rem; }
.hp-hero--split .hp-hero__subtitle { color: #6b7280; }
.hp-hero--split .hp-hero__buttons .btn-primary {
    border: 0;
    border-radius: 50px;
}

/* ═══════════════════════════════════════════════
   BLOG LAYOUT & SIDEBAR
   ═══════════════════════════════════════════════ */
.hp-blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
.hp-blog-grid--two { grid-template-columns: repeat(2, 1fr); }
.hp-blog-card__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}
.hp-blog-card__author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8125rem;
    color: #6b7280;
}
.hp-blog-card__author img { border-radius: 50%; }

/* Pagination */
.hp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
    grid-column: 1 / -1;
}
.hp-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--dark-color);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
}
.hp-pagination .page-numbers:hover,
.hp-pagination .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Sidebar */
.hp-sidebar-widget {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 24px;
    margin-bottom: 24px;
}
.hp-sidebar-widget__title {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}
.hp-sidebar-widget__title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}
.hp-sidebar-search {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.hp-sidebar-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: .875rem;
}
.hp-sidebar-search button {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 10px 14px;
    cursor: pointer;
}
.hp-sidebar-cats {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp-sidebar-cats li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    text-decoration: none;
    font-size: .875rem;
    transition: color .3s;
}
.hp-sidebar-cats li a:hover { color: var(--primary-color); }
.hp-sidebar-cats li a span {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .75rem;
    color: #6b7280;
}
.hp-sidebar-post {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: var(--dark-color);
    transition: color .3s;
}
.hp-sidebar-post:hover { color: var(--primary-color); }
.hp-sidebar-post:last-child { border-bottom: none; }
.hp-sidebar-post__thumb {
    width: 70px; height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.hp-sidebar-post__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hp-sidebar-post__title {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}
.hp-sidebar-post__date {
    font-size: .75rem;
    color: #9ca3af;
}
.hp-sidebar-post__price {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hp-hero__title { font-size: 2.5rem; }
    .hp-tours-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-destinations__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-dest-card--large { grid-column: span 1; }
    .hp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .hp-testimonials__slider { grid-template-columns: repeat(2, 1fr); }
    .hp-team-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-hero--split { grid-template-columns: 1fr; }
    .hp-hero--split .hp-hero__right { height: 400px; }
    .hp-blog-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hp-section { padding: 60px 0; }
    .hp-section__title { font-size: 1.75rem; }
    /* svh = small viewport height: the height with the browser UI fully
       expanded. On iOS/WebKit plain 100vh means the LARGE viewport (URL bar
       collapsed), so the hero renders taller than the screen and adds scroll
       length the page never needed. The vh line stays first as the fallback
       for browsers without svh (iOS < 15.4). */
    .hp-hero { height: 100vh; height: 100svh; min-height: 500px; }
    .hp-hero__title { font-size: 2rem; }
    .hp-hero--video .hp-hero__title { font-size: 2.5rem; }
    .hp-hero__subtitle { font-size: 1rem; }
    .hp-search-bar { flex-direction: column; border-radius: 14px; }
    .hp-search-bar__field { border-right: none; border-bottom: 1px solid #f0f0f0; padding: 12px 20px; }
    .hp-search-bar__submit { justify-content: center; padding: 14px; }
    .hp-tours-grid { grid-template-columns: 1fr; }
    .hp-blog-grid { grid-template-columns: 1fr; }
    .hp-features-grid { grid-template-columns: 1fr; }
    .hp-testimonials__slider { grid-template-columns: 1fr; }
    .hp-destinations__grid { grid-template-columns: 1fr; }
    .hp-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-hero__dots { bottom: 85px; }
    .hp-hero__arrow { display: none; }
    .hp-cta__title { font-size: 1.75rem; }
    .hp-team-grid { grid-template-columns: 1fr; }
    .hp-hero--split .hp-hero__left { padding: 40px 20px; }
    .hp-hero--split .hp-hero__title { font-size: 2rem; }
    .hp-page-hero__title { font-size: 1.75rem; }
    .hp-categories__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .hp-categories__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hp-category-card { padding: 20px 12px; }
    .hp-hero__title { font-size: 1.75rem; }
    .hp-stat__number { font-size: 2.25rem; }
}

/* css/tour-search.css */
/* Tour Search Results Styles */
.hptours-active-filters {
    margin: 30px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.hptours-active-filters h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.hptours-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hptours-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #475569;
}

.hptours-filter-tag strong {
    color: #1e293b;
    font-weight: 600;
}

.hptours-filter-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    background: #ef4444;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    transition: all 0.2s ease;
}

.hptours-filter-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.hptours-filter-clear {
    padding: 8px 16px;
    background: #1a5f7a;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.hptours-filter-clear:hover {
    background: #155169;
    color: #ffffff;
}

/* Search Results Info */
.hptours-search-info {
    margin: 20px 0;
    padding: 15px 20px;
    background: #ecfdf5;
    border-left: 4px solid #10b981;
    border-radius: 8px;
}

.hptours-search-info p {
    margin: 0;
    color: #065f46;
    font-size: 15px;
}

/* No Results */
.hptours-no-results {
    margin: 40px 0;
    padding: 60px 30px;
    text-align: center;
    background: #f8fafc;
    border-radius: 16px;
}

.hptours-no-results h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: #1e293b;
}

.hptours-no-results p {
    margin: 0 0 25px 0;
    font-size: 16px;
    color: #64748b;
}

.hptours-no-results .button {
    display: inline-block;
    padding: 12px 24px;
    background: #1a5f7a;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.hptours-no-results .button:hover {
    background: #155169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .hptours-filter-tags {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hptours-filter-tag {
        justify-content: space-between;
    }
    
    .hptours-active-filters {
        padding: 15px;
    }
}

/* css/blog.css */
/* ═══════════════════════════════════════════════════════════════
   HighPass Tours — Blog Styles
   Premium tourism-industry blog inspired by World Nomads,
   Intrepid Travel, Lonely Planet, and National Geographic.
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables (blog-specific) ─── */
:root {
    --blog-max-width: 780px;
    --blog-sidebar-width: 340px;
    --blog-gap: 48px;
    --blog-radius: 16px;
    --blog-radius-sm: 10px;
    --blog-shadow: 0 2px 16px rgba(0,0,0,.06);
    --blog-shadow-hover: 0 8px 32px rgba(0,0,0,.10);
    --blog-transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ─── Override: show entry-title on blog ─── */
.single-post .entry-title,
.blog .entry-title,
.archive .entry-title,
.category .entry-title,
.tag .entry-title {
    display: block !important;
    visibility: visible !important;
}


/* ═══════════════════════════════════════════
   1. BREADCRUMBS
   ═══════════════════════════════════════════ */
.hpt-blog-breadcrumbs {
    background: var(--light-color, #f8f8f8);
    border-bottom: 1px solid var(--border-color, #e0e0e0);
    padding: 14px 0;
    font-size: 13px;
}
.hpt-blog-breadcrumbs--inline {
    background: none;
    border: none;
    padding: 0 0 16px;
}
.hpt-breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.hpt-breadcrumb-list li + li::before {
    content: '›';
    color: #aaa;
    margin-right: 6px;
    font-weight: 600;
}
.hpt-breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--blog-transition);
}
.hpt-breadcrumb-list a:hover { color: var(--accent-color); }
.hpt-breadcrumb-list .current { color: #888; }


/* ═══════════════════════════════════════════
   2. SINGLE POST — HERO
   ═══════════════════════════════════════════ */
.hpt-blog-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.hpt-blog-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 8s ease;
}
.hpt-blog-hero:hover .hpt-blog-hero__img {
    transform: scale(1.06);
}
.hpt-blog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,.05) 100%);
}
.hpt-blog-hero__content {
    position: relative;
    z-index: 2;
    padding: 48px 0;
    width: 100%;
}
.hpt-blog-hero__title {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 12px 0 20px;
    max-width: 850px;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hpt-blog-hero__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}
.hpt-blog-cat-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background var(--blog-transition);
}
.hpt-blog-cat-badge:hover {
    background: var(--accent-color);
    color: #fff;
}
.hpt-blog-cat-badge--sm {
    font-size: 11px;
    padding: 3px 10px;
}
.hpt-blog-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    color: rgba(255,255,255,.9);
    font-size: 14px;
}
.hpt-blog-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hpt-blog-meta__item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.hpt-blog-meta__item a:hover { text-decoration: underline; }
.hpt-blog-meta__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.4);
}


/* ═══════════════════════════════════════════
   3. SINGLE POST — LAYOUT
   ═══════════════════════════════════════════ */
.hpt-blog-single { padding: 48px 0 0; }
.hpt-blog-layout {
    display: grid;
    grid-template-columns: 1fr var(--blog-sidebar-width);
    gap: var(--blog-gap);
    align-items: start;
}

/* ── Article ── */
.hpt-blog-article { min-width: 0; }
.hpt-blog-article__header--no-hero {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.hpt-blog-article__header--no-hero .hpt-blog-hero__meta {
    color: #666;
}
.hpt-blog-article__header--no-hero .hpt-blog-meta__item a {
    color: var(--primary-color);
}
.hpt-blog-article__title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 12px 0 20px;
    color: var(--dark-color);
}
.hpt-blog-article__caption {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
    font-style: italic;
}
.hpt-blog-article__caption i { margin-right: 4px; }


/* ── Article Content Typography ── */
.hpt-blog-article__content {
    font-size: 17px;
    line-height: 1.8;
    color: #2d2d2d;
}
.hpt-blog-article__content p {
    margin-bottom: 1.5em;
}
.hpt-blog-article__content h2 {
    font-size: 1.65rem;
    font-weight: 700;
    margin: 2em 0 .7em;
    color: var(--dark-color);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}
.hpt-blog-article__content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 1.6em 0 .5em;
    color: var(--dark-color);
}
.hpt-blog-article__content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.4em 0 .4em;
    color: var(--dark-color);
}
.hpt-blog-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--blog-radius-sm);
    margin: 1.5em 0;
}
.hpt-blog-article__content figure {
    margin: 2em 0;
}
.hpt-blog-article__content figcaption {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}
.hpt-blog-article__content blockquote {
    border-left: 4px solid var(--primary-color);
    margin: 2em 0;
    padding: 20px 24px;
    background: var(--light-color);
    border-radius: 0 var(--blog-radius-sm) var(--blog-radius-sm) 0;
    font-style: italic;
    font-size: 1.05em;
    color: #444;
}
.hpt-blog-article__content blockquote p:last-child { margin-bottom: 0; }
.hpt-blog-article__content ul,
.hpt-blog-article__content ol {
    padding-left: 24px;
    margin-bottom: 1.5em;
}
.hpt-blog-article__content li {
    margin-bottom: .5em;
}
.hpt-blog-article__content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--blog-transition);
}
.hpt-blog-article__content a:hover {
    color: var(--accent-color);
}
.hpt-blog-article__content pre {
    background: #1e1e2e;
    color: #cdd6f4;
    padding: 20px;
    border-radius: var(--blog-radius-sm);
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
    margin: 1.5em 0;
}
.hpt-blog-article__content code {
    background: rgba(0,0,0,.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .9em;
}
.hpt-blog-article__content pre code {
    background: none;
    padding: 0;
}
.hpt-blog-article__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 15px;
}
.hpt-blog-article__content th,
.hpt-blog-article__content td {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    text-align: left;
}
.hpt-blog-article__content th {
    background: var(--light-color);
    font-weight: 600;
}
.hpt-blog-article__content .wp-block-gallery {
    margin: 2em 0;
}


/* ── Page Links ── */
.hpt-blog-page-links {
    margin: 2em 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.hpt-blog-page-links a,
.hpt-blog-page-links > span:not(.hpt-blog-page-links__label) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
}
.hpt-blog-page-links a:hover {
    background: var(--primary-color);
    color: #fff;
}


/* ═══════════════════════════════════════════
   4. TAGS
   ═══════════════════════════════════════════ */
.hpt-blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 32px;
    color: #888;
}
.hpt-blog-tag {
    display: inline-flex;
    align-items: center;
    background: var(--light-color);
    color: var(--text-color);
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all var(--blog-transition);
}
.hpt-blog-tag:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}


/* ═══════════════════════════════════════════
   5. SHARE BUTTONS
   ═══════════════════════════════════════════ */
.hpt-blog-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}
.hpt-blog-share__label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}
.hpt-blog-share__buttons {
    display: flex;
    gap: 8px;
}
.hpt-blog-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--blog-transition), box-shadow var(--blog-transition);
}
.hpt-blog-share__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    color: #fff;
}
.hpt-blog-share__btn--fb { background: #1877f2; }
.hpt-blog-share__btn--tw { background: #000; }
.hpt-blog-share__btn--wa { background: #25d366; }
.hpt-blog-share__btn--li { background: #0a66c2; }
.hpt-blog-share__btn--copy { background: var(--primary-color); }
.hpt-blog-share__btn--copy.copied { background: var(--success-color); }


/* ═══════════════════════════════════════════
   6. AUTHOR BOX
   ═══════════════════════════════════════════ */
.hpt-blog-author-box {
    display: flex;
    gap: 20px;
    padding: 28px;
    margin: 32px 0;
    background: var(--light-color);
    border-radius: var(--blog-radius);
    border: 1px solid var(--border-color);
}
.hpt-blog-author-box__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.hpt-blog-author-box__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #888;
    font-weight: 600;
}
.hpt-blog-author-box__name {
    font-size: 1.15rem;
    margin: 4px 0 8px;
}
.hpt-blog-author-box__name a {
    color: var(--dark-color);
    text-decoration: none;
}
.hpt-blog-author-box__name a:hover {
    color: var(--primary-color);
}
.hpt-blog-author-box__bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/* ═══════════════════════════════════════════
   7. POST NAVIGATION
   ═══════════════════════════════════════════ */
.hpt-blog-postnav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 40px;
}
.hpt-blog-postnav__link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--blog-radius-sm);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all var(--blog-transition);
}
.hpt-blog-postnav__link:hover {
    border-color: var(--primary-color);
    box-shadow: var(--blog-shadow);
}
.hpt-blog-postnav__link--next { text-align: right; }
.hpt-blog-postnav__link--next:only-child { grid-column: 2; }
.hpt-blog-postnav__dir {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--primary-color);
    font-weight: 600;
}
.hpt-blog-postnav__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ═══════════════════════════════════════════
   8. SIDEBAR
   ═══════════════════════════════════════════ */
.hpt-blog-sidebar {
    position: sticky;
    top: 100px;
}
.hpt-blog-widget {
    margin-bottom: 28px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--blog-radius);
    box-shadow: var(--blog-shadow);
}
.hpt-blog-widget__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: .3px;
}
.hpt-blog-widget__title i {
    color: var(--primary-color);
    margin-right: 6px;
}

/* Search */
.hpt-blog-search {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    transition: border-color var(--blog-transition);
}
.hpt-blog-search:focus-within {
    border-color: var(--primary-color);
}
.hpt-blog-search__input {
    flex: 1;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    background: transparent;
}
.hpt-blog-search__btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    transition: background var(--blog-transition);
}
.hpt-blog-search__btn:hover { background: var(--accent-color); }

/* Categories */
.hpt-blog-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hpt-blog-cat-list li + li {
    border-top: 1px solid var(--border-color);
}
.hpt-blog-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--blog-transition);
}
.hpt-blog-cat-list a:hover { color: var(--primary-color); }
.hpt-blog-cat-count {
    background: var(--light-color);
    color: #888;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 12px;
}

/* Recent Posts */
.hpt-blog-recent-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hpt-blog-recent-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: opacity var(--blog-transition);
}
.hpt-blog-recent-item:hover { opacity: .8; }
.hpt-blog-recent-item__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
}
.hpt-blog-recent-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hpt-blog-recent-item__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hpt-blog-recent-item__date {
    font-size: 12px;
    color: #999;
}

/* Tag Cloud */
.hpt-blog-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* CTA Widget */
.hpt-blog-cta {
    background: linear-gradient(135deg, var(--primary-color), #104a5c);
    border: none;
    text-align: center;
    color: #fff;
}
.hpt-blog-cta__icon {
    font-size: 36px;
    margin-bottom: 8px;
    opacity: .8;
}
.hpt-blog-cta__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.hpt-blog-cta__text {
    font-size: 14px;
    opacity: .9;
    margin: 0 0 16px;
    line-height: 1.5;
}
.hpt-blog-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all var(--blog-transition);
}
.hpt-blog-cta__btn:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}


/* ── Table of Contents ── */
.hpt-blog-toc__nav {
    max-height: 350px;
    overflow-y: auto;
}
.hpt-blog-toc__nav a {
    display: block;
    padding: 6px 0 6px 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.5;
    border-left: 3px solid transparent;
    padding-left: 12px;
    transition: all var(--blog-transition);
}
.hpt-blog-toc__nav a:hover,
.hpt-blog-toc__nav a.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: rgba(26,95,122,.04);
}
.hpt-blog-toc__nav a[data-level="3"] { padding-left: 28px; font-size: 13px; }
.hpt-blog-toc__nav a[data-level="4"] { padding-left: 44px; font-size: 12.5px; }


/* ═══════════════════════════════════════════
   9. ARCHIVE HERO
   ═══════════════════════════════════════════ */
.hpt-blog-archive-hero {
    background: linear-gradient(135deg, #f0f7fa 0%, #e8f0f5 50%, #faf4ee 100%);
    padding: 40px 0 32px;
    border-bottom: 1px solid var(--border-color);
}
.hpt-blog-archive-hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 8px;
}
.hpt-blog-archive-hero__desc {
    font-size: 16px;
    color: #555;
    margin: 0 0 20px;
    max-width: 600px;
}

/* Filter Pills */
.hpt-blog-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hpt-blog-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    background: #fff;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all var(--blog-transition);
}
.hpt-blog-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.hpt-blog-pill--active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.hpt-blog-pill--active:hover {
    color: #fff;
}


/* ═══════════════════════════════════════════
   10. ARCHIVE — FEATURED CARD
   ═══════════════════════════════════════════ */
.hpt-blog-archive { padding: 48px 0 60px; }
.hpt-blog-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--blog-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--blog-shadow);
    margin-bottom: 48px;
    transition: box-shadow var(--blog-transition);
}
.hpt-blog-featured-card:hover { box-shadow: var(--blog-shadow-hover); }
.hpt-blog-featured-card__img {
    display: block;
    overflow: hidden;
}
.hpt-blog-featured-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
    transition: transform 6s ease;
}
.hpt-blog-featured-card:hover .hpt-blog-featured-card__img img {
    transform: scale(1.05);
}
.hpt-blog-featured-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}
.hpt-blog-featured-card__badge {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .6px;
    width: fit-content;
    margin-bottom: 12px;
}
.hpt-blog-featured-card__cats { margin-bottom: 12px; display: flex; gap: 6px; }
.hpt-blog-featured-card__title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
}
.hpt-blog-featured-card__title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color var(--blog-transition);
}
.hpt-blog-featured-card__title a:hover { color: var(--primary-color); }
.hpt-blog-featured-card__excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px;
}
.hpt-blog-featured-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
}
.hpt-blog-featured-card__meta img {
    border-radius: 50%;
}
.hpt-blog-featured-card__dot { color: #ccc; }


/* ═══════════════════════════════════════════
   11. BLOG GRID & CARD
   ═══════════════════════════════════════════ */
.hpt-blog-grid {
    display: grid;
    gap: 28px;
}
.hpt-blog-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.hpt-blog-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.hpt-blog-card {
    background: #fff;
    border-radius: var(--blog-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--blog-shadow);
    transition: all var(--blog-transition);
    display: flex;
    flex-direction: column;
}
.hpt-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--blog-shadow-hover);
}
.hpt-blog-card__img-link {
    position: relative;
    display: block;
    overflow: hidden;
}
.hpt-blog-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.hpt-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.hpt-blog-card:hover .hpt-blog-card__img img {
    transform: scale(1.06);
}
.hpt-blog-card__img--placeholder {
    background: linear-gradient(135deg, #dce6ea, #c4d3da);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,.6);
}
.hpt-blog-card__read-time {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.hpt-blog-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hpt-blog-card__cats { margin-bottom: 10px; display: flex; gap: 6px; }
.hpt-blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
}
.hpt-blog-card__title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color var(--blog-transition);
}
.hpt-blog-card__title a:hover { color: var(--primary-color); }
.hpt-blog-card__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.55;
    margin: 0 0 auto;
    padding-bottom: 16px;
}
.hpt-blog-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
}
.hpt-blog-card__author {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-weight: 500;
}
.hpt-blog-card__author img {
    border-radius: 50%;
}
.hpt-blog-card__date {
    color: #999;
    font-size: 12px;
}


/* ═══════════════════════════════════════════
   12. RELATED POSTS
   ═══════════════════════════════════════════ */
.hpt-blog-related {
    padding: 56px 0 64px;
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
}
.hpt-blog-related__heading {
    text-align: center;
    font-size: 1.65rem;
    font-weight: 800;
    margin: 0 0 32px;
    color: var(--dark-color);
}
.hpt-blog-related__heading i {
    color: var(--primary-color);
    margin-right: 8px;
}


/* ═══════════════════════════════════════════
   13. PAGINATION
   ═══════════════════════════════════════════ */
.hpt-blog-pagination {
    margin-top: 48px;
    text-align: center;
}
.hpt-blog-pagination .page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 4px;
}
.hpt-blog-pagination .page-numbers li {
    display: inline-flex;
}
.hpt-blog-pagination .page-numbers a,
.hpt-blog-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    background: #fff;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all var(--blog-transition);
}
.hpt-blog-pagination .page-numbers a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.hpt-blog-pagination .page-numbers .current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.hpt-blog-pagination .page-numbers .dots {
    border: none;
    background: transparent;
    color: #aaa;
}


/* ═══════════════════════════════════════════
   14. EMPTY STATE
   ═══════════════════════════════════════════ */
.hpt-blog-empty {
    text-align: center;
    padding: 80px 20px;
}
.hpt-blog-empty i {
    font-size: 56px;
    color: #ccc;
    margin-bottom: 16px;
}
.hpt-blog-empty h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0 0 8px;
}
.hpt-blog-empty p {
    color: #888;
    margin: 0 0 24px;
}


/* ═══════════════════════════════════════════
   15. COMMENTS
   ═══════════════════════════════════════════ */
.hpt-comments {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}
.hpt-comments__heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 24px;
}
.hpt-comments__heading i {
    color: var(--primary-color);
    margin-right: 6px;
}
.hpt-comments__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hpt-comments__list .hpt-comment {
    margin-bottom: 24px;
}
.hpt-comments__list .children {
    list-style: none;
    margin: 16px 0 0 32px;
    padding-left: 20px;
    border-left: 2px solid var(--border-color);
}
.hpt-comment__body {
    display: flex;
    gap: 16px;
}
.hpt-comment__avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}
.hpt-comment__content {
    flex: 1;
    min-width: 0;
}
.hpt-comment__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.hpt-comment__author {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 15px;
}
.hpt-comment__author a {
    color: var(--dark-color);
    text-decoration: none;
}
.hpt-comment__date {
    font-size: 12px;
    color: #999;
}
.hpt-comment__date a { color: #999; text-decoration: none; }
.hpt-comment__text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 8px;
}
.hpt-comment__text p:last-child { margin-bottom: 0; }
.hpt-comment__reply a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}
.hpt-comment__reply a:hover { text-decoration: underline; }
.hpt-comments__closed {
    color: #888;
    font-size: 14px;
    padding: 16px 0;
}

/* Comment Form */
.hpt-comment-form__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 32px 0 8px;
}
.hpt-comment-form__title i {
    color: var(--primary-color);
    margin-right: 6px;
}
.hpt-comment-form__note {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}
.hpt-comment-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.hpt-comment-form__field {
    margin-bottom: 16px;
}
.hpt-comment-form__field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 6px;
}
.hpt-comment-form__field input,
.hpt-comment-form__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--blog-radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-color);
    background: #fff;
    transition: border-color var(--blog-transition);
    outline: none;
}
.hpt-comment-form__field input:focus,
.hpt-comment-form__field textarea:focus {
    border-color: var(--primary-color);
}
.hpt-comment-form__field textarea {
    resize: vertical;
    min-height: 120px;
}
.hpt-comment-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--blog-transition);
}
.hpt-comment-form__submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}


/* ═══════════════════════════════════════════
   16. RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hpt-blog-layout {
        grid-template-columns: 1fr;
    }
    .hpt-blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .hpt-blog-sidebar .hpt-blog-cta { grid-column: 1 / -1; }
    .hpt-blog-featured-card {
        grid-template-columns: 1fr 1fr;
    }
    .hpt-blog-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hpt-blog-hero { height: 400px; }
    .hpt-blog-hero__title { font-size: 1.8rem; }
    .hpt-blog-hero__meta { gap: 12px; font-size: 13px; }
    .hpt-blog-article__content { font-size: 16px; }
    .hpt-blog-article__title { font-size: 1.8rem; }
    .hpt-blog-article__content h2 { font-size: 1.4rem; }
    .hpt-blog-article__content h3 { font-size: 1.2rem; }
    .hpt-blog-postnav { grid-template-columns: 1fr; }
    .hpt-blog-postnav__link--next:only-child { grid-column: 1; }
    .hpt-blog-author-box { flex-direction: column; align-items: center; text-align: center; }
    .hpt-blog-featured-card {
        grid-template-columns: 1fr;
    }
    .hpt-blog-featured-card__img img { min-height: 240px; }
    .hpt-blog-featured-card__body { padding: 24px; }
    .hpt-blog-featured-card__title { font-size: 1.3rem; }
    .hpt-blog-grid--3,
    .hpt-blog-grid--2 {
        grid-template-columns: 1fr;
    }
    .hpt-blog-sidebar {
        grid-template-columns: 1fr;
    }
    .hpt-blog-archive-hero__title { font-size: 1.7rem; }
    .hpt-blog-filter-pills { gap: 6px; }
    .hpt-blog-pill { padding: 6px 14px; font-size: 12px; }
    .hpt-comment-form__row {
        grid-template-columns: 1fr;
    }
    .hpt-blog-share { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hpt-blog-hero { height: 320px; }
    .hpt-blog-hero__title { font-size: 1.5rem; }
    .hpt-blog-hero__content { padding: 28px 0; }
    .hpt-blog-article__title { font-size: 1.5rem; }
    .hpt-blog-widget { padding: 18px; }
    .hpt-blog-card__body { padding: 16px; }
    .hpt-blog-featured-card__body { padding: 18px; }
}


/* ═══════════════════════════════════════════
   17. PRINT STYLES
   ═══════════════════════════════════════════ */
@media print {
    .hpt-blog-sidebar,
    .hpt-blog-share,
    .hpt-blog-postnav,
    .hpt-blog-related,
    .hpt-comments,
    .hpt-blog-breadcrumbs,
    .hpt-blog-filter-pills,
    .hpt-blog-cta {
        display: none !important;
    }
    .hpt-blog-layout {
        display: block;
    }
    .hpt-blog-article__content {
        font-size: 12pt;
    }
}

/* css/contact-page.css */
/**
 * Contact Page Styles
 * Modern, clean design with animations and responsive layout.
 *
 * @package HighPassTours
 * @since 1.4.0
 */

/* ═══════════════════════════════════════════════════
   VARIABLES & BASE
   ═══════════════════════════════════════════════════ */
.contact-page {
    --cp-primary: var(--primary-color, #FF6B35);
    --cp-secondary: var(--secondary-color, #004E89);
    --cp-accent: var(--accent-color, #F76C5E);
    --cp-dark: var(--dark-color, #1A1A1A);
    --cp-light: var(--light-color, #F8F8F8);
    --cp-white: #ffffff;
    --cp-gray-100: #f7f8fa;
    --cp-gray-200: #eef0f4;
    --cp-gray-300: #dde1e8;
    --cp-gray-400: #b0b8c4;
    --cp-gray-600: #6b7280;
    --cp-radius: 16px;
    --cp-radius-sm: 10px;
    --cp-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --cp-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.10);
    --cp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --cp-whatsapp: #25D366;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--cp-dark);
    overflow-x: hidden;
}

/* Container override for contact page */
.contact-page .container {
    width: 90% !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.contact-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section common styles */
.contact-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cp-primary), var(--cp-accent));
    color: var(--cp-white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.contact-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cp-dark);
    margin: 0 0 12px;
    line-height: 1.2;
}

.contact-section-subtitle {
    font-size: 1.1rem;
    color: var(--cp-gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-main__header {
    text-align: center;
    margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════════ */
.contact-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--cp-secondary) 0%, #002a4a 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 78, 137, 0.85) 0%,
        rgba(0, 42, 74, 0.92) 100%);
    z-index: 1;
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 20px 60px;
    max-width: 700px;
}

.contact-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--cp-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.contact-hero__badge i {
    font-size: 0.9rem;
}

.contact-hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cp-white);
    margin: 0 0 18px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.contact-hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 32px;
}

.contact-hero__scroll a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--cp-white);
    font-size: 1.1rem;
    transition: var(--cp-transition);
    animation: contactBounce 2s infinite;
}

.contact-hero__scroll a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    color: var(--cp-white);
}

@keyframes contactBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ═══════════════════════════════════════════════════
   SECTION 2: INFO CARDS
   ═══════════════════════════════════════════════════ */
.contact-info-cards {
    position: relative;
    z-index: 3;
    margin-top: -60px;
    padding-bottom: 80px;
}

.contact-info-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--cp-white);
    padding: 40px 28px 32px;
    border-radius: var(--cp-radius);
    box-shadow: var(--cp-shadow);
    text-decoration: none;
    color: var(--cp-dark);
    transition: var(--cp-transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cp-primary), var(--cp-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--cp-transition);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--cp-shadow-lg);
    border-color: var(--cp-gray-200);
    text-decoration: none;
    color: var(--cp-dark);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card__icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--cp-transition);
}

.contact-card--phone .contact-card__icon-wrap {
    background: rgba(0, 78, 137, 0.1);
    color: var(--cp-secondary);
}
.contact-card--email .contact-card__icon-wrap {
    background: rgba(255, 107, 53, 0.1);
    color: var(--cp-primary);
}
.contact-card--whatsapp .contact-card__icon-wrap {
    background: rgba(37, 211, 102, 0.1);
    color: var(--cp-whatsapp);
}
.contact-card--location .contact-card__icon-wrap {
    background: rgba(247, 108, 94, 0.1);
    color: var(--cp-accent);
}

.contact-card:hover .contact-card__icon-wrap {
    transform: scale(1.1);
}

.contact-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.contact-card__text {
    font-size: 0.95rem;
    color: var(--cp-gray-600);
    margin: 0 0 16px;
    line-height: 1.5;
    word-break: break-word;
}

.contact-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cp-primary);
    transition: var(--cp-transition);
}

.contact-card__cta i {
    transition: transform var(--cp-transition);
}

.contact-card:hover .contact-card__cta i {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════
   SECTION 2B: BRANCH OFFICES
   ═══════════════════════════════════════════════════ */
.contact-branches {
    padding: 80px 0;
    background: var(--cp-white);
}

.contact-branches__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.contact-branch-card {
    background: var(--cp-white);
    border: 1px solid var(--cp-gray-200);
    border-radius: var(--cp-radius);
    overflow: hidden;
    transition: var(--cp-transition);
    display: flex;
    flex-direction: column;
}

.contact-branch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cp-shadow-lg);
    border-color: transparent;
}

/* Head Office — featured card */
.contact-branch-card--head {
    border: 2px solid var(--cp-secondary);
    position: relative;
    background: linear-gradient(180deg, rgba(0, 78, 137, 0.03) 0%, var(--cp-white) 40%);
}

.contact-branch-card--head:hover {
    border-color: var(--cp-secondary);
}

.contact-branch-card__badge {
    position: absolute;
    top: 14px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--cp-secondary);
    color: var(--cp-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 12px;
    border-radius: 50px;
}

.contact-branch-card--head .contact-branch-card__icon {
    background: linear-gradient(135deg, var(--cp-primary), var(--cp-accent));
}

.contact-branch-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 0;
}

.contact-branch-card__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cp-secondary), #0070c9);
    color: var(--cp-white);
    border-radius: 12px;
    font-size: 1.2rem;
}

.contact-branch-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cp-dark);
    margin: 0;
}

.contact-branch-card__body {
    padding: 20px 24px;
    flex: 1;
}

.contact-branch-card__detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--cp-gray-600);
    line-height: 1.5;
}

.contact-branch-card__detail + .contact-branch-card__detail {
    border-top: 1px solid var(--cp-gray-100);
}

.contact-branch-card__detail > i {
    width: 18px;
    text-align: center;
    color: var(--cp-secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-branch-card__detail a {
    color: var(--cp-secondary);
    text-decoration: none;
    transition: color var(--cp-transition);
}

.contact-branch-card__detail a:hover {
    color: var(--cp-primary);
}

.contact-branch-card__footer {
    padding: 16px 24px;
    border-top: 1px solid var(--cp-gray-200);
    background: var(--cp-gray-100);
}

.contact-branch-card__directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cp-primary);
    text-decoration: none;
    transition: var(--cp-transition);
}

.contact-branch-card__directions:hover {
    color: var(--cp-accent);
}

.contact-branch-card__directions i {
    font-size: 1rem;
    transition: transform var(--cp-transition);
}

.contact-branch-card__directions:hover i {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════
   SECTION 3: FORM + MAP SPLIT
   ═══════════════════════════════════════════════════ */
.contact-main {
    padding: 80px 0;
    background: var(--cp-gray-100);
}

.contact-main__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Contact Form ── */
.contact-form-wrap {
    background: var(--cp-white);
    border-radius: var(--cp-radius);
    padding: 40px;
    box-shadow: var(--cp-shadow);
}

.contact-form__row {
    margin-bottom: 24px;
}

.contact-form__row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form__field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cp-dark);
    margin-bottom: 8px;
}

.contact-form__field label .required {
    color: var(--cp-accent);
}

.contact-form__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-form__input-wrap > i {
    position: absolute;
    left: 16px;
    color: var(--cp-gray-400);
    font-size: 0.95rem;
    z-index: 1;
    pointer-events: none;
    transition: color var(--cp-transition);
}

.contact-form__input-wrap input,
.contact-form__input-wrap select,
.contact-form__input-wrap textarea {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 2px solid var(--cp-gray-200);
    border-radius: var(--cp-radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--cp-dark);
    background: var(--cp-white);
    transition: var(--cp-transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form__input-wrap select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-right: 42px;
}

.contact-form__input-wrap--textarea > i {
    top: 16px;
    align-self: flex-start;
}

.contact-form__input-wrap textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form__input-wrap input:focus,
.contact-form__input-wrap select:focus,
.contact-form__input-wrap textarea:focus {
    border-color: var(--cp-secondary);
    box-shadow: 0 0 0 3px rgba(0, 78, 137, 0.1);
}

.contact-form__input-wrap input:focus ~ i,
.contact-form__input-wrap:focus-within > i {
    color: var(--cp-secondary);
}

.contact-form__input-wrap input::placeholder,
.contact-form__input-wrap textarea::placeholder {
    color: var(--cp-gray-400);
}

/* Validation states */
.contact-form__field.is-error .contact-form__input-wrap input,
.contact-form__field.is-error .contact-form__input-wrap select,
.contact-form__field.is-error .contact-form__input-wrap textarea {
    border-color: var(--cp-accent);
    box-shadow: 0 0 0 3px rgba(247, 108, 94, 0.1);
}

.contact-form__field.is-error .contact-form__input-wrap > i {
    color: var(--cp-accent);
}

.contact-form__field .field-error {
    font-size: 0.8rem;
    color: var(--cp-accent);
    margin-top: 6px;
    display: none;
}

.contact-form__field.is-error .field-error {
    display: block;
}

/* Submit button */
.contact-form__footer {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cp-white);
    background: linear-gradient(135deg, var(--cp-primary), var(--cp-accent));
    border: none;
    border-radius: var(--cp-radius-sm);
    cursor: pointer;
    transition: var(--cp-transition);
    position: relative;
    overflow: hidden;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.contact-form__submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cp-accent), var(--cp-primary));
    opacity: 0;
    transition: opacity var(--cp-transition);
}

.contact-form__submit:hover::before {
    opacity: 1;
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.contact-form__submit:active {
    transform: translateY(0);
}

.contact-form__submit .btn-text,
.contact-form__submit .btn-loading {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-form__submit.is-loading .btn-text { display: none; }
.contact-form__submit.is-loading .btn-loading { display: inline-flex !important; }

.contact-form__privacy {
    font-size: 0.82rem;
    color: var(--cp-gray-600);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.contact-form__privacy i {
    color: var(--cp-secondary);
}

.contact-form__privacy a {
    color: var(--cp-primary, #1a5f7a);
    text-decoration: underline;
}

/* Status messages */
.contact-form__status {
    margin-top: 20px;
    padding: 0;
    border-radius: var(--cp-radius-sm);
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

.contact-form__status.is-visible {
    display: block;
    padding: 16px 20px;
}

.contact-form__status.is-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.contact-form__status.is-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-form__status i {
    margin-right: 8px;
}

/* ── Map ── */
.contact-map {
    width: 100%;
    height: 320px;
    border-radius: var(--cp-radius) var(--cp-radius) 0 0;
    overflow: hidden;
    background: var(--cp-gray-200);
}

.contact-map--static {
    border-radius: var(--cp-radius) var(--cp-radius) 0 0;
}

.contact-map--static iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ── Sidebar ── */
.contact-sidebar {
    background: var(--cp-white);
    border-radius: var(--cp-radius);
    box-shadow: var(--cp-shadow);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.contact-office-card {
    padding: 32px;
}

.contact-office-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cp-dark);
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--cp-gray-200);
}

.contact-office-card__title i {
    color: var(--cp-secondary);
}

.contact-office-card__item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cp-gray-100);
}

.contact-office-card__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-office-card__item > i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cp-gray-100);
    color: var(--cp-secondary);
    border-radius: 10px;
    font-size: 0.95rem;
}

.contact-office-card__item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--cp-gray-600);
    margin-bottom: 4px;
}

.contact-office-card__item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--cp-dark);
    line-height: 1.5;
}

.contact-office-card__item a {
    color: var(--cp-secondary);
    text-decoration: none;
    transition: color var(--cp-transition);
}

.contact-office-card__item a:hover {
    color: var(--cp-primary);
}

/* ═══════════════════════════════════════════════════
   SECTION 4: REASONS
   ═══════════════════════════════════════════════════ */
.contact-reasons {
    padding: 80px 0;
    background: var(--cp-white);
}

.contact-reasons__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.contact-reason {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--cp-radius);
    background: var(--cp-gray-100);
    border: 1px solid var(--cp-gray-200);
    transition: var(--cp-transition);
}

.contact-reason:hover {
    transform: translateY(-4px);
    box-shadow: var(--cp-shadow-lg);
    border-color: transparent;
    background: var(--cp-white);
}

.contact-reason__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cp-secondary), #0070c9);
    color: var(--cp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--cp-transition);
}

.contact-reason:hover .contact-reason__icon {
    transform: scale(1.08) rotate(-5deg);
    background: linear-gradient(135deg, var(--cp-primary), var(--cp-accent));
}

.contact-reason h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--cp-dark);
}

.contact-reason p {
    font-size: 0.9rem;
    color: var(--cp-gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   SECTION 5: SOCIAL
   ═══════════════════════════════════════════════════ */
.contact-social {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cp-secondary) 0%, #002a4a 100%);
    color: var(--cp-white);
}

.contact-social__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-social__text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--cp-white);
}

.contact-social__text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 500px;
}

.contact-social__links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-social__link {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cp-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--cp-transition);
    text-decoration: none;
}
.contact-social__link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.contact-social__link:hover {
    transform: translateY(-3px) scale(1.05);
    color: var(--cp-white);
    text-decoration: none;
}

.contact-social__link--facebook:hover    { background: #1877f2; border-color: #1877f2; }
.contact-social__link--instagram:hover   { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.contact-social__link--twitter:hover     { background: #000; border-color: #000; }
.contact-social__link--youtube:hover     { background: #ff0000; border-color: #ff0000; }
.contact-social__link--linkedin:hover    { background: #0a66c2; border-color: #0a66c2; }
.contact-social__link--tiktok:hover      { background: #000; border-color: #000; }
.contact-social__link--pinterest:hover   { background: #e60023; border-color: #e60023; }
.contact-social__link--tripadvisor:hover { background: #34e0a1; border-color: #34e0a1; color: #000; }

/* ═══════════════════════════════════════════════════
   SECTION 6: FAQ
   ═══════════════════════════════════════════════════ */
.contact-faq {
    padding: 80px 0;
    background: var(--cp-gray-100);
}

.contact-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.contact-faq__item {
    background: var(--cp-white);
    border-radius: var(--cp-radius-sm);
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid var(--cp-gray-200);
    transition: var(--cp-transition);
}

.contact-faq__item:hover {
    border-color: var(--cp-gray-300);
}

.contact-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--cp-dark);
    font-family: inherit;
    transition: var(--cp-transition);
}

.contact-faq__question:hover {
    color: var(--cp-secondary);
}

.contact-faq__question i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cp-gray-100);
    color: var(--cp-gray-600);
    font-size: 0.85rem;
    transition: var(--cp-transition);
}

.contact-faq__item.is-open .contact-faq__question i {
    background: var(--cp-primary);
    color: var(--cp-white);
    transform: rotate(45deg);
}

.contact-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.contact-faq__item.is-open .contact-faq__answer {
    max-height: 1000px;
}

.contact-faq__answer p {
    padding: 16px 24px 20px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--cp-gray-600);
    line-height: 1.6;
}

.contact-faq__answer p br {
    display: block;
    content: "";
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.cp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.cp-reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Safety net: .cp-reveal/.cp-reveal-stagger start at opacity:0 and depend
   entirely on JS (IntersectionObserver in contact-page.js) to ever become
   visible — if that script fails to run for any reason (blocked, errored,
   JS disabled) the content stays permanently invisible with no fallback.
   Same bug class as the earlier "From Our Adventures" gallery fix. Force
   full visibility whenever motion is reduced (the observer's animation
   wouldn't play anyway) and as a blanket no-JS fallback. */
@media (prefers-reduced-motion: reduce) {
    .cp-reveal,
    .cp-reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.cp-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.cp-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.cp-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.cp-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 1200px
   ═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .contact-hero__title {
        font-size: 2.8rem;
    }

    .contact-section-title {
        font-size: 2rem;
    }

    .contact-main__grid {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        position: static;
    }

    .contact-map {
        height: 280px;
    }

    .contact-reasons__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .contact-social__inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-social__links {
        justify-content: center;
    }

    .contact-social__text p {
        margin: 0 auto;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 380px;
    }

    .contact-hero__title {
        font-size: 2.2rem;
    }

    .contact-hero__subtitle {
        font-size: 1.05rem;
    }

    .contact-hero__content {
        padding: 60px 16px 50px;
    }

    .contact-info-cards {
        margin-top: -40px;
        padding-bottom: 48px;
    }

    .contact-info-cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .contact-card {
        padding: 28px 20px 24px;
    }

    .contact-card__icon-wrap {
        width: 58px;
        height: 58px;
        font-size: 1.3rem;
    }

    .contact-form-wrap {
        padding: 28px 24px;
    }

    .contact-form__row--2col {
        grid-template-columns: 1fr;
    }

    .contact-section-title {
        font-size: 1.8rem;
    }

    .contact-main,
    .contact-reasons,
    .contact-social,
    .contact-faq,
    .contact-branches {
        padding: 56px 0;
    }

    .contact-reasons__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .contact-reason {
        padding: 28px 18px;
    }

    .contact-social__text h2 {
        font-size: 1.6rem;
    }

    .contact-faq__question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .contact-faq__answer p {
        padding: 0 20px 16px;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .contact-container {
        width: 95%;
        padding: 0 12px;
    }

    .contact-hero {
        min-height: 340px;
    }

    .contact-hero__title {
        font-size: 1.8rem;
    }

    .contact-hero__badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .contact-hero__subtitle {
        font-size: 0.95rem;
    }

    .contact-info-cards__grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 16px;
    }

    .contact-card__icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .contact-card__title {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .contact-card__text {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .contact-form-wrap {
        padding: 24px 18px;
    }

    .contact-form__submit {
        width: 100%;
        justify-content: center;
    }

    .contact-form__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form__privacy {
        justify-content: center;
    }

    .contact-reasons__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-social__link {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
    }

    .contact-map {
        height: 220px;
    }

    .contact-main,
    .contact-reasons,
    .contact-social,
    .contact-faq,
    .contact-branches {
        padding: 44px 0;
    }

    .contact-branches__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 360px
   ═══════════════════════════════════════════════════ */
@media (max-width: 360px) {
    .contact-hero__title {
        font-size: 1.5rem;
    }

    .contact-section-title {
        font-size: 1.4rem;
    }

    .contact-hero__scroll {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════
   LEAFLET MAP OVERRIDES
   ═══════════════════════════════════════════════════ */
.contact-map .leaflet-container {
    width: 100%;
    height: 100%;
    border-radius: var(--cp-radius) var(--cp-radius) 0 0;
}

.contact-map .leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-map .leaflet-popup-content {
    margin: 12px 16px;
    font-family: inherit;
    line-height: 1.5;
}

.contact-map .leaflet-popup-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--cp-secondary);
}

/* ═══════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════ */
@media print {
    .contact-hero { min-height: auto; padding: 40px 0; background: none !important; }
    .contact-hero__overlay { display: none; }
    .contact-hero__content { color: #000; }
    .contact-hero__title { color: #000; font-size: 2rem; }
    .contact-hero__subtitle { color: #333; }
    .contact-hero__scroll { display: none; }
    .contact-info-cards { margin-top: 0; }
    .contact-card { box-shadow: none; border: 1px solid #ddd; page-break-inside: avoid; }
    .contact-map { display: none; }
    .contact-social { display: none; }
    .contact-form__submit { display: none; }
}

/* css/destination-page.css */
/* ============================================
   DESTINATION PAGE — Modern Landing Page
   ============================================ */

/* ---- Page-level container override ---- */
.destination-page .container {
    width: 90% !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
}

/* ---- Hero Carousel ---- */
.dest-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 350px;
    max-height: 600px;
    overflow: hidden;
}

.dest-hero .swiper {
    width: 100%;
    height: 100%;
}

.dest-hero .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    image-rendering: auto;
    -webkit-image-rendering: auto;
}

.dest-hero .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    width: 10px;
    height: 10px;
}

.dest-hero .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.dest-hero .swiper-button-next,
.dest-hero .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: background 0.3s;
}

.dest-hero .swiper-button-next::after,
.dest-hero .swiper-button-prev::after {
    font-size: 18px;
}

.dest-hero .swiper-button-next:hover,
.dest-hero .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
}


/* ---- Intro / About Section ---- */
.dest-intro {
    padding: 60px 0 40px;
    text-align: left;
    background: #fff;
}

.dest-intro .container {
    max-width: 90% !important;
}

.dest-intro__title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-align: center;
}

.dest-intro__tagline {
    font-size: 22px;
    line-height: 1.45;
    font-weight: 600;
    color: #3a3a3a;
    text-align: center;
    max-width: 980px;
    margin: -8px auto 24px;
}

/* AI Summary Block — featured snippet optimized */
.dest-intro__ai-summary {
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.04), rgba(255, 107, 53, 0.04));
    border-left: 4px solid var(--secondary-color);
    padding: 20px 24px;
    margin-bottom: 30px;
    border-radius: 0 12px 12px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.dest-intro__ai-summary p {
    margin: 0;
}

.dest-intro__description {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: none;
    margin: 0 0 30px;
}

.dest-intro__description strong {
    color: var(--dark-color);
}

.dest-intro__best-time-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.dest-intro__best-time-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.dest-intro__best-time-link i {
    font-size: 14px;
    transition: transform 0.3s;
}

.dest-intro__best-time-link:hover i {
    transform: translateX(3px);
}


/* ---- Popular Places Carousel ---- */
.dest-popular {
    padding: 60px 0;
    background: #fff;
}

.dest-popular .container {
}

.dest-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-align: center;
}

.dest-popular__carousel {
    position: relative;
    /* clip left/right so slides outside viewport don't bleed into page */
    overflow: hidden;
    margin: 0 -10px;
    padding: 0 10px;
}

.dest-popular__carousel .swiper {
    overflow: visible;
    padding: 0 10px;
}

.dest-popular__card {
    text-align: center;
    cursor: pointer;
}

.dest-popular__card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}

/* Placeholder shown when no image is set */
.dest-popular__card-image--placeholder {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1eaf5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.dest-popular__card:hover .dest-popular__card-image {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.dest-popular__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dest-popular__card:hover .dest-popular__card-image img {
    transform: scale(1.08);
}

.dest-popular__card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.dest-popular__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
    font-size: 14px;
}

.dest-popular__nav:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.dest-popular__nav--prev {
    left: 8px;
}

.dest-popular__nav--next {
    right: 8px;
}


/* ---- Why Choose Us ---- */
.dest-why-choose {
    padding: 80px 0;
    background: var(--light-color);
}

.dest-why-choose .container {
    text-align: center;
}

.dest-why-choose__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.dest-why-choose__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dest-why-choose__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dest-why-choose__card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
}

.dest-why-choose__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 78, 137, 0.1);
}

.dest-why-choose__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.08), rgba(0, 78, 137, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--secondary-color);
    transition: all 0.3s;
}

.dest-why-choose__card:hover .dest-why-choose__icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    transform: scale(1.1);
}

.dest-why-choose__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.dest-why-choose__card-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}


/* ---- Customer Experience ---- */
.dest-customer-exp {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.dest-customer-exp .container {
    text-align: center;
}

.dest-customer-exp__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.dest-customer-exp__grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.dest-customer-exp__grid::-webkit-scrollbar {
    display: none;
}

.dest-customer-exp__item {
    flex: 0 0 auto;
    width: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}

.dest-customer-exp__item:nth-child(odd) {
    height: 320px;
}

.dest-customer-exp__item:nth-child(even) {
    height: 380px;
    margin-top: -30px;
}

.dest-customer-exp__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dest-customer-exp__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dest-customer-exp__item:hover img {
    transform: scale(1.08);
}


/* ---- Best Time to Visit / Seasons ---- */
.dest-seasons {
    padding: 80px 0;
    background: #fff;
}

.dest-seasons .container {
}

.dest-seasons__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
}

.dest-seasons__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dest-season-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.dest-season-card:hover {
    border-color: rgba(0, 78, 137, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.dest-season-card__image {
    flex: 0 0 140px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
}

.dest-season-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-season-card__content {
    flex: 1;
    min-width: 0;
}

.dest-season-card__label {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 4px;
}

.dest-season-card__weather {
    font-size: 14px;
    color: #888;
    margin-bottom: 14px;
}

.dest-season-card__highlights-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.dest-season-card__highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.dest-season-card__highlights li {
    font-size: 14px;
    color: #555;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dest-season-card__highlights li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='12' height='12'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.dest-season-card__perfect {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.08);
    padding: 8px 16px;
    border-radius: 25px;
    width: 100%;
    text-align: center;
}


/* ---- FAQ Accordion ---- */
.dest-faq {
    padding: 80px 0;
    background: var(--light-color);
}

.dest-faq .container {
    max-width: 900px !important;
    text-align: center;
}

.dest-faq__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-style: italic;
}

.dest-faq__subtitle {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

.dest-faq__list {
    text-align: left;
}

.dest-faq__item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.dest-faq__item.active {
    border-color: rgba(0, 78, 137, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dest-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s;
    gap: 16px;
    user-select: none;
}

.dest-faq__question:hover {
    color: var(--secondary-color);
}

.dest-faq__toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--secondary-color);
    transition: all 0.3s;
}

.dest-faq__item.active .dest-faq__toggle {
    background: var(--secondary-color);
    color: #fff;
    transform: rotate(180deg);
}

.dest-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.dest-faq__answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}


/* ---- Tours Section ---- */
.dest-tours {
    padding: 80px 0;
    background: #fff;
}

.dest-tours .container {
    text-align: center;
}

.dest-tours__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.dest-tours__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.dest-tours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.dest-tours__no-tours {
    padding: 60px 20px;
    background: var(--light-color);
    border-radius: 16px;
    text-align: center;
}

.dest-tours__no-tours h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.dest-tours__no-tours p {
    color: #666;
    margin-bottom: 20px;
}

.dest-tours__no-tours a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.dest-tours__no-tours a:hover {
    background: var(--accent-color);
}

.dest-tours__browse-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.dest-tours__browse-all:hover {
    background: var(--secondary-color);
    color: #fff;
}

.dest-tours__browse-all i {
    transition: transform 0.3s;
}

.dest-tours__browse-all:hover i {
    transform: translateX(4px);
}


/* ---- Activities Section ---- */
.dest-activities {
    padding: 80px 0;
    background: var(--light-color);
}

.dest-activities .container {
    text-align: center;
}

.dest-activities__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.dest-activities__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.dest-activities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
    text-align: left;
}

.dest-activities__browse-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.dest-activities__browse-all:hover {
    background: var(--primary-color);
    color: #fff;
}

.dest-activities__browse-all i {
    transition: transform 0.3s;
}

.dest-activities__browse-all:hover i {
    transform: translateX(4px);
}

/* Activity cards (reusable for destination page) */
.dest-activities .act-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.dest-activities .act-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.dest-activities .act-card__img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.dest-activities .act-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dest-activities .act-card:hover .act-card__img img {
    transform: scale(1.06);
}

.dest-activities .act-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dest-activities .act-card__difficulty {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.dest-activities .act-card__body {
    padding: 20px 20px 12px;
    flex: 1;
}

.dest-activities .act-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}

.dest-activities .act-card__title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.2s;
}

.dest-activities .act-card__title a:hover {
    color: var(--primary-color);
}

.dest-activities .act-card__excerpt {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px;
    line-height: 1.5;
}

.dest-activities .act-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #888;
}

.dest-activities .act-card__meta-item i {
    margin-right: 4px;
    color: var(--primary-color);
}

.dest-activities .act-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid #f0f0f0;
}

.dest-activities .act-card__price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.dest-activities .act-card__price small {
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.dest-activities .act-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.dest-activities .act-card__btn:hover {
    background: var(--accent-color);
}


/* ---- Breadcrumbs ---- */
.dest-breadcrumbs {
    padding: 16px 0;
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
}

.dest-breadcrumbs .container {
    font-size: 14px;
    color: #999;
}

.dest-breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.dest-breadcrumbs a:hover {
    color: var(--primary-color);
}

.dest-breadcrumbs .sep {
    margin: 0 8px;
    color: #ccc;
}

.dest-breadcrumbs .current {
    color: var(--dark-color);
    font-weight: 600;
}


/* ---- Pagination ---- */
.dest-tours .tours-pagination {
    text-align: center;
    margin-top: 30px;
}

.dest-tours .tours-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dest-tours .tours-pagination a,
.dest-tours .tours-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.dest-tours .tours-pagination a:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.dest-tours .tours-pagination .current {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}


/* ---- Child Destinations ---- */
.dest-regions {
    padding: 80px 0;
    background: var(--light-color);
}

.dest-regions .container {
    text-align: center;
}

.dest-regions__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.dest-regions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}

.dest-region-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dest-region-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.dest-region-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.dest-region-card:hover .dest-region-card__image img {
    transform: scale(1.05);
}

.dest-region-card__image {
    overflow: hidden;
}

.dest-region-card__body {
    padding: 20px;
}

.dest-region-card__body h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.dest-region-card__body h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.2s;
}

.dest-region-card__body h3 a:hover {
    color: var(--primary-color);
}

.dest-region-card__body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.dest-region-card__link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.dest-region-card__link:hover {
    color: var(--primary-color);
}


/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- Large Tablets / Small Laptops ---- */
@media (max-width: 1200px) {
    .destination-page .container {
        width: 94% !important;
    }

    .dest-tours__grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .dest-activities__grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .dest-regions__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* ---- Tablets ---- */
@media (max-width: 1024px) {
    .dest-hero {
        height: 50vh;
        min-height: 280px;
        max-height: 450px;
    }

    .dest-intro__title {
        font-size: 38px;
    }

    .dest-intro__tagline {
        font-size: 20px;
    }

    .dest-seasons__grid {
        grid-template-columns: 1fr;
    }

    .dest-popular__nav--prev {
        left: 0;
    }

    .dest-popular__nav--next {
        right: 0;
    }

    .dest-why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-why-choose__card {
        padding: 30px 20px;
    }

    .dest-tours__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .dest-activities__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .dest-customer-exp__item {
        width: 200px;
    }

    .dest-customer-exp__item:nth-child(odd) {
        height: 280px;
    }

    .dest-customer-exp__item:nth-child(even) {
        height: 330px;
    }

    .dest-faq .container {
        max-width: 100% !important;
    }

    .dest-popular,
    .dest-why-choose,
    .dest-customer-exp,
    .dest-seasons,
    .dest-faq,
    .dest-tours,
    .dest-activities,
    .dest-regions {
        padding: 60px 0;
    }
}

/* ---- Small Tablets / Large Phones ---- */
@media (max-width: 768px) {
    .destination-page .container {
        width: 92% !important;
    }

    .dest-hero {
        height: 45vh;
        min-height: 240px;
        max-height: 380px;
    }

    .dest-hero .swiper-button-next,
    .dest-hero .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .dest-hero .swiper-button-next::after,
    .dest-hero .swiper-button-prev::after {
        font-size: 14px;
    }

    .dest-intro {
        padding: 40px 0 30px;
    }

    .dest-intro__title {
        font-size: 30px;
    }

    .dest-intro__tagline {
        font-size: 18px;
        margin-top: -4px;
        margin-bottom: 20px;
    }

    .dest-intro__description {
        font-size: 15px;
        line-height: 1.7;
    }

    .dest-breadcrumbs .container {
        font-size: 13px;
    }

    .dest-why-choose__title,
    .dest-customer-exp__title,
    .dest-seasons__title,
    .dest-faq__title,
    .dest-tours__title,
    .dest-regions__title {
        font-size: 28px;
    }

    .dest-why-choose__grid {
        grid-template-columns: 1fr;
    }

    .dest-why-choose__subtitle {
        max-width: 100%;
    }

    .dest-season-card {
        flex-direction: column;
    }

    .dest-season-card__image {
        flex: none;
        width: 100%;
        height: 180px;
    }

    .dest-customer-exp__item {
        width: 180px;
    }

    .dest-customer-exp__item:nth-child(odd) {
        height: 240px;
    }

    .dest-customer-exp__item:nth-child(even) {
        height: 280px;
        margin-top: -20px;
    }

    .dest-customer-exp__grid {
        gap: 14px;
    }

    .dest-tours__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dest-activities__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dest-popular__nav {
        display: none;
    }

    .dest-regions__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .dest-region-card__image img {
        height: 160px;
    }

    .dest-faq__question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .dest-faq__answer-inner {
        padding: 0 18px 16px;
        font-size: 14px;
    }

    .dest-tours .tours-pagination a,
    .dest-tours .tours-pagination span {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .dest-popular,
    .dest-why-choose,
    .dest-customer-exp,
    .dest-seasons,
    .dest-faq,
    .dest-tours,
    .dest-activities,
    .dest-regions {
        padding: 50px 0;
    }

    .dest-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
    .destination-page .container {
        width: 90% !important;
    }

    .dest-hero {
        height: 40vh;
        min-height: 200px;
        max-height: 300px;
    }

    .dest-hero .swiper-button-next,
    .dest-hero .swiper-button-prev {
        display: none;
    }

    .dest-intro {
        padding: 30px 0 20px;
    }

    .dest-intro__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .dest-intro__tagline {
        font-size: 16px;
        line-height: 1.5;
        margin-top: 0;
        margin-bottom: 16px;
    }

    .dest-intro__description {
        font-size: 14px;
        line-height: 1.6;
    }

    .dest-intro__best-time-link {
        font-size: 14px;
        padding: 10px 20px;
    }

    .dest-breadcrumbs {
        padding: 10px 0;
    }

    .dest-breadcrumbs .container {
        font-size: 12px;
    }

    .dest-why-choose__title,
    .dest-customer-exp__title,
    .dest-seasons__title,
    .dest-faq__title,
    .dest-tours__title,
    .dest-regions__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .dest-why-choose__subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .dest-why-choose__card {
        padding: 25px 20px;
    }

    .dest-why-choose__icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .dest-season-card {
        padding: 20px;
        gap: 16px;
    }

    .dest-season-card__image {
        height: 160px;
    }

    .dest-season-card__label {
        font-size: 17px;
    }

    .dest-season-card__perfect {
        font-size: 12px;
        padding: 6px 12px;
    }

    .dest-customer-exp__item {
        width: 150px;
    }

    .dest-customer-exp__item:nth-child(odd) {
        height: 200px;
    }

    .dest-customer-exp__item:nth-child(even) {
        height: 240px;
        margin-top: -15px;
    }

    .dest-customer-exp__grid {
        gap: 10px;
    }

    .dest-faq__title {
        font-size: 22px;
    }

    .dest-faq__subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .dest-faq__question {
        padding: 14px 16px;
        font-size: 14px;
        gap: 10px;
    }

    .dest-faq__toggle {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .dest-faq__answer-inner {
        padding: 0 16px 14px;
        font-size: 13px;
    }

    .dest-faq__item {
        margin-bottom: 8px;
        border-radius: 10px;
    }

    .dest-tours__subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .dest-tours__no-tours {
        padding: 40px 16px;
    }

    .dest-tours__no-tours h3 {
        font-size: 18px;
    }

    .dest-tours__no-tours a {
        padding: 10px 24px;
        font-size: 14px;
    }

    .dest-regions__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dest-region-card__image img {
        height: 180px;
    }

    .dest-region-card__body {
        padding: 16px;
    }

    .dest-region-card__body h3 {
        font-size: 16px;
    }

    .dest-tours .tours-pagination a,
    .dest-tours .tours-pagination span {
        width: 32px;
        height: 32px;
        font-size: 12px;
        border-radius: 8px;
    }

    .dest-popular,
    .dest-why-choose,
    .dest-customer-exp,
    .dest-seasons,
    .dest-faq,
    .dest-tours,
    .dest-regions {
        padding: 40px 0;
    }
}

/* ---- Very Small Phones ---- */
@media (max-width: 360px) {
    .destination-page .container {
        width: 94% !important;
    }

    .dest-hero {
        height: 35vh;
        min-height: 180px;
        max-height: 250px;
    }

    .dest-intro__title {
        font-size: 22px;
    }

    .dest-intro__tagline {
        font-size: 15px;
    }

    .dest-intro__description {
        font-size: 13px;
    }

    .dest-why-choose__title,
    .dest-customer-exp__title,
    .dest-seasons__title,
    .dest-faq__title,
    .dest-tours__title,
    .dest-regions__title {
        font-size: 20px;
    }

    .dest-customer-exp__item {
        width: 130px;
    }

    .dest-customer-exp__item:nth-child(odd) {
        height: 170px;
    }

    .dest-customer-exp__item:nth-child(even) {
        height: 200px;
        margin-top: -10px;
    }

    .dest-season-card {
        padding: 16px;
    }

    .dest-faq__question {
        padding: 12px 14px;
        font-size: 13px;
    }

    .dest-tours .tours-pagination .nav-links {
        flex-wrap: wrap;
    }
}

/* css/hptours-taxonomy-hero.css */
/**
 * Taxonomy & Archive Hero Banner
 * Used on: tour type archives, activity archives, and similar taxonomy pages.
 * Lightweight, no JS — pure CSS hero with photo + dark overlay + white title.
 */

/* ── Wrapper ── */
.hpt-tax-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    /* Fallback gradient when no photo is set */
    background-color: #0d1f2d;
}

/* ── Dark overlay — gradient fades from semi-dark top to deep dark bottom ── */
.hpt-tax-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 0, 0, 0.28) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.78) 100%
    );
    z-index: 1;
}

/* ── Inner content — sits above overlay ── */
.hpt-tax-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 56px;
}

/* ── Eyebrow / category label ── */
.hpt-tax-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 18px;
}

.hpt-tax-hero__eyebrow i,
.hpt-tax-hero__eyebrow svg {
    font-size: 14px;
    opacity: 0.9;
    flex-shrink: 0;
}

/* ── Main heading — white, bold, sharp ── */
.hpt-tax-hero__heading {
    margin: 0 0 14px;
    font-size: clamp(32px, 5.5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

/* ── Subtitle / description ── */
.hpt-tax-hero__sub {
    margin: 0 0 22px;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* ── Tour count badge ── */
.hpt-tax-hero__count {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    border-left: 3px solid var(--primary-color, #1a5f7a);
    padding-left: 12px;
    margin-bottom: 20px;
}

/* ── Breadcrumbs ── */
.hpt-tax-hero__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

.hpt-tax-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.hpt-tax-hero__breadcrumbs a:hover {
    color: #ffffff;
}

.hpt-tax-hero__breadcrumbs-sep {
    opacity: 0.45;
    font-size: 11px;
}

.hpt-tax-hero__breadcrumbs-current {
    color: var(--secondary-color, #ff6b35);
    font-weight: 600;
}

/* ── Bottom fade — blends hero edge into the page content below ── */
.hpt-tax-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* ── No-photo fallback — brand gradient ── */
.hpt-tax-hero--no-photo {
    background-image: none;
    background: linear-gradient(135deg, #0d1f2d 0%, #1a5f7a 60%, #0d3040 100%);
}

.hpt-tax-hero--no-photo .hpt-tax-hero__overlay {
    background: linear-gradient(
        160deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* ════════════════════════════════════════
   SHARED CONTAINER
   ════════════════════════════════════════ */

.hpt-tt-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* ════════════════════════════════════════
   2. INTRO / DESCRIPTION SECTION
   ════════════════════════════════════════ */

.hpt-tt-intro {
    padding: 64px 0 72px;
    background: #fff;
}

/* Two-column row */
.hpt-tt-intro__row {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 56px;
    align-items: start;
}

/* Left: description text */
.hpt-tt-intro__description {
    font-size: 17px;
    line-height: 1.85;
    color: #555;
}

.hpt-tt-intro__description p {
    margin: 0 0 20px;
}

.hpt-tt-intro__description p:last-child {
    margin-bottom: 0;
}

.hpt-tt-intro__description h1,
.hpt-tt-intro__description h2,
.hpt-tt-intro__description h3,
.hpt-tt-intro__description h4 {
    font-family: var(--heading-font, inherit);
    color: var(--primary-color, #1a5f7a);
    line-height: 1.3;
    margin: 28px 0 12px;
}

.hpt-tt-intro__description h1:first-child,
.hpt-tt-intro__description h2:first-child,
.hpt-tt-intro__description h3:first-child,
.hpt-tt-intro__description h4:first-child {
    margin-top: 0;
}

.hpt-tt-intro__description h1 { font-size: 26px; }
.hpt-tt-intro__description h2 { font-size: 22px; }
.hpt-tt-intro__description h3 { font-size: 19px; }
.hpt-tt-intro__description h4 { font-size: 17px; }

.hpt-tt-intro__description ul,
.hpt-tt-intro__description ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.hpt-tt-intro__description blockquote {
    margin: 0 0 20px;
    padding: 4px 20px;
    border-left: 3px solid var(--secondary-color, #ff6b35);
    color: #444;
    font-style: italic;
}

/* Collapsible "Read more" — keeps long intro text from pushing the tours grid too far down */
.hpt-tt-intro__desc-collapse {
    position: relative;
    overflow: hidden;
    max-height: 340px;
    transition: max-height 0.35s ease;
}

.hpt-tt-intro__desc-collapse.is-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
}

.hpt-tt-intro__desc-collapse.is-expanded {
    max-height: none;
}

.hpt-tt-intro__desc-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    padding: 0;
    border: 0;
    background: none;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-color, #1a5f7a);
    cursor: pointer;
}

.hpt-tt-intro__desc-toggle:hover {
    color: var(--secondary-color, #ff6b35);
}

.hpt-tt-intro__desc-toggle i {
    transition: transform 0.25s ease;
    font-size: 11px;
}

.hpt-tt-intro__desc-toggle.is-open i {
    transform: rotate(180deg);
}

/* Right: slim at-a-glance panel */
.hpt-tt-intro__panel {
    position: sticky;
    top: 96px;
    border-left: 3px solid var(--primary-color, #1a5f7a);
    padding: 2px 0 2px 18px;
}

.hpt-tt-intro__panel-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color, #1a5f7a);
    margin: 0 0 12px;
}

.hpt-tt-intro__panel-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hpt-tt-intro__panel-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.hpt-tt-intro__panel-icon {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    font-size: 11px;
    color: var(--secondary-color, #ff6b35);
}

.hpt-tt-intro__panel-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary-color, #1a5f7a);
    text-decoration: none;
    transition: gap 0.2s;
}

.hpt-tt-intro__panel-link:hover {
    gap: 10px;
    color: var(--secondary-color, #ff6b35);
}

/* ════════════════════════════════════════
   3. TOURS GRID SECTION
   ════════════════════════════════════════ */

.hpt-tt-tours {
    padding: 72px 0 96px;
    background: var(--light-color, #F8F8F8);
}

.hpt-tt-tours__header {
    text-align: center;
    margin-bottom: 52px;
}

.hpt-tt-tours__title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--dark-color, #1A1A1A);
    margin: 0 0 10px;
    line-height: 1.2;
}

.hpt-tt-tours__subtitle {
    font-size: 15px;
    color: #777;
    margin: 0;
    font-weight: 400;
}

/* ── Card grid ── */
.hpt-tt-tours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    text-align: left;
}

/* ── Pagination ── */
.hpt-tt-pagination {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

.hpt-tt-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.hpt-tt-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    border: 1.5px solid var(--border-color, #E0E0E0);
    text-decoration: none;
    background: #fff;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.hpt-tt-pagination .page-numbers:hover {
    background: var(--primary-color, #1a5f7a);
    color: #fff;
    border-color: var(--primary-color, #1a5f7a);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.25);
}

.hpt-tt-pagination .page-numbers.current {
    background: var(--primary-color, #1a5f7a);
    color: #fff;
    border-color: var(--primary-color, #1a5f7a);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.25);
}

.hpt-tt-pagination .page-numbers.dots {
    background: none;
    border: none;
    color: #999;
    pointer-events: none;
}

.hpt-tt-pagination .page-numbers i {
    font-size: 12px;
}

/* ── Empty state ── */
.hpt-tt-no-tours {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid var(--border-color, #E0E0E0);
    max-width: 540px;
    margin: 0 auto;
}

.hpt-tt-no-tours__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color, #F8F8F8);
    border-radius: 50%;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--primary-color, #1a5f7a);
}

.hpt-tt-no-tours h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color, #1A1A1A);
    margin: 0 0 12px;
}

.hpt-tt-no-tours p {
    font-size: 15px;
    color: #777;
    margin: 0 0 28px;
    line-height: 1.65;
}

.hpt-tt-no-tours__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    color: var(--secondary-color, #ff6b35);
    border: 2px solid var(--secondary-color, #ff6b35);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.25s, color 0.25s;
}

.hpt-tt-no-tours__btn:hover {
    background: var(--secondary-color, #ff6b35);
    color: #fff;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hpt-tax-hero__inner {
        padding: 0 28px 44px;
    }

    .hpt-tt-tours__grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hpt-tt-intro__row {
        grid-template-columns: 1fr 200px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hpt-tax-hero {
        min-height: 300px;
        align-items: flex-end;
    }

    .hpt-tax-hero__inner {
        padding: 0 20px 36px;
    }

    .hpt-tax-hero__sub {
        display: none;
    }

    .hpt-tt-intro {
        padding: 48px 0 36px;
    }

    .hpt-tt-intro__row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hpt-tt-intro__panel {
        position: static;
        border-left: none;
        border-top: 3px solid var(--primary-color, #1a5f7a);
        padding: 16px 0 0;
    }

    .hpt-tt-intro__panel-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .hpt-tt-intro__description {
        font-size: 15px;
    }

    .hpt-tt-tours {
        padding: 48px 0 64px;
    }

    .hpt-tt-tours__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hpt-tt-tours__header {
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .hpt-tax-hero {
        min-height: 260px;
    }

    .hpt-tax-hero__heading {
        font-size: 28px;
    }

    .hpt-tt-no-tours {
        padding: 56px 20px;
    }
}


/* css/destinations-archive.css */
/* =============================================
   DESTINATIONS ARCHIVE — All Destinations Page
   Theme accent: #FF6B35
   ============================================= */

/* ── Reset & Layout ── */
.da-page {
    background: #f8f9fb;
}

.da-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ═══════════════════════════════
   1. HERO
   ═══════════════════════════════ */
.da-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.da-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

.da-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,107,53,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,107,53,0.10) 0%, transparent 50%);
}

.da-hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 20px 50px;
}

.da-hero__badge {
    display: inline-block;
    background: rgba(255,107,53,0.15);
    color: #FF6B35;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.da-hero__title {
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.da-hero__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ═══════════════════════════════
   2. STATS BAR
   ═══════════════════════════════ */
.da-stats {
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-top: -30px;
    position: relative;
    z-index: 3;
    border-radius: 16px 16px 0 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.da-stats .container {
    padding: 0;
}

.da-stats__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 22px 40px;
}

.da-stats__item {
    text-align: center;
    flex: 1;
}

.da-stats__number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
    margin-bottom: 4px;
}

.da-stats__label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.da-stats__divider {
    width: 1px;
    height: 40px;
    background: #e8e8e8;
    flex-shrink: 0;
    margin: 0 20px;
}


/* ═══════════════════════════════
   3. TOOLBAR
   ═══════════════════════════════ */
.da-toolbar {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.da-toolbar__row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.da-toolbar__search {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.da-toolbar__search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 14px;
    pointer-events: none;
}

.da-toolbar__search input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: #f9f9f9;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}

.da-toolbar__search input:focus {
    border-color: #FF6B35;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.08);
}

.da-toolbar__filter select,
.da-toolbar__sort select {
    padding: 10px 36px 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: #f9f9f9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
    outline: none;
}

.da-toolbar__filter select:focus,
.da-toolbar__sort select:focus {
    border-color: #FF6B35;
}

.da-toolbar__views {
    display: flex;
    gap: 4px;
    background: #f3f3f3;
    border-radius: 10px;
    padding: 3px;
}

.da-view-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    border-radius: 8px;
    color: #aaa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.da-view-btn.is-active {
    background: #fff;
    color: #FF6B35;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}


/* ═══════════════════════════════
   4. LISTING
   ═══════════════════════════════ */
.da-listing {
    padding: 40px 0 60px;
}

.da-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.da-no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
    display: block;
}

.da-no-results h3 {
    font-size: 20px;
    color: #666;
    margin: 0 0 8px;
}

.da-no-results p {
    font-size: 14px;
    color: #aaa;
}


/* ─── Country Group ─── */
.da-country-group {
    margin-bottom: 48px;
    transition: opacity 0.3s;
}

.da-country-group.is-hidden {
    display: none;
}

/* ─── Country Card (Hero-style) ─── */
.da-country-card {
    display: flex;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    min-height: 200px;
}

.da-country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.da-country-card__image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.da-country-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.da-country-card:hover .da-country-card__image img {
    transform: scale(1.05);
}

.da-country-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.1) 0%, rgba(0,0,0,0.03) 100%);
}

.da-country-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: rgba(255,255,255,0.3);
    font-size: 48px;
}

.da-country-card__body {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.da-country-card__flag {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff5f0;
    color: #FF6B35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
}

.da-country-card__name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.da-country-card__meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.da-country-card__meta i {
    color: #FF6B35;
    margin-right: 4px;
}

.da-country-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
}

.da-country-card__explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #FF6B35;
    transition: gap 0.2s;
}

.da-country-card:hover .da-country-card__explore {
    gap: 10px;
}


/* ─── Child Destination Cards (Grid) ─── */
.da-children-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.da-child-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}

.da-child-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.da-child-card.is-hidden {
    display: none;
}

.da-child-card__image {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.da-child-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.da-child-card:hover .da-child-card__image img {
    transform: scale(1.08);
}

.da-child-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    color: #ccc;
    font-size: 24px;
}

.da-child-card__info {
    flex: 1;
    min-width: 0;
}

.da-child-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.da-child-card__tours {
    font-size: 12px;
    color: #999;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.da-child-card__tours::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #FF6B35;
    border-radius: 50%;
    flex-shrink: 0;
}

.da-child-card__arrow {
    color: #ddd;
    font-size: 12px;
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.da-child-card:hover .da-child-card__arrow {
    color: #FF6B35;
    transform: translateX(3px);
}


/* ─── LIST VIEW ─── */
.da-listing.is-list-view .da-country-card {
    flex-direction: row;
    min-height: 140px;
}

.da-listing.is-list-view .da-country-card__image {
    flex: 0 0 30%;
    min-height: 140px;
}

.da-listing.is-list-view .da-children-grid {
    grid-template-columns: 1fr;
}

.da-listing.is-list-view .da-child-card {
    border-radius: 10px;
}


/* ═══════════════════════════════
   5. CTA
   ═══════════════════════════════ */
.da-cta {
    padding: 60px 0;
    background: #fff;
}

.da-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 20px;
    padding: 40px 48px;
}

.da-cta__text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.da-cta__text p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.da-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #FF6B35;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.da-cta__btn:hover {
    background: #e55a25;
    transform: translateY(-2px);
}


/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 900px) {
    .da-hero__title {
    }

    .da-country-card {
        flex-direction: column;
    }

    .da-country-card__image {
        flex: none;
        height: 200px;
    }

    .da-country-card__body {
        padding: 20px 24px;
    }

    .da-children-grid {
        grid-template-columns: 1fr 1fr;
    }

    .da-cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

@media (max-width: 600px) {
    .da-hero {
        min-height: 260px;
    }

    .da-hero__title {
    }

    .da-hero__subtitle {
        font-size: 14px;
    }

    .da-stats {
        margin-top: -20px;
        border-radius: 12px 12px 0 0;
    }

    .da-stats__row {
        padding: 16px 20px;
    }

    .da-stats__number {
        font-size: 22px;
    }

    .da-stats__label {
        font-size: 11px;
    }

    .da-stats__divider {
        height: 30px;
        margin: 0 12px;
    }

    .da-toolbar__row {
        gap: 8px;
    }

    .da-toolbar__search {
        flex: 1 1 100%;
    }

    .da-toolbar__filter,
    .da-toolbar__sort {
        flex: 1;
    }

    .da-toolbar__filter select,
    .da-toolbar__sort select {
        width: 100%;
    }

    .da-children-grid {
        grid-template-columns: 1fr;
    }

    .da-country-card__name {
        font-size: 20px;
    }

    .da-cta__text h2 {
        font-size: 20px;
    }
}

/* css/single-tour.css */
    .tour-detail-container {
        width: 90%;
        max-width: 1600px;
        margin: 0 auto;
        padding: 20px;
    }

    /* On narrow phones the 90%-width outer margin already reclaims screen
       edge space — a fixed 20px inner padding on top of that stacks up
       into a very visible dead zone on both sides. Width stays at 90%
       (sitewide standard); only the redundant inner padding shrinks. */
    @media (max-width: 600px) {
        .tour-detail-container {
            padding: 10px;
        }
    }
    @media (max-width: 420px) {
        .tour-detail-container {
            padding: 6px;
        }
    }

    .tour-hero {
        margin-bottom: 40px;
        border-radius: 12px;
        overflow: hidden;
    }

    .tour-hero-header {
        margin-bottom: 20px;
    }

    .tour-breadcrumbs {
        font-size: 13px;
        color: #7a7a7a;
        margin-bottom: 10px;
    }

    .tour-breadcrumbs a {
        color: #7a7a7a;
        text-decoration: none;
    }

    .tour-breadcrumbs a:hover {
        color: #2196F3;
    }

    .breadcrumb-sep {
        margin: 0 6px;
        color: #b0b0b0;
    }

    .breadcrumb-current {
        color: #1a1a1a;
        font-weight: 600;
    }

    .tour-hero-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .modern-gallery-container {
        width: 100%;
    }

    .modern-gallery-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 16px;
    }

    .modern-main {
        position: relative;
        border-radius: 14px;
        overflow: hidden;
    }

    .modern-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .view-all-overlay {
        position: absolute;
        bottom: 16px;
        right: 16px;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        padding: 10px 14px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
        backdrop-filter: blur(4px);
        cursor: pointer;
    }

    /* Gallery Modal */
    .gallery-modal {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .gallery-modal.is-open {
        display: flex;
    }

    .gallery-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(3px);
    }

    .gallery-modal-content {
        position: relative;
        z-index: 1;
        width: auto;
        height: auto;
        max-width: 92vw;
        max-height: 82vh;
        background: transparent;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        box-shadow: none;
    }

    .gallery-modal-image-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        background: #151515;
        border-radius: 12px;
        box-shadow: 0 14px 40px rgba(0,0,0,0.35);
        max-width: 92vw;
        max-height: 82vh;
    }

    #gallery-modal-image {
        max-width: 90vw;
        max-height: 78vh;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .gallery-modal-close {
        position: absolute;
        top: 8px;
        right: 10px;
        width: 28px;
        height: 28px;
        border: none;
        border-radius: 50%;
        background: rgba(255,255,255,0.12);
        color: #fff;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-modal-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        border: none;
        border-radius: 50%;
        background: rgba(255,255,255,0.12);
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-modal-nav.prev {
        left: 8px;
    }

    .gallery-modal-nav.next {
        right: 8px;
    }

    .gallery-modal-counter {
        position: absolute;
        bottom: 8px;
        right: 10px;
        color: #fff;
        font-size: 11px;
        background: rgba(0,0,0,0.45);
        padding: 4px 8px;
        border-radius: 999px;
        letter-spacing: 0.2px;
    }

    @media (max-width: 768px) {
        .gallery-modal-content {
            max-width: 96vw;
            max-height: 74vh;
            border-radius: 12px;
        }

        .gallery-modal-image-wrap {
            padding: 6px;
            max-width: 96vw;
            max-height: 74vh;
        }

        #gallery-modal-image {
            max-width: 92vw;
            max-height: 70vh;
        }

        .gallery-modal-nav {
            width: 30px;
            height: 30px;
            font-size: 20px;
        }
    }

    .modern-thumbs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .modern-thumb {
        border-radius: 14px;
        overflow: hidden;
    }

    .modern-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    @media (min-width: 1024px) {
        .modern-main,
        .modern-thumbs {
            height: 450px;
        }
    }

    @media (max-width: 1023px) {
        .modern-main,
        .modern-thumbs {
            height: 360px;
        }
    }

    .tour-content-wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .tour-header {
        margin-bottom: 30px;
    }

    .tour-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 15px 0;
    }

    .tour-meta {
        display: flex;
        gap: 20px;
        font-size: 16px;
        color: #666;
    }

    .tour-rating {
        color: var(--warning-color, #f59e0b);
        font-weight: 600;
    }

    .tour-quick-info {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 32px 28px;
        margin-bottom: 28px;
        align-items: start;
        position: relative;
        padding: 34px 28px;
        background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
        border: 1px solid #d9e8ef;
        border-radius: 24px;
        box-shadow: 0 14px 32px rgba(33, 68, 87, 0.08);
        overflow: hidden;
        isolation: isolate;
    }

    .info-item {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        min-height: 0;
        padding: 12px 10px;
        border: 1px solid rgba(201, 222, 232, 0.7);
        background: rgba(255, 255, 255, 0.82);
        border-radius: 18px;
        box-shadow: 0 8px 18px rgba(116, 167, 192, 0.08);
        backdrop-filter: blur(3px);
        overflow: visible;
        text-align: center;
    }

    .info-item::before {
        content: none;
    }

    .info-item::after {
        content: none;
    }

    .info-item--tone-1 {
        --info-accent: var(--primary-color, #ff6b35);
    }

    .info-item--tone-2 {
        --info-accent: #0f766e;
    }

    .info-item--tone-3 {
        --info-accent: #1d4ed8;
    }

    .info-item--tone-4 {
        --info-accent: #b45309;
    }

    .info-label {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0 0 6px;
        overflow: visible;
        clip: auto;
        white-space: normal;
        border: 0;
        color: #111827;
        font-size: 9px;
        font-weight: 500;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .info-icon {
        order: -1;
        flex: 0 0 58px;
        width: 58px;
        height: 58px;
        margin-bottom: 12px;
        position: relative;
        color: #74a7c0;
    }

    .info-icon::before,
    .info-icon::after {
        content: '';
        position: absolute;
        inset: 0;
    }

    .info-icon::before {
        border: 3px solid currentColor;
        border-radius: 999px;
        box-sizing: border-box;
    }

    .info-icon::after {
        inset: 50%;
        width: 28px;
        height: 28px;
        margin: -14px 0 0 -14px;
        background-color: currentColor;
        mask-image: var(--fact-icon);
        -webkit-mask-image: var(--fact-icon);
        mask-repeat: no-repeat;
        -webkit-mask-repeat: no-repeat;
        mask-position: center;
        -webkit-mask-position: center;
        mask-size: contain;
        -webkit-mask-size: contain;
    }

    .info-value {
        position: relative;
        z-index: 1;
        flex: 0 1 auto;
        min-width: 0;
        display: block;
        margin: 0;
        font-size: 10px;
        line-height: 1.16;
        font-weight: 500;
        color: #111827;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        text-wrap: balance;
    }

    .info-detail {
        position: relative;
        z-index: 1;
        flex: 0 1 auto;
        min-width: 0;
        display: block;
        margin-top: 6px;
        color: #6b7280;
        font-size: 0.68rem;
        line-height: 1.28;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        text-wrap: balance;
    }

    .info-detail::before {
        content: none;
    }

    .info-item--style {
        --fact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6.5A2.5 2.5 0 0 1 6.5 4h11A2.5 2.5 0 0 1 20 6.5v11a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 17.5v-11Zm2.5-1a1 1 0 0 0-1 1v2h13v-2a1 1 0 0 0-1-1h-11Zm12 4.5h-13v7.5a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1V10Z'/%3E%3C/svg%3E");
    }

    .info-item--guide {
        --fact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm-7 15a7 7 0 1 1 14 0v1H5v-1Zm2 0h10a5 5 0 0 0-10 0Z'/%3E%3C/svg%3E");
    }

    .info-item--group-size {
        --fact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6Zm8 1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5ZM3.5 19a4.5 4.5 0 0 1 9 0v1h-9v-1Zm9.8 1a4 4 0 0 1-.3-1.5A4.2 4.2 0 0 1 17.2 14a3.8 3.8 0 0 1 3.8 4V20h-7.7Z'/%3E%3C/svg%3E");
    }

    .info-item--transport {
        --fact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 5h9a3 3 0 0 1 3 3v6h1a1 1 0 0 1 1 1v2h-2.2a2.8 2.8 0 0 1-5.6 0H9.8a2.8 2.8 0 0 1-5.6 0H3v-2a1 1 0 0 1 1-1h1V8a3 3 0 0 1 3-3Zm0 2a1 1 0 0 0-1 1v6h11V8a1 1 0 0 0-1-1H6Zm1 10a1.3 1.3 0 1 0 0 2.6A1.3 1.3 0 0 0 7 17Zm8 0a1.3 1.3 0 1 0 0 2.6A1.3 1.3 0 0 0 15 17Z'/%3E%3C/svg%3E");
    }

    .info-item--stay {
        --fact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 7a2 2 0 0 1 2-2h4a3 3 0 0 1 3 3v1h5a2 2 0 0 1 2 2v6h-2v2h-2v-2H8v2H6v-2H4V7Zm2 0v3h5V8a1 1 0 0 0-1-1H6Zm12 4h-5v2h7v-1a1 1 0 0 0-1-1H18Z'/%3E%3C/svg%3E");
    }

    .info-item--season {
        --fact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l1.2 3.3L16.5 4l-1.3 3.3L18.5 8l-3.3 1.2L16.5 12l-3.3-1.3L12 14l-1.2-3.3L7.5 12l1.3-2.8L5.5 8l3.3-.7L7.5 4l3.3 1.3L12 2Zm-6 11a5 5 0 1 0 10 0 5 5 0 0 0-10 0Zm12 0a7 7 0 1 1-14 0 7 7 0 0 1 14 0Z'/%3E%3C/svg%3E");
    }

    .info-item--starts-in,
    .info-item--ends-in,
    .info-item--pickup {
        --fact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 21s-6-5.2-6-10a6 6 0 1 1 12 0c0 4.8-6 10-6 10Zm0-8.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z'/%3E%3C/svg%3E");
    }

    .info-item--max-altitude {
        --fact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 18h18v2H3v-2Zm2.5-2 4.2-6 2.8 3.4 3.8-6 2.7 8.6H5.5Z'/%3E%3C/svg%3E");
    }

    .info-item--permits {
        --fact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 4h9l3 3v11a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm8 1.5V8h2.5L14 5.5ZM8 11h8v1.8H8V11Zm0 3.5h8v1.8H8v-1.8Z'/%3E%3C/svg%3E");
    }

    @media (max-width: 1180px) {
        .tour-quick-info {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 28px 24px;
        }
    }

    @media (max-width: 860px) {
        .tour-quick-info {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px 20px;
        }
    }

    @media (max-width: 560px) {
        .tour-quick-info {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px 16px;
            padding: 20px 14px;
            /* Was align-items:start (inherited from desktop) — with content
               of varying line-count per box, that left same-row boxes at
               different heights and visually misaligned. Stretch makes
               every box in a row match the row's tallest sibling. */
            align-items: stretch;
        }

        .info-item {
            justify-content: flex-start;
            /* Guaranteed minimum spacing between icon/label/value/detail —
               flex gap can never be eaten by content overflow the way
               margins can, which is what was letting label/value/detail
               text visually collide into each other in narrow boxes. */
            gap: 4px;
            overflow: visible;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 0;
        }

        .info-icon::after {
            width: 24px;
            height: 24px;
            margin: -12px 0 0 -12px;
        }

        .info-label {
            font-size: 9px;
            margin-bottom: 0;
        }

        .info-value {
            font-size: 10px;
        }

        .info-detail {
            font-size: 0.64rem;
            margin-top: 0;
        }
    }

    @media (max-width: 420px) {
        .tour-quick-info {
            grid-template-columns: 1fr;
            gap: 12px;
            padding: 18px 10px;
        }

        .info-item {
            max-width: none;
            width: 100%;
            margin: 0;
            flex-direction: row;
            justify-content: flex-start;
            text-align: left;
            padding: 12px 14px;
        }

        .info-icon {
            order: 0;
            margin-bottom: 0;
            margin-right: 14px;
            flex: 0 0 40px;
            width: 40px;
            height: 40px;
        }

        .info-icon::after {
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
        }

        .info-label,
        .info-value,
        .info-detail {
            text-align: left;
        }
    }

    .hpt-policy-modal__dialog {
        scrollbar-gutter: stable;
    }

    .hpt-policy-modal__content,
    .hpt-policy-modal__content > * {
        max-width: none !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .hpt-policy-modal__content div,
    .hpt-policy-modal__content section,
    .hpt-policy-modal__content article,
    .hpt-policy-modal__content .row,
    .hpt-policy-modal__content .column,
    .hpt-policy-modal__content [style*="width"],
    .hpt-policy-modal__content [style*="max-width"] {
        width: 100% !important;
        max-width: none !important;
        float: none !important;
        flex: none !important;
    }

    .hpt-policy-modal__content [style*="column"],
    .hpt-policy-modal__content [class*="col-"] {
        column-count: 1 !important;
        columns: auto !important;
    }

    .hpt-policy-modal__content p,
    .hpt-policy-modal__content ul,
    .hpt-policy-modal__content ol,
    .hpt-policy-modal__content li,
    .hpt-policy-modal__content h1,
    .hpt-policy-modal__content h2,
    .hpt-policy-modal__content h3,
    .hpt-policy-modal__content h4 {
        max-width: none !important;
    }

    .hpt-policy-modal__content p {
        margin: 0 0 12px;
    }

    .hpt-policy-modal__content p:last-child {
        margin-bottom: 0;
    }

    .hpt-policy-modal__content ul,
    .hpt-policy-modal__content ol {
        margin: 0 0 14px 20px;
        padding-left: 20px;
        list-style-position: outside;
    }

    .hpt-policy-modal__content ul {
        list-style-type: disc;
    }

    .hpt-policy-modal__content ol {
        list-style-type: decimal;
    }

    .hpt-policy-modal__content li {
        display: list-item;
        margin-bottom: 8px;
    }

    .hpt-policy-modal__content li:last-child {
        margin-bottom: 0;
    }

    .tour-overview {
        background: white;
        padding: 30px;
        border-radius: 12px;
        margin-bottom: 40px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .tour-itinerary {
        padding: 30px;
        margin-bottom: 40px;
    }

    .tour-overview h2,
    .tour-itinerary h2,
    .tour-inclusions h2 {
        font-size: 1.5rem;
        margin: 0 0 20px 0;
        color: #1a1a1a;
    }

    .itinerary-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 18px;
    }

    .itinerary-header h2 {
        margin: 0 !important;
    }

    .itinerary-controls {
        display: flex;
        gap: 8px;
    }

    .itinerary-toggle-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 18px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: .01em;
        border: 0;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--primary-color, #FF6B35), #ff8a5b);
        color: #fff;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(255,107,53,.25);
        transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    }
    .itinerary-toggle-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(255,107,53,.35);
        filter: brightness(1.05);
    }
    .itinerary-toggle-btn:active {
        transform: translateY(0);
    }
    .itinerary-toggle-btn:focus-visible {
        outline: 2px solid #fff;
        outline-offset: 2px;
        box-shadow: 0 0 0 4px rgba(255,107,53,.45);
    }

    /* Modern card-stack itinerary */
    .itinerary-days {
        background: transparent;
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
    }
    /* Vertical timeline rail behind the day icons */
    .itinerary-days::before {
        content: "";
        position: absolute;
        left: 33px;
        top: 22px;
        bottom: 22px;
        width: 2px;
        background: linear-gradient(180deg, rgba(255,107,53,.25), rgba(255,107,53,.08) 60%, transparent);
        border-radius: 2px;
        pointer-events: none;
    }

    .itinerary-day {
        position: relative;
        background: #ffffff;
        border: 1px solid #e6eaf0;
        border-radius: 14px;
        overflow: hidden;
        transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
        scroll-margin-top: 80px; /* deep-link target offset */
    }
    .itinerary-day:last-child { border-bottom: 1px solid #e6eaf0; }
    .itinerary-day:hover {
        border-color: #d4dae4;
        box-shadow: 0 6px 18px rgba(15,23,42,.06);
    }
    .itinerary-day:has(.day-content[style*="block"]) {
        border-color: rgba(255,107,53,.55);
        box-shadow: 0 8px 24px rgba(255,107,53,.10);
    }
    .itinerary-day.is-highlighted {
        animation: hptItinFlash 2s ease;
        border-color: var(--primary-color, #FF6B35) !important;
    }
    @keyframes hptItinFlash {
        0%   { box-shadow: 0 0 0 0 rgba(255,107,53,.55); }
        50%  { box-shadow: 0 0 0 12px rgba(255,107,53,0); }
        100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
    }
    /* Visually hidden mirror for AI/RAG crawlers — kept in DOM, removed from view */
    .itinerary-sr {
        position: absolute !important;
        width: 1px; height: 1px;
        padding: 0; margin: -1px;
        overflow: hidden;
        clip: rect(0,0,0,0);
        white-space: nowrap;
        border: 0;
    }

    .day-header {
        position: relative;
        display: grid;
        grid-template-columns: 44px auto 1fr 36px;
        align-items: center;
        gap: 14px;
        padding: 16px 18px;
        cursor: pointer;
        background: #ffffff;
        transition: background .2s ease;
        user-select: none;
    }
    .day-header:hover { background: #fafbfc; }

    /* Icon as a soft circular badge sitting on the timeline rail */
    .day-icon {
        position: relative;
        z-index: 1;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        font-size: 14px;
        text-align: center;
        flex-shrink: 0;
        border-radius: 50%;
        background: #f1f5f9;
        box-shadow: 0 0 0 4px #fff;
        transition: transform .25s ease, background .25s ease, color .25s ease;
    }
    .day-icon--arrive   { color: #10b981; background: #ecfdf5; }
    .day-icon--depart   { color: var(--primary-color, #FF6B35); background: #fff1ea; }
    .day-icon--location { color: #2563eb; background: #eff6ff; }
    .day-header:hover .day-icon { transform: scale(1.06); }

    .day-number {
        font-weight: 700;
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--primary-color, #FF6B35);
        min-width: 56px;
        padding: 4px 10px;
        background: rgba(255,107,53,.08);
        border-radius: 999px;
        text-align: center;
    }

    .day-title {
        flex: 1;
        font-weight: 600;
        color: #0f172a;
        font-size: 15px;
        line-height: 1.4;
        min-width: 0;
        white-space: normal;
        overflow-wrap: break-word;
    }

    /* Plus / minus toggle as a circular pill that rotates when open */
    .day-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #f1f5f9;
        color: #475569;
        font-size: 18px;
        font-weight: 600;
        line-height: 1;
        transition: background .25s ease, color .25s ease, transform .3s ease;
    }
    .day-header:hover .day-toggle { background: #e2e8f0; color: #0f172a; }
    /* When the description is open, the script changes textContent to "−". */
    .itinerary-day .day-content[style*="block"] ~ .day-toggle,
    .day-header:has(+ .day-content[style*="block"]) .day-toggle {
        background: var(--primary-color, #FF6B35);
        color: #fff;
        transform: rotate(180deg);
    }

    .day-content {
        padding: 6px 22px 22px 76px; /* align body text with the day-title column */
        background: #ffffff;
        color: #475569;
        line-height: 1.7;
        font-size: 15px;
        border-top: 1px dashed #eef0f3;
        animation: hptDayFadeIn .25s ease;
    }
    .day-content p:last-child { margin-bottom: 0; }
    @keyframes hptDayFadeIn {
        from { opacity: 0; transform: translateY(-4px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 600px) {
        .itinerary-days::before { left: 28px; }
        .day-header {
            grid-template-columns: 36px auto 1fr 32px;
            gap: 10px;
            padding: 14px 14px;
        }
        .day-icon { width: 28px; height: 28px; font-size: 13px; }
        .day-number { font-size: .72rem; min-width: 48px; padding: 3px 8px; }
        .day-title { font-size: 14px; }
        .day-toggle { width: 28px; height: 28px; font-size: 16px; }
        .day-content { padding: 6px 16px 18px 58px; font-size: 14px; }
    }

    /* Real phones: the 4-column grid above (icon + day-badge + title +
       toggle all on one row) leaves the title so little width that text
       wraps one word per line, sometimes mid-word. Reflow to two rows —
       icon/badge/toggle on top, title full-width underneath — using grid
       placement only (no HTML/JS changes, same elements, same order). */
    @media (max-width: 480px) {
        .itinerary-days::before { left: 24px; }
        .day-header {
            grid-template-columns: 30px auto 28px;
            grid-template-rows: auto auto;
            gap: 6px 8px;
            padding: 12px;
        }
        .day-icon {
            grid-column: 1;
            grid-row: 1;
            width: 26px;
            height: 26px;
            font-size: 12px;
        }
        .day-number {
            grid-column: 2;
            grid-row: 1;
            min-width: 0;
            font-size: .7rem;
            padding: 3px 8px;
        }
        .day-toggle {
            grid-column: 3;
            grid-row: 1;
            width: 26px;
            height: 26px;
            font-size: 15px;
        }
        .day-title {
            grid-column: 1 / -1;
            grid-row: 2;
            font-size: 14.5px;
        }
        /* Left padding used to be 46px to align body text under the old
           4-column title position — now that .day-title spans the full
           width on its own row above, that big indent just leaves a
           mismatched gap between the description text and the card's own
           left edge/border. Match the header's own 12px padding instead so
           title and description line up flush. */
        .day-content { padding: 6px 12px 16px 12px; font-size: 14px; }
    }

    .tour-inclusions {
        background: #fff;
        padding: 28px;
        border-radius: 18px;
        border: 1px solid #e7edf3;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    }

    .inclusions-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .inclusions-list.inclusions-list--collapsed .inclusion-item:nth-of-type(n+9) {
        display: none;
    }

    .inclusions-toggle {
        margin-top: 14px;
        padding: 10px 14px;
        border: 1px solid #cbd5e1;
        border-radius: 10px;
        background: #f8fafc;
        color: #0f172a;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: background .2s ease, border-color .2s ease;
    }

    .inclusions-toggle:hover {
        background: #eef2f7;
        border-color: #b9c5d6;
    }

    .inclusion-item {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 56px;
        padding: 14px 16px;
        background: #fff;
        border: 1px solid #dbe7df;
        border-radius: 14px;
        color: #0f3d2e;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .inclusion-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
        border-color: #bfd7cb;
    }

    .inclusion-item > span[aria-hidden="true"] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #ecfdf3;
        color: #119669;
        font-size: 13px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .inclusion-item.exclusion-item {
        border-color: #ead9dd;
        color: #662a32;
    }

    .inclusion-item.exclusion-item:hover {
        border-color: #dbbcc4;
    }

    .inclusion-item.exclusion-item > span[aria-hidden="true"] {
        background: #fff1f2;
        color: #d1435b;
    }

    @media (max-width: 768px) {
        .tour-inclusions {
            padding: 22px;
            border-radius: 16px;
        }

        .inclusions-list {
            grid-template-columns: 1fr;
        }
    }

    /* Sidebar */
    .tour-sidebar {
        position: sticky;
        top: 20px;
        height: fit-content;
    }

    .price-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        margin-bottom: 20px;
    }

    .price-from {
        font-size: 14px;
        color: #666;
        margin-bottom: 8px;
    }

    .price-display {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-bottom: 20px;
    }

    .currency {
        font-size: 24px;
        color: var(--primary-color, #FF6B35);
        font-weight: 700;
    }

    .amount {
        font-size: 42px;
        font-weight: 800;
        color: #1a1a1a;
    }

    .per-person {
        font-size: 14px;
        color: #666;
    }

    .sidebar-actions {
        display: flex;
        gap: 12px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 14px 20px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        font-size: 14px;
    }

    .btn-primary {
        flex: 1;
        background: var(--primary-color, #FF6B35);
        color: white;
    }

    .btn-primary:hover {
        background: var(--primary-color, #FF6B35);
        filter: brightness(0.88);
        transform: translateY(-2px);
    }

    .btn-secondary {
        width: 50px;
        height: 50px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background: white;
        border: 2px solid #e0e0e0;
        color: #666;
        font-size: 18px;
        position: relative;
        transition: all 0.3s ease;
    }

    .btn-secondary i {
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .btn-secondary .save-text {
        font-size: 9px;
        font-weight: 500;
        margin-top: 2px;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .btn-secondary:hover {
        border-color: var(--primary-color, #FF6B35);
        color: var(--primary-color, #FF6B35);
        transform: translateY(-2px);
    }

    .btn-secondary.added {
        border-color: var(--primary-color, #FF6B35);
        color: var(--primary-color, #FF6B35);
        background: #fff5f0;
    }

    .btn-secondary.added i {
        color: var(--primary-color, #FF6B35);
    }

    .btn.btn-brochure {
        width: 100%;
        margin-bottom: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 14px;
        border: 1px solid #d7e0ea;
        border-radius: 999px;
        background: #ffffff;
        color: #1f5f7a;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.2;
        box-shadow: none;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .btn.btn-brochure:hover {
        background: #f8fbfd;
        border-color: #bfd2df;
        color: #164e63;
        transform: none;
    }

    .hpt-brochure-modal {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 100000;
        align-items: center;
        justify-content: center;
        padding: 20px;
        isolation: isolate;
    }

    .hpt-brochure-modal.is-open {
        display: flex;
    }

    .hpt-brochure-modal__overlay {
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.64);
    }

    .hpt-brochure-modal__dialog {
        position: relative;
        z-index: 1;
        width: min(520px, calc(100vw - 32px));
        max-width: 100%;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        background: #fff;
        border-radius: 18px;
        padding: 28px;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
        isolation: isolate;
    }

    .hpt-brochure-modal__dialog,
    .hpt-brochure-modal__dialog *,
    .hpt-brochure-form,
    .hpt-brochure-form * {
        box-sizing: border-box;
    }

    .hpt-brochure-modal__header,
    .hpt-brochure-form,
    .hpt-brochure-form__field,
    .hpt-brochure-form__actions,
    .hpt-brochure-form__message {
        position: relative;
        z-index: 1;
        background: #fff;
    }

    .hpt-brochure-modal__close {
        position: absolute;
        top: 10px;
        right: 12px;
        background: transparent;
        border: 0;
        color: #64748b;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
    }

    .hpt-brochure-modal__header h3 {
        margin: 0 0 8px;
        font-size: 28px;
        line-height: 1.15;
        color: #0f172a;
    }

    .hpt-brochure-modal__header p {
        margin: 0 0 22px;
        color: #475569;
        font-size: 15px;
        line-height: 1.6;
    }

    .hpt-brochure-form__field {
        margin-bottom: 16px;
    }

    .hpt-brochure-form__field label {
        display: block;
        margin-bottom: 7px;
        font-size: 13px;
        font-weight: 700;
        color: #334155;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .hpt-brochure-form__field input {
        display: block;
        width: 100%;
        border: 1px solid #cbd5e1;
        border-radius: 10px;
        padding: 13px 14px;
        font-size: 15px;
        color: #0f172a;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .hpt-brochure-form__field input:focus {
        outline: none;
        border-color: #f97316;
        box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
    }

    .hpt-brochure-form__message {
        min-height: 20px;
        margin: 4px 0 14px;
        font-size: 14px;
        color: #475569;
    }

    .hpt-brochure-form__message.is-error {
        color: #b91c1c;
    }

    .hpt-brochure-form__message.is-success {
        color: #15803d;
    }

    .hpt-brochure-form__actions {
        display: flex;
        justify-content: flex-end;
    }

    .hpt-brochure-form__submit {
        border: 0;
        border-radius: 999px;
        background: #ea580c;
        color: #fff;
        padding: 13px 20px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.2s ease, filter 0.2s ease;
    }

    .hpt-brochure-form__submit:hover {
        transform: translateY(-1px);
        filter: brightness(0.95);
    }

    .hpt-brochure-form__submit:disabled {
        opacity: 0.7;
        cursor: wait;
        transform: none;
    }

    @media (max-width: 640px) {
        .hpt-brochure-modal__dialog {
            padding: 22px 18px;
            border-radius: 16px;
            max-height: calc(100vh - 20px);
        }

        .hpt-brochure-modal__header h3 {
            font-size: 24px;
        }

        .hpt-brochure-form__actions {
            justify-content: stretch;
        }

        .hpt-brochure-form__submit {
            width: 100%;
        }
    }

    .btn-secondary.loading {
        opacity: 0.6;
        pointer-events: none;
    }

    .btn-small {
        width: 100%;
        padding: 10px;
        background: var(--primary-color, #FF6B35);
        color: white;
        font-size: 13px;
    }

    .quick-info-box {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .quick-info-box h3,
    .quick-info-box .quick-info-box__title {
        margin: 0 0 15px 0;
        font-size: 16px;
        color: #1a1a1a;
        font-weight: 700;
        line-height: 1.3;
    }

    .quick-info-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .quick-info-box li {
        padding: 8px 0;
        color: #666;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f0;
    }

    .quick-info-box li:last-child {
        border-bottom: none;
    }

    .quick-info-box__toggle {
        display: none;
        margin-top: 12px;
        width: 100%;
        align-items: center;
        justify-content: center;
        border: 1px solid #d7e0ea;
        border-radius: 999px;
        background: #ffffff;
        color: #1f5f7a;
        padding: 10px 14px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .quick-info-box__toggle:hover {
        background: #f8fbfd;
        border-color: #bfd2df;
        color: #164e63;
    }

    .quick-info-box--collapsible.is-ready .quick-info-box__toggle {
        display: inline-flex;
    }

    .quick-info-box--collapsible.is-ready:not(.is-expanded) .quick-info-box__item--extra {
        display: none;
    }

    /* ===== Frequently Asked Questions ===== */
    .tour-faqs {
        background: #ffffff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .tour-faqs h2 {
        font-size: 1.8rem;
        margin: 0 0 8px 0;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .tour-faqs__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--primary-color, #FF6B35);
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        line-height: 1;
    }
    .tour-faqs__intro {
        margin: 0 0 24px 0;
        color: #475569;
        font-size: 15px;
    }
    .tour-faqs__head { margin-bottom: 18px; }
    .tour-faqs__controls {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 10px 12px;
        margin-top: 4px;
    }
    .tour-faqs__search {
        position: relative;
        flex: 1 1 240px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .tour-faqs__search-icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #64748b;
        pointer-events: none;
        font-size: 14px;
    }
    .tour-faqs__search input[type="search"] {
        width: 100%;
        padding: 10px 12px 10px 36px;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        background: #fff;
        font-size: 14px;
        line-height: 1.4;
        color: #0f172a;
        outline: none;
        transition: border-color .15s ease, box-shadow .15s ease;
    }
    .tour-faqs__search input[type="search"]:focus {
        border-color: var(--primary-color, #FF6B35);
        box-shadow: 0 0 0 3px rgba(255,107,53,.15);
    }
    .tour-faqs__bulk { display: flex; gap: 6px; }
    .tour-faqs__bulk-btn {
        all: unset;
        cursor: pointer;
        padding: 8px 12px;
        font-size: 13px;
        font-weight: 600;
        color: #334155;
        background: #fff;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        transition: background .15s ease, color .15s ease, border-color .15s ease;
    }
    .tour-faqs__bulk-btn:hover {
        color: var(--primary-color, #FF6B35);
        border-color: var(--primary-color, #FF6B35);
    }
    .tour-faqs__bulk-btn:focus-visible {
        outline: 2px solid var(--primary-color, #FF6B35);
        outline-offset: 2px;
    }
    .tour-faqs__empty {
        margin: 12px 0 0 0;
        padding: 12px 14px;
        background: #fff7ed;
        border: 1px solid #fed7aa;
        border-radius: 8px;
        color: #9a3412;
        font-size: 14px;
    }
    .tour-faqs__list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .tour-faq {
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        background: #f8fafc;
        overflow: hidden;
        transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        scroll-margin-top: 80px; /* better deep-link scroll target */
    }
    .tour-faq:hover {
        border-color: #cbd5e1;
        background: #ffffff;
    }
    .tour-faq.is-highlighted {
        animation: hptFaqFlash 2s ease;
        border-color: var(--primary-color, #FF6B35);
    }
    @keyframes hptFaqFlash {
        0%   { box-shadow: 0 0 0 0 rgba(255,107,53,.55); }
        50%  { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
        100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
    }
    .tour-faq__q-wrap {
        margin: 0;
        padding: 0;
        font-size: 1rem;
    }
    .tour-faq__q {
        all: unset;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        width: 100%;
        cursor: pointer;
        padding: 18px 20px;
        font-weight: 600;
        color: #0f172a;
        font-size: 16px;
        line-height: 1.4;
    }
    .tour-faq__q:focus-visible {
        outline: 2px solid var(--primary-color, #FF6B35);
        outline-offset: -2px;
    }
    .tour-faq__q-text { flex: 1; }
    .tour-faq__toggle {
        position: relative;
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--primary-color, #FF6B35);
        transition: transform .25s ease;
    }
    .tour-faq__toggle::before,
    .tour-faq__toggle::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background: #fff;
        border-radius: 1px;
        transform: translate(-50%, -50%);
    }
    .tour-faq__toggle::before { width: 10px; height: 2px; }
    .tour-faq__toggle::after  { width: 2px;  height: 10px; transition: transform .25s ease; }
    .tour-faq__q[aria-expanded="true"] .tour-faq__toggle::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }
    .tour-faq__a-wrap {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease, padding .25s ease;
        padding: 0 20px;
    }
    .tour-faq__a-wrap.is-open {
        max-height: 2000px;
        padding: 0 20px 18px 20px;
    }
    .tour-faq__a {
        color: #334155;
        font-size: 15px;
        line-height: 1.65;
    }
    .tour-faq__a p { margin: 0 0 10px 0; }
    .tour-faq__a p:last-child { margin-bottom: 0; }
    .tour-faq__a ul,
    .tour-faq__a ol {
        margin: 0 0 10px 0;
        padding-left: 22px;
        list-style-position: outside;
    }
    .tour-faq__a ul { list-style: disc; }
    .tour-faq__a ol { list-style: decimal; }
    .tour-faq__a li { margin: 4px 0; }
    .tour-faq__a a {
        color: var(--primary-color, #FF6B35);
        text-decoration: underline;
    }
    /* Visually hidden but crawlable plain-text mirror for AI engines */
    .tour-faqs__sr {
        position: absolute !important;
        width: 1px; height: 1px;
        padding: 0; margin: -1px;
        overflow: hidden;
        clip: rect(0,0,0,0);
        white-space: nowrap;
        border: 0;
    }
    @media (max-width: 768px) {
        .tour-faqs { padding: 24px 18px; }
        .tour-faqs h2 { font-size: 1.4rem; }
        .tour-faq__q { padding: 14px 16px; font-size: 15px; }
        .tour-faq__a-wrap { padding: 0 16px; }
        .tour-faq__a-wrap.is-open { padding: 0 16px 14px 16px; }
        .tour-faqs__controls { flex-direction: column; align-items: stretch; }
        .tour-faqs__bulk { justify-content: flex-end; }
    }

    /* Departures */
    .tour-departures {
        background: white;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .tour-departures h2 {
        font-size: 1.8rem;
        margin: 0 0 30px 0;
        color: #1a1a1a;
    }

    .departures-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .departure-card-modern {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 16px;
        padding: 32px;
        transition: all 0.3s;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .departure-card-modern:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-color: var(--primary-color, #FF6B35);
    }

    .departure-card-modern.sold-out {
        opacity: 0.6;
        background: #f5f5f5;
    }

    .departure-card-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .departure-dates-header {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        flex-wrap: wrap;
    }

    .date-from, .date-to {
        font-weight: 700;
    }

    .date-arrow {
        color: #999;
        font-weight: 400;
        font-size: 20px;
    }

    .departure-features {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .departure-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: #4a5568;
    }

    .departure-feature.instant-confirm {
        color: var(--primary-color, #FF6B35);
        font-weight: 600;
    }

    .departure-feature.guaranteed {
        color: #10b981;
        font-weight: 500;
    }

    .departure-feature.on-request {
        color: #6b7280;
        font-weight: 600;
    }

    .departure-feature.limited {
        color: #f59e0b;
        font-weight: 600;
    }

    .departure-feature.seats {
        color: #4a5568;
    }

    .feature-icon {
        font-size: 18px;
        display: inline-block;
        width: 24px;
        text-align: center;
    }

    .feature-text {
        line-height: 1.4;
    }

    .departure-card-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-between;
        min-width: 240px;
        text-align: right;
    }

    .departure-from-label {
        font-size: 14px;
        color: #6b7280;
        margin-bottom: 4px;
    }

    .departure-price-large {
        font-size: 36px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .departure-price-large .currency {
        font-size: 24px;
        font-weight: 600;
    }

    .departure-per-person {
        font-size: 14px;
        color: #6b7280;
        margin-bottom: 12px;
    }

    .departure-guest-type {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: #4a5568;
        margin-bottom: 16px;
    }

    .guest-icon {
        font-size: 16px;
    }

    .btn-confirm-dates {
        padding: 10px 24px;
        background: var(--primary-color, #FF6B35);
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .btn-confirm-dates:hover {
        background: var(--primary-color, #FF6B35);
        filter: brightness(0.88);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .btn-confirm-dates.sold-out-btn {
        background: #9ca3af;
        cursor: not-allowed;
        box-shadow: none;
    }

    .btn-confirm-dates.sold-out-btn:hover {
        transform: none;
    }

    /* Old departure card styles - kept for backward compatibility */
    .departure-card {
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 20px;
        transition: all 0.2s;
    }

    .departure-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        border-color: var(--primary-color, #FF6B35);
    }

    .departure-date {
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 12px;
    }

    .departure-price {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin-bottom: 15px;
    }

    .departure-price .price {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color, #FF6B35);
    }

    .departure-price .per {
        font-size: 13px;
        color: #666;
    }

    /* Booking tabs */
    .tour-booking-tabs {
        /* No box here — .tour-departures is already the card */
    }

    .tour-booking-tabs__head {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        background: #f3f8ff;
        border-radius: 8px;
        border: 1px solid #e6edf5;
        margin-bottom: 24px;
    }

    .tour-booking-tab-btn {
        appearance: none;
        border: 0;
        background: transparent;
        padding: 14px 16px;
        font-size: 15px;
        font-weight: 700;
        color: #516174;
        cursor: pointer;
        transition: all 0.2s ease;
        border-radius: 7px;
    }

    .tour-booking-tab-btn.is-active {
        background: #ffffff;
        color: #0f172a;
        box-shadow: inset 0 -3px 0 var(--primary-color, #FF6B35);
    }

    .tour-booking-tab-btn:hover {
        color: #0f172a;
    }

    .tour-booking-tab-panel {
        padding: 0;
    }

    /* Strip the form's own card when nested inside a tab */
    .tour-booking-tab-panel .highpass-tour-request-form {
        background: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    /* Reviews */
    .tour-reviews {
        background: #ffffff;
        padding: 36px;
        border-radius: 16px;
        box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
        margin-bottom: 24px;
    }

    .review-title {
        font-size: 1.9rem;
        margin: 0 0 24px 0;
        color: #1c2430;
    }

    .review-summary-card {
        background: linear-gradient(135deg, #f5fbff 0%, #eef6ff 100%);
        border: 1px solid #e1ecf6;
        border-radius: 18px;
        padding: 24px;
        display: grid;
        grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
        gap: 20px;
        overflow: hidden;
    }

    .review-form-card {
        margin: 24px 0;
        padding: 24px;
        border-radius: 16px;
        border: 1px solid #e7eef6;
        background: #ffffff;
    }

    .review-form-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        background: none;
        cursor: pointer;
        font-size: 1.2rem;
        font-weight: 700;
        color: #1f2937;
        font-family: inherit;
        text-align: left;
    }
    .review-form-toggle:hover { color: #2563eb; }
    .review-form-toggle-icon { transition: transform 0.3s ease; flex-shrink: 0; }
    .review-form-toggle[aria-expanded="true"] .review-form-toggle-icon { transform: rotate(180deg); }
    .review-form-body { margin-top: 16px; }
    .review-form-body[hidden] { display: none; }

    .review-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: relative;
    }

    .review-form-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .review-form-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .review-form-field label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 8px;
    }

    .review-form-field input,
    .review-form-field textarea {
        width: 100%;
        border: 1px solid #e1e7ef;
        border-radius: 10px;
        padding: 10px 12px;
        font-size: 14px;
        color: #1f2937;
        background: #ffffff;
    }

    .review-form-field textarea { resize: vertical; }

    .review-form-help {
        display: inline-block;
        margin-top: 6px;
        font-size: 12px;
        color: #6b7280;
    }

    .review-form-errors {
        background: #fff1f2;
        border: 1px solid #fecdd3;
        color: #9f1239;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 13px;
    }

    .review-form-success {
        background: #ecfdf3;
        border: 1px solid #bbf7d0;
        color: #166534;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .review-form-success[hidden] { display: none !important; }

    .review-form-success-dismiss {
        border: none;
        background: transparent;
        color: inherit;
        font-size: 14px;
        cursor: pointer;
        padding: 2px 6px;
    }

    .review-honeypot {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    .review-rating-input {
        display: inline-flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 4px;
    }

    .review-rating-input input { display: none; }

    .review-rating-input label {
        margin: 0;
        font-size: 20px;
        color: #d4dde7;
        cursor: pointer;
        line-height: 1;
    }

    .review-rating-input input:checked ~ label,
    .review-rating-input label:hover,
    .review-rating-input label:hover ~ label { color: #f39b2f; }

    .review-submit {
        align-self: flex-start;
        padding: 12px 24px;
        border-radius: 999px;
        border: none;
        background: #0f6f98;
        color: #ffffff;
        font-weight: 600;
        cursor: pointer;
    }

    .review-form-note { font-size: 12px; color: #6b7280; margin: 0; }
    .review-form-note a { color: #1a5f7a; text-decoration: underline; }

    .review-summary-left {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .review-score { font-size: 36px; font-weight: 700; color: #1c2430; }

    .review-stars {
        position: relative;
        width: 140px;
        height: 24px;
    }

    .review-stars-base,
    .review-stars-fill {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        gap: 4px;
        height: 24px;
    }

    .review-stars svg { width: 24px; height: 24px; fill: #d8e2ef; }

    .review-stars-fill {
        overflow: hidden;
        width: calc(var(--rating) / 5 * 100%);
    }

    .review-stars-fill svg { fill: var(--warning-color, #f59e0b); }

    .review-count { color: #5f6b7a; font-size: 14px; }

    .review-breakdown {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 16px;
        max-width: 100%;
    }

    .review-breakdown-item {
        display: grid;
        grid-template-columns: 28px minmax(0, 1fr) 36px;
        grid-template-areas:
            "icon label value"
            "icon bar value";
        align-items: center;
        gap: 6px 10px;
        color: #2d3748;
        min-width: 0;
        max-width: 100%;
    }

    .review-breakdown-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: #ffffff;
        border: 1px solid #e3ecf6;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-area: icon;
    }

    .review-breakdown-icon svg { width: 18px; height: 18px; fill: #4f5d6f; }

    .review-breakdown-label {
        font-size: 14px;
        white-space: normal;
        line-height: 1.2;
        grid-area: label;
    }

    .review-breakdown-bar {
        height: 6px;
        background: #e3ecf6;
        border-radius: 999px;
        overflow: hidden;
        display: block;
        width: 100%;
        grid-area: bar;
    }

    .review-breakdown-bar span {
        display: block;
        height: 100%;
        background: var(--primary-color, #1a5f7a);
        border-radius: 999px;
    }

    .review-breakdown-value {
        font-weight: 600;
        font-size: 14px;
        text-align: right;
        color: #3c4753;
        grid-area: value;
    }

    .review-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin: 24px 0;
        flex-wrap: wrap;
    }

    .review-search {
        position: relative;
        flex: 1 1 320px;
        max-width: 520px;
    }

    .review-search-input {
        width: 100%;
        padding: 12px 44px 12px 16px;
        border-radius: 999px;
        border: 1px solid #e1e7ef;
        background: #ffffff;
        font-size: 14px;
        color: #1f2937;
    }

    .review-search-button {
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: #0f6f98;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .review-search-button svg { width: 18px; height: 18px; fill: #ffffff; }

    .review-sort { position: relative; }

    .review-sort-toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        border-radius: 999px;
        border: 1px solid #e1e7ef;
        background: #ffffff;
        cursor: pointer;
        font-size: 14px;
        color: #1f2937;
    }

    .review-sort-caret {
        width: 10px;
        height: 10px;
        border-right: 2px solid #3c4753;
        border-bottom: 2px solid #3c4753;
        transform: rotate(45deg);
    }

    .review-sort-menu {
        position: absolute;
        right: 0;
        top: calc(100% + 8px);
        background: #ffffff;
        border: 1px solid #e1e7ef;
        border-radius: 12px;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
        padding: 8px;
        min-width: 180px;
        z-index: 5;
    }

    .review-sort-option {
        width: 100%;
        text-align: left;
        padding: 10px 12px;
        border: none;
        background: transparent;
        border-radius: 8px;
        font-size: 14px;
        color: #1f2937;
        cursor: pointer;
    }

    .review-sort-option.is-active { background: #f1f6fb; color: #0f6f98; font-weight: 600; }

    .review-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .review-card { border-top: 1px solid #edf1f5; padding-top: 20px; }
    .review-card:first-child { border-top: none; padding-top: 0; }
    .review-card.is-hidden { display: none; }

    .review-card-header { display: flex; gap: 12px; align-items: center; }

    .review-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #e4eef8;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        font-weight: 600;
        color: #3c4753;
    }

    .review-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .review-author { font-weight: 600; color: #1f2937; }
    .review-date { font-size: 13px; color: #7a8794; }

    .review-rating { display: flex; align-items: center; gap: 10px; margin: 10px 0 12px; }
    .review-rating-value { font-weight: 700; color: #1f2937; }

    .review-body { color: #394350; line-height: 1.6; }

    .review-body-toggle {
        margin-top: 8px;
        background: none;
        border: none;
        color: #0f6f98;
        font-weight: 600;
        padding: 0;
        cursor: pointer;
    }

    .review-trip-date { margin-top: 12px; color: #6b7785; font-size: 13px; }

    .review-reply {
        margin-top: 16px;
        background: linear-gradient(135deg, #f0fdf4 0%, #f7fee7 100%);
        border: 1px solid #bbf7d0;
        border-radius: 12px;
        padding: 16px 18px;
        position: relative;
    }
    .review-reply::before {
        content: '';
        position: absolute;
        left: 24px;
        top: -8px;
        width: 14px;
        height: 14px;
        background: #f0fdf4;
        border-left: 1px solid #bbf7d0;
        border-top: 1px solid #bbf7d0;
        transform: rotate(45deg);
    }
    .review-reply-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; flex-wrap: wrap; gap: 6px; }
    .review-reply-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: #166534; }
    .review-reply-badge svg { color: #22c55e; flex-shrink: 0; }
    .review-reply-date { font-size: 12px; color: #65a30d; }
    .review-reply-text { color: #3f6212; font-size: 14px; line-height: 1.65; }
    .review-reply-edit-btn { background: none; border: none; color: #65a30d; font-size: 12px; font-weight: 600; cursor: pointer; padding: 4px 0 0; font-family: inherit; transition: color .15s; }
    .review-reply-edit-btn:hover { color: #166534; text-decoration: underline; }

    .review-admin-reply { margin-top: 12px; }
    .review-reply-toggle {
        display: inline-flex; align-items: center; gap: 6px; background: none;
        border: 1.5px dashed #cbd5e1; border-radius: 8px; padding: 8px 14px;
        font-size: 13px; font-weight: 600; color: #64748b; cursor: pointer;
        font-family: inherit; transition: all .15s; width: 100%; justify-content: center;
    }
    .review-reply-toggle:hover { border-color: #22c55e; color: #166534; background: #f0fdf4; }
    .review-reply-form { animation: reviewReplyFadeIn .2s ease; }
    @keyframes reviewReplyFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
    .review-reply-textarea {
        width: 100%; border: 1.5px solid #d1d5db; border-radius: 10px; padding: 12px 14px;
        font-size: 14px; color: #1e293b; font-family: inherit; resize: vertical;
        transition: border-color .15s, box-shadow .15s; box-sizing: border-box; min-height: 80px;
    }
    .review-reply-textarea:focus { outline: none; border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.12); }
    .review-reply-form-actions { display: flex; align-items: center; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
    .review-reply-cancel { background: none; border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: #64748b; cursor: pointer; font-family: inherit; transition: all .15s; }
    .review-reply-cancel:hover { border-color: #94a3b8; color: #334155; }
    .review-reply-submit { display: inline-flex; align-items: center; gap: 6px; background: #22c55e; border: none; border-radius: 8px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: #fff; cursor: pointer; font-family: inherit; transition: all .15s; }
    .review-reply-submit:hover { background: #16a34a; transform: translateY(-1px); box-shadow: 0 2px 8px rgba(22,163,74,.3); }
    .review-reply-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
    .review-reply-delete { background: none; border: none; color: #ef4444; font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; margin-left: auto; padding: 4px 0; transition: color .15s; }
    .review-reply-delete:hover { color: #dc2626; text-decoration: underline; }
    .review-reply-saving { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #64748b; }
    .review-reply-saving::before { content: ''; width: 14px; height: 14px; border: 2px solid #d1d5db; border-top-color: #22c55e; border-radius: 50%; animation: reviewReplySpin .5s linear infinite; display: inline-block; }
    @keyframes reviewReplySpin { to { transform: rotate(360deg); } }

    .review-reply-ai-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
    .review-ai-generate { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, #8b5cf6, #6366f1); border: none; border-radius: 7px; padding: 7px 14px; font-size: 12px; font-weight: 700; color: #fff; cursor: pointer; font-family: inherit; transition: all .15s; white-space: nowrap; flex-shrink: 0; }
    .review-ai-generate:hover { background: linear-gradient(135deg, #7c3aed, #4f46e5); transform: translateY(-1px); box-shadow: 0 3px 10px rgba(99,102,241,.35); }
    .review-ai-generate:disabled, .review-ai-generate.is-loading { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; pointer-events: none; }
    .review-ai-generate.is-loading svg { animation: reviewReplySpin .6s linear infinite; }
    .review-ai-input-wrap { flex: 1; display: flex; align-items: center; gap: 6px; }
    .review-ai-instruction { flex: 1; border: 1.5px solid #e0e7ff; border-radius: 7px; padding: 7px 12px; font-size: 12px; font-family: inherit; color: #1e293b; background: #f5f3ff; transition: border-color .15s; }
    .review-ai-instruction:focus { outline: none; border-color: #8b5cf6; box-shadow: 0 0 0 2px rgba(139,92,246,.12); }
    .review-ai-send { display: inline-flex; align-items: center; gap: 4px; background: linear-gradient(135deg, #8b5cf6, #6366f1); border: none; border-radius: 7px; padding: 7px 14px; font-size: 12px; font-weight: 700; color: #fff; cursor: pointer; font-family: inherit; white-space: nowrap; flex-shrink: 0; transition: all .15s; }
    .review-ai-send:hover { background: linear-gradient(135deg, #7c3aed, #4f46e5); transform: translateY(-1px); box-shadow: 0 3px 10px rgba(99,102,241,.35); }
    .review-ai-send:disabled { opacity: .6; cursor: not-allowed; transform: none; }
    .review-ai-send.is-loading svg { animation: reviewReplySpin .6s linear infinite; }

    .review-actions { display: flex; gap: 10px; margin-top: 16px; }

    .review-photos { margin-top: 14px; display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 8px; }

    .review-photo {
        border: none; padding: 0; background: transparent; cursor: pointer;
        display: block; border-radius: 10px; overflow: hidden;
        border: 1px solid #e6eef5; background: #f8fafc;
    }

    .review-photos img { width: 100%; height: 90px; object-fit: cover; display: block; }

    .review-lightbox { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 9999; }
    .review-lightbox.is-open { display: flex; }
    .review-lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
    .review-lightbox-content { position: relative; z-index: 1; max-width: 90vw; max-height: 80vh; background: #0f1115; border-radius: 16px; padding: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
    .review-lightbox-image { max-width: 86vw; max-height: 74vh; display: block; object-fit: contain; }
    .review-lightbox-close { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; border: none; background: rgba(255,255,255,0.12); color: #fff; font-size: 16px; cursor: pointer; }
    .review-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(255,255,255,0.12); color: #fff; font-size: 18px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
    .review-lightbox-nav.prev { left: 8px; }
    .review-lightbox-nav.next { right: 8px; }

    .review-thumb { display: inline-flex; align-items: center; gap: 8px; border: 1px solid #e1e7ef; background: #ffffff; border-radius: 999px; padding: 8px 12px; cursor: pointer; }
    .review-thumb svg { width: 16px; height: 16px; fill: #5f6b7a; }
    .review-thumb.is-active { background: #eef6fb; border-color: #cfe5f2; }
    .review-thumb-count { font-size: 13px; color: #4b5563; }

    .review-load-more { margin-top: 24px; text-align: center; }
    .review-load-more-button { padding: 12px 24px; border-radius: 999px; border: 1px solid #d6dee8; background: #ffffff; font-weight: 600; cursor: pointer; }

    .review-empty { padding: 18px; background: #f8fafc; border-radius: 12px; color: #6b7280; }

    /* Related Tours */
    .tour-related {
        background: white;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .tour-related h2 {
        font-size: 1.8rem;
        margin: 0 0 30px 0;
        color: #1a1a1a;
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .tour-content-wrapper {
            grid-template-columns: 1fr;
        }

        .tour-sidebar {
            position: static;
        }

        .tour-quick-info {
            grid-template-columns: repeat(2, 1fr);
        }

        .inclusions-list {
            grid-template-columns: 1fr;
        }

        .tour-title {
            font-size: 1.8rem;
        }

        .modern-gallery-grid {
            grid-template-columns: 1fr;
        }

        .modern-thumbs {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            overflow-y: hidden;
            padding-bottom: 6px;
            height: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .modern-main {
            height: auto;
        }

        .modern-main img {
            min-height: 260px;
        }

        .modern-thumb img {
            min-height: 140px;
        }

        .modern-thumb {
            flex: 0 0 140px;
            scroll-snap-align: start;
        }

        .tour-booking-tabs__head {
            grid-template-columns: 1fr;
        }

        .tour-booking-tab-btn {
            text-align: left;
            border-bottom: 1px solid #e6edf5;
        }

        .tour-booking-tab-btn:last-child {
            border-bottom: 0;
        }

        .departure-card-modern {
            flex-direction: column;
            padding: 24px;
        }

        .departure-card-left {
            margin-bottom: 24px;
        }

        .departure-dates-header {
            flex-direction: column;
            align-items: flex-start;
            font-size: 16px;
            gap: 4px;
        }

        .date-arrow {
            display: none;
        }

        .departure-card-right {
            align-items: stretch;
            text-align: left;
            min-width: 100%;
        }

        .departure-price-large {
            font-size: 32px;
        }

        .btn-confirm-dates {
            padding: 16px;
        }

        .tour-reviews,
        .tour-related,
        .tour-departures {
            padding: 24px;
        }

        .review-summary-card { grid-template-columns: 1fr; }
        .review-breakdown { grid-template-columns: 1fr; }
        .review-breakdown-item {
            grid-template-columns: 28px minmax(0, 1fr) 36px;
            grid-template-areas: "icon label value" "icon bar bar";
            gap: 4px 8px;
        }
        .review-breakdown-bar { grid-area: bar; }
        .review-controls { align-items: stretch; }
        .review-search { max-width: none; }
        .review-form-row,
        .review-form-grid { grid-template-columns: 1fr; }

        .related-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 640px) {
        .review-controls { flex-direction: column; align-items: stretch; gap: 10px; }
        .review-search { max-width: none; flex: auto; }
        .review-sort-toggle { width: 100%; justify-content: space-between; }
        .review-form-row,
        .review-form-grid { grid-template-columns: 1fr; }
        .review-reply-ai-bar { flex-direction: column; align-items: stretch; }
        .review-ai-input-wrap { flex-direction: column; }
        .review-reply-form-actions { flex-direction: column; align-items: stretch; }
        .review-reply-form-actions .review-reply-delete { margin-left: 0; text-align: center; }
    }

    @media (max-width: 480px) {
        .tour-departures,
        .tour-reviews,
        .tour-related { padding: 16px; border-radius: 10px; }
        .review-title { font-size: 1.4rem; }
        .review-summary-card { grid-template-columns: 1fr; padding: 16px; border-radius: 12px; }
        .review-breakdown { grid-template-columns: 1fr; }
        .review-card-header { gap: 8px; }
        .review-avatar { width: 36px; height: 36px; }
    }

    @media (max-width: 360px) {
        .tour-departures,
        .tour-reviews,
        .tour-related { padding: 12px; border-radius: 8px; }
        .review-title { font-size: 1.15rem; }
        .review-summary-card { padding: 12px; }
        .review-score { font-size: 28px; }
        .review-stars { width: 110px; height: 20px; }
        .review-stars svg { width: 20px; height: 20px; }
        .review-breakdown-item {
            grid-template-columns: 24px minmax(0, 1fr) 32px;
            grid-template-areas: "icon label value" "icon bar bar";
            gap: 4px 6px;
        }
        .review-breakdown-icon { width: 24px; height: 24px; border-radius: 6px; }
        .review-breakdown-icon svg { width: 14px; height: 14px; }
        .review-breakdown-label { font-size: 12px; }
        .review-search-input { padding: 10px 40px 10px 12px; font-size: 13px; }
        .review-sort-toggle { padding: 8px 12px; font-size: 13px; }
        .review-card-header { flex-wrap: wrap; }
        .review-avatar { width: 32px; height: 32px; font-size: 13px; }
        .review-author { font-size: 14px; }
        .review-body { font-size: 13px; }
        .review-reply { padding: 12px; }
        .review-reply-text { font-size: 13px; }
        .review-reply-textarea { font-size: 13px; padding: 10px; }
        .review-ai-generate,
        .review-ai-send { font-size: 11px; padding: 6px 10px; }
        .review-ai-instruction { font-size: 11px; padding: 6px 10px; }
        .review-reply-cancel,
        .review-reply-submit { font-size: 12px; padding: 7px 12px; }
    }

/* ── Extracted from inline styles (single-tour-render.php) ───────────────── */
.gallery-clickable {
    cursor: pointer;
}

.tour-featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #f59e0b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}

.tour-policies {
    margin-top: 24px;
}

.tour-policy {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 18px;
    background: #f8fafc;
}

.tour-policy__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.tour-policy__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tour-policy__preview {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.hpt-policy-trigger {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #0f172a;
    cursor: pointer;
}

.hpt-policy-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hpt-policy-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .6);
}

.hpt-policy-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 14px;
    width: 80vw;
    height: 80vh;
    max-width: 80vw;
    max-height: 80vh;
    box-sizing: border-box;
    overflow: hidden;
    padding: 28px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    display: flex;
    flex-direction: column;
}

.hpt-policy-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
}

.hpt-policy-modal__title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.hpt-policy-modal__content {
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    max-width: none;
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding-right: 4px;
}

.departure-feature.closed {
    color: #6c757d;
}

.departure-feature.fully-booked {
    color: #dc3545;
}

.departure-discount-badge {
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.departure-price-original {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    line-height: 1.2;
}

.tour-sale-badge-wrap {
    margin-bottom: 6px;
}

.tour-sale-badge {
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
}

.tour-price-old {
    font-size: 15px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 6px;
    font-weight: 400;
}

.custom-dates-box {
    text-align: center;
    padding: 20px 0;
}

.custom-dates-box__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.custom-dates-box__heading {
    margin: 0 0 12px;
    font-size: 20px;
}

.custom-dates-box__desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.custom-dates-box__cta {
    padding: 14px 28px;
}

.hpt-policy-modal__content--bulleted p {
    margin: 0 0 10px;
    padding-left: 18px;
    position: relative;
}
.hpt-policy-modal__content--bulleted p::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #0f172a;
    font-weight: 700;
}
.hpt-policy-modal__content--bulleted ul,
.hpt-policy-modal__content--bulleted ol {
    margin: 0 0 12px 20px;
    padding-left: 16px;
}
.hpt-policy-modal__content--bulleted li {
    margin-bottom: 8px;
}
.hpt-policy-list {
    margin: 0;
    padding-left: 22px;
}
.hpt-policy-list li {
    margin-bottom: 10px;
}

/* css/tour-request-form.css */
/**
 * Tour Request Form Styling
 * Premium travel industry design system
 * 
 * @package Highpass_Tours
 */

/* ========================================
   Variables & Base Styles
   ======================================== */

:root {
    --hpt-form-primary: #4A90E2;
    --hpt-form-primary-hover: #357ABD;
    --hpt-form-success: #10B981;
    --hpt-form-error: #EF4444;
    --hpt-form-text: #1F2937;
    --hpt-form-text-light: #6B7280;
    --hpt-form-border: #E5E7EB;
    --hpt-form-border-focus: #4A90E2;
    --hpt-form-bg: #FFFFFF;
    --hpt-form-bg-light: #F9FAFB;
    --hpt-form-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --hpt-form-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --hpt-form-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --hpt-form-radius: 8px;
    --hpt-form-radius-lg: 12px;
    --hpt-form-spacing: 1.5rem;
}

/* ========================================
   Form Wrapper
   ======================================== */

.highpass-tour-request-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--hpt-form-text);
    line-height: 1.6;
}

.highpass-tour-request-embedded {
    padding: var(--hpt-form-spacing);
    background: var(--hpt-form-bg-light);
    border-radius: var(--hpt-form-radius-lg);
}

/* ========================================
   Header
   ======================================== */

.highpass-tour-request-header {
    margin-bottom: 2rem;
    text-align: center;
}

.highpass-tour-request-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hpt-form-text);
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.highpass-tour-request-description {
    font-size: 1.125rem;
    color: var(--hpt-form-text-light);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   Form Structure
   ======================================== */

.highpass-tour-request-form {
    background: var(--hpt-form-bg);
    padding: 2rem;
    border-radius: var(--hpt-form-radius-lg);
    box-shadow: var(--hpt-form-shadow-lg);
}

.highpass-tour-request-wrapper--brochure {
    max-width: 560px;
}

.highpass-tour-request-wrapper--brochure .highpass-tour-request-form {
    padding: 1.5rem;
}

.highpass-tour-request-wrapper--brochure .highpass-tour-request-title {
    font-size: 1.6rem;
}

.highpass-tour-request-wrapper--brochure .highpass-tour-request-description {
    font-size: 1rem;
}

.highpass-form-section {
    margin-bottom: 2.5rem;
}

.highpass-form-section:last-of-type {
    margin-bottom: 2rem;
}

.highpass-form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hpt-form-text);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--hpt-form-border);
}

/* ========================================
   Form Rows & Fields
   ======================================== */

.highpass-form-row {
    margin-bottom: 1.5rem;
}

.highpass-form-row:last-child {
    margin-bottom: 0;
}

.highpass-form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.highpass-form-row-phone {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
}

.highpass-form-field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.highpass-form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hpt-form-text);
    margin-bottom: 0.5rem;
}

.highpass-form-field label .required {
    color: var(--hpt-form-error);
    margin-left: 2px;
}

/* ========================================
   Form Inputs
   ======================================== */

.highpass-form-field input[type="text"],
.highpass-form-field input[type="email"],
.highpass-form-field input[type="tel"],
.highpass-form-field input[type="number"],
.highpass-form-field input[type="date"],
.highpass-form-field select,
.highpass-form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--hpt-form-text);
    background: var(--hpt-form-bg);
    border: 2px solid var(--hpt-form-border);
    border-radius: var(--hpt-form-radius);
    transition: all 0.2s ease;
    outline: none;
}

.highpass-form-field input[type="text"]:focus,
.highpass-form-field input[type="email"]:focus,
.highpass-form-field input[type="tel"]:focus,
.highpass-form-field input[type="number"]:focus,
.highpass-form-field input[type="date"]:focus,
.highpass-form-field select:focus,
.highpass-form-field textarea:focus {
    border-color: var(--hpt-form-border-focus);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.highpass-form-field input[type="text"]::placeholder,
.highpass-form-field input[type="email"]::placeholder,
.highpass-form-field input[type="tel"]::placeholder,
.highpass-form-field input[type="number"]::placeholder,
.highpass-form-field textarea::placeholder {
    color: #9CA3AF;
}

.highpass-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.highpass-form-field .highpass-readonly-field {
    background: var(--hpt-form-bg-light);
    cursor: not-allowed;
    color: var(--hpt-form-text-light);
}

/* ========================================
   Tom Select (Searchable Dropdowns)
   ======================================== */

.ts-wrapper {
    width: 100% !important;
}

.ts-wrapper .ts-control {
    padding: 0.75rem 1rem;
    min-height: 48px;
    border: 2px solid var(--hpt-form-border);
    border-radius: var(--hpt-form-radius);
    background: var(--hpt-form-bg);
    transition: all 0.2s ease;
}

.ts-wrapper.focus .ts-control {
    border-color: var(--hpt-form-border-focus);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.ts-wrapper .ts-control input {
    font-size: 1rem;
    color: var(--hpt-form-text);
}

.ts-wrapper .ts-dropdown {
    border: 2px solid var(--hpt-form-border-focus);
    border-radius: var(--hpt-form-radius);
    box-shadow: var(--hpt-form-shadow-lg);
    margin-top: 4px;
}

.ts-wrapper .ts-dropdown .option {
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
}

.ts-wrapper .ts-dropdown .option.active {
    background: var(--hpt-form-bg-light);
}

.ts-wrapper .ts-dropdown .option.selected {
    background: rgba(74, 144, 226, 0.1);
    color: var(--hpt-form-primary);
}

.ts-wrapper .ts-dropdown .option:hover {
    background: var(--hpt-form-bg-light);
}

/* Tom Select Error State */
.ts-wrapper.ts-error .ts-control {
    border-color: var(--hpt-form-error);
}

/* ========================================
   Datepicker Input States
   (Calendar popup styles are in flatpickr-custom.css)
   ======================================== */

/* Datepicker input styling */
.highpass-datepicker {
    cursor: pointer;
}

.highpass-form-field.datepicker-open .highpass-datepicker {
    border-color: var(--hpt-form-border-focus);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* ========================================
   Error States
   ======================================== */

.highpass-form-field.has-error input,
.highpass-form-field.has-error select,
.highpass-form-field.has-error textarea,
.highpass-form-field.has-error .ts-control {
    border-color: var(--hpt-form-error);
    background: #FEF2F2;
}

.highpass-form-field .field-error-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--hpt-form-error);
    font-weight: 500;
}

/* ========================================
   Honeypot (Anti-spam)
   ======================================== */

.highpass-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ========================================
   Form Messages
   ======================================== */

.highpass-form-messages {
    margin-bottom: 1.5rem;
    display: none;
}

.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--hpt-form-radius);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
}

.form-message svg {
    flex-shrink: 0;
}

.form-message-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-message-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

.highpass-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.highpass-form-legal {
    font-size: 0.8125rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
    margin: 0.75rem 0 0;
}

.highpass-form-legal a {
    color: var(--hpt-form-primary, #1a5f7a);
    text-decoration: underline;
}

/* ========================================
   Submit Button
   ======================================== */

.highpass-form-actions {
    margin-top: 2rem;
    text-align: center;
}

.highpass-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    background: var(--hpt-form-primary);
    border: none;
    border-radius: var(--hpt-form-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--hpt-form-shadow);
}

.highpass-submit-btn:hover {
    background: var(--hpt-form-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--hpt-form-shadow-lg);
}

.highpass-submit-btn:active {
    transform: translateY(0);
}

.highpass-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.highpass-submit-btn.loading {
    pointer-events: none;
}

.highpass-btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.highpass-submit-btn.loading .highpass-btn-spinner {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   Modal Popup
   ======================================== */

.highpass-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
}

.highpass-modal[aria-hidden="false"] {
    display: block;
}

/* Safety net: closeModal() sets aria-hidden="true" synchronously and relies
   on jQuery's fadeOut() to follow up with display:none once its animation
   finishes — if that timing/inline-style handoff ever loses the race (e.g.
   overlapping open/close clicks), the modal was left visibly stuck in the
   page until a hard refresh. Tying display directly to aria-hidden here,
   with !important, means the hidden state no longer depends on that
   animation completing correctly. */
.highpass-modal[aria-hidden="true"] {
    display: none !important;
}

.highpass-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.highpass-modal-container {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    margin: 2rem auto;
    background: var(--hpt-form-bg);
    border-radius: var(--hpt-form-radius-lg);
    box-shadow: var(--hpt-form-shadow-xl);
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Close-button bar and the title/description block below it share one dark
   background so they read as a single header banner, not two stacked pieces
   (a white close-bar sitting right above a differently-colored title area
   looked disconnected). Text/icon colors follow the surface they sit on:
   white on this dark banner, dark on the white form body below it. */
.highpass-modal-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--hpt-form-primary) 0%, var(--hpt-form-primary-hover) 100%);
    border-top-left-radius: var(--hpt-form-radius-lg);
    border-top-right-radius: var(--hpt-form-radius-lg);
    padding: 0.75rem 1.25rem 0;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.highpass-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #FFFFFF;
    transition: all 0.2s ease;
}

.highpass-modal-close:hover {
    background: rgba(255, 255, 255, 0.24);
    color: #FFFFFF;
}

.highpass-modal-content {
    padding: 0 1.5rem 1.5rem;
}

.highpass-modal .highpass-tour-request-wrapper {
    background: transparent;
    padding: 0;
}

.highpass-modal .highpass-tour-request-form {
    box-shadow: none;
}

/* Compact modal header: dark banner (matches .highpass-modal-header above,
   same gradient, no visible seam between them), white text, centered —
   kept tighter than the embedded "Private Tour Request" tab version below
   (he_st_tour_request_form(), on the single tour page's booking widget),
   which has room to breathe that a popup doesn't. Both use the same
   gradient/white-text treatment for visual consistency between the two. */
.highpass-modal .highpass-tour-request-header {
    background: linear-gradient(135deg, var(--hpt-form-primary) 0%, var(--hpt-form-primary-hover) 100%);
    margin: 0 -1.5rem 1.25rem;
    padding: 0.5rem 1.5rem 1.25rem;
    text-align: center;
}

.highpass-modal .highpass-tour-request-title {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
    color: #FFFFFF;
}

.highpass-modal .highpass-tour-request-description {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.88);
}

/* Embedded "Private Tour Request" tab (single tour page, next to Departures)
   — same dark gradient header/white text as the popup modal above, for
   visual consistency between the two. Bleeds edge-to-edge within
   .highpass-tour-request-embedded's own 1.5rem padding, matching its
   border-radius on the top corners. */
.highpass-tour-request-embedded .highpass-tour-request-header {
    background: linear-gradient(135deg, var(--hpt-form-primary) 0%, var(--hpt-form-primary-hover) 100%);
    margin: -1.5rem -1.5rem 1.5rem;
    padding: 1.5rem;
    border-top-left-radius: var(--hpt-form-radius-lg);
    border-top-right-radius: var(--hpt-form-radius-lg);
    text-align: center;
}

.highpass-tour-request-embedded .highpass-tour-request-title {
    color: #FFFFFF;
}

.highpass-tour-request-embedded .highpass-tour-request-description {
    color: rgba(255, 255, 255, 0.88);
}

/* Lock body scroll when modal is open */
body.highpass-modal-open {
    overflow: hidden;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .highpass-tour-request-title {
        font-size: 1.5rem;
    }

    .highpass-tour-request-description {
        font-size: 1rem;
    }

    .highpass-tour-request-form {
        padding: 1.5rem;
    }

    .highpass-form-section-title {
        font-size: 1.125rem;
    }

    .highpass-form-row-2col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highpass-form-row-phone {
        grid-template-columns: 100px 1fr;
        gap: 0.75rem;
    }

    .highpass-submit-btn {
        width: 100%;
        min-width: auto;
    }

    /* Modal takes full screen on mobile */
    .highpass-modal-container {
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .highpass-modal-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .highpass-tour-request-wrapper {
        padding: 1rem;
    }

    .highpass-tour-request-form {
        padding: 1rem;
    }

    .highpass-form-field input[type="text"],
    .highpass-form-field input[type="email"],
    .highpass-form-field input[type="tel"],
    .highpass-form-field input[type="number"],
    .highpass-form-field input[type="date"],
    .highpass-form-field select,
    .highpass-form-field textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .highpass-form-row-phone {
        grid-template-columns: 90px 1fr;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .highpass-modal,
    .highpass-submit-btn,
    .highpass-form-messages {
        display: none;
    }
}

/* ========================================
   Accessibility Enhancements
   ======================================== */

.highpass-form-field input:focus-visible,
.highpass-form-field select:focus-visible,
.highpass-form-field textarea:focus-visible,
.ts-wrapper.focus .ts-control {
    outline: 2px solid var(--hpt-form-primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   Custom Theme Integration
   ======================================== */

/* Allow theme color customization */
.highpass-tour-request-wrapper.custom-colors {
    --hpt-form-primary: var(--theme-primary-color, #4A90E2);
    --hpt-form-primary-hover: var(--theme-primary-hover, #357ABD);
}

/* css/flatpickr-custom.css */
/* ========================================
   Unified Flatpickr Datepicker Theme
   ========================================
   Applies consistently across ALL pages:
   - Activity pages
   - Tour request forms
   - Itinerary builder
   - Admin pages
   ======================================== */

/* Calendar popup container */
.flatpickr-calendar {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-family: inherit !important;
    overflow: visible !important;          /* prevent year/month clipping */
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #e2e8f0 !important;
}

/* ── Month / Year header bar ── */
.flatpickr-months {
    background: #1e293b !important;        /* dark header */
    border-radius: 12px 12px 0 0 !important;
    overflow: visible !important;          /* prevent year clipping */
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
    overflow: visible !important;
}

.flatpickr-current-month {
    font-size: 110% !important;
    color: #fff !important;
    overflow: visible !important;
    padding-top: 6px !important;
}

/* Year input wrapper – ensure full year is visible */
.flatpickr-current-month .numInputWrapper {
    width: 8ch !important;
    min-width: 8ch !important;
    overflow: visible !important;
}

.flatpickr-current-month .numInputWrapper:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px !important;
}

/* Hide the tiny up/down spinner arrows on the year input */
.flatpickr-current-month .numInputWrapper span,
.flatpickr-current-month .numInputWrapper span.arrowUp,
.flatpickr-current-month .numInputWrapper span.arrowDown,
.numInputWrapper span.arrowUp,
.numInputWrapper span.arrowDown {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

/* Year input */
.flatpickr-current-month input.cur-year {
    font-weight: 600 !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    padding: 2px 8px !important;
    cursor: pointer !important;
    width: 100% !important;
    -moz-appearance: textfield !important;         /* hide Firefox spinner */
}

/* Hide Chrome/Safari number spinner */
.flatpickr-current-month input.cur-year::-webkit-inner-spin-button,
.flatpickr-current-month input.cur-year::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    display: none !important;
}

/* Month dropdown */
.flatpickr-current-month select,
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 600 !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    padding: 2px 6px !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
    margin-right: 6px !important;
    cursor: pointer !important;
}

.flatpickr-current-month select:hover,
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: rgba(255, 255, 255, 0.18) !important;
}

/* Custom year dropdown (JS-created <select>) */
.flatpickr-year-dropdown {
    font-weight: 600 !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    padding: 2px 6px !important;
    cursor: pointer !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

.flatpickr-year-dropdown:hover {
    background: rgba(255, 255, 255, 0.18) !important;
}

.numInput.cur-year {
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

/* ── Navigation arrows ── */
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: #fff !important;
    padding: 8px !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    stroke: #fff !important;
    stroke-width: 2 !important;
}

/* ── Weekday headers ── */
.flatpickr-weekdays {
    background: #f8fafc !important;
}

.flatpickr-weekday {
    color: #475569 !important;
    font-weight: 600 !important;
    font-size: 90% !important;
}

/* ── Day cells ── */
.flatpickr-day {
    color: #334155 !important;
    border: none !important;
    border-radius: 50% !important;
    font-weight: 500 !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    background: #f1f5f9 !important;
    border-color: #f1f5f9 !important;
}

.flatpickr-day.today {
    border: 2px solid #e65100 !important;
    background: transparent !important;
}

.flatpickr-day.today:hover {
    background: #f1f5f9 !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #e65100 !important;
    border-color: #e65100 !important;
    color: #fff !important;
}

.flatpickr-day.inRange {
    background: rgba(230, 81, 0, 0.1) !important;
    border-color: rgba(230, 81, 0, 0.1) !important;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.flatpickr-disabled {
    color: #94a3b8 !important;
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #94a3b8 !important;
    opacity: 0.5 !important;
}

/* ── Available-date highlight (activity pages) ── */
.flatpickr-day.act-fp-available {
    background: #dbeafe !important;
    border-color: #3b82f6 !important;
    font-weight: 700 !important;
}

.flatpickr-day.act-fp-available:hover {
    background: #93c5fd !important;
}

.act-fp-price-dot {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7px;
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}

/* ── Admin has-price highlight ── */
.flatpickr-day.has-price {
    background: #e3f2fd !important;
    border-color: #2196f3 !important;
}

/* ── Mobile optimisation ── */
@media (max-width: 768px) {
    .flatpickr-calendar {
        width: 100% !important;
        max-width: 340px !important;
    }

    .flatpickr-day {
        height: 40px !important;
        line-height: 40px !important;
        max-width: 40px !important;
    }
}

/* css/tour-card.css */
/* Tour Card Component */
.hptours-tour-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.hptours-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 30;
}

.hptours-tour-card:focus-within,
.hptours-tour-card:has(.hptours-tour-card__meta-item--tooltip.is-open) {
    z-index: 40;
}

.hptours-tour-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
}

.hptours-tour-card--grid,
.hptours-tour-card--grid .hptours-tour-card__inner,
.hptours-tour-card--grid .hptours-tour-card__figure,
.hptours-tour-card--grid .hptours-tour-gallery,
.hptours-tour-card--grid .hptours-tour-card__content,
.hptours-tour-card--grid .hptours-tour-card__header,
.hptours-tour-card--grid .hptours-tour-card__footer,
.hptours-tour-card--grid .hptours-tour-card__availability {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Image Gallery Section */
.hptours-tour-card__figure {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin: 0;
}

.hptours-tour-gallery {
    width: 100%;
    height: 100%;
}

.hptours-tour-gallery .swiper-slide {
    overflow: hidden;
}

.elementor .hptours-tour-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 100%;
}

.hptours-tour-gallery .swiper-button-prev,
.hptours-tour-gallery .swiper-button-next {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-color, #1a5f7a);
}

.hptours-tour-gallery .swiper-button-prev:after,
.hptours-tour-gallery .swiper-button-next:after {
    font-size: 14px;
    font-weight: bold;
}

.hptours-tour-gallery .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.hptours-tour-gallery .swiper-pagination-bullet-active {
    background: #ffffff;
}

/* Wishlist Button */
.hptours-tour-card__wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.hptours-wishlist-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #475569;
}

.hptours-wishlist-btn:hover {
    background: #ffffff;
    color: var(--error-color, #F44336);
    transform: scale(1.1);
}

.hptours-wishlist-btn.active {
    color: var(--error-color, #F44336);
}

.hptours-wishlist-btn.active svg path {
    fill: currentColor;
}

/* Map Toggle */
.hptours-tour-card__map-toggle {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #475569;
}

.hptours-tour-card__map-toggle:hover {
    background: #ffffff;
    color: var(--primary-color, #1a5f7a);
    transform: scale(1.1);
}

/* Content Section */
.hptours-tour-card__content {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.hptours-tour-card__header {
    margin-bottom: 8px;
}

.hptours-tour-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.2;
}

.hptours-tour-card__title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hptours-tour-card__title a:hover {
    color: var(--primary-color, #1a5f7a);
}

.hptours-tour-card a:focus,
.hptours-tour-card a:focus-visible,
.hptours-tour-card button:focus,
.hptours-tour-card button:focus-visible {
    outline: none;
    box-shadow: none;
}

.hptours-tour-card__details-toggle {
    background: none;
    border: none;
    color: var(--primary-color, #1a5f7a);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.hptours-tour-card__details {
    margin-bottom: 8px;
    animation: slideDown 0.3s ease;
    overflow: visible;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.hptours-tour-card__description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hptours-tour-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    overflow: visible;
}

.hptours-tour-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    min-width: 0;
}

.hptours-tour-card__destinations {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.hptours-tour-card__destinations span {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hptours-tour-card__difficulty {
    flex: 1 1 100%;
}

.hptours-tour-card__tooltip-row {
    display: flex;
    align-items: center;
    gap: 10px 18px;
    min-width: 0;
}

.hptours-tour-card__meta-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hptours-tour-card__meta-item a {
    color: var(--primary-color, #1a5f7a);
    text-decoration: none;
}

.hptours-tour-card__meta-item a:hover {
    text-decoration: underline;
}

.hptours-tour-card__meta-item--tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 20;
    flex: 0 0 auto;
}

.hptours-tour-card__meta-item--tooltip > span {
    white-space: nowrap;
}

.hptours-tour-card__tooltip-trigger {
    width: 18px;
    height: 18px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #e2e8f0;
    color: #1a5f7a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.hptours-tour-card__tooltip-trigger:hover,
.hptours-tour-card__tooltip-trigger:focus-visible {
    background: #cbd5e1;
    color: #164e63;
}

.hptours-tour-card__tooltip-box {
    position: fixed;
    left: var(--hpt-tooltip-left, 50%);
    top: var(--hpt-tooltip-top, 50%);
    bottom: auto;
    z-index: 200;
    width: min(60vw, calc(100vw - 48px));
    max-width: min(60vw, calc(100vw - 48px));
    max-height: min(280px, calc(100vh - 160px));
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.9) rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
    border-radius: 12px;
    background: #0f172a;
    color: #f8fafc;
    font-size: 12px;
    line-height: 1.6;
    overflow-wrap: anywhere;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-50%, -6px, 0);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.hptours-tour-card__tooltip-box::-webkit-scrollbar {
    width: 8px;
}

.hptours-tour-card__tooltip-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.hptours-tour-card__tooltip-box::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.9);
    border-radius: 999px;
}

.hptours-tour-card__tooltip-box::-webkit-scrollbar-thumb:hover {
    background: rgba(186, 230, 253, 0.95);
}

.hptours-tour-card__tooltip-box::before {
    content: none;
}

.hptours-tour-card__tooltip-box::after {
    content: none;
}

.hptours-tour-card__tooltip-box p {
    margin: 0 0 8px;
}

.hptours-tour-card__tooltip-box h1,
.hptours-tour-card__tooltip-box h2,
.hptours-tour-card__tooltip-box h3,
.hptours-tour-card__tooltip-box h4,
.hptours-tour-card__tooltip-box h5,
.hptours-tour-card__tooltip-box h6 {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.hptours-tour-card__tooltip-box strong,
.hptours-tour-card__tooltip-box b {
    color: #f8fafc;
    font-weight: 700;
}

.hptours-tour-card__tooltip-box a {
    color: #bae6fd;
    text-decoration: underline;
}

.hptours-tour-card__tooltip-box a:hover,
.hptours-tour-card__tooltip-box a:focus-visible {
    color: #e0f2fe;
}

.hptours-tour-card__tooltip-box p:last-child,
.hptours-tour-card__tooltip-box h1:last-child,
.hptours-tour-card__tooltip-box h2:last-child,
.hptours-tour-card__tooltip-box h3:last-child,
.hptours-tour-card__tooltip-box h4:last-child,
.hptours-tour-card__tooltip-box h5:last-child,
.hptours-tour-card__tooltip-box h6:last-child,
.hptours-tour-card__tooltip-box ul:last-child,
.hptours-tour-card__tooltip-box ol:last-child {
    margin-bottom: 0;
}

.hptours-tour-card__tooltip-box ul,
.hptours-tour-card__tooltip-box ol {
    margin: 0 0 8px;
    padding-left: 18px;
}

.hptours-tour-card__tooltip-box li + li {
    margin-top: 4px;
}

.hptours-tour-card__tooltip-box--wide {
    left: var(--hpt-tooltip-left, 0px);
    top: var(--hpt-tooltip-top, 0px);
    right: auto;
    width: min(760px, calc(100vw - 48px));
    max-width: min(760px, calc(100vw - 48px));
}

.hptours-tour-card__tooltip-box--wide::before {
    content: none;
}

.hptours-tour-card__tooltip-box--columns {
    column-count: 3;
    column-gap: 20px;
    column-fill: balance;
}

.hptours-tour-card__tooltip-box--columns > * {
    break-inside: avoid;
}

.hptours-tour-card__tooltip-box--columns p,
.hptours-tour-card__tooltip-box--columns ul,
.hptours-tour-card__tooltip-box--columns ol,
.hptours-tour-card__tooltip-box--columns h1,
.hptours-tour-card__tooltip-box--columns h2,
.hptours-tour-card__tooltip-box--columns h3,
.hptours-tour-card__tooltip-box--columns h4,
.hptours-tour-card__tooltip-box--columns h5,
.hptours-tour-card__tooltip-box--columns h6 {
    break-inside: avoid;
    overflow-wrap: anywhere;
}

.hptours-tour-card__tooltip-box--columns ul,
.hptours-tour-card__tooltip-box--columns ol {
    padding-left: 16px;
}

.hptours-tour-card__meta-item--tooltip:hover .hptours-tour-card__tooltip-box,
.hptours-tour-card__meta-item--tooltip:focus-within .hptours-tour-card__tooltip-box,
.hptours-tour-card__tooltip-trigger:hover + .hptours-tour-card__tooltip-box,
.hptours-tour-card__tooltip-trigger:focus + .hptours-tour-card__tooltip-box,
.hptours-tour-card__tooltip-trigger:focus-visible + .hptours-tour-card__tooltip-box,
.hptours-tour-card__meta-item--tooltip.is-open .hptours-tour-card__tooltip-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform: translate3d(-50%, 0, 0);
}

@media (max-width: 1100px) {
    .hptours-tour-card__tooltip-box--wide {
        width: min(560px, calc(100vw - 32px));
        max-width: min(560px, calc(100vw - 32px));
    }

    .hptours-tour-card__tooltip-box--columns {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .hptours-tour-card__tooltip-box {
        width: min(90vw, calc(100vw - 24px));
        max-width: min(90vw, calc(100vw - 24px));
        max-height: min(240px, calc(100vh - 140px));
    }

    .hptours-tour-card__tooltip-box--wide {
        width: min(100vw - 24px, 420px);
        max-width: min(100vw - 24px, 420px);
        right: -8px;
    }

    .hptours-tour-card__tooltip-box--columns {
        column-count: 1;
    }
}

/* Footer Section */
.hptours-tour-card__footer {
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
    padding-top: 8px;
}

.hptours-tour-card__pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.hptours-tour-card__duration {
    font-size: 13px;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hptours-tour-card__duration span {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.hptours-tour-card__price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color, #1a5f7a);
}

.hptours-tour-card__button {
    display: block;
    width: 100%;
    padding: 8px;
    background: var(--primary-color, #1a5f7a);
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.hptours-tour-card__button:hover {
    background: var(--primary-color, #1a5f7a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.25);
}

/* Departures */
.hptours-tour-card__departures {
    margin-bottom: 8px;
}

.hptours-tour-card__departures-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.hptours-tour-card__departure {
    display: block;
    font-size: 13px;
    color: #475569;
    padding: 4px 0;
}

.hptours-tour-card__departure em {
    color: var(--success-color, #4CAF50);
    font-style: normal;
    font-weight: 500;
}

/* Availability Calendar */
.hptours-tour-card__availability {
    background: #f8fafc;
    padding: 8px 12px 8px 12px;
    border-radius: 0 0 14px 14px;
    margin: 0;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.hptours-tour-card__availability-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.hptours-tour-card__months {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.hptours-tour-card__months li {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hptours-tour-card__title {
        font-size: 18px;
    }

    .hptours-tour-card__price {
        font-size: 20px;
    }

    .hptours-tour-card__availability {
        padding: 12px 16px 12px 16px;
        gap: 10px;
        margin: 0;
    }

    .hptours-tour-card__availability-title {
        font-size: 12px;
    }

    .hptours-tour-card__months {
        gap: 10px;
    }

    .hptours-tour-card__months li {
        font-size: 12px;
    }
}

/* ========================================
   LIST LAYOUT STYLES
   ======================================== */

.hptours-tour-card--list {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    max-width: 100%;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.hptours-tour-card--list:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hptours-tour-card--list .hptours-tour-card__inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex: 1;
    overflow: visible;
}

/* Image section - Left side, 33% */
.hptours-tour-card--list .hptours-tour-card__figure {
    width: 33%;
    min-width: 340px;
    max-width: 440px;
    max-height: 420px;
    height: auto;
    flex-shrink: 0;
    border-radius: 0;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.hptours-tour-card--list .hptours-tour-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.elementor .hptours-tour-card--list .hptours-tour-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hptours-tour-card--list .hptours-tour-card__badge {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 2;
    background: var(--primary-color, #1a5f7a);
    color: #ffffff;
    padding: 8px 24px 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.hptours-tour-card--list .hptours-tour-card__badge span {
    display: block;
}

/* Grid layout badge */
.hptours-tour-card--grid .hptours-tour-card__badge {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 2;
    background: var(--primary-color, #1a5f7a);
    color: #ffffff;
    padding: 8px 24px 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.hptours-tour-card--grid .hptours-tour-card__badge span {
    display: block;
}

/* Tour-type pills — one small badge per hpt_tour_type term, each tinted from that
   term's own admin-set Badge Color, replacing the single comma-joined banner above.
   Shared across every card design (tour-card.css/hptours-tour-card-simple.css/
   advanced-search.css are always loaded together), so this lives in one place. */
.he-type-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.he-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 11px;
    border-radius: 20px;
    border: 1px solid;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: capitalize;
    white-space: nowrap;
    background: #fff;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

a.he-type-badge:hover {
    background: var(--badge-color, #1a5f7a);
    color: #fff !important;
}

/* The "Elementor override" block further down (.elementor-widget .hptours-tour-card a
   { color: inherit !important }) beats this pill's inline color — only !important can
   override an inline style, and that rule has it — leaving every pill's text the
   inherited default instead of its own badge color. Re-assert it here with equal
   !important but higher specificity (3 classes vs. that rule's 2 classes + tag) so the
   pill's own color wins again; the :hover rule above still needs its own higher-specificity
   override to turn white on top of this. */
.elementor-widget .hptours-tour-card .he-type-badge,
.elementor-widget .hptours-tour-card .he-type-badge:link,
.elementor-widget .hptours-tour-card .he-type-badge:visited {
    color: var(--badge-color, #1a5f7a) !important;
}

.elementor-widget .hptours-tour-card a.he-type-badge:hover {
    color: #fff !important;
}

.he-type-badge--more {
    background: rgba(0, 0, 0, 0.05);
    color: #555 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.hptours-tour-card--list .hptours-tour-card__type-badges,
.hptours-tour-card--grid .hptours-tour-card__type-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.hptours-tour-card--list .hptours-tour-card__type-badges .he-type-badge,
.hptours-tour-card--grid .hptours-tour-card__type-badges .he-type-badge {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* The other 6 card designs' type wrappers (.hpt-card-compact__type etc.) used to be the
   single solid-color badge itself; now that each holds .he-type-badges' own separately
   colored pills, strip the wrapper's own background/padding so it doesn't double-box —
   keep only whatever positioning (absolute/bottom/left/etc.) that design already had. */
.hpt-card-compact__type:has(.he-type-badges),
.hpt-card-minimal__type:has(.he-type-badges),
.hptours-hz-card__badge--type:has(.he-type-badges),
.hptours-simple-card__badge--yellow:has(.he-type-badges),
.hpt-card-overlay__type:has(.he-type-badges),
.hpt-tour-type-tag:has(.he-type-badges) {
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.hptours-tour-card--list .hptours-tour-card__wishlist {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

/* Map div removed from figure — button is now in the sidebar actions row */

.hptours-tour-card--list .hptours-tour-gallery {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hptours-tour-card--list .hptours-tour-gallery .swiper-wrapper {
    height: 100%;
}

.hptours-tour-card--list .hptours-tour-gallery .swiper-slide {
    height: 100%;
    overflow: hidden;
}

.elementor .hptours-tour-card--list .hptours-tour-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 420px;
}

/* Pagination dots - limit to 3 visible */
.hptours-tour-card--list .hptours-tour-gallery .swiper-pagination {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.hptours-tour-card--list .hptours-tour-gallery .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0;
}

.hptours-tour-card--list .hptours-tour-gallery .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

/* Hide extra pagination bullets beyond 5 */
.hptours-tour-card--list .hptours-tour-gallery .swiper-pagination-bullet:nth-child(n+6) {
    display: none;
}

/* Navigation arrows */
.hptours-tour-card--list .hptours-tour-gallery .swiper-button-prev,
.hptours-tour-card--list .hptours-tour-gallery .swiper-button-next {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-color, #1a5f7a);
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hptours-tour-card--list .hptours-tour-gallery .swiper-button-prev:hover,
.hptours-tour-card--list .hptours-tour-gallery .swiper-button-next:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hptours-tour-card--list .hptours-tour-gallery .swiper-button-prev:after,
.hptours-tour-card--list .hptours-tour-gallery .swiper-button-next:after {
    font-size: 14px;
    font-weight: 700;
}

/* Content wrapper - contains main content and sidebar side by side */
.hptours-tour-card--list .hptours-tour-card__content {
    flex: 1;
    display: flex;
    flex-direction: row;
    padding: 0;
    overflow: visible;
}

/* Main content column - left part of content area */
.hptours-tour-card--list .hptours-tour-card__main-content {
    flex: 1;
    min-width: 0;
    padding: 32px 0 0 32px;
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hptours-tour-card--list .hptours-tour-card__header {
    flex-direction: column;
    margin-bottom: 12px;
}

.hptours-tour-card--list .hptours-tour-card__title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: #0f172a;
}

.hptours-tour-card--list .hptours-tour-card__title a {
    color: inherit;
    text-decoration: none;
}

.hptours-tour-card--list .hptours-tour-card__title a:hover {
    color: var(--primary-color, #1a5f7a);
}

.hptours-tour-card--list .hptours-tour-card__details-toggle {
    text-align: left;
    padding: 0;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
    margin-bottom: 16px;
}

.hptours-tour-card--list .hptours-tour-card__details-toggle:hover {
    color: var(--primary-color, #1a5f7a);
}

.hptours-tour-card--list .hptours-tour-card__details {
    margin-bottom: 16px;
    overflow: visible;
}

.hptours-tour-card--list .hptours-tour-card__description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hptours-tour-card--list .hptours-tour-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    margin-bottom: 0;
    overflow: visible;
    min-width: 0;
    width: 100%;
}

.hptours-tour-card--list .hptours-tour-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
}

.hptours-tour-card--list .hptours-tour-card__destinations {
    order: 1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.hptours-tour-card--list .hptours-tour-card__difficulty {
    order: 2;
    width: 100%;
}

.hptours-tour-card--list .hptours-tour-card__tooltip-row {
    order: 3;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
}

.hptours-tour-card--list .hptours-tour-card__tooltip-row::-webkit-scrollbar {
    display: none;
}

.hptours-tour-card--list .hptours-tour-card__meta-item--tooltip {
    flex: 0 0 auto;
}

.hptours-tour-card--list .hptours-tour-card__meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #94a3b8;
}

/* Availability - List layout only */
.hptours-tour-card__availability--list {
    background: transparent;
    border-radius: 0;
    padding: 20px 32px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hptours-tour-card__availability--list .hptours-tour-card__availability-title {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    margin: 0;
    display: inline;
    white-space: nowrap;
}

.hptours-tour-card__availability--list .hptours-tour-card__months {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hptours-tour-card__availability--list .hptours-tour-card__months li {
    font-size: 14px;
    padding: 0;
    border-radius: 0;
    color: #0f172a;
    font-weight: 500;
}

.hptours-tour-card__availability--list .hptours-tour-card__months li.unavailable {
    color: #cbd5e1;
}

/* Sidebar - right part of content area */
.hptours-tour-card--list .hptours-tour-card__sidebar {
    width: 260px;
    flex-shrink: 0;
    padding: 32px 32px 0 28px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e5e7eb;
}

.hptours-tour-card--list .hptours-tour-card__footer {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hptours-tour-card--list .hptours-tour-card__pricing {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.hptours-tour-card--list .hptours-tour-card__duration {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.hptours-tour-card--list .hptours-tour-card__duration strong {
    display: block;
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
    margin-top: 2px;
}

.hptours-tour-card--list .hptours-tour-card__price {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.hptours-tour-card--list .hptours-tour-card__cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color, #1a5f7a);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-align: center;
    text-decoration: none;
}

.hptours-tour-card--list .hptours-tour-card__cta:hover {
    background: var(--primary-color, #1a5f7a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hptours-tour-card--list .hptours-tour-card__departures {
    flex: 1;
}

.hptours-tour-card--list .hptours-tour-card__departures-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;             /* force onto its own line */
    margin-bottom: 8px;
}

.hptours-tour-card--list .hptours-tour-card__no-departures {
    display: block;             /* prevent inline overflow with label */
    font-size: 14px;
    color: #94a3b8;
}

.hptours-tour-card--list .hptours-tour-card__departures-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    display: block;
}

.hptours-tour-card--list .hptours-tour-card__departure-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hptours-tour-card--list .hptours-tour-card__departure-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.hptours-tour-card--list .hptours-tour-card__departure-date {
    color: #1e293b;
    font-weight: 400;
}

.hptours-tour-card--list .hptours-tour-card__departure-status {
    color: var(--success-color, #4CAF50);
    font-style: italic;
    font-size: 13px;
}

.hptours-tour-card--list .hptours-tour-card__departure--empty::before {
    content: '';
}

/* Responsive */
@media (max-width: 1400px) {
    .hptours-tour-card--list .hptours-tour-card__figure {
        min-width: 300px;
    }

    .hptours-tour-card--list .hptours-tour-card__sidebar {
        width: 260px;
        padding: 24px 24px 24px 20px;
    }

    .hptours-tour-card--list .hptours-tour-card__main-content {
        padding: 24px 0 24px 24px;
    }

    .hptours-tour-card--list .hptours-tour-card__title {
        font-size: 28px;
    }

    .hptours-tour-card--list .hptours-tour-card__price {
        font-size: 36px;
    }
}

/* ========================================
   LIST LAYOUT - AVAILABILITY BOTTOM SECTION
   ======================================== */

.hptours-tour-card--list .hptours-tour-card__availability {
    width: 100%;
    padding: 20px 32px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hptours-tour-card--list .hptours-tour-card__availability-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    white-space: nowrap;
    margin: 0;
}

.hptours-tour-card--list .hptours-tour-card__months {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hptours-tour-card--list .hptours-tour-card__month {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    padding: 0;
}

.hptours-tour-card--list .hptours-tour-card__month.unavailable {
    color: #cbd5e1;
    font-weight: 400;
}

.hptours-tour-card--list .hptours-tour-card__month.available {
    color: #0f172a;
}

/* ========================================
   RESPONSIVE - LIST LAYOUT
   ======================================== */

@media (max-width: 1200px) {
    .hptours-tour-card--list .hptours-tour-card__inner {
        flex-direction: column;
    }

    .hptours-tour-card--list .hptours-tour-card__figure {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        max-height: 380px;
        aspect-ratio: 16/9;
    }

    .hptours-tour-card--list .hptours-tour-card__content {
        flex-direction: column;
        min-width: 0;
        width: 100%;
    }

    .hptours-tour-card--list .hptours-tour-card__main-content {
        padding: 24px 24px 20px 24px;
        min-width: 0;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .hptours-tour-card--list .hptours-tour-card__sidebar {
        width: 100%;
        min-width: 0;
        border-left: none;
        border-top: 1px solid #e5e7eb;
        padding: 20px 24px 24px 24px;
        box-sizing: border-box;
    }

    .hptours-tour-card--list .hptours-tour-card__pricing {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .hptours-tour-card--list .hptours-tour-card__duration {
        text-align: left;
    }

    .hptours-tour-card--list .hptours-tour-card__availability {
        padding: 20px 24px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hptours-tour-card--list .hptours-tour-card__figure {
        aspect-ratio: 3 / 2;
        max-height: 280px;
    }

    .hptours-tour-card--list .hptours-tour-card__main-content {
        padding: 16px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .hptours-tour-card--list .hptours-tour-card__sidebar {
        padding: 16px;
    }

    .hptours-tour-card--list .hptours-tour-card__title {
        font-size: 20px;
    }

    .hptours-tour-card--list .hptours-tour-card__description {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    .hptours-tour-card__destinations span {
        min-width: 0;
        flex: 1;
    }

    .hptours-tour-card--list .hptours-tour-card__price {
        font-size: 28px;
    }

    .hptours-tour-card--list .hptours-tour-card__availability {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .hptours-tour-card--list .hptours-tour-card__months {
        gap: 8px;
    }

    .hptours-tour-card--list .hptours-tour-card__month {
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════════════════
   Elementor override: ensure theme colors beat
   Elementor's global a / button styles
   ═══════════════════════════════════════════════════ */
.elementor-widget .hptours-tour-card a,
.elementor-widget .hptours-tour-card a:link,
.elementor-widget .hptours-tour-card a:visited {
    color: inherit !important;
    text-decoration: none !important;
}

.elementor-widget .hptours-tour-card a.hptours-tour-card__button,
.elementor-widget .hptours-tour-card a.hptours-tour-card__button:link,
.elementor-widget .hptours-tour-card a.hptours-tour-card__button:visited,
.elementor-widget .hptours-tour-card a.hptours-tour-card__button:hover,
.elementor-widget .hptours-tour-card a.hptours-tour-card__button:active {
    background: var(--primary-color, #1a5f7a) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.elementor-widget .hptours-tour-card__details-toggle,
.elementor-widget .hptours-tour-card__price {
    color: var(--primary-color, #1a5f7a) !important;
}

.elementor-widget .hptours-tour-card__title a,
.elementor-widget .hptours-tour-card__title a:link,
.elementor-widget .hptours-tour-card__title a:visited,
.elementor-widget .hptours-tour-card__title a:hover {
    color: var(--dark-color, #1A1A1A) !important;
    text-decoration: none !important;
}

.elementor-widget .hptours-tour-card__destinations a,
.elementor-widget .hptours-tour-card__destinations a:link,
.elementor-widget .hptours-tour-card__destinations a:visited {
    color: var(--primary-color, #1a5f7a) !important;
}

.elementor-widget .hptours-tour-card--list .hptours-tour-card__cta,
.elementor-widget .hptours-tour-card--list .hptours-tour-card__cta:link,
.elementor-widget .hptours-tour-card--list .hptours-tour-card__cta:visited,
.elementor-widget .hptours-tour-card--list .hptours-tour-card__cta:hover {
    background: var(--primary-color, #1a5f7a) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.elementor-widget .hptours-tour-card__badge {
    background: var(--primary-color, #1a5f7a) !important;
}

.elementor-widget .hptours-tour-card__departure em {
    color: var(--success-color, #4CAF50) !important;
}
/* css/hptours-tour-card-simple.css */
/* Tour Card Simple Widget Styles */

/* Ensure Elementor widget takes full container width */
.elementor-widget-hptours-tour-card-simple {
    width: 100%;
}

.elementor-widget-hptours-tour-card-simple > .elementor-widget-container {
    width: 100%;
}

.hptours-tour-card-simple-grid {
    display: grid;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hptours-tour-card-simple {
    width: 100%;
    min-width: 0;
}

.hptours-simple-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
    overflow: hidden;
    border: 1px solid #eef1f6;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hptours-simple-card__image-wrap {
    position: relative;
    padding: 12px;
    padding-bottom: 8px;
    background: #f8f9fa;
}

.hptours-simple-card__image {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.elementor .hptours-simple-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    object-position: center;
}

.hptours-simple-card__featured {
    position: absolute;
    top: 26px;
    left: 0;
    z-index: 2;
    background: var(--primary-color, #1a5f7a);
    color: #ffffff;
    padding: 8px 24px 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.hptours-simple-card__badges {
    position: absolute;
    top: 26px;
    right: 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.hptours-simple-card__badge {
    background: var(--error-color);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(255, 77, 79, 0.3);
}

.hptours-simple-card__badge--yellow {
    background: var(--warning-color);
    color: #1f2937;
    box-shadow: 0 6px 14px rgba(255, 212, 59, 0.35);
}

.hptours-simple-card__content {
    padding: 16px 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hptours-simple-card__title {
    font-size: 22px;
    font-weight: 700;
    margin: 6px 0 8px;
    color: #111827;
}

.hptours-simple-card__title a {
    color: inherit;
    text-decoration: none;
}

.hptours-simple-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    min-width: 0;
}

.hptours-simple-card__location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
}

.hptours-simple-card__location a {
    color: #4b5563;
    text-decoration: none;
}

.hptours-simple-card__location a:hover {
    color: var(--primary-color, #1a5f7a);
}

.hptours-simple-card__more-dest {
    color: #9ca3af;
    font-weight: 500;
    font-size: 12px;
    white-space: nowrap;
}

.hptours-simple-card__arrow {
    fill: #9ca3af;
    flex-shrink: 0;
}

.hptours-simple-card__duration {
    color: #4b5563;
    font-weight: 600;
}

.hptours-simple-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.hptours-simple-card__btn {
    background: var(--primary-color, #1a5f7a);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.hptours-simple-card__btn span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.25s ease;
}

.hptours-simple-card__btn span:last-child {
    position: absolute;
    inset: 0;
    justify-content: center;
    transform: translateY(120%);
}

.hptours-simple-card__btn:hover span:first-child {
    transform: translateY(-120%);
}

.hptours-simple-card__btn:hover span:last-child {
    transform: translateY(0);
}

.hptours-simple-card__price {
    text-align: right;
}

.hptours-simple-card__price h6 {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 4px;
    text-transform: lowercase;
}

.hptours-simple-card__price span {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.hptours-simple-card__price del {
    color: #9ca3af;
    font-weight: 600;
    font-size: 18px;
}

.hptours-simple-card__bottom ul {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.hptours-simple-card__bottom {
    margin-top: auto;
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.hptours-simple-card__bottom li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    position: relative;
    flex: 1;
    min-width: 0;
}

.hptours-simple-card__bottom li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: #111827;
}

.hptours-simple-card__info {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hptours-simple-card__info svg {
    fill: #9ca3af;
}

.hptours-simple-card__tooltip {
    position: fixed;
    background: #1f2937;
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 12px;
    width: 240px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 9999;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    white-space: normal;
    word-wrap: break-word;
    pointer-events: none;
}

.hptours-simple-card__tooltip span {
    font-weight: 700;
    color: #ffffff;
}

.hptours-simple-card__info:hover .hptours-simple-card__tooltip {
    opacity: 1;
    visibility: visible;
}

.hptours-simple-no-tours {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

@media (max-width: 1024px) {
    .hptours-tour-card-simple-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hptours-simple-card__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hptours-simple-card__price {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hptours-tour-card-simple-grid {
        grid-template-columns: 1fr !important;
    }

    .hptours-simple-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hptours-simple-card__location {
        white-space: normal;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hptours-simple-card__image {
        max-height: 200px;
    }
}

/* ==========================================================================
   Design 02 – Horizontal Card Layout
   ========================================================================== */

.hptours-tour-card-hz-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hptours-hz-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: box-shadow .3s ease, transform .25s ease;
}

.hptours-hz-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
    transform: translateY(-2px);
}

/* ---- Image ---- */

.hptours-hz-card__image-wrap {
    position: relative;
    flex: 0 0 320px;
    max-width: 320px;
    overflow: hidden;
}

.hptours-hz-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.elementor .hptours-hz-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.hptours-hz-card:hover .hptours-hz-card__image-wrap img {
    transform: scale(1.05);
}

.hptours-hz-card__featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--warning-color, #f59e0b);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.hptours-hz-card__badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.hptours-hz-card__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .4px;
    line-height: 1.3;
}

.hptours-hz-card__badge--sale {
    background: var(--error-color, #ef4444);
    color: #fff;
}

.hptours-hz-card__badge--type {
    background: rgba(0,0,0,.55);
    color: #fff;
}

/* ---- Body ---- */

.hptours-hz-card__body {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 24px;
    min-width: 0;
}

.hptours-hz-card__top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hptours-hz-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.hptours-hz-card__title a {
    color: #1e293b;
    text-decoration: none;
    transition: color .2s ease;
}

.hptours-hz-card__title a:hover {
    color: var(--primary-color, #FF6B35);
}

/* Meta row */

.hptours-hz-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

.hptours-hz-card__location,
.hptours-hz-card__duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hptours-hz-card__location svg {
    fill: #94a3b8;
    flex-shrink: 0;
}

.hptours-hz-card__duration svg {
    stroke: #94a3b8;
    flex-shrink: 0;
}

.hptours-hz-card__location a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.hptours-hz-card__location a:hover {
    color: var(--primary-color, #FF6B35);
}

/* Bottom row */

.hptours-hz-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.hptours-hz-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hptours-hz-card__price-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hptours-hz-card__price-value {
    font-size: 14px;
    color: #334155;
}

.hptours-hz-card__price-value strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color, #1a5f7a);
}

.hptours-hz-card__price-value del {
    font-size: 14px;
    color: #94a3b8;
    margin-right: 4px;
}

.hptours-hz-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary-color, #FF6B35);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, transform .15s ease;
}

.hptours-hz-card__btn:hover {
    background: var(--secondary-color, #004E89);
    transform: translateY(-1px);
}

.hptours-hz-card__btn svg {
    stroke: currentColor;
    transition: transform .2s ease;
}

.hptours-hz-card__btn:hover svg {
    transform: translateX(3px);
}

/* ==========================================================================
   Horizontal Card – Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .hptours-hz-card__image-wrap {
        flex: 0 0 240px;
        max-width: 240px;
    }
}

@media (max-width: 680px) {
    .hptours-hz-card {
        flex-direction: column;
    }

    .hptours-hz-card__image-wrap {
        flex: none;
        max-width: 100%;
        height: 220px;
    }

    .hptours-hz-card__body {
        padding: 16px;
    }

    .hptours-hz-card__bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hptours-hz-card__btn {
        justify-content: center;
    }
}

/* ==========================================================================
   Design 03 – Minimal Clean
   ========================================================================== */

.hpt-minimal-grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.hpt-card-minimal {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
    transition: box-shadow .3s ease, transform .3s ease;
    height: 100%;
}

.hpt-card-minimal:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    transform: translateY(-4px);
}

/* Image */

.hpt-card-minimal__figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.hpt-card-minimal__figure a {
    display: block;
    width: 100%;
    height: 100%;
}

.elementor .hpt-card-minimal__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.hpt-card-minimal:hover .hpt-card-minimal__figure img {
    transform: scale(1.08);
}

.hpt-card-minimal__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.hpt-card-minimal__badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    line-height: 1.4;
}

.hpt-card-minimal__badge--feat {
    background: #f59e0b;
    color: #fff;
}

.hpt-card-minimal__badge--sale {
    background: var(--error-color, #F44336);
    color: #fff;
}

.hpt-card-minimal__type {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: .3px;
}

/* Body */

.hpt-card-minimal__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 18px 18px;
    gap: 10px;
}

.hpt-card-minimal__title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hpt-card-minimal__title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.hpt-card-minimal__title a:hover {
    color: var(--primary-color, #FF6B35);
}

/* Chips */

.hpt-card-minimal__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hpt-card-minimal__chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    white-space: nowrap;
}

.hpt-card-minimal__chip svg {
    stroke: #94a3b8;
    flex-shrink: 0;
}

/* Footer */

.hpt-card-minimal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.hpt-card-minimal__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.hpt-card-minimal__price small {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.hpt-card-minimal__price del {
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 500;
}

.hpt-card-minimal__price strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color, #1a5f7a);
}

.hpt-card-minimal__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: var(--primary-color, #FF6B35);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}

.hpt-card-minimal__cta:hover {
    background: var(--secondary-color, #004E89);
    transform: translateY(-1px);
}

.hpt-card-minimal__cta svg {
    stroke: currentColor;
    transition: transform .2s;
}

.hpt-card-minimal__cta:hover svg {
    transform: translateX(3px);
}

/* Minimal – Responsive */

@media (max-width: 768px) {
    .hpt-card-minimal__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .hpt-card-minimal__cta {
        justify-content: center;
    }
}

/* ==========================================================================
   Design 04 – Overlay Glass
   ========================================================================== */

.hpt-overlay-grid {
    display: grid;
    gap: 24px;
    width: 100%;
    grid-auto-rows: 1fr;
}

.hpt-card-overlay {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 340px;
}

.hpt-card-overlay__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    position: relative;
}

.elementor .hpt-card-overlay__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.hpt-card-overlay:hover .hpt-card-overlay__img {
    transform: scale(1.06);
}

/* Gradient scrim */

.hpt-card-overlay__link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.05) 0%,
        rgba(0,0,0,.15) 40%,
        rgba(0,0,0,.7) 100%
    );
    z-index: 1;
    transition: background .3s;
}

.hpt-card-overlay:hover .hpt-card-overlay__link::after {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.1) 0%,
        rgba(0,0,0,.2) 40%,
        rgba(0,0,0,.75) 100%
    );
}

/* Top — price + tags */

.hpt-card-overlay__top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px;
    z-index: 2;
}

.hpt-card-overlay__price {
    background: rgba(255,255,255,.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}

.hpt-card-overlay__price small {
    font-weight: 400;
    font-size: 11px;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.hpt-card-overlay__price del {
    font-size: 12px;
    opacity: .6;
    font-weight: 500;
    text-decoration: line-through;
}

.hpt-card-overlay__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hpt-card-overlay__tag {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.hpt-card-overlay__tag--feat {
    background: rgba(245,158,11,.9);
    color: #fff;
}

.hpt-card-overlay__tag--sale {
    background: rgba(239,68,68,.9);
    color: #fff;
}

/* Glass panel — bottom */

.hpt-card-overlay__glass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(0);
    transition: transform .3s ease;
}

.hpt-card-overlay:hover .hpt-card-overlay__glass {
    transform: translateY(-4px);
}

.hpt-card-overlay__type {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 10px;
    background: rgba(255,255,255,.2);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .3px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.15);
}

.hpt-card-overlay__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hpt-card-overlay__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.85);
}

.hpt-card-overlay__dest,
.hpt-card-overlay__dur {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hpt-card-overlay__dest svg,
.hpt-card-overlay__dur svg {
    stroke: rgba(255,255,255,.7);
    flex-shrink: 0;
}

/* Overlay – Responsive */

@media (max-width: 768px) {
    .hpt-card-overlay {
        min-height: 320px;
    }

    .hpt-card-overlay__title {
        font-size: 17px;
    }

    .hpt-card-overlay__glass {
        padding: 16px;
    }
}

/* ==========================================================================
   Design 05 – Compact Tile
   ========================================================================== */

.hpt-compact-grid {
    display: grid;
    gap: 16px;
    width: 100%;
}

.hpt-card-compact {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}

.hpt-card-compact:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    border-color: var(--primary-color, #FF6B35);
}

/* Image */

.hpt-card-compact__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.hpt-card-compact__img a {
    display: block;
    width: 100%;
    height: 100%;
}

.elementor .hpt-card-compact__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.hpt-card-compact:hover .hpt-card-compact__img img {
    transform: scale(1.05);
}

.hpt-card-compact__sale {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--error-color, #F44336);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .3px;
    z-index: 2;
}

.hpt-card-compact__feat {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #f59e0b;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    z-index: 2;
}

/* Info */

.hpt-card-compact__info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px 14px 14px;
    gap: 6px;
}

.hpt-card-compact__dest {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--primary-color, #FF6B35);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hpt-card-compact__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #1e293b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hpt-card-compact__title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.hpt-card-compact__title a:hover {
    color: var(--primary-color, #FF6B35);
}

/* Row — duration + type */

.hpt-card-compact__row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hpt-card-compact__dur {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.hpt-card-compact__dur svg {
    stroke: #94a3b8;
    flex-shrink: 0;
}

.hpt-card-compact__type {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    background: #f1f5f9;
    border-radius: 4px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* Bottom — price + CTA */

.hpt-card-compact__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.hpt-card-compact__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.hpt-card-compact__price del {
    font-size: 12px;
    color: #cbd5e1;
    font-weight: 500;
}

.hpt-card-compact__price strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color, #1a5f7a);
}

.hpt-card-compact__btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: transparent;
    color: var(--primary-color, #FF6B35);
    font-size: 12px;
    font-weight: 700;
    border: 1.5px solid var(--primary-color, #FF6B35);
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s ease;
}

.hpt-card-compact__btn:hover {
    background: var(--primary-color, #FF6B35);
    color: #fff;
}

/* Compact – Responsive */

@media (max-width: 768px) {
    .hpt-compact-grid {
        gap: 12px;
    }

    .hpt-card-compact__title {
        font-size: 14px;
    }

    .hpt-card-compact__bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .hpt-card-compact__btn {
        justify-content: center;
        padding: 8px 14px;
    }
}

/* ═══════════════════════════════════════════════════
   View All Button (shared across all designs)
   ═══════════════════════════════════════════════════ */
.hpt-tour-simple__view-all {
    text-align: center;
    margin-top: 36px;
}
.hpt-tour-simple__view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color, #1a5f7a);
    background: #fff;
    border: 1.5px solid var(--primary-color, #1a5f7a);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.hpt-tour-simple__view-btn:hover {
    border-color: var(--primary-color, #1a5f7a);
    background: var(--primary-color, #1a5f7a);
    color: #fff;
    transform: translateY(-2px);
}
.hpt-tour-simple__view-btn svg {
    transition: transform .25s ease;
}
.hpt-tour-simple__view-btn:hover svg {
    transform: translate(2px, -2px);
}
@media (max-width: 767px) {
    .hpt-tour-simple__view-all { margin-top: 24px; }
}

/* ═══════════════════════════════════════════════════
   Elementor override: ensure theme colors beat
   Elementor's global a / button styles
   ═══════════════════════════════════════════════════ */
.elementor-widget .hptours-simple-card a,
.elementor-widget .hptours-simple-card a:link,
.elementor-widget .hptours-simple-card a:visited {
    text-decoration: none !important;
}

.elementor-widget .hptours-simple-card__btn,
.elementor-widget .hptours-simple-card__btn:link,
.elementor-widget .hptours-simple-card__btn:visited,
.elementor-widget .hptours-simple-card__btn:hover,
.elementor-widget .hptours-simple-card__btn:active,
.elementor-widget a.hptours-simple-card__btn {
    background: var(--primary-color, #1a5f7a) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.elementor-widget .hptours-simple-card__price,
.elementor-widget .hptours-simple-card__price span {
    color: var(--primary-color, #1a5f7a) !important;
}

.elementor-widget .hpt-card-compact__price strong,
.elementor-widget .hpt-card-minimal__price strong,
.elementor-widget .hptours-hz-card__price-value strong {
    color: var(--primary-color, #1a5f7a) !important;
}

.elementor-widget .hptours-simple-card__title a,
.elementor-widget .hptours-simple-card__title a:link,
.elementor-widget .hptours-simple-card__title a:visited {
    color: inherit !important;
    text-decoration: none !important;
}

.elementor-widget .hptours-simple-card__location a,
.elementor-widget .hptours-simple-card__location a:link,
.elementor-widget .hptours-simple-card__location a:visited {
    color: var(--primary-color, #1a5f7a) !important;
}

.elementor-widget .hpt-tour-simple__view-all a.hpt-tour-simple__view-btn,
.elementor-widget .hpt-tour-simple__view-all a.hpt-tour-simple__view-btn:link,
.elementor-widget .hpt-tour-simple__view-all a.hpt-tour-simple__view-btn:visited {
    color: var(--primary-color, #1a5f7a) !important;
    border-color: var(--primary-color, #1a5f7a) !important;
    text-decoration: none !important;
}
.elementor-widget .hpt-tour-simple__view-all a.hpt-tour-simple__view-btn:hover {
    background: var(--primary-color, #1a5f7a) !important;
    color: #fff !important;
}

/* css/fixed-departure-tour-card.css */
/* Tour Card Component */
.hptours-fixed-departure-tour-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hptours-fixed-departure-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hptours-fixed-departure-tour-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image Gallery Section */
.hptours-fixed-departure-tour-card__figure {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin: 0;
}

.hptours-tour-gallery {
    width: 100%;
    height: 100%;
}

.hptours-tour-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hptours-tour-gallery .swiper-button-prev,
.hptours-tour-gallery .swiper-button-next {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-color);
}

.hptours-tour-gallery .swiper-button-prev:after,
.hptours-tour-gallery .swiper-button-next:after {
    font-size: 14px;
    font-weight: bold;
}

.hptours-tour-gallery .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.hptours-tour-gallery .swiper-pagination-bullet-active {
    background: #ffffff;
}

/* Wishlist Button */
.hptours-fixed-departure-tour-card__wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.hptours-wishlist-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #475569;
}

.hptours-wishlist-btn:hover {
    background: #ffffff;
    color: var(--error-color);
    transform: scale(1.1);
}

.hptours-wishlist-btn.active {
    color: var(--error-color);
}

.hptours-wishlist-btn.active svg path {
    fill: currentColor;
}

/* Map Toggle */
.hptours-fixed-departure-tour-card__map-toggle {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #475569;
}

.hptours-fixed-departure-tour-card__map-toggle:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Content Section */
.hptours-fixed-departure-tour-card__content {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hptours-fixed-departure-tour-card__header {
    margin-bottom: 8px;
}

.hptours-fixed-departure-tour-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.2;
}

.hptours-fixed-departure-tour-card__title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hptours-fixed-departure-tour-card__title a:hover {
    color: var(--primary-color);
}

.hptours-fixed-departure-tour-card__details-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.hptours-fixed-departure-tour-card__details {
    margin-bottom: 8px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.hptours-fixed-departure-tour-card__description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hptours-fixed-departure-tour-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hptours-fixed-departure-tour-card__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
}

.hptours-fixed-departure-tour-card__meta-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hptours-fixed-departure-tour-card__meta-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.hptours-fixed-departure-tour-card__meta-item a:hover {
    text-decoration: underline;
}

/* Footer Section */
.hptours-fixed-departure-tour-card__footer {
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
    padding-top: 8px;
}

.hptours-fixed-departure-tour-card__pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.hptours-fixed-departure-tour-card__duration {
    font-size: 13px;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hptours-fixed-departure-tour-card__duration span {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.hptours-fixed-departure-tour-card__price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.hptours-fixed-departure-tour-card__button {
    display: block;
    width: 100%;
    padding: 8px;
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.hptours-fixed-departure-tour-card__button:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.25);
}

/* Departures */
.hptours-fixed-departure-tour-card__departures {
    margin-bottom: 8px;
}

.hptours-fixed-departure-tour-card__departures-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.hptours-fixed-departure-tour-card__departure {
    display: block;
    font-size: 13px;
    color: #475569;
    padding: 4px 0;
}

.hptours-fixed-departure-tour-card__departure em {
    color: var(--success-color);
    font-style: normal;
    font-weight: 500;
}

/* Availability Calendar */
.hptours-fixed-departure-tour-card__availability {
    background: #f8fafc;
    padding: 8px 12px 8px 12px;
    border-radius: 0 0 14px 14px;
    margin: 0;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.hptours-fixed-departure-tour-card__availability-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.hptours-fixed-departure-tour-card__months {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.hptours-fixed-departure-tour-card__months li {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hptours-fixed-departure-tour-card__title {
        font-size: 18px;
    }

    .hptours-fixed-departure-tour-card__price {
        font-size: 20px;
    }

    .hptours-fixed-departure-tour-card__availability {
        padding: 12px 16px 12px 16px;
        gap: 10px;
        margin: 0;
    }

    .hptours-fixed-departure-tour-card__availability-title {
        font-size: 12px;
    }

    .hptours-fixed-departure-tour-card__months {
        gap: 10px;
    }

    .hptours-fixed-departure-tour-card__months li {
        font-size: 12px;
    }
}

/* ========================================
   LIST LAYOUT STYLES
   ======================================== */

.hptours-fixed-departure-tour-card--list {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.hptours-fixed-departure-tour-card--list:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex: 1;
}

/* Image section - Left side, 33% */
.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__figure {
    width: 33%;
    min-width: 340px;
    max-width: 440px;
    max-height: 420px;
    height: auto;
    flex-shrink: 0;
    border-radius: 0;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.hptours-fixed-departure-tour-card--list .hptours-tour-gallery {
    height: 100%;
    overflow: hidden;
}

/* Content wrapper - contains main content and sidebar side by side */
.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__content {
    flex: 1;
    display: flex;
    flex-direction: row;
    padding: 0;
}

/* Main content column - left part of content area */
.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__main-content {
    flex: 1;
    padding: 32px 0 0 32px;
    display: flex;
    flex-direction: column;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__header {
    flex-direction: column;
    margin-bottom: 12px;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: #0f172a;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__title a {
    color: inherit;
    text-decoration: none;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__title a:hover {
    color: var(--primary-color);
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__details-toggle {
    text-align: left;
    padding: 0;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
    margin-bottom: 16px;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__details-toggle:hover {
    color: var(--primary-color);
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__details {
    margin-bottom: 16px;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #94a3b8;
}

/* Availability - List layout only */
.hptours-fixed-departure-tour-card__availability--list {
    background: transparent;
    border-radius: 0;
    padding: 20px 32px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hptours-fixed-departure-tour-card__availability--list .hptours-fixed-departure-tour-card__availability-title {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    margin: 0;
    display: inline;
    white-space: nowrap;
}

.hptours-fixed-departure-tour-card__availability--list .hptours-fixed-departure-tour-card__months {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hptours-fixed-departure-tour-card__availability--list .hptours-fixed-departure-tour-card__months li {
    font-size: 14px;
    padding: 0;
    border-radius: 0;
    color: #0f172a;
    font-weight: 500;
}

.hptours-fixed-departure-tour-card__availability--list .hptours-fixed-departure-tour-card__months li.unavailable {
    color: #cbd5e1;
}

/* Sidebar - right part of content area */
.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__sidebar {
    width: 260px;
    flex-shrink: 0;
    padding: 32px 32px 0 28px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e5e7eb;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__footer {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__pricing {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__duration {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__duration strong {
    display: block;
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
    margin-top: 2px;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__price {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-align: center;
    text-decoration: none;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__cta:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__departures {
    flex: 1;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__departures-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    display: block;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__departure-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__departure-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__departure-item::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__departure-date {
    color: #1e293b;
    font-weight: 400;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__departure-status {
    color: var(--success-color);
    font-style: italic;
    font-size: 13px;
}

.hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__departure--empty::before {
    content: '';
}

/* Responsive */
@media (max-width: 1400px) {
    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__figure {
        min-width: 300px;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__sidebar {
        width: 260px;
        padding: 24px 24px 24px 20px;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__main-content {
        padding: 24px 0 24px 24px;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__title {
        font-size: 28px;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__price {
        font-size: 36px;
    }
}

@media (max-width: 1200px) {
    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__inner {
        flex-direction: column;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__figure {
        width: 100%;
        min-width: auto;
        max-width: none;
        max-height: 380px;
        aspect-ratio: 16/9;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__content {
        flex-direction: column;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__main-content {
        padding: 24px 24px 20px 24px;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e5e7eb;
        padding: 20px 24px 24px 24px;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__pricing {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__duration {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__figure {
        aspect-ratio: 3 / 2;
        max-height: 320px;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__main-content {
        padding: 20px;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__sidebar {
        padding: 20px;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__title {
        font-size: 24px;
    }

    .hptours-fixed-departure-tour-card--list .hptours-fixed-departure-tour-card__price {
        font-size: 32px;
    }
}

/* css/advanced-search.css */
/* ============================================================================
   Advanced Tour Search System Styles
   ============================================================================ */

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --transition: all 0.3s ease;
}

.hpt-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.hpt-search-header {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.28);
}

.hpt-hero-illustration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    line-height: 0;
    pointer-events: none;
    user-select: none;
}

.hpt-hero-illustration svg {
    display: block;
    width: 100%;
    height: 190px;
}

.hpt-search-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: white;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
    letter-spacing: -0.5px;
}

.hpt-search-subtitle {
    font-size: 1.05rem;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.85);
}

.hpt-search-bar-header {
    margin-top: 0;
}

.hpt-search-form {
    display: flex;
    gap: 10px;
    max-width: 660px;
    margin: 0 auto;
}

.hpt-search-input {
    flex: 1;
    padding: 14px 22px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.15);
    color: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hpt-search-input::placeholder {
    color: rgba(255,255,255,0.65);
}

.hpt-search-input:focus {
    outline: none;
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 4px 16px rgba(0,0,0,0.20);
}

.hpt-search-btn {
    padding: 14px 34px;
    background: white;
    color: #0f2027;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hpt-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Main Search Layout */
.hpt-search-main {
    padding: 40px 0;
    background: var(--light-gray);
    min-height: calc(100vh - 200px);
    min-height: calc(100svh - 200px); /* iOS: plain vh overshoots the visible area */
}

.hpt-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.hpt-search-wrapper {
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    grid-template-rows: auto !important;
    gap: 25px;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    overflow: visible !important;
}

/* Sidebar Filters */
.hpt-search-sidebar {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
    max-height: none;
    overflow-y: visible;
    grid-column: 1 !important;
    grid-row: 1 !important;
    box-sizing: border-box;
}

.hpt-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.hpt-filters-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.hpt-clear-filters {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.hpt-clear-filters:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Mobile off-canvas drawer chrome — hidden on desktop, shown at <=768px below */
.hpt-mobile-filter-toggle,
.hpt-filter-backdrop,
.hpt-sidebar-close {
    display: none;
}

/* Filter Sections */
.hpt-filter-section {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.hpt-filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hpt-filter-toggle {
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
}

.hpt-filter-toggle:hover {
    color: var(--secondary-color);
}

.hpt-filter-toggle i {
    transition: var(--transition);
}

.hpt-filter-toggle.collapsed i {
    transform: rotate(-90deg);
}

.hpt-filter-content {
    padding-top: 15px;
    max-height: 500px;
    overflow-y: auto;
    display: none;
}

.hpt-filter-content.active {
    display: block;
}

/* Filter Options (Checkboxes) */
.hpt-filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hpt-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: var(--transition);
}

.hpt-checkbox-label:hover {
    color: var(--secondary-color);
}

.hpt-checkbox-label input[type="checkbox"],
.hpt-checkbox-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.hpt-checkbox-label span {
    flex: 1;
}

.hpt-checkbox-label .hpt-count {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-left: auto;
}

/* Range Sliders */
.hpt-range-slider {
    position: relative;
    margin-bottom: 15px;
    padding: 0 5px;
}

.hpt-range-slider input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--light-gray);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.hpt-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.hpt-range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.hpt-range-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.hpt-range-values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 10px;
    padding: 8px;
    background: var(--light-gray);
    border-radius: 4px;
}

/* Apply Filters Button */
.hpt-apply-filters-btn {
    width: 100%;
    padding: 12px;
    margin-top: 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.hpt-apply-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

/* Results Section */
.hpt-search-results {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    min-height: 500px;
    width: 100%;
    grid-column: 2 !important;
    grid-row: 1 !important;
    box-sizing: border-box;
    overflow: visible !important;
}

.hpt-results-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
    flex-wrap: wrap;
    gap: 15px;
}

.hpt-results-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    order: 1;
}

.hpt-results-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 2;
}

.hpt-results-sort label {
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
}

.hpt-sort-select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
}

.hpt-sort-select:hover,
.hpt-sort-select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* View Toggle Buttons - Modern Pill Design */
.hpt-view-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 50px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 1px solid #e2e8f0;
    order: 3;
    margin-left: auto;
}

.hpt-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 90px;
    height: 40px;
    padding: 0 20px;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
}

.hpt-view-btn:hover:not(.active) {
    color: var(--secondary-color, #7c3aed);
    background: rgba(124, 58, 237, 0.05);
}

.hpt-view-btn.active {
    background: linear-gradient(135deg, var(--secondary-color, #7c3aed) 0%, #6d28d9 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4),
                0 2px 6px rgba(124, 58, 237, 0.25);
}

.hpt-view-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke-width: 2.5;
}

.hpt-view-btn span {
    display: none;
}

@media (min-width: 576px) {
    .hpt-view-btn {
        min-width: 100px;
    }
    
    .hpt-view-btn span {
        display: inline;
    }
}

/* List View Specific Styles */
.hptours-view-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Previously switched to a 2-column grid between 600-1400px to avoid
   wasting horizontal space on a single full-width card — but "List" view
   showing 2 cards side by side reads as broken/wrong to users regardless of
   the space-usage rationale (reported live, twice). List now always means
   genuinely single-column at every width; "Grid" is the only multi-column
   view. */

/* hptours-tour-cards-widget.css's ".hptours-tour-cards-grid { display: grid; }"
   is the same single-class specificity as the line below — whichever
   stylesheet loads second wins the tie, which used to make this element
   ignore data-view entirely and stay visible once inline styles (from the
   old jQuery fadeIn/fadeOut toggle) stopped being the thing forcing it
   hidden. Scope this selector under the container class so it always wins
   regardless of file load order. */
.hptours-tour-cards-container .hptours-view-grid {
    display: none;
}

.hptours-tour-cards-container[data-view="grid"] .hptours-view-grid {
    display: grid;
}

.hptours-tour-cards-container[data-view="grid"] .hptours-view-list {
    display: none;
}

/* Tours Grid */
.hpt-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

/* Tour Cards Container */
.hptours-tour-cards-container {
    min-height: 200px;
    min-width: 0;
    width: 100%;
    overflow: visible !important;
}

/* List view items must not expand container */
.hptours-tour-cards-list {
    min-width: 0;
    max-width: 100%;
}

.hptours-tour-cards-list > * {
    min-width: 0;
}

.hptours-view-grid {
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.hptours-view-grid > * {
    min-width: 0;
}

/* Tour Card */
.hpt-search-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hpt-search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.hpt-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--light-gray);
}

.hpt-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hpt-search-card:hover .hpt-card-image {
    transform: scale(1.1);
}

.hpt-card-overlays {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
}

.hpt-discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    min-width: 50px;
}

.hpt-discount-badge span {
    display: block;
    line-height: 1.2;
}

.hpt-tour-type-tag {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hpt-card-quick-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.hpt-search-card:hover .hpt-card-quick-actions {
    opacity: 1;
}

.hpt-wishlist-btn,
.hpt-view-map-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hpt-wishlist-btn:hover,
.hpt-view-map-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hpt-wishlist-btn {
    color: var(--danger-color);
}

.hpt-wishlist-btn.saved {
    background: var(--danger-color);
    color: white;
}

.hpt-view-map-btn {
    color: var(--secondary-color);
}

/* Card Content */
.hpt-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hpt-card-title {
    margin: 0 0 12px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
}

.hpt-card-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.hpt-card-title a:hover {
    color: var(--secondary-color);
}

.hpt-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.hpt-stars {
    display: flex;
    gap: 2px;
}

.hpt-stars i {
    color: var(--warning-color);
    font-size: 0.9rem;
}

.hpt-rating-value {
    font-weight: 600;
    color: var(--text-color);
}

.hpt-review-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.hpt-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 15px;
    flex: 1;
    line-height: 1.5;
}

.hpt-card-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    margin: 15px 0;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 6px;
    font-size: 0.9rem;
}

.hpt-card-details dt {
    font-weight: 600;
    color: var(--text-color);
}

.hpt-card-details dd {
    margin: 0;
    color: var(--text-light);
    word-break: break-word;
}

.hpt-card-details a {
    color: var(--secondary-color);
    text-decoration: none;
}

.hpt-card-details a:hover {
    text-decoration: underline;
}

/* Card Footer */
.hpt-card-footer {
    padding: 15px 20px 20px;
    border-top: 1px solid var(--border-color);
}

.hpt-price-section {
    margin-bottom: 15px;
}

.hpt-price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.hpt-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 5px;
}

.hpt-original-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.hpt-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.hpt-price-per {
    font-size: 0.8rem;
    color: var(--text-light);
}

.hpt-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hpt-btn {
    padding: 10px 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-align: center;
}

.hpt-btn-primary {
    background: var(--secondary-color);
    color: white;
}

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

.hpt-btn-secondary {
    background: var(--light-gray);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.hpt-btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* No Results */
.hpt-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 30px;
    background: var(--light-gray);
    border-radius: 8px;
}

.hpt-no-results p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Pagination */
.hpt-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.hpt-pagination ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.hpt-pagination a,
.hpt-pagination span {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.hpt-pagination a:hover {
    border-color: var(--secondary-color);
    background: var(--light-gray);
    color: var(--secondary-color);
}

.hpt-pagination .current {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hpt-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* <=1024px covers the full tablet range too — most iPads are 744-834px wide
   in portrait, i.e. above a 768px cutoff, so a drawer that only kicked in
   below 768px left every iPad on the old cramped-but-still-a-column sidebar.
   Now everything from phones through tablets gets the off-canvas drawer;
   only genuine desktop widths keep the classic side-by-side sidebar. */
@media (max-width: 1024px) {
    .hpt-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hpt-search-main {
        overflow-x: hidden;
    }

    .hpt-search-wrapper {
        grid-template-columns: minmax(0, 1fr) !important; /* minmax(0,1fr) prevents min-content blowout */
        overflow: hidden;
    }

    /* Sidebar becomes an off-canvas drawer instead of a stacked block — a big
       filter panel pushed above the results ate most of the screen on phones. */
    .hpt-search-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        width: min(320px, 85vw);
        height: 100dvh;
        max-height: 100dvh;
        margin: 0;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 0.28s ease;
        overflow-y: auto;
        padding: 16px !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        min-width: 0;
        box-sizing: border-box;
        box-shadow: 4px 0 24px rgba(15, 23, 42, 0.18);
    }

    .hpt-search-sidebar.is-open {
        transform: translateX(0);
    }

    .hpt-sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: none;
        border-radius: 50%;
        background: var(--light-gray);
        color: var(--text-color);
        cursor: pointer;
        margin-left: 10px;
        flex-shrink: 0;
    }

    .hpt-filters-header {
        flex-wrap: nowrap;
    }

    .hpt-filter-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5);
        z-index: 9999;
    }

    .hpt-filter-backdrop.is-open {
        display: block;
    }

    body.hpt-drawer-open {
        overflow: hidden;
    }

    .hpt-mobile-filter-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        margin-bottom: 14px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: white;
        color: var(--text-color);
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
    }

    .hpt-mobile-filter-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        border-radius: 999px;
        background: var(--secondary-color, #7c3aed);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
    }

    .hpt-search-results {
        padding: 16px !important;
        grid-column: 1 !important;
        grid-row: 2 !important;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hpt-tours-grid {
        grid-template-columns: 1fr;
    }

    .hpt-search-title {
        font-size: 2rem;
    }

    /* Keep search bar as a row — just shrink it */
    .hpt-search-form {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .hpt-search-input {
        min-width: 0;   /* allow flex shrink */
    }

    .hpt-search-btn {
        flex-shrink: 0;
        padding: 14px 18px;
        white-space: nowrap;
    }

    /* Results header: stack count above toggle */
    .hpt-results-header {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }

    .hpt-results-count {
        flex: 1;
    }

    /* Shrink view toggle pill on mobile */
    .hpt-view-toggle {
        margin-left: 0;
        flex-shrink: 0;
    }

    .hpt-view-btn {
        min-width: 40px;
        padding: 0 12px;
        height: 36px;
    }

    /* Search hero inner on mobile */
    .hpt-search-hero__inner {
        padding: 56px 16px 64px;
    }
}

/* Between the drawer cutoff and ~1300px, the sidebar is back to sitting
   inline (desktop layout) but the results column is still fairly narrow
   (roughly 680-900px here vs ~1055px once the 1400px container is fully
   reached) — 3 grid columns get squeezed into ~230-300px cards. Force 2
   until there's genuinely enough room; this is the gap between iPad
   landscape widths (1024-1194px, still cramped with the sidebar) and true
   desktop (>=1300px, where 3 columns has real room). */
@media (min-width: 1025px) and (max-width: 1300px) {
    .hpt-search-results .hptours-tour-cards-grid.hptours-grid-cols-d-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Owner requirement, stated explicitly and repeatedly: 13-inch-and-up screens
   must show the rich horizontal "list grid" card (image left, price/dates
   sidebar right) — never the stacked mobile layout. Below 1025px the filter
   sidebar becomes an off-canvas drawer (see the <=1024px block above) so the
   results column already gets the *full* container width there; between
   1025px and the ~1400px point .hpt-container hits its max-width, the inline
   280px filter sidebar eats into that column, so the card's default fixed
   widths (340px image, 260px price panel) no longer fit and used to force a
   stack. Instead of stacking, shrink the image/sidebar themselves so the row
   layout keeps working at any inline-sidebar width — verified overflow-free
   from 1025px up via headless-browser measurement, not by eyeballing a
   screenshot at one resolution. */
@media (min-width: 1025px) and (max-width: 1400px) {
    /* Cancel tour-card.css's own sitewide <=1200px stacking rule (it doesn't
       know about this page's inline filter sidebar) for the 1025-1200px
       slice where both blocks would otherwise apply at once. */
    .hpt-search-results .hptours-tour-card--list .hptours-tour-card__inner {
        flex-direction: row;
    }

    .hpt-search-results .hptours-tour-card--list .hptours-tour-card__content {
        flex-direction: row;
    }

    .hpt-search-results .hptours-tour-card--list .hptours-tour-card__figure {
        width: 30%;
        min-width: 200px;
        max-width: 300px;
        max-height: none;
        aspect-ratio: 4 / 3;
    }

    .hpt-search-results .hptours-tour-card--list .hptours-tour-card__main-content {
        padding: 20px 0 16px 20px;
        min-width: 0;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .hpt-search-results .hptours-tour-card--list .hptours-tour-card__sidebar {
        width: 210px;
        padding: 20px 20px 0 16px;
        border-left: 1px solid #e5e7eb;
        border-top: none;
    }

    .hpt-search-results .hptours-tour-card--list .hptours-tour-card__title {
        font-size: 22px;
    }

    .hpt-search-results .hptours-tour-card--list .hptours-tour-card__price {
        font-size: 28px;
    }
}

/* Grid view's own column classes (hptours-tour-cards-widget.css) drop straight
   from 3 columns to 1 at <=768px — fine for genuine phone-portrait widths,
   but the same 600-768px odd-aspect-ratio gap (unfolded foldables in
   landscape, etc.) that needed a List-view fix above gets a single stretched
   grid card too. Match List view's 2-column treatment here. */
@media (min-width: 600px) and (max-width: 768px) {
    .hpt-search-results .hptours-grid-cols-m-1 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    .hpt-search-title {
        font-size: 1.5rem;
    }

    .hpt-search-btn {
        padding: 14px 14px;
        font-size: 0;        /* hide label text, keep icon */
        gap: 0;
    }

    .hpt-search-btn i {
        font-size: 16px;
    }

    .hpt-card-actions {
        grid-template-columns: 1fr;
    }

    .hpt-search-hero.hpt-tax-hero {
        min-height: 300px;
    }

    .hpt-search-hero__inner {
        padding: 44px 16px 52px;
    }

    .hpt-search-main {
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .hpt-search-main {
        padding: 12px 0;
    }

    .hpt-container {
        padding: 0 12px;
    }

    .hpt-search-sidebar,
    .hpt-search-results {
        padding: 12px !important;
    }
}

/* ============================================================================
   Advanced Tour Search - Elementor Widget Styles
   ============================================================================ */

.hptours-search-widget {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    animation: slideInUp 0.5s ease;
}

.hptours-search-widget-header {
    padding: 40px 32px;
    text-align: center;
    background: #f8fafc;
}

.hptours-search-widget-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text-color, #1f2937);
}

.hptours-search-widget-subtitle {
    font-size: 1rem;
    margin: 0;
    color: var(--text-light, #64748b);
}

.hptours-search-widget-form {
    background: #ffffff;
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    align-items: end;
}

.hptours-search-widget-fields {
    display: contents;
}

.hptours-search-widget-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hptours-search-widget-select {
    padding: 12px 44px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%231f2937' d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E") no-repeat right 16px center;
    background-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    color: var(--text-color, #1f2937);
    box-shadow: none;
}

.hptours-search-widget-select:hover {
    border-color: var(--primary-color, #1e3a8a);
}

.hptours-search-widget-select:focus {
    outline: none;
    border-color: var(--secondary-color, #7c3aed);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.hptours-search-widget-pill {
    flex: 0 1 auto;
}

.hptours-search-widget-button {
    padding: 14px 28px;
    background: var(--primary-color, #1e3a8a);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: capitalize;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
}

.hptours-search-widget-button span {
    font-size: 1.1rem;
}

.hptours-search-widget-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(30, 64, 175, 0.35);
}

.hptours-search-widget-button:active {
    transform: translateY(0);
}

.hptours-search-widget-results {
    padding: 32px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.hptours-search-widget-results.is-loading {
    opacity: 0.55;
}

.hptours-search-widget-results.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.8), rgba(248,250,252,0.9));
    border-radius: inherit;
    animation: hptWidgetShimmer 1s linear infinite;
    opacity: 0.7;
    pointer-events: none;
}

.hptours-search-widget-results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.hptours-search-widget-results-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-color, #0f172a);
}

.hptours-search-widget-results-summary {
    margin: 6px 0 0;
    font-size: 0.95rem;
    color: var(--text-light, #475569);
}

.hptours-search-widget-view-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cbd5f5;
    border-radius: 999px;
    background: #ffffff;
    padding: 2px;
    gap: 2px;
}

.hptours-search-widget-view-btn {
    border: none;
    background: transparent;
    color: var(--text-light, #475569);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.hptours-search-widget-view-btn:hover {
    color: var(--text-color, #0f172a);
    background: rgba(148, 163, 184, 0.15);
}

.hptours-search-widget-view-btn.is-active {
    background: var(--primary-color, #1e3a8a);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.hptours-search-widget-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.hptours-search-widget-results-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hptours-search-widget-results-list > * {
    width: 100%;
}

.hptours-search-widget-empty {
    padding: 30px;
    border: 1px dashed #cbd5f5;
    border-radius: 16px;
    text-align: center;
    color: var(--text-light, #475569);
    background: rgba(148, 163, 184, 0.08);
}

.hptours-search-widget-card-fallback {
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
}

.hptours-search-widget-card-fallback h4 {
    margin: 0;
}

.hptours-search-widget-pagination {
    display: flex;
    justify-content: center;
}

.hptours-search-widget-pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.hptours-search-widget-pagination a,
.hptours-search-widget-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #cbd5f5;
    color: var(--text-color, #0f172a);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hptours-search-widget-pagination a:hover,
.hptours-search-widget-pagination .current {
    background: var(--primary-color, #1e3a8a);
    color: #ffffff;
    border-color: var(--primary-color, #1e3a8a);
}

@media (max-width: 640px) {
    .hptours-search-widget-results-header {
        flex-direction: column;
        align-items: stretch;
    }

    .hptours-search-widget-view-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .hptours-search-widget-view-btn {
        flex: 1;
        text-align: center;
    }
}

/* Variant 1 – Gradient Hero */
.hptours-search-widget--style-1 .hptours-search-widget-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    color: #ffffff;
}

.hptours-search-widget--style-1 .hptours-search-widget-title,
.hptours-search-widget--style-1 .hptours-search-widget-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.hptours-search-widget--style-1 .hptours-search-widget-form {
    background: #ffffff;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hptours-search-widget--style-1 .hptours-search-widget-select {
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

.hptours-search-widget--style-1 .hptours-search-widget-button {
    background: linear-gradient(120deg, #f97316, #2563eb);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.35);
}

.hptours-search-widget--style-1 .hptours-search-widget-results {
    background: #ffffff;
    border-top-color: #e2e8f0;
}

/* Variant 2 – Split Showcase */
.hptours-search-widget--style-2 {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.16);
}

.hptours-search-widget--style-2 .hptours-search-widget-header {
    background: linear-gradient(180deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
    text-align: left;
    padding: 48px 36px;
    position: relative;
}

.hptours-search-widget--style-2 .hptours-search-widget-header::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    opacity: 0.4;
}

.hptours-search-widget--style-2 .hptours-search-widget-title {
    font-size: 2.2rem;
}

.hptours-search-widget--style-2 .hptours-search-widget-form {
    background: #ffffff;
    padding: 40px;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    border-left: 1px solid #e2e8f0;
}

.hptours-search-widget--style-2 .hptours-search-widget-button {
    justify-self: end;
    padding: 16px 36px;
    border-radius: 999px;
    background: linear-gradient(120deg, #14b8a6, #0ea5e9);
}

.hptours-search-widget--style-2 .hptours-search-widget-results {
    grid-column: 1 / -1;
    background: #ffffff;
    border-top: none;
    border-left: 1px solid #e2e8f0;
    border-radius: 0 0 28px 28px;
}

/* Variant 3 – Dark Glass */
.hptours-search-widget--style-3 {
    background: linear-gradient(135deg, #020617, #0f172a 60%, #312e81);
    border-radius: 28px;
    color: #ffffff;
    overflow: hidden;
}

.hptours-search-widget--style-3 .hptours-search-widget-header {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
}

.hptours-search-widget--style-3 .hptours-search-widget-title {
    color: #ffffff;
}

.hptours-search-widget--style-3 .hptours-search-widget-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.hptours-search-widget--style-3 .hptours-search-widget-form {
    background: rgba(15, 23, 42, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hptours-search-widget--style-3 .hptours-search-widget-select {
    background-color: rgba(15, 23, 42, 0.65);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.35);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
}

.hptours-search-widget--style-3 .hptours-search-widget-button {
    background: linear-gradient(120deg, #f97316, #facc15);
    color: #0f172a;
}

.hptours-search-widget--style-3 .hptours-search-widget-results {
    background: rgba(15, 23, 42, 0.65);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(248, 250, 252, 0.9);
}

.hptours-search-widget--style-3 .hptours-search-widget-results-title,
.hptours-search-widget--style-3 .hptours-search-widget-results-summary,
.hptours-search-widget--style-3 .hptours-search-widget-pagination a,
.hptours-search-widget--style-3 .hptours-search-widget-pagination span {
    color: #f8fafc;
}

.hptours-search-widget--style-3 .hptours-search-widget-pagination a,
.hptours-search-widget--style-3 .hptours-search-widget-pagination span {
    border-color: rgba(255, 255, 255, 0.25);
}

.hptours-search-widget--style-3 .hptours-search-widget-pagination a:hover,
.hptours-search-widget--style-3 .hptours-search-widget-pagination .current {
    background: rgba(248, 250, 252, 0.2);
    border-color: rgba(248, 250, 252, 0.4);
}

.hptours-search-widget--style-3 .hptours-search-widget-empty {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(15, 23, 42, 0.35);
    color: rgba(248, 250, 252, 0.9);
}

/* Variant 4 – Minimal Outline */
.hptours-search-widget--style-4 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: none;
}

.hptours-search-widget--style-4 .hptours-search-widget-header {
    background: #ffffff;
    text-align: left;
    padding: 36px 36px 20px;
}

.hptours-search-widget--style-4 .hptours-search-widget-title {
    color: #0f172a;
    position: relative;
    display: inline-block;
}

.hptours-search-widget--style-4 .hptours-search-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #ec4899);
    border-radius: 999px;
}

.hptours-search-widget--style-4 .hptours-search-widget-form {
    background: #f8fafc;
    border-top: 1px dashed #dbeafe;
    padding: 36px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.hptours-search-widget--style-4 .hptours-search-widget-select {
    border-radius: 8px;
    border: 1px solid #cbd5f5;
    box-shadow: none;
}

.hptours-search-widget--style-4 .hptours-search-widget-button {
    background: #0f172a;
}

.hptours-search-widget--style-4 .hptours-search-widget-results {
    background: #ffffff;
    border-top: 1px dashed #cbd5f5;
}

/* Variant 5 – Compact Pills */
.hptours-search-widget--style-5 {
    background: #020617;
    color: #e2e8f0;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 40px 70px rgba(2, 6, 23, 0.65);
}

.hptours-search-widget--style-5 .hptours-search-widget-header {
    background: none;
    text-align: left;
    padding: 0 0 20px;
}

.hptours-search-widget--style-5 .hptours-search-widget-title {
    color: #ffffff;
}

.hptours-search-widget--style-5 .hptours-search-widget-subtitle {
    color: rgba(226, 232, 240, 0.8);
}

.hptours-search-widget--style-5 .hptours-search-widget-form {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hptours-search-widget--style-5 .hptours-search-widget-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hptours-search-widget--style-5 .hptours-search-widget-field {
    flex: 1 1 160px;
}

.hptours-search-widget--style-5 .hptours-search-widget-select {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(148, 163, 184, 0.1);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
}

.hptours-search-widget--style-5 .hptours-search-widget-button {
    align-self: flex-start;
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(120deg, #f43f5e, #ec4899, #6366f1);
}

.hptours-search-widget--style-5 .hptours-search-widget-results {
    background: rgba(15, 23, 42, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
}

.hptours-search-widget--style-5 .hptours-search-widget-results-title,
.hptours-search-widget--style-5 .hptours-search-widget-results-summary {
    color: #e2e8f0;
}

.hptours-search-widget--style-5 .hptours-search-widget-empty {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(148, 163, 184, 0.08);
    color: #e2e8f0;
}

.hptours-search-widget--style-5 .hptours-search-widget-pagination a,
.hptours-search-widget--style-5 .hptours-search-widget-pagination span {
    border-color: rgba(255, 255, 255, 0.3);
    color: #e2e8f0;
}

.hptours-search-widget--style-5 .hptours-search-widget-pagination a:hover,
.hptours-search-widget--style-5 .hptours-search-widget-pagination .current {
    background: rgba(244, 63, 94, 0.3);
    border-color: rgba(244, 63, 94, 0.5);
}

/* Responsive tweaks for variants */
@media (max-width: 1200px) {
    .hptours-search-widget--style-1 .hptours-search-widget-form {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hptours-search-widget--style-2 {
        grid-template-columns: 1fr;
    }

    .hptours-search-widget--style-2 .hptours-search-widget-header::after {
        inset: 30px 20px 10px;
    }

    .hptours-search-widget--style-2 .hptours-search-widget-form {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
}

@media (max-width: 768px) {
    .hptours-search-widget-header {
        padding: 28px 18px;
    }

    .hptours-search-widget-title {
        font-size: 1.6rem;
    }

    .hptours-search-widget-form {
        padding: 24px 18px;
        grid-template-columns: 1fr;
    }

    .hptours-search-widget-results {
        padding: 24px 18px;
    }

    .hptours-search-widget--style-5 {
        padding: 26px;
    }

    .hptours-search-widget--style-5 .hptours-search-widget-fields {
        flex-direction: column;
    }

    .hptours-search-widget--style-5 .hptours-search-widget-button {
        width: 100%;
        align-self: stretch;
        text-align: center;
    }
}

/* Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hptWidgetShimmer {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.2;
    }
}

/* Accessibility */
.hptours-search-widget-select:focus-visible {
    outline: 2px solid var(--secondary-color, #7c3aed);
    outline-offset: 2px;
}

.hptours-search-widget-button:focus-visible {
    outline: 2px solid var(--secondary-color, #7c3aed);
    outline-offset: 2px;
}

/* ═══════════════════════════════════════
   SEARCH / ARCHIVE HERO (photo variant)
   ═══════════════════════════════════════ */

.hpt-search-hero.hpt-tax-hero {
    min-height: 380px;
    align-items: center;
}

.hpt-search-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 76px 20px 86px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hpt-search-hero .hpt-tax-hero__heading,
.hpt-search-hero .hpt-tax-hero__sub {
    text-align: center;
}

.hpt-search-hero .hpt-tax-hero__sub {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
}

.hpt-search-hero .hpt-search-form {
    max-width: 660px;
    margin: 0 auto;
}

.hpt-search-hero .hpt-search-input {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.hpt-search-hero .hpt-search-input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.hpt-search-hero .hpt-search-input:focus {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    outline: none;
    color: #fff;
}

/* css/hptours-tour-cards-widget.css */
/* Tour Cards Widget Styles */

/* Widget Container */
.hptours-tour-cards-widget {
    width: 100%;
    margin: 0 auto;
}

/* Grid Layout */
.hptours-tour-cards-grid {
    display: grid;
    gap: var(--hptours-grid-gap, 30px);
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.hptours-tour-cards-grid > * {
    min-width: 0;
}

.hptours-grid-cols-d-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.hptours-grid-cols-d-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hptours-grid-cols-d-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hptours-grid-cols-d-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hptours-grid-cols-d-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.hptours-grid-cols-d-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

/* List Layout */
.hptours-tour-cards-list {
    display: flex;
    flex-direction: column;
    gap: var(--hptours-list-gap, 30px);
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.hptours-tour-cards-list .hptours-tour-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.hptours-tour-cards-grid .hptours-tour-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

/* Slider Base */
.hptours-tour-cards-slider {
    --hptours-slider-max-width: 1200px;
    --hptours-slider-boxed-width: 1200px;
    --hptours-slider-nav-size: 48px;
    --hptours-slider-nav-gap: 20px;
    position: relative;
    width: 100%;
}

.hptours-tour-cards-slider__shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--hptours-slider-nav-gap);
    margin: 0 auto;
    width: 100%;
}

.hptours-slider-width--full .hptours-tour-cards-slider__shell {
    max-width: 100%;
}

.hptours-slider-width--boxed .hptours-tour-cards-slider__shell {
    max-width: var(--hptours-slider-boxed-width);
}

.hptours-slider-width--custom .hptours-tour-cards-slider__shell {
    max-width: var(--hptours-slider-max-width);
}

.hptours-tour-cards-slider__track {
    width: 100%;
}

.hptours-tour-cards-slider__track .swiper {
    overflow: visible;
}

.hptours-tour-cards-slider__track .swiper-slide {
    height: auto;
    display: flex;
}

.hptours-tour-cards-slider .hptours-tour-card {
    height: 100%;
}

.hptours-tour-cards-slider .hptours-tour-gallery .swiper-button-prev,
.hptours-tour-cards-slider .hptours-tour-gallery .swiper-button-next {
    display: none;
}

.hptours-slider-align--start .swiper-wrapper { align-items: flex-start; }
.hptours-slider-align--center .swiper-wrapper { align-items: center; }
.hptours-slider-align--end .swiper-wrapper { align-items: flex-end; }
.hptours-slider-align--stretch .swiper-wrapper { align-items: stretch; }

.hptours-slider-nav {
    width: var(--hptours-slider-nav-size);
    height: var(--hptours-slider-nav-size);
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.hptours-slider-nav::after {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: currentColor;
}

.hptours-slider-prev::after { content: '‹'; }
.hptours-slider-next::after { content: '›'; }

.hptours-slider-nav:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.hptours-slider-nav.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.hptours-arrows--inside .hptours-slider-prev,
.hptours-arrows--inside .hptours-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hptours-arrows--inside .hptours-slider-prev { left: 16px; }
.hptours-arrows--inside .hptours-slider-next { right: 16px; }

.hptours-arrows--top .hptours-slider-prev,
.hptours-arrows--top .hptours-slider-next {
    position: absolute;
    top: -24px;
}

.hptours-arrows--top .hptours-slider-prev { right: calc(var(--hptours-slider-nav-size) + 16px); }
.hptours-arrows--top .hptours-slider-next { right: 0; }

.hptours-tour-cards-slider .swiper-pagination {
    position: relative;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.hptours-tour-cards-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.hptours-tour-cards-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.hptours-dots--pills .swiper-pagination-bullet {
    width: 18px;
    border-radius: 999px;
}

.hptours-dots--lines .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 4px;
}

.hptours-dots--progress .swiper-pagination {
    width: 100%;
}

.hptours-dots--progress .swiper-pagination-progressbar {
    height: 4px;
    background: #e2e8f0;
}

.hptours-dots--progress .swiper-pagination-progressbar-fill {
    background: var(--primary-color);
}

/* Hover Animations */
.hptours-hover--fade .hptours-tour-card {
    transition: opacity 0.3s ease;
}

.hptours-hover--fade .hptours-tour-card:hover {
    opacity: 0.85;
}

.hptours-hover--lift .hptours-tour-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hptours-hover--lift .hptours-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.hptours-hover--zoom .hptours-tour-card {
    transition: transform 0.3s ease;
}

.hptours-hover--zoom .hptours-tour-card:hover {
    transform: scale(1.02);
}

/* Slider 01 */
.hptours-slider-01 .hptours-tour-cards-slider__shell {
    padding: 12px 0 0;
}

.hptours-slider-01 .hptours-slider-nav {
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.hptours-slider-01 .swiper-pagination-bullet {
    border-radius: 999px;
    width: 16px;
}

/* Slider 02 */
.hptours-slider-02 .hptours-tour-cards-slider__shell {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.hptours-slider-02 .hptours-slider-nav {
    background: #0f172a;
    color: #ffffff;
    border-color: transparent;
    border-radius: 12px;
}

.hptours-slider-02 .hptours-tour-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Slider 03 */
.hptours-slider-03 .swiper-slide {
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hptours-slider-03 .swiper-slide-active,
.hptours-slider-03 .swiper-slide-next,
.hptours-slider-03 .swiper-slide-prev {
    opacity: 1;
}

.hptours-slider-03 .swiper-slide-active .hptours-tour-card {
    transform: scale(1.02);
}

.hptours-slider-03 .hptours-tour-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hptours-slider-03 .hptours-slider-nav {
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
}

/* Slider 04 */
.hptours-slider-04 .hptours-tour-cards-slider__shell {
    padding: 18px 12px 0;
}

.hptours-slider-04 .hptours-slider-nav {
    border-radius: 16px;
    background: var(--primary-color);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(26, 95, 122, 0.3);
}

.hptours-slider-04 .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 4px;
}

/* Slider 05 */
.hptours-slider-05 .hptours-tour-cards-slider__shell {
    border-top: 1px solid #e2e8f0;
    padding-top: 18px;
    gap: 12px;
}

.hptours-slider-05 .hptours-slider-nav {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: none;
}

.hptours-slider-05 .swiper-pagination {
    justify-content: flex-start;
}

.hptours-slider-05 .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
}

/* No Tours Message */
.hptours-no-tours {
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: #64748b;
    background: #f8fafc;
    border-radius: 12px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hptours-grid-cols-t-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .hptours-grid-cols-t-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hptours-grid-cols-t-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hptours-grid-cols-t-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .hptours-grid-cols-t-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .hptours-grid-cols-t-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .hptours-grid-cols-m-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .hptours-grid-cols-m-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hptours-grid-cols-m-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hptours-grid-cols-m-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .hptours-grid-cols-m-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .hptours-grid-cols-m-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

    .hptours-slider-nav {
        --hptours-slider-nav-size: 40px;
    }

    .hptours-arrows--inside .hptours-slider-prev { left: 8px; }
    .hptours-arrows--inside .hptours-slider-next { right: 8px; }
}

/* Elementor Editor Compatibility */
.elementor-editor-active .hptours-tour-cards-widget {
    min-height: 100px;
}

/* Show sliders as flex in one row in Elementor editor only */
.elementor-editor-active .hptours-tour-cards-slider__track[class*="swiper"] > .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    height: auto !important;
    gap: 30px !important;
    overflow-x: auto !important;
}

.elementor-editor-active .hptours-tour-cards-slider[data-columns="1"] .hptours-tour-cards-slider__track > .swiper-wrapper > .swiper-slide {
    flex: 0 0 calc(100% - 0px) !important;
}

.elementor-editor-active .hptours-tour-cards-slider[data-columns="2"] .hptours-tour-cards-slider__track > .swiper-wrapper > .swiper-slide {
    flex: 0 0 calc(50% - 15px) !important;
}

.elementor-editor-active .hptours-tour-cards-slider[data-columns="3"] .hptours-tour-cards-slider__track > .swiper-wrapper > .swiper-slide {
    flex: 0 0 calc(33.333% - 20px) !important;
}

.elementor-editor-active .hptours-tour-cards-slider[data-columns="4"] .hptours-tour-cards-slider__track > .swiper-wrapper > .swiper-slide {
    flex: 0 0 calc(25% - 23px) !important;
}

.elementor-editor-active .hptours-tour-cards-slider[data-columns="5"] .hptours-tour-cards-slider__track > .swiper-wrapper > .swiper-slide {
    flex: 0 0 calc(20% - 24px) !important;
}

.elementor-editor-active .hptours-tour-cards-slider[data-columns="6"] .hptours-tour-cards-slider__track > .swiper-wrapper > .swiper-slide {
    flex: 0 0 calc(16.666% - 25px) !important;
}

.elementor-editor-active .hptours-tour-cards-slider__track > .swiper-wrapper > .swiper-slide {
    height: auto !important;
    width: auto !important;
}

.elementor-editor-active .hptours-tour-cards-slider .hptours-slider-prev,
.elementor-editor-active .hptours-tour-cards-slider .hptours-slider-next,
.elementor-editor-active .hptours-tour-cards-slider .swiper-pagination {
    display: none !important;
}

/* Tour card gallery: prevent height blowout when Swiper fade is not initialized */
.elementor-editor-active .hptours-tour-card__figure {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}
.elementor-editor-active .hptours-tour-card:hover {
    transform: none;
}

/* ═══════════════════════════════════════════════════
   View All Button (shared across all layouts)
   ═══════════════════════════════════════════════════ */
.hpt-tour-cards__view-all {
    text-align: center;
    margin-top: 36px;
}
.hpt-tour-cards__view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color, #1a5f7a);
    background: #fff;
    border: 1.5px solid var(--primary-color, #1a5f7a);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.hpt-tour-cards__view-btn:hover {
    border-color: var(--primary-color, #1a5f7a);
    background: var(--primary-color, #1a5f7a);
    color: #fff;
    transform: translateY(-2px);
}
.hpt-tour-cards__view-btn svg {
    transition: transform .25s ease;
}
.hpt-tour-cards__view-btn:hover svg {
    transform: translate(2px, -2px);
}
@media (max-width: 767px) {
    .hpt-tour-cards__view-all { margin-top: 24px; }
}

/* ── Mobile width recovery ────────────────────────────────────────────
   On phones the tour cards were rendering at roughly 67-76% of screen
   width instead of the site's 90% standard. Two causes, neither of which
   had a mobile override:

   1. .hptours-home-section-wrap (wraps Featured Tours / More Adventures /
      Latest Adventures / Fixed Departure) is declared once as
      `padding: 80px 20px` and never adjusted, so 40px of the viewport went
      to side padding at every screen size.

   2. .hptours-tour-cards-slider__shell is a flex row in which the prev/next
      buttons are SIBLINGS of the track. Unless the arrows are absolutely
      positioned (the --inside variant), they consume
      2 x nav-size + 2 x nav-gap = up to 120px of a 375px viewport before
      the card gets any.

   Cause 2 is fixed here by overlaying the arrows on the track for small
   screens (the expected mobile pattern anyway; the shell is already
   position:relative so the absolute positioning has the right containing
   block). Cause 1 is fixed in standalone/index.php's inline <style>, which
   is emitted AFTER this bundle — an equal-specificity rule here would lose
   to it regardless of breakpoint, since media queries add no specificity. */

@media (max-width: 640px) {
    /* Arrows overlay the track instead of flanking it, so the full width
       goes to the card. */
    .hptours-tour-cards-slider__shell {
        gap: 0;
    }

    .hptours-tour-cards-slider__shell > .hptours-slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        --hptours-slider-nav-size: 36px;
        box-shadow: 0 2px 8px rgba(15, 27, 33, .18);
    }

    .hptours-tour-cards-slider__shell > .hptours-slider-prev {
        left: 4px;
    }

    .hptours-tour-cards-slider__shell > .hptours-slider-next {
        right: 4px;
    }
}

/* css/itinerary-builder.css */
/**
 * Itinerary Builder Modal Styles
 *
 * @package HighPassTours
 */

.itinerary-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
}

.itinerary-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 100000;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.itinerary-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a5f7a 0%, #2a7a95 100%);
    color: white;
    border-radius: 8px 8px 0 0;
}

.itinerary-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.itinerary-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.itinerary-close:hover {
    opacity: 0.8;
}

.itinerary-modal-body {
    padding: 30px;
    min-height: 400px;
}

.itinerary-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 10px;
}

.itinerary-step-indicator {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.itinerary-step-indicator.active {
    background: #1a5f7a;
    color: white;
    font-weight: 600;
}

.itinerary-step-indicator.completed {
    background: #27ae60;
    color: white;
    font-weight: 600;
}

.itinerary-step {
    animation: fadeIn 0.3s ease;
}

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

.itinerary-step h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f7a;
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.form-group select[multiple] {
    padding: 5px;
}

.form-group select[multiple] option {
    padding: 5px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 12px;
}

.form-group.checkbox label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

.itinerary-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.itinerary-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f0f0f0;
    color: #333;
}

.itinerary-btn:hover:not(:disabled) {
    background: #e0e0e0;
}

.itinerary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.itinerary-btn-primary {
    background: #27ae60;
    color: white;
}

.itinerary-btn-primary:hover:not(:disabled) {
    background: #229954;
}

/* Responsive Design */
@media (max-width: 768px) {
    .itinerary-modal {
        width: 95%;
        max-height: 95vh;
    }

    .itinerary-modal-header h2 {
        font-size: 18px;
    }

    .itinerary-modal-body {
        padding: 20px;
        min-height: 300px;
    }

    .itinerary-progress {
        margin-bottom: 20px;
    }

    .itinerary-step-indicator {
        font-size: 11px;
        padding: 8px;
    }

    .itinerary-modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }

    .itinerary-btn {
        width: 100%;
    }
}

/* Button to trigger modal */
.btn-build-itinerary {
    background: linear-gradient(135deg, #1a5f7a 0%, #2a7a95 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-build-itinerary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 95, 122, 0.3);
}

.btn-build-itinerary:active {
    transform: translateY(0);
}

/* Hierarchical Destination Styling */
.parent-destination {
    font-weight: 600;
    color: #1a5f7a;
}

.child-destination {
    padding-left: 20px;
    color: #555;
    font-weight: 400;
}

/* Flatpickr Calendar - Ensure it's above modal and properly positioned */
.flatpickr-calendar {
    z-index: 100001 !important;
    margin-top: 4px !important;
}

.flatpickr-calendar.open {
    z-index: 100001 !important;
}

.flatpickr-calendar.static {
    position: absolute !important;
    top: 100% !important;
}

.flatpickr-calendar.static.open {
    display: block !important;
}

/* css/account.css */
/* Customer account UI (login/register/dashboard/tickets) — migrated out of
   he_account_styles()'s embedded <style> block (standalone/index.php) so it's
   part of the cached/bundled stylesheet instead of being re-sent as raw HTML
   on every account-page render. */
.he-acct{box-sizing:border-box;max-width:640px;margin:32px auto;padding:0 16px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;color:#1a1a2e}
.he-acct *{box-sizing:border-box}
.he-acct.he-wide-page{width:90%;max-width:1400px}
@media(max-width:480px){.he-acct{width:94%;padding:0 4px}}
.he-acct h1{font-size:1.9rem;font-weight:800;margin:0 0 18px}
.he-acct-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:28px;box-shadow:0 2px 18px rgba(0,0,0,.06)}
.he-acct-card--narrow{max-width:520px}
.he-acct-card--narrow + .he-acct-card--narrow{margin-top:16px}
.he-acct-field{margin-bottom:16px}.he-acct-field label{display:block;font-size:13px;font-weight:700;color:#374151;margin-bottom:6px}
.he-acct-field input{width:100%;padding:11px 14px;border:1px solid #d1d5db;border-radius:9px;font-size:14px;box-sizing:border-box}
.he-acct-field input:disabled{background:#f3f4f6;color:#9ca3af}
.he-acct-pw-wrap{position:relative}
.he-acct-pw-wrap input{padding-right:42px}
.he-acct-pw-toggle{position:absolute;top:50%;right:10px;transform:translateY(-50%);background:none;border:none;padding:4px;cursor:pointer;color:#6b7280;display:flex;align-items:center;justify-content:center}
.he-acct-pw-toggle:hover{color:#374151}
.he-acct-pw-toggle svg{width:18px;height:18px}
.he-acct-pw-toggle .eye-off{display:none}
.he-acct-pw-toggle.is-visible .eye-on{display:none}
.he-acct-pw-toggle.is-visible .eye-off{display:block}
.he-acct-btn{display:inline-flex;align-items:center;justify-content:center;width:100%;padding:13px 20px;border:none;border-radius:10px;font-size:15px;font-weight:700;color:#fff;background:linear-gradient(135deg,#0d9488,#0f766e);cursor:pointer}
.he-acct-btn--inline{width:auto;padding:11px 24px}
.he-acct-btn--inline.he-acct-btn--spaced{margin-top:10px}
.he-acct-error{background:#fef2f2;border:1px solid #fecaca;color:#b91c1c;border-radius:9px;padding:10px 14px;font-size:13px;margin-bottom:16px}
.he-acct-error--success{background:#f0fdf4;border-color:#bbf7d0;color:#166534}
.he-acct-error--info{background:#eff6ff;border-color:#bfdbfe;color:#1d4ed8}
.he-acct-alt{margin-top:16px;font-size:13px;color:#6b7280;text-align:center}.he-acct-alt a{color:#0d9488;font-weight:700;text-decoration:none}
.he-acct-alt--spaced{margin-top:22px}
.he-acct-row{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:22px}
.he-acct-row a.logout{font-size:13px;color:#ef4444;text-decoration:none;font-weight:600}
.he-acct-legal{font-size:12.5px;color:#6b7280;margin:-6px 0 16px;line-height:1.5}.he-acct-legal a{color:#0d9488;text-decoration:none}.he-acct-legal a:hover{text-decoration:underline}
.he-acct-link{font-size:13px;color:#0d9488;font-weight:600;text-decoration:none}
.he-acct-link--bold{font-weight:700}
.he-acct-link--right{display:block;margin:-8px 0 16px;text-align:right}
.he-acct-hint{margin:-10px 0 16px;font-size:12.5px;color:#9ca3af}
.he-acct-intro{margin:0 0 18px;font-size:14px;color:#555}
.sub--spaced{margin-top:14px}
.he-acct-heading-sm{margin:0 0 14px;font-size:1.05rem}
.he-wishlist-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px;margin-top:20px}
.he-wishlist-card{border:1px solid #e5e7eb;border-radius:12px;overflow:hidden;text-decoration:none;color:inherit;background:#fff}
.he-wishlist-card img{width:100%;height:130px;object-fit:cover;display:block;background:#f1f5f9}
.he-wishlist-card .body{padding:10px 12px}.he-wishlist-card .body strong{font-size:14px;display:block;margin-bottom:4px}

.he-portal-banner{background:linear-gradient(135deg,#1a3c4e,#0f766e);border-radius:16px;padding:32px 36px;color:#fff;margin-bottom:24px}
.he-portal-banner h1{margin:0 0 6px;font-size:1.7rem}
.he-portal-banner p{margin:0;opacity:.85;font-size:14px}
.he-portal-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
@media(max-width:720px){.he-portal-grid{grid-template-columns:1fr}}
.he-portal-grid h2{margin:0 0 4px;font-size:1.1rem}
.he-portal-grid .sub{color:#6b7280;font-size:13px;margin:0 0 18px}

.he-dash{width:100%;display:grid;grid-template-columns:260px 1fr;gap:24px;align-items:start}
@media(max-width:820px){.he-dash{grid-template-columns:1fr}}
.he-dash-side{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:22px 18px;text-align:center}
.he-dash-avatar{width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,#0d9488,#0f766e);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:20px;margin:0 auto 10px}
.he-dash-name{font-weight:800;font-size:15px}
.he-dash-email{font-size:12.5px;color:#6b7280;margin-bottom:16px;word-break:break-all}
.he-dash-nav{list-style:none;margin:0;padding:0;text-align:left}
.he-dash-nav li a{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:10px 12px;border-radius:9px;color:#374151;text-decoration:none;font-size:14px;font-weight:600;margin-bottom:2px}
.he-dash-nav li a:hover{background:#f3f4f6}
.he-dash-nav li a.active{background:#ecfdf5;color:#0d9488}
.he-dash-nav li a .badge{background:#0d9488;color:#fff;font-size:11px;font-weight:700;border-radius:20px;padding:1px 7px}
.he-dash-nav hr{border:0;border-top:1px solid #e5e7eb;margin:10px 0}
.he-dash-nav li a.danger{color:#ef4444}

.he-dash-main h1{font-size:1.5rem;margin:0 0 4px}
.he-dash-sub{color:#6b7280;font-size:14px;margin:0 0 22px}
.he-stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:22px}
@media(max-width:640px){.he-stat-grid{grid-template-columns:1fr 1fr}}
.he-stat-card{background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:16px 18px;display:flex;align-items:center;justify-content:space-between}
.he-stat-card .num{font-size:1.7rem;font-weight:800}
.he-stat-card .num--pending{color:#d97706}
.he-stat-card .num--confirmed{color:#16a34a}
.he-stat-card .num--unread{color:#ef4444}
.he-stat-card .lbl{font-size:12.5px;color:#6b7280;font-weight:600}
.he-quick-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:26px}
@media(max-width:640px){.he-quick-grid{grid-template-columns:1fr}}
.he-quick-card{background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:16px 18px;text-decoration:none;color:inherit}
.he-quick-card strong{display:block;font-size:14.5px;margin-bottom:2px;color:#1a1a2e}
.he-quick-card span{font-size:12.5px;color:#6b7280}

.he-req-list{display:flex;flex-direction:column;gap:10px}
.he-req-card{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:14px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px;text-decoration:none;color:inherit}
.he-req-card:hover{border-color:#0d9488}
.he-req-card--static{cursor:default}
.he-req-card--top{align-items:flex-start}
.he-req-card strong{display:block;font-size:14.5px;margin-bottom:3px}
.he-req-card .meta{font-size:12.5px;color:#6b7280}
.he-req-card .meta--stars{color:#f59e0b;display:block;margin:2px 0 6px}
.he-status-badge{font-size:11.5px;font-weight:700;border-radius:20px;padding:4px 12px;white-space:nowrap}
.he-status-badge--pending{background:#fffbeb;color:#92400e}
.he-status-badge--replied{background:#eff6ff;color:#1d4ed8}
.he-status-badge--confirmed,
.he-status-badge--completed,
.he-status-badge--published{background:#f0fdf4;color:#166534}
.he-status-badge--cancelled{background:#fef2f2;color:#b91c1c}
.he-panel-title{display:flex;align-items:center;justify-content:space-between;margin:0 0 14px}
.he-panel-title--spaced{margin-top:26px}
.he-panel-title h2{margin:0;font-size:1.2rem}

.he-thread{display:flex;flex-direction:column;gap:12px;margin:18px 0}
.he-thread-msg{max-width:78%;padding:12px 15px;border-radius:12px;font-size:14px;line-height:1.5}
.he-thread-msg.customer{align-self:flex-end;background:#0d9488;color:#fff;border-bottom-right-radius:3px}
.he-thread-msg.admin{align-self:flex-start;background:#f3f4f6;color:#1a1a2e;border-bottom-left-radius:3px}
.he-thread-msg .when{display:block;font-size:11px;opacity:.7;margin-top:6px}
.he-thread-form textarea{width:100%;padding:11px 14px;border:1px solid #d1d5db;border-radius:9px;font-size:14px;box-sizing:border-box;font-family:inherit;resize:vertical}

.he-empty{color:#6b7280;font-size:14px;padding:20px 0}

.he-acct-info-text{margin:0;font-size:13.5px;color:#4b5563;line-height:2}
.he-acct-submitted{font-size:13px;color:#6b7280;margin:-8px 0 18px}

/* css/reviews-aggregator.css */
/*
 * Multi-platform review aggregator (Google / Facebook / Tripadvisor).
 * Migrated out of the inline <style> block that used to live in
 * he_reviews_aggregator_styles() so it joins the mtime-hashed CSS bundle
 * like every other stylesheet — same move already made for account.css.
 *
 * Rendered by he_render_home_reviews_aggregator() in
 * standalone/inc/reviews-aggregator.php.
 */

.hpt-reviews-agg {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
}

.hpt-reviews-agg__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 20px;
    text-align: center;
}

/* ── Source tabs ─────────────────────────────────────────────── */

.hpt-reviews-agg__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid var(--he-warm-3, #eedcca);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.hpt-reviews-agg__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--he-warm-3, #eedcca);
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: var(--he-muted, #5d7580);
    cursor: pointer;
    transition: all .15s;
}

.hpt-reviews-agg__tab strong {
    font-weight: 700;
    color: inherit;
}

.hpt-reviews-agg__tab.is-active,
.hpt-reviews-agg__tab:hover {
    background: var(--he-primary, #1a3c4e);
    border-color: var(--he-primary, #1a3c4e);
    color: #fff;
}

.hpt-reviews-agg__tab svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

/* Keep the brand colours of the Google glyph legible on the active
   (dark) pill — the other two icons are single-colour currentColor. */
.hpt-reviews-agg__tab.is-active svg path[fill="#4285F4"],
.hpt-reviews-agg__tab:hover svg path[fill="#4285F4"] {
    fill: #8ab4f8;
}

/* ── Summary line ────────────────────────────────────────────── */

/* Summary card — white card on the section's warm canvas, with the score
   given real typographic weight instead of sitting inline with the text. */
.hpt-reviews-agg__summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding: 22px 26px;
    background: #fff;
    border: 1px solid var(--he-warm-3, #eedcca);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(15, 27, 33, .04);
}

/* The oversized numeral that anchors the whole block. */
.hpt-reviews-agg__score {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--he-primary, #1a3c4e);
    letter-spacing: -.02em;
    flex: 0 0 auto;
}

.hpt-reviews-agg__summary-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    /* Takes the slack so the button is pushed to the far edge without
       needing justify-content:space-between (which would strand the score). */
    flex: 1 1 auto;
    min-width: 0;
}

.hpt-reviews-agg__quality {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.hpt-reviews-agg__stars {
    display: inline-flex;
    line-height: 1;
}

.hpt-reviews-agg__count {
    color: var(--he-muted, #5d7580);
    font-size: 13px;
}

.hpt-reviews-agg__write-btn {
    padding: 11px 22px;
    background: var(--he-secondary, #e3640c);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.hpt-reviews-agg__write-btn:hover {
    background: var(--he-accent, #c8490a);
}

/* It's a <button> now (it opens the chooser dialog) rather than an <a>,
   so it needs the anchor's own resets. */
.hpt-reviews-agg__write-btn {
    border: 0;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.4;
}

/* ── "Where would you like to review us?" chooser ─────────────── */

.hpt-reviews-agg__modal[hidden] {
    display: none;
}

.hpt-reviews-agg__modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hpt-reviews-agg__modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 33, .55);
}

.hpt-reviews-agg__modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 26px 24px 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
    max-height: 90vh;
    overflow-y: auto;
}

.hpt-reviews-agg__modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--he-muted, #5d7580);
    font-size: 15px;
    cursor: pointer;
    line-height: 1;
}

.hpt-reviews-agg__modal-close:hover {
    background: var(--he-warm-2, #f6ece1);
}

.hpt-reviews-agg__modal-title {
    margin: 0 0 16px;
    font-size: 1.05rem;
    font-weight: 700;
    padding-right: 28px;
}

.hpt-reviews-agg__modal-list {
    display: grid;
    gap: 10px;
}

.hpt-reviews-agg__modal-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--he-warm-3, #eedcca);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s, background .15s;
}

.hpt-reviews-agg__modal-option:hover,
.hpt-reviews-agg__modal-option:focus-visible {
    border-color: var(--he-primary, #1a3c4e);
    background: var(--he-warm-1, #fdf7f1);
    outline: none;
}

.hpt-reviews-agg__modal-icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hpt-reviews-agg__modal-icon svg {
    width: 22px;
    height: 22px;
}

.hpt-reviews-agg__modal-option--facebook .hpt-reviews-agg__modal-icon {
    color: #1877F2;
}

.hpt-reviews-agg__modal-option--tripadvisor .hpt-reviews-agg__modal-icon {
    color: #00AA6C;
}

.hpt-reviews-agg__modal-option--website .hpt-reviews-agg__modal-icon {
    color: var(--he-primary, #1a3c4e);
}

.hpt-reviews-agg__modal-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.hpt-reviews-agg__modal-copy strong {
    font-size: 14px;
    font-weight: 700;
}

.hpt-reviews-agg__modal-copy span {
    font-size: 12px;
    color: var(--he-muted, #5d7580);
}

.hpt-reviews-agg__modal-arrow {
    margin-left: auto;
    font-size: 22px;
    line-height: 1;
    color: var(--he-muted, #5d7580);
}

/* ── External source tab ──────────────────────────────────────
   A platform that publishes an official rating but no review text on the
   current plan. Styled identically to the real filter tabs so the row reads
   as one list of sources; the trailing ↗ is the only cue that this one
   navigates out rather than filtering. (It briefly had a dashed border for
   that job — too visually noisy next to four solid pills.) */

.hpt-reviews-agg__tab--external {
    text-decoration: none;
}

.hpt-reviews-agg__tab--external:focus-visible {
    outline: 2px solid var(--he-primary, #1a3c4e);
    outline-offset: 2px;
}

.hpt-reviews-agg__tab-ext {
    font-size: 11px;
    opacity: .65;
    margin-left: 1px;
}

/* Brand colour for the single-colour glyphs, matching the card badges. */
.hpt-reviews-agg__tab--tripadvisor:not(:hover) svg {
    color: #00AA6C;
}

.hpt-reviews-agg__tab--facebook:not(:hover) svg {
    color: #1877F2;
}

/* Visually hidden but read by screen readers — gives the link a full,
   unambiguous label ("Read all 117 reviews on Tripadvisor") rather than
   just "Tripadvisor 4.9". */
.he-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Cards ───────────────────────────────────────────────────── */

/* Source-platform logo, top-right of each card — the visual marker of which
   platform a review was fetched from. Sits flat on the card (no circle or
   shadow) to match the reference the site owner supplied; the card itself is
   .hptours-tcard, which is already position:relative, so this anchors to it. */
.hpt-reviews-agg__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hpt-reviews-agg__badge svg {
    width: 22px;
    height: 22px;
}

/* Facebook and Tripadvisor icons are single-colour (currentColor); give them
   their real brand colours so all three read as genuine platform logos
   rather than grey glyphs. Google's SVG already carries its own path fills. */
.hpt-reviews-agg__badge--facebook {
    color: #1877F2;
}

.hpt-reviews-agg__badge--tripadvisor {
    color: #00AA6C;
}

/* Reviews collected on this site — the brand colour, not a platform's. */
.hpt-reviews-agg__badge--website {
    color: var(--he-primary, #1a3c4e);
}

.hpt-reviews-agg__slider-wrap {
    position: relative;
}

/* Cap the review body to a fixed number of lines.
   Slides use align-items:stretch, so without this a single long review
   (some Google ones run 200+ words) forces EVERY card in the carousel to
   that height, leaving huge empty gaps under the short ones. Clamping keeps
   the row compact and uniform; the full text is one click away on the
   source link at the foot of the card. */
.hpt-reviews-agg .hptours-tcard__text {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Fixed height so short and long reviews occupy the same block,
       rather than the author row floating at different heights. */
    min-height: calc(6 * 1.6em);
    margin-bottom: 0;
}

/* Keep the author row hard against the bottom of a now-predictable card. */
.hpt-reviews-agg .hptours-tcard {
    height: 100%;
}

@media (max-width: 640px) {
    .hpt-reviews-agg .hptours-tcard__text {
        -webkit-line-clamp: 5;
        line-clamp: 5;
        min-height: calc(5 * 1.6em);
    }
}

/* "View on Google/Facebook/Tripadvisor" — the required attribution link
   back to the original review on the source platform. */
.hpt-reviews-agg__source-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--he-muted, #5d7580);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .15s, border-color .15s;
}

.hpt-reviews-agg__source-link:hover {
    color: var(--he-primary, #1a3c4e);
    border-bottom-color: currentColor;
}

.hpt-reviews-agg__source-link svg {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
}

/* ── Non-JS / SEO fallback ───────────────────────────────────────
   Every review is present in the server-rendered HTML (the carousel
   only hides overflow visually), so crawlers and no-JS visitors still
   read the full text. This list is the readable stack they get. */

.hpt-reviews-agg__noscript-list {
    display: grid;
    gap: 16px;
}

.hpt-reviews-agg__noscript-item {
    border: 1px solid var(--he-warm-3, #eedcca);
    border-radius: 12px;
    padding: 16px 18px;
    background: #fff;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 900px) {
    .hpt-reviews-agg {
        padding: 40px 18px;
    }

    /* Five pills no longer fit one line here; wrapping centred reads as
       deliberate rather than as a ragged overflow. */
    .hpt-reviews-agg__tabs {
        justify-content: center;
        gap: 9px;
    }

    .hpt-reviews-agg__tab {
        font-size: 13.5px;
        padding: 8px 14px;
    }
}

@media (max-width: 640px) {
    .hpt-reviews-agg {
        padding: 32px 14px;
    }

    .hpt-reviews-agg__title {
        font-size: 1.45rem;
        margin-bottom: 16px;
    }

    /* Wrap rather than scroll. This was a hidden-scrollbar horizontal strip,
       which worked with four pills but silently pushed the fifth
       (Tripadvisor) off-screen with no affordance that it was there. Every
       source must be visible without discovering a swipe. */
    .hpt-reviews-agg__tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding-bottom: 14px;
    }

    .hpt-reviews-agg__tab {
        font-size: 13px;
        padding: 7px 12px;
        white-space: nowrap;
        flex: 0 0 auto;
        /* Comfortable thumb target even at the reduced font size. */
        min-height: 36px;
    }

    /* Score and rating sit side by side; the button drops to a full-width
       row beneath them rather than stacking all three. */
    .hpt-reviews-agg__summary {
        gap: 14px;
        margin-bottom: 20px;
        padding: 18px;
        row-gap: 14px;
    }

    .hpt-reviews-agg__score {
        font-size: 2.4rem;
    }

    .hpt-reviews-agg__write-btn {
        width: 100%;
        text-align: center;
        flex: 1 0 100%;
    }
}

@media (max-width: 420px) {
    .hpt-reviews-agg {
        padding: 26px 10px;
    }

    .hpt-reviews-agg__summary-left {
        font-size: 14px;
        gap: 4px;
    }

    /* Tighten the pills so two still sit per row at 320-375px instead of
       one-per-row, which turned the tab bar into a five-row stack. */
    .hpt-reviews-agg__tabs {
        gap: 6px;
        padding-bottom: 12px;
    }

    .hpt-reviews-agg__tab {
        font-size: 12px;
        padding: 6px 10px;
        gap: 4px;
    }

    .hpt-reviews-agg__tab svg {
        width: 14px;
        height: 14px;
    }

    .hpt-reviews-agg__score {
        font-size: 2.1rem;
    }

    .hpt-reviews-agg__summary {
        padding: 16px 14px;
        gap: 12px;
    }
}

/* css/hptours-hero-slider.css */
:root {
    --hptours-hero-height: 720px;
    --hptours-hero-overlay: rgba(15, 31, 42, 0.35);
}

.hptours-hero-slider {
    position: relative;
    width: 100%;
    min-height: var(--hptours-hero-height);
    border-radius: 28px;
    overflow: hidden;
    /* GPU layer so overflow:hidden clips during slide transitions */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hptours-hero-slider__swiper,
.hptours-hero-slider .swiper-wrapper,
.hptours-hero-slider .swiper-slide {
    height: 100%;
}

.hptours-hero-slide {
    position: relative;
    height: var(--hptours-hero-height);
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
}

.hptours-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(18, 28, 38, 0.55) 10%, rgba(18, 28, 38, 0.2) 60%, rgba(18, 28, 38, 0.05) 100%);
    background-color: var(--hptours-hero-overlay);
    mix-blend-mode: normal;
    z-index: 1;
}

.hptours-hero-slide__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    padding: 64px 420px 32px 72px;
}

.hptours-hero-slide__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 620px;
}

.hptours-hero-badges {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hptours-hero-badge {
    background: rgba(255, 255, 255, 0.18);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.2px;
    backdrop-filter: blur(12px);
}

.hptours-hero-badge--location::before {
    content: "•";
    margin-right: 6px;
}

.hptours-hero-slide__title {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 700;
    margin: 0;
}

.hptours-hero-slide__desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.hptours-hero-slide__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hptours-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hptours-hero-button--primary {
    background: #ffffff;
    color: #10212d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hptours-hero-button--primary:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hptours-hero-button--secondary {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    backdrop-filter: blur(10px);
}

.hptours-hero-button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.hptours-hero-button:hover {
    transform: translateY(-2px);
}

.hptours-hero-slide__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.hptours-hero-slide__note::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #56d7a6;
    display: inline-block;
}

.hptours-hero-slide__right {
    display: flex;
    justify-content: flex-end;
}

.hptours-hero-card {
    width: min(420px, 100%);
    background: rgba(68, 82, 88, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(15, 30, 45, 0.3);
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-sizing: border-box;
}

.hptours-hero-card--fixed {
    position: absolute;
    top: 50%;
    right: 72px;
    transform: translateY(-50%);
    z-index: 3;
}

.hptours-hero-card__label {
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    opacity: 0.7;
}

.hptours-hero-card__title {
    margin: 6px 0 0;
    font-size: 20px;
}

.hptours-hero-card__rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hptours-hero-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    font-size: 14px;
}

.hptours-hero-card__row strong {
    font-weight: 600;
}

.hptours-hero-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hptours-hero-card__pill {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hptours-hero-card__pill strong {
    font-size: 15px;
}

.hptours-hero-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    gap: 8px;
}

.hptours-hero-slide__bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 20px 72px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
    pointer-events: auto;
    border-radius: 0px 0px 30px 30px;
}

.swiper-slide-active .hptours-hero-slide__bottom {
    display: flex;
}

.hptours-hero-pills {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.hptours-hero-tags,
.hptours-hero-pills {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hptours-hero-tags {
    justify-content: flex-start;
}

.hptours-hero-route {
    justify-content: flex-end;
    margin-left: auto;
}

.hptours-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.18);
    padding: 8px 14px;
    border-radius: 999px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hptours-hero-tag::before {
    content: "⭐";
    font-size: 14px;
}

.hptours-hero-tag:nth-child(2)::before {
    content: "✨";
}

.hptours-hero-pill {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hptours-hero-route {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.hptours-hero-route__label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.hptours-hero-route__label::after {
    content: " >>";
    margin-left: 4px;
}

.hptours-hero-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hptours-hero-slider__controls {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 15;
    pointer-events: none;
}

.hptours-hero-slider__nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: all;
    transition: all 0.3s ease;
}

.hptours-hero-slider__nav:hover {
    background: rgba(255, 255, 255, 0.35);
}

.hptours-hero-slider__nav::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(135deg);
    display: block;
}

.hptours-hero-slider__nav--next::before {
    transform: rotate(-45deg);
}

.hptours-hero-slider__pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 36px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hptours-hero-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
}

.hptours-hero-slider .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 20px;
    border-radius: 999px;
}

.hptours-hero-slider[data-nav="false"] .hptours-hero-slider__controls {
    display: none;
}

.hptours-hero-slider[data-pagination="false"] .hptours-hero-slider__pagination {
    display: none;
}

/* SEO enhancements */
.hptours-hero-seo-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

/* Search Form Styles */
.hptours-hero-search-form {
    width: 100%;
}

.hptours-hero-card--search .hptours-hero-card__head {
    margin-bottom: 24px;
}

.hptours-hero-card--search .hptours-hero-card__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.hptours-hero-card--search .hptours-hero-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.hptours-hero-card--search .hptours-hero-card__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.hptours-hero-card--search .hptours-hero-card__rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.hptours-hero-card--search .hptours-hero-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.hptours-hero-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%2364748b' d='M7 9L3 5h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
}

.hptours-hero-select:hover {
    border-color: #cbd5e1;
}

.hptours-hero-select:focus {
    border-color: #1a5f7a;
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.hptours-hero-card--search .hptours-hero-card__row {
    padding: 0;
}

.hptours-hero-card--search .hptours-hero-card__pill {
    padding: 0;
    background: transparent;
}

.hptours-hero-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hptours-hero-card__cta--search {
    margin-bottom: 12px;
    background: #1a5f7a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.25);
}

.hptours-hero-card__cta--search:hover {
    background: #155169;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(26, 95, 122, 0.35);
    color: #ffffff;
}

.hptours-hero-card__cta--secondary {
    background: #1a5f7a;
    border: 2px solid #1a5f7a;
    color: #ffffff;
}

.hptours-hero-card__cta--secondary:hover {
    border-color: #145266;
    background: #145266;
    color: #ffffff;
}

/* Explore Activities button */
.hptours-hero-card__cta--activities {
    margin-top: 10px;
    background: transparent;
    border: 1.5px dashed rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
}

.hptours-hero-card__cta--activities:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
    transform: translateY(-1px);
}

.hptours-hero-card__cta--activities svg {
    vertical-align: -2px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .hptours-hero-slide__content {
        grid-template-columns: 1fr;
        padding: 48px 32px 32px;
        position: relative;
        min-height: 600px;
    }

    .hptours-hero-card--fixed {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 24px auto 0;
        left: auto;
    }

    .hptours-hero-slide__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 32px;
        z-index: 15;
    }
    
    .hptours-hero-tags {
        display: none;
    }
    
    .hptours-hero-route {
        margin-left: 0;
        justify-content: center;
    }
    
    .hptours-hero-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        max-width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .hptours-hero-pills::-webkit-scrollbar {
        display: none;
    }

    .hptours-hero-slider__controls {
        display: none;
    }
}

@media (max-width: 640px) {
    .hptours-hero-slide__content {
        padding: 36px 0 32px;
        position: relative;
        min-height: 650px;
    }

    .hptours-hero-slide__title {
        font-size: 28px;
        padding: 0 20px;
    }
    
    .hptours-hero-slide__desc,
    .hptours-hero-slide__actions {
        padding: 0 20px;
    }
    
    .hptours-hero-badges {
        padding: 0 20px;
    }

    .hptours-hero-card {
        width: calc(100% - 40px);
        padding: 20px;
        border-radius: 20px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .hptours-hero-card--fixed {
        margin: 20px 20px 0 20px;
        left: 0;
        right: 0;
        width: calc(100% - 40px);
    }

    .hptours-hero-card--search .hptours-hero-card__title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .hptours-hero-card--search .hptours-hero-card__label {
        font-size: 11px;
    }

    .hptours-hero-card--search .hptours-hero-card__rows {
        gap: 10px;
        margin-bottom: 10px;
    }

    .hptours-hero-card--search .hptours-hero-card__grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }

    .hptours-hero-select {
        padding: 10px 14px;
        font-size: 14px;
    }

    .hptours-hero-card__cta {
        padding: 12px 16px;
        font-size: 14px;
    }

    .hptours-hero-slider__controls {
        display: none;
    }

    .hptours-hero-slide__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px 20px;
        z-index: 15;
    }
    
    .hptours-hero-tags {
        display: none;
    }
    
    .hptours-hero-route {
        margin-left: 0;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hptours-hero-route__label {
        font-size: 11px;
        flex-shrink: 0;
    }
    
    .hptours-hero-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        flex: 1;
        min-width: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .hptours-hero-pills::-webkit-scrollbar {
        display: none;
    }

    .hptours-hero-tag,
    .hptours-hero-pill {
        font-size: 11px;
        padding: 6px 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    }
}

/* css/hptours-hero-magazine.css */
/* ============================================================
   Hero Magazine Widget
   ============================================================ */

.hptours-hero-magazine {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
}

/* ── Slider backgrounds ── */
.hptours-hero-magazine__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hptours-hero-magazine__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hptours-hero-magazine__slide.is-active {
    opacity: 1;
}

/* Gradient overlay – stronger at bottom for text readability */
.hptours-hero-magazine__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

/* Content – bottom-anchored */
.hptours-hero-magazine__content {
    position: relative;
    z-index: 2;
    padding: 0 60px 100px;
    max-width: 680px;
}

.hptours-hero-magazine__text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Category badge */
.hptours-hero-magazine__badge {
    display: inline-block;
    width: fit-content;
    background: #FF6B35;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Editorial heading – large serif-like weight */
.hptours-hero-magazine__title {
    color: #fff;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -0.03em;
}

.hptours-hero-magazine__desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.7;
    margin: 0 0 16px;
    max-width: 520px;
}

/* Meta line */
.hptours-hero-magazine__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.hptours-hero-magazine__author {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.hptours-hero-magazine__date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.hptours-hero-magazine__meta .hptours-hero-magazine__author::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    margin-left: 16px;
    vertical-align: middle;
}

/* Buttons */
.hptours-hero-magazine__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hptours-hero-magazine__btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.hptours-hero-magazine__btn--primary {
    background: #FF6B35;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}
.hptours-hero-magazine__btn--primary:hover {
    background: #e55a28;
    transform: translateY(-2px);
}

.hptours-hero-magazine__btn--secondary {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.hptours-hero-magazine__btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

/* Bottom category bar – horizontal scroll */
.hptours-hero-magazine__categories {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    scrollbar-width: none;
}

.hptours-hero-magazine__categories::-webkit-scrollbar {
    display: none;
}

.hptours-hero-magazine__cat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s;
    flex-shrink: 0;
}

.hptours-hero-magazine__cat:last-child {
    border-right: none;
}

.hptours-hero-magazine__cat:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
}

.hptours-hero-magazine__cat-icon {
    font-size: 18px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hptours-hero-magazine__content {
        padding: 0 24px 80px;
    }
    .hptours-hero-magazine__meta {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
    .hptours-hero-magazine__meta .hptours-hero-magazine__author::after {
        display: none;
    }
}

/* css/hptours-hero-split.css */
/* ============================================================
   Hero Split Widget
   ============================================================ */

.hptours-hero-split {
    display: flex;
    min-height: 85vh;
    overflow: hidden;
}

/* Left panel – dark text area */
.hptours-hero-split__left {
    flex: 0 0 50%;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
}

.hptours-hero-split__inner {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Accent line */
.hptours-hero-split__accent-line {
    display: block;
    width: 48px;
    height: 3px;
    background: #FF6B35;
    border-radius: 2px;
    margin-bottom: 24px;
}

.hptours-hero-split__tagline {
    color: #FF6B35;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hptours-hero-split__title {
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.hptours-hero-split__desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 32px;
}

/* Buttons */
.hptours-hero-split__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hptours-hero-split__btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.hptours-hero-split__btn--primary {
    background: #FF6B35;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}
.hptours-hero-split__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.hptours-hero-split__btn--secondary {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.35);
}
.hptours-hero-split__btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

/* Trust badges */
.hptours-hero-split__badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hptours-hero-split__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.hptours-hero-split__badge i {
    color: #FF6B35;
    font-size: 14px;
}

/* Right panel – image */
.hptours-hero-split__right {
    flex: 0 0 50%;
    position: relative;
    background-color: #1e293b;
    background-size: cover;
    background-position: center;
}

/* Right panel slider */
.hptours-hero-split__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hptours-hero-split__slide.is-active {
    opacity: 1;
}

/* Diagonal clip divider */
.hptours-hero-split__diagonal {
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 80px;
    background: #0f172a;
    clip-path: polygon(0 0, 100% 5%, 0 100%);
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .hptours-hero-split {
        flex-direction: column;
    }
    .hptours-hero-split__left,
    .hptours-hero-split__right {
        flex: none;
        width: 100%;
    }
    .hptours-hero-split__left {
        padding: 60px 32px;
    }
    .hptours-hero-split__right {
        min-height: 50vh;
    }
    .hptours-hero-split__diagonal {
        display: none;
    }
}

@media (max-width: 480px) {
    .hptours-hero-split__left {
        padding: 40px 20px;
    }
    .hptours-hero-split__badges {
        flex-direction: column;
        gap: 12px;
    }
}

/* css/hptours-hero-video.css */
/* ============================================================
   Hero Video Widget
   ============================================================ */

.hptours-hero-video {
    position: relative;
    min-height: 100vh;
    min-height: 100svh; /* see .hp-hero in homepage.css — avoids iOS overshoot */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0f172a;
    background-size: cover;
    background-position: center;
}

/* Video background */
.hptours-hero-video__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ── Slider backgrounds ── */
.hptours-hero-video__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hptours-hero-video__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hptours-hero-video__slide.is-active {
    opacity: 1;
}

/* Overlay */
.hptours-hero-video__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1;
}

/* Content */
.hptours-hero-video__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 0 24px;
}

.hptours-hero-video__tagline {
    display: inline-block;
    color: #FF6B35;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    padding: 6px 18px;
    border: 1px solid rgba(255, 107, 53, 0.35);
    border-radius: 20px;
    backdrop-filter: blur(6px);
    background: rgba(255, 107, 53, 0.08);
}

.hptours-hero-video__title {
    color: #fff;
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.hptours-hero-video__desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 36px;
}

/* Buttons */
.hptours-hero-video__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hptours-hero-video__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hptours-hero-video__btn--primary {
    background: #FF6B35;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}
.hptours-hero-video__btn--primary:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 107, 53, 0.45);
}

.hptours-hero-video__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}
.hptours-hero-video__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
}

.hptours-hero-video__play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 10px;
}

/* Floating stats */
.hptours-hero-video__stats {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.hptours-hero-video__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.hptours-hero-video__stat:last-child {
    border-right: none;
}

.hptours-hero-video__stat-num {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.hptours-hero-video__stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* Scroll indicator */
.hptours-hero-video__scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hptours-hero-video__scroll-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hptours-hero-video__scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: hptours-scroll-pulse 2s infinite;
}

@keyframes hptours-scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* Responsive */
@media (max-width: 768px) {
    .hptours-hero-video__stats {
        flex-direction: column;
        bottom: 60px;
        border-radius: 12px;
    }
    .hptours-hero-video__stat {
        flex-direction: row;
        gap: 8px;
        padding: 12px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .hptours-hero-video__stat:last-child {
        border-bottom: none;
    }
    .hptours-hero-video__scroll {
        display: none;
    }
}

/* css/hptours-hero-search.css */
/* ============================================================
   Hero Search Widget
   ============================================================ */

.hptours-hero-search {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 24px 0;
}

/* ── Slider backgrounds ── */
.hptours-hero-search__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hptours-hero-search__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hptours-hero-search__slide.is-active {
    opacity: 1;
}

/* ── Gradient overlay for image modes ── */
.hptours-hero-search__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Subtle grid pattern */
.hptours-hero-search__pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* Content */
.hptours-hero-search__content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 880px;
}

.hptours-hero-search__badge {
    display: inline-block;
    color: #FF6B35;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hptours-hero-search__title {
    color: #fff;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.hptours-hero-search__desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* Search form */
.hptours-hero-search__form {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.hptours-hero-search__fields {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.hptours-hero-search__field {
    flex: 1;
    text-align: left;
}

.hptours-hero-search__field label {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.hptours-hero-search__field select,
.hptours-hero-search__field input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.hptours-hero-search__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.hptours-hero-search__field select option {
    background: #1e293b;
    color: #fff;
}

.hptours-hero-search__field select:focus,
.hptours-hero-search__field input:focus {
    border-color: #FF6B35;
}

.hptours-hero-search__field input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.hptours-hero-search__form-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #FF6B35;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.hptours-hero-search__form-btn:hover {
    background: #e55a28;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(255, 107, 53, 0.4);
}

.hptours-hero-search__form-btn svg {
    flex-shrink: 0;
}

/* Popular tags */
.hptours-hero-search__tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hptours-hero-search__tags-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.hptours-hero-search__tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hptours-hero-search__tag:hover {
    background: #FF6B35;
    color: #fff !important;
    border-color: transparent;
}

/* Bottom stats bar */
.hptours-hero-search__statsbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hptours-hero-search__stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hptours-hero-search__stat:last-child {
    border-right: none;
}

.hptours-hero-search__stat-num {
    color: #FF6B35;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.hptours-hero-search__stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .hptours-hero-search__fields {
        flex-direction: column;
    }
    .hptours-hero-search__form-btn {
        width: 100%;
        justify-content: center;
    }
    .hptours-hero-search__statsbar {
        flex-wrap: wrap;
    }
    .hptours-hero-search__stat {
        flex: 1 0 40%;
        justify-content: center;
        padding: 14px 16px;
    }
}

/* css/hptours-tour-category-slider.css */
.hptours-category-slider {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--hptours-category-bg, #f8fbff);
    overflow: hidden;
}

.hptours-category-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(
        --hptours-category-pattern,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23b7d7e6' stroke-width='1.5' opacity='0.45'%3E%3Cpath d='M27 28c6-6 16-6 22 0'/%3E%3Cpath d='M38 20v20'/%3E%3Ccircle cx='140' cy='30' r='12'/%3E%3Cpath d='M120 86c12-8 26-8 38 0'/%3E%3Cpath d='M120 100c12-8 26-8 38 0'/%3E%3Cpath d='M40 120l18 10-18 10'/%3E%3Cpath d='M20 146h40'/%3E%3Cpath d='M142 132l18 10-18 10'/%3E%3Cpath d='M116 156h32'/%3E%3Cpath d='M90 60l8 6-8 6-8-6z'/%3E%3Cpath d='M70 70c6 6 6 16 0 22'/%3E%3Cpath d='M52 52l10 10-10 10-10-10z'/%3E%3Cpath d='M152 78l10 10-10 10-10-10z'/%3E%3C/g%3E%3C/svg%3E")
    );
    background-repeat: repeat;
    background-size: 180px 180px;
    pointer-events: none;
    z-index: 0;
}

.hptours-category-slider__header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
}

.hptours-category-slider__subtitle {
    display: block;
    font-family: "Caveat", "Pacifico", cursive;
    font-size: 28px;
    color: #1f7a8c;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.hptours-category-slider__title {
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

/* Heading sizes controlled by inline styles from PHP — matches main.css global values */

.hptours-category-slider__carousel {
    position: relative;
    z-index: 1;
}

.hptours-category-slider__swiper {
    overflow: visible;
    padding: 10px 0 90px;
}

.hptours-category-slider__swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.hptours-category-slider__swiper:not(.swiper-initialized) .swiper-slide {
    width: 320px;
    flex: 0 0 auto;
}

.hptours-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.45s ease, opacity 0.45s ease;
    transform-origin: center top;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border: 1px solid var(--he-warm-3);
    border-radius: var(--he-radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--he-shadow-sm);
    border-radius: 20px 60px 20px 20px !important;
}

.hptours-category-card:hover {
    text-decoration: none;
    color: inherit;
}

.hptours-category-card:hover .hptours-category-card__image {
    box-shadow: 0 22px 50px rgba(15, 48, 76, 0.3);
}

.hptours-category-card:hover .hptours-category-card__image img {
    transform: scale(1.05);
}

.hptours-category-card__image {
    width: 100%;
    border-radius: 16px 54px 28px 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 48, 76, 0.2);
    background: #fff;
    transition: box-shadow 0.35s ease;
}

.hptours-category-card__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.hptours-category-card__title {
    margin: 18px 0 4px;
    font-size: 20px;
    font-weight: 700;
    color: #143c4a;
}

.hptours-category-card__title a {
    color: inherit;
    text-decoration: none;
}

.hptours-category-card__link {
    font-size: 14px;
    color: #5a6b73;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.hptours-category-slider__pagination {
    position: static;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hptours-category-slider__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1.5px solid #1f7a8c;
    background: transparent;
    opacity: 1;
}

.hptours-category-slider__pagination .swiper-pagination-bullet-active {
    background: #1f7a8c;
}

@media (max-width: 991px) {
    .hptours-category-slider {
        padding: 60px 0;
    }

    h1.hptours-category-slider__title { font-size: 32px; }
    h2.hptours-category-slider__title { font-size: 28px; }
    h3.hptours-category-slider__title { font-size: 24px; }
    h4.hptours-category-slider__title { font-size: 20px; }
    h5.hptours-category-slider__title { font-size: 18px; }
    h6.hptours-category-slider__title { font-size: 16px; }
    p.hptours-category-slider__title,
    span.hptours-category-slider__title,
    div.hptours-category-slider__title { font-size: 28px; }

    .hptours-category-slider__subtitle {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    h1.hptours-category-slider__title { font-size: 28px; }
    h2.hptours-category-slider__title { font-size: 24px; }
    h3.hptours-category-slider__title { font-size: 20px; }
    h4.hptours-category-slider__title { font-size: 18px; }
    h5.hptours-category-slider__title { font-size: 16px; }
    h6.hptours-category-slider__title { font-size: 14px; }
    p.hptours-category-slider__title,
    span.hptours-category-slider__title,
    div.hptours-category-slider__title { font-size: 24px; }

    .hptours-category-card__image {
        max-width: 100%;
    }
}

/* Variant 02 - Curved Stacked Cards */
.hptours-category-slider--variant-02 .hptours-category-card {
    transform: none !important;
    transform-origin: center center !important;
}

.hptours-category-slider--variant-02 .hptours-category-card__image {
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 48, 76, 0.25);
}

.hptours-category-slider--variant-02 .swiper-slide {
    transform-style: preserve-3d;
}

.hptours-category-slider--variant-02 .hptours-category-card {
    transform: perspective(1200px) rotateY(0deg) scale(0.92) !important;
    opacity: 0.85 !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hptours-category-slider--variant-02 .swiper-slide-prev .hptours-category-card {
    transform: perspective(1200px) rotateY(15deg) translateX(20px) scale(0.88) !important;
    opacity: 0.65 !important;
}

.hptours-category-slider--variant-02 .swiper-slide-next .hptours-category-card {
    transform: perspective(1200px) rotateY(-15deg) translateX(-20px) scale(0.88) !important;
    opacity: 0.65 !important;
}

.hptours-category-slider--variant-02 .swiper-slide-active .hptours-category-card {
    transform: perspective(1200px) rotateY(0deg) scale(1) !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

/* Variant 03 - Perspective Curved Carousel (Exact Screenshot Match) */
.hptours-category-slider--variant-03 .hptours-category-slider__swiper {
    perspective: 1500px;
    perspective-origin: center center;
}

.hptours-category-slider--variant-03 .swiper-wrapper {
    transform-style: preserve-3d;
}

.hptours-category-slider--variant-03 .swiper-slide {
    transform-style: preserve-3d;
}

.hptours-category-slider--variant-03 .hptours-category-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center center;
}

.hptours-category-slider--variant-03 .hptours-category-card__image {
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Active center card */
.hptours-category-slider--variant-03 .swiper-slide-active .hptours-category-card {
    transform: scale(1.15) translateZ(0px) rotateY(0deg) !important;
    opacity: 1 !important;
    z-index: 50 !important;
}

/* Cards to the left */
.hptours-category-slider--variant-03 .swiper-slide-active + .swiper-slide .hptours-category-card {
    transform: scale(0.85) translateZ(-150px) translateX(-50px) rotateY(-35deg) !important;
    opacity: 0.7 !important;
    z-index: 40 !important;
}

.hptours-category-slider--variant-03 .swiper-slide-active + .swiper-slide + .swiper-slide .hptours-category-card {
    transform: scale(0.75) translateZ(-250px) translateX(-80px) rotateY(-45deg) !important;
    opacity: 0.5 !important;
    z-index: 30 !important;
}

/* Cards to the right - using previous sibling positioning */
.hptours-category-slider--variant-03 .swiper-slide:has(+ .swiper-slide-active) .hptours-category-card {
    transform: scale(0.85) translateZ(-150px) translateX(50px) rotateY(35deg) !important;
    opacity: 0.7 !important;
    z-index: 40 !important;
}

.hptours-category-slider--variant-03 .swiper-slide:has(+ .swiper-slide + .swiper-slide-active) .hptours-category-card {
    transform: scale(0.75) translateZ(-250px) translateX(80px) rotateY(45deg) !important;
    opacity: 0.5 !important;
    z-index: 30 !important;
}

/* Fallback for browsers without :has() support - use JS-added classes */
.hptours-category-slider--variant-03 .swiper-slide-prev .hptours-category-card,
.hptours-category-slider--variant-03 .swiper-slide.slide-left-1 .hptours-category-card {
    transform: scale(0.85) translateZ(-150px) translateX(50px) rotateY(35deg) !important;
    opacity: 0.7 !important;
    z-index: 40 !important;
}

.hptours-category-slider--variant-03 .swiper-slide.slide-left-2 .hptours-category-card {
    transform: scale(0.75) translateZ(-250px) translateX(80px) rotateY(45deg) !important;
    opacity: 0.5 !important;
    z-index: 30 !important;
}

/* Variant 04 - Diagonal Cut Cards (Exact Screenshot Match) */
.hptours-category-slider--variant-04 {
    background-color: #ffffff !important;
}

.hptours-category-slider--variant-04 .hptours-category-slider__swiper {
    overflow: visible;
    padding: 10px 0 60px;
}

.hptours-category-slider--variant-04 .swiper-slide {
    width: 260px !important;
    height: auto;
}

.hptours-category-slider--variant-04 .hptours-category-card {
    transform: none !important;
    opacity: 1 !important;
    width: 260px;
    height: 330px;
    background: #ffffff;
    position: relative;
    transition: transform 0.3s ease;
}

.hptours-category-slider--variant-04 .hptours-category-card:hover {
    transform: translateY(-5px) !important;
}

.hptours-category-slider--variant-04 .hptours-category-card__image {
    width: 100%;
    height: 230px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    box-shadow: none;
}

.hptours-category-slider--variant-04 .hptours-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hptours-category-slider--variant-04 .hptours-category-card__title {
    margin: 20px 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

.hptours-category-slider--variant-04 .hptours-category-card__title a {
    color: inherit;
    text-decoration: none;
}

.hptours-category-slider--variant-04 .hptours-category-card__link {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #1f7a8c;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.hptours-category-slider--variant-04 .hptours-category-card__link:hover {
    text-decoration: underline;
}

.hptours-category-slider--variant-04 .swiper-wrapper {
    display: flex;
    gap: 24px;
}

.hptours-category-slider--variant-04 .hptours-category-slider__pagination {
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .hptours-category-slider--variant-04 .swiper-slide {
        width: 240px !important;
    }
    
    .hptours-category-slider--variant-04 .hptours-category-card {
        width: 240px;
        height: 310px;
    }
    
    .hptours-category-slider--variant-04 .hptours-category-card__image {
        height: 210px;
    }
}

@media (max-width: 767px) {
    .hptours-category-slider--variant-04 .swiper-slide {
        width: 220px !important;
    }
    
    .hptours-category-slider--variant-04 .hptours-category-card {
        width: 220px;
        height: 290px;
    }
    
    .hptours-category-slider--variant-04 .hptours-category-card__image {
        height: 190px;
    }
}

/* css/hptours-testimonials.css */
/* ═══════════════════════════════════════════════════════
   Testimonials Widget — World-Class Edition
   6 Designs: Classic · Bubble · Minimal · Elegant · Horizontal · Dark
   ═══════════════════════════════════════════════════════ */

/* ────────────────────────────
   Section Header
   ──────────────────────────── */
.hptours-testimonials__header {
    text-align: center;
    margin-bottom: 48px;
}

.hptours-testimonials__subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-color, #1a5f7a);
    margin-bottom: 10px;
}

.hptours-testimonials__title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.hptours-testimonials__desc {
    font-size: 16px;
    color: #64748b;
    margin: 12px auto 0;
    max-width: 600px;
    line-height: 1.6;
}

/* ────────────────────────────
   Grid Layout
   ──────────────────────────── */
.hptours-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(var(--hptours-test-cols, 3), 1fr);
    gap: var(--hptours-test-gap, 24px);
}

.hptours-testimonials__grid--eq {
    align-items: stretch;
}

.hptours-testimonials__grid--eq > .hptours-tcard {
    height: 100%;
}

/* ────────────────────────────
   Slider Layout
   ──────────────────────────── */
.hptours-testimonials__slider-wrap {
    position: relative;
    padding: 0 50px;
}

.hptours-testimonials__slider {
    overflow: hidden;
    padding-bottom: 52px;
}

.hptours-testimonials__slider .swiper-slide {
    height: auto;
}

/* Dots */
.hptours-testimonials__dots {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hptours-testimonials__dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hptours-testimonials__dots .swiper-pagination-bullet-active {
    background: var(--primary-color, #1a5f7a);
    width: 28px;
    border-radius: 5px;
}

/* Arrows */
.hptours-testimonials__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.hptours-testimonials__arrow:hover {
    background: var(--primary-color, #1a5f7a);
    color: #ffffff;
    border-color: var(--primary-color, #1a5f7a);
    box-shadow: 0 4px 16px rgba(26, 95, 122, 0.3);
}

.hptours-testimonials__arrow--prev { left: 0; }
.hptours-testimonials__arrow--next { right: 0; }

/* ────────────────────────────
   Base Card (shared)
   ──────────────────────────── */
.hptours-tcard {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Quote icon — SVG */
.hptours-tcard__quote {
    color: var(--primary-color, #1a5f7a);
    opacity: 0.15;
    margin-bottom: 12px;
    line-height: 1;
}

/* Quote icon — Large mark */
.hptours-tcard__quote--large-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    line-height: 0.6;
    margin-bottom: 8px;
}

/* Quote icon — Accent line */
.hptours-tcard__quote--line {
    width: 40px;
    height: 4px;
    background: var(--primary-color, #1a5f7a);
    border-radius: 2px;
    margin-bottom: 16px;
    opacity: 1;
}

/* Rating */
.hptours-tcard__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.hptours-tcard__stars {
    display: flex;
    gap: 2px;
}

.hptours-tcard__star {
    font-size: 16px;
    line-height: 1;
}

.hptours-tcard__star--filled { color: #f59e0b; }
.hptours-tcard__star--empty  { color: #e2e8f0; }

.hptours-tcard__rating-num {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-left: 4px;
}

/* Text */
.hptours-tcard__text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 16px;
    flex: 1;
}

/* Tour badge */
.hptours-tcard__tour {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-color, #1a5f7a);
    background: rgba(26, 95, 122, 0.08);
    padding: 5px 12px;
    border-radius: 99px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Date */
.hptours-tcard__date {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

/* Author row */
.hptours-tcard__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

/* Avatar */
.hptours-tcard__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.elementor .hptours-tcard__avatar {
    height: 48px;
}

.hptours-tcard__avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color, #1a5f7a);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Info */
.hptours-tcard__info { flex: 1; min-width: 0; }

.hptours-tcard__name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.hptours-tcard__location {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

/* Divider (elegant) */
.hptours-tcard__divider {
    width: 40px;
    height: 2px;
    background: var(--primary-color, #1a5f7a);
    margin: 16px auto;
    border-radius: 1px;
    opacity: 0.4;
}

/* ────────────────────────────
   Hover Effects
   ──────────────────────────── */
.hptours-testimonials--hover-lift .hptours-tcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hptours-testimonials--hover-glow .hptours-tcard:hover {
    box-shadow: 0 0 0 2px var(--primary-color, #1a5f7a), 0 8px 30px rgba(26, 95, 122, 0.18);
}

.hptours-testimonials--hover-border .hptours-tcard:hover {
    border-color: var(--primary-color, #1a5f7a) !important;
}

.hptours-testimonials--hover-scale .hptours-tcard:hover {
    transform: scale(1.03);
}


/* ════════════════════════════════════════
   DESIGN 1 — CLASSIC CARD
   ════════════════════════════════════════ */
.hptours-tcard--classic {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
}


/* ════════════════════════════════════════
   DESIGN 2 — SPEECH BUBBLE
   ════════════════════════════════════════ */
.hptours-tcard--bubble {
    background: transparent;
    padding: 0;
}

.hptours-tcard--bubble .hptours-tcard__bubble {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 1px solid #f1f5f9;
}

/* Triangle tail */
.hptours-tcard--bubble .hptours-tcard__bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #ffffff;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.04));
}

.hptours-tcard--bubble .hptours-tcard__author--below {
    padding: 20px 8px 0;
    border-top: none;
}


/* ════════════════════════════════════════
   DESIGN 3 — MINIMAL CLEAN
   ════════════════════════════════════════ */
.hptours-tcard--minimal {
    background: transparent;
    box-shadow: none;
    padding: 24px 0;
    border-radius: 0;
    border-bottom: 1px solid #e2e8f0;
}

.hptours-tcard--minimal .hptours-tcard__text {
    font-size: 17px;
    font-style: italic;
    color: #334155;
    line-height: 1.75;
}

.hptours-tcard--minimal .hptours-tcard__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.hptours-tcard--minimal .hptours-tcard__author {
    border-top: none;
    padding-top: 0;
}

.hptours-tcard--minimal .hptours-tcard__tour {
    background: transparent;
    padding: 0;
    color: #94a3b8;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ════════════════════════════════════════
   DESIGN 4 — ELEGANT CENTERED
   ════════════════════════════════════════ */
.hptours-tcard--elegant {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    align-items: center;
    border: 1px solid #e8ecf1;
    box-shadow: none;
}

.hptours-tcard--elegant .hptours-tcard__quote--elegant {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 72px;
    line-height: 0.5;
    color: var(--primary-color, #1a5f7a);
    opacity: 0.12;
    margin-bottom: 16px;
}

.hptours-tcard--elegant .hptours-tcard__text {
    font-size: 16px;
    font-style: italic;
    color: #334155;
    max-width: 480px;
}

.hptours-tcard--elegant .hptours-tcard__rating {
    justify-content: center;
}

.hptours-tcard--elegant .hptours-tcard__avatar-wrap {
    margin-bottom: 12px;
}

.hptours-tcard--elegant .hptours-tcard__avatar {
    width: 56px;
    height: 56px;
    border: 3px solid #f1f5f9;
}

.elementor .hptours-tcard--elegant .hptours-tcard__avatar {
    height: 56px;
}

.hptours-tcard--elegant .hptours-tcard__name {
    font-size: 15px;
}

.hptours-tcard--elegant .hptours-tcard__location {
    margin-top: 4px;
}

.hptours-tcard--elegant .hptours-tcard__tour {
    margin-top: 12px;
    margin-bottom: 0;
}


/* ════════════════════════════════════════
   DESIGN 5 — HORIZONTAL MAGAZINE
   ════════════════════════════════════════ */
.hptours-tcard--horizontal {
    flex-direction: row;
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.hptours-tcard--horizontal .hptours-tcard__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-width: 120px;
    flex-shrink: 0;
}

.hptours-tcard--horizontal .hptours-tcard__left .hptours-tcard__avatar {
    width: 72px;
    height: 72px;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.elementor .hptours-tcard--horizontal .hptours-tcard__left .hptours-tcard__avatar {
    height: 72px;
}

.hptours-tcard--horizontal .hptours-tcard__left .hptours-tcard__rating {
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
}

.hptours-tcard--horizontal .hptours-tcard__right {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.hptours-tcard--horizontal .hptours-tcard__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
}

.hptours-tcard--horizontal .hptours-tcard__name {
    font-size: 14px;
    font-weight: 700;
}

.hptours-tcard--horizontal .hptours-tcard__tour {
    margin-top: 8px;
    margin-bottom: 0;
}


/* ════════════════════════════════════════
   DESIGN 6 — DARK PREMIUM
   ════════════════════════════════════════ */
.hptours-tcard--dark {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect */
.hptours-tcard--dark .hptours-tcard__glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 95, 122, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hptours-tcard--dark .hptours-tcard__quote {
    color: #f59e0b;
    opacity: 0.25;
}

.hptours-tcard--dark .hptours-tcard__star--filled {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.hptours-tcard--dark .hptours-tcard__star--empty {
    color: #334155;
}

.hptours-tcard--dark .hptours-tcard__text {
    color: #cbd5e1;
    font-size: 15px;
}

.hptours-tcard--dark .hptours-tcard__tour {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.hptours-tcard--dark .hptours-tcard__author {
    border-top-color: rgba(255, 255, 255, 0.06);
}

.hptours-tcard--dark .hptours-tcard__avatar--initials {
    background: linear-gradient(135deg, var(--primary-color, #1a5f7a), #0e4e66);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hptours-tcard--dark .hptours-tcard__name {
    color: #f1f5f9;
}

.hptours-tcard--dark .hptours-tcard__location {
    color: #64748b;
}

.hptours-tcard--dark .hptours-tcard__date {
    color: #475569;
}

.hptours-tcard--dark .hptours-tcard__rating-num {
    color: #94a3b8;
}


/* ────────────────────────────
   Responsive
   ──────────────────────────── */
@media (max-width: 1024px) {
    .hptours-testimonials__grid {
        --hptours-test-cols: 2 !important;
    }
    .hptours-testimonials__slider-wrap {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .hptours-testimonials__grid {
        --hptours-test-cols: 1 !important;
    }
    .hptours-testimonials__title {
        font-size: 26px;
    }
    .hptours-testimonials__slider-wrap {
        padding: 0;
    }
    .hptours-testimonials__arrow {
        display: none;
    }

    /* Horizontal stacks on mobile */
    .hptours-tcard--horizontal {
        flex-direction: column;
    }
    .hptours-tcard--horizontal .hptours-tcard__left {
        flex-direction: row;
        padding: 16px 20px;
    }
    .hptours-tcard--horizontal .hptours-tcard__left .hptours-tcard__avatar {
        width: 48px;
        height: 48px;
    }
    .elementor .hptours-tcard--horizontal .hptours-tcard__left .hptours-tcard__avatar {
        height: 48px;
    }
}

/* css/hptours-partner-logos.css */
/**
 * Partner / Trust Logos – Widget Styles
 * Variations: marquee | grid | framed
 */

/* ── Base ── */
.hpt-logos {
    padding: 48px 60px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.hpt-logos__label {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--he-primary, var(--text-color));
    margin: 0 0 36px;
}

/* Marquee variation: label pinned on the left, sized to its own content
   (flex: 0 0 auto — never stretches beyond what the text needs), the
   scrolling track filling the rest of the row to its right so logos slide
   past close beside it, all in one row instead of stacked. */
.hpt-logos--marquee {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hpt-logos--marquee .hpt-logos__label {
    order: 1;
    flex: 0 0 auto;
    margin: 0;
    padding-right: 32px;
    border-right: 2px solid var(--he-secondary, var(--border-color));
    text-align: left;
    white-space: nowrap;
}

.hpt-logos--marquee .hpt-logos__track-wrap {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
}

/* Logo items */
.hpt-logos__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hpt-logos__item img {
    height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
    transition: filter 0.3s, opacity 0.3s;
}

.hpt-logos__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hpt-logos__item--gray img {
    filter: grayscale(100%) opacity(0.55);
}

.hpt-logos__item--gray:hover img {
    filter: grayscale(0%) opacity(1);
}

.hpt-logos__placeholder {
    height: 48px;
    min-width: 80px;
    background: var(--light-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--border-color);
    letter-spacing: 1px;
}

/* ─────────────────────────────────────────
   VARIATION 1 – Marquee Scroll
───────────────────────────────────────────── */
.hpt-logos--marquee .hpt-logos__track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.hpt-logos__track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: hpt-logos-marquee 30s linear infinite;
}

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

.hpt-logos__track:hover {
    animation-play-state: paused;
}

/* ─────────────────────────────────────────
   VARIATION 2 – Static Logo Grid
───────────────────────────────────────────── */
.hpt-logos__grid--grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 60px;
}

/* ─────────────────────────────────────────
   VARIATION 3 – Framed Grid
   Each logo inside a bordered card cell
───────────────────────────────────────────── */
.hpt-logos--framed {
    background: var(--light-color, #f8f8f8);
}

.hpt-logos__grid--framed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.hpt-logos__grid--framed .hpt-logos__item {
    padding: 32px 24px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #fff;
    transition: background 0.2s;
}

.hpt-logos__grid--framed .hpt-logos__item:hover {
    background: rgba(var(--primary-color-rgb, 255,107,53), 0.04);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hpt-logos {
        padding: 40px 24px;
    }

    .hpt-logos__track {
        gap: 40px;
    }

    .hpt-logos__grid--grid {
        gap: 28px 40px;
    }

    .hpt-logos__grid--framed {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    /* Not enough width for the label beside the scrolling track — back to
       stacked, label above, same as the other variations already do. */
    .hpt-logos--marquee {
        flex-direction: column;
        gap: 16px;
    }

    .hpt-logos--marquee .hpt-logos__label {
        order: 0;
        padding-right: 0;
        border-right: 0;
        text-align: center;
        white-space: normal;
    }

    .hpt-logos--marquee .hpt-logos__track-wrap {
        width: 100%;
    }
}

/* css/hptours-stats-counter.css */
/* ═══════════════════════════════════════
   Stats Counter Widget
   ═══════════════════════════════════════ */

.hptours-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.hptours-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 40px;
    position: relative;
}

.hptours-stat__icon {
    flex-shrink: 0;
    color: var(--primary-color, #1a5f7a);
    opacity: 0.8;
}

.hptours-stat__icon svg {
    display: block;
}

.hptours-stat__content {
    display: flex;
    flex-direction: column;
}

.hptours-stat__number {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
}

.hptours-stat__label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

/* Default — Dividers */
.hptours-stats--default .hptours-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: #e2e8f0;
}

/* Boxed */
.hptours-stats--boxed {
    gap: 24px;
}

.hptours-stats--boxed .hptours-stat {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 200px;
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hptours-stats--boxed .hptours-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Icon Top */
.hptours-stats--icon-top {
    gap: 32px;
}

.hptours-stats--icon-top .hptours-stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 160px;
    padding: 24px 16px;
}

.hptours-stats--icon-top .hptours-stat__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(26, 95, 122, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.hptours-stats--icon-top .hptours-stat__content {
    align-items: center;
}

.hptours-stats--icon-top .hptours-stat__number {
    font-size: 32px;
}

/* Animation */
.hptours-stat__number {
    transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .hptours-stat {
        padding: 16px 24px;
    }
    .hptours-stat__number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hptours-stats {
        flex-direction: column;
        align-items: stretch;
    }
    .hptours-stats--default .hptours-stat:not(:last-child)::after {
        display: none;
    }
    .hptours-stats--default .hptours-stat:not(:last-child) {
        border-bottom: 1px solid #e2e8f0;
    }
    .hptours-stat {
        justify-content: center;
    }
}

/* css/hptours-title-widget.css */
/* HP Tours Title Widget Styles */

.hptours-title {
    margin-bottom: 40px;
}

/* Alignment Classes */
.hptours-title--align-left {
    text-align: left;
}

.hptours-title--align-center {
    text-align: center;
}

.hptours-title--align-right {
    text-align: right;
}

/* Base Heading Styles */
.hptours-title__heading {
    margin: 0;
    padding: 0;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Heading Tag Hierarchy — matches main.css global heading sizes */
.hptours-title h1 {
    font-size: 40px;
}

.hptours-title h2 {
    font-size: 32px;
}

.hptours-title h3 {
    font-size: 28px;
}

.hptours-title h4 {
    font-size: 24px;
}

.hptours-title h5 {
    font-size: 20px;
}

.hptours-title h6 {
    font-size: 16px;
}

@media (max-width: 768px) {
    .hptours-title h1 {
        font-size: 32px;
    }
    
    .hptours-title h2 {
        font-size: 28px;
    }
    
    .hptours-title h3 {
        font-size: 24px;
    }
    
    .hptours-title h4 {
        font-size: 20px;
    }
    
    .hptours-title h5 {
        font-size: 18px;
    }
    
    .hptours-title h6 {
        font-size: 16px;
    }
}

.hptours-title__subtitle {
    margin: 12px 0 0 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* =============== STYLE 1: Classic Clean =============== */
.hptours-title--style-1 .hptours-title__subtitle {
    font-size: 16px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .hptours-title--style-1 .hptours-title__subtitle {
        font-size: 14px;
    }
}

/* =============== STYLE 2: Underline Accent =============== */
.hptours-title--style-2 .hptours-title__heading {
    display: inline-block;
    position: relative;
    font-weight: 800;
}

.hptours-title--style-2 .hptours-title__accent {
    height: 4px;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 16px;
    background-color: #ff6b35;
    border-radius: 2px;
    animation: slideInWidth 0.6s ease-out;
}

.hptours-title--style-2 .hptours-title__subtitle {
    font-size: 15px;
    opacity: 0.8;
}

@keyframes slideInWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* =============== STYLE 3: Background Highlight =============== */
.hptours-title--style-3 .hptours-title__highlight {
    display: inline-block;
    background-color: rgba(255, 107, 53, 0.1);
    padding: 16px 24px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hptours-title--style-3 .hptours-title__heading {
    margin: 0;
    font-weight: 700;
}

.hptours-title--style-3 .hptours-title__subtitle {
    font-size: 15px;
    opacity: 0.8;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .hptours-title--style-3 .hptours-title__highlight {
        padding: 12px 16px;
    }
}

/* =============== STYLE 4: Left Border =============== */
.hptours-title--style-4 .hptours-title__heading {
    padding-left: 20px;
    border-left: 4px solid #ff6b35;
    position: relative;
    font-weight: 800;
}

.hptours-title--style-4 .hptours-title__heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ff6b35;
    animation: slideInHeight 0.6s ease-out;
}

.hptours-title--style-4 .hptours-title__subtitle {
    font-size: 16px;
    opacity: 0.85;
    padding-left: 24px;
}

@keyframes slideInHeight {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: 100%;
        opacity: 1;
    }
}

/* =============== STYLE 5: Gradient Text =============== */
.hptours-title--style-5 .hptours-title__gradient {
    font-weight: 900;
    background: linear-gradient(135deg, #1a5f7a 0%, #ff6b35 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #1a5f7a 0%, #ff6b35 50%, #f59e0b 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 50%, #1a5f7a 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

.hptours-title--style-5 .hptours-title__subtitle {
    font-size: 17px;
    opacity: 0.9;
}

/* =============== STYLE 6: Centered with Icon =============== */
.hptours-title--style-6 {
    text-align: center;
}

.hptours-title--style-6 .hptours-title__icon-wrapper {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.hptours-title--style-6 .hptours-title__icon {
    font-size: 48px;
    color: #ff6b35;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    line-height: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hptours-title--style-6 .hptours-title__heading {
    font-weight: 700;
}

.hptours-title--style-6 .hptours-title__subtitle {
    font-size: 15px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hptours-title--style-6 .hptours-title__icon {
        font-size: 36px;
    }
}

/* SEO & Accessibility */
.hptours-title__heading {
    scroll-margin-top: 80px;
    /* Help with smooth scrolling to headings */
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .hptours-title--style-3 .hptours-title__highlight {
        background-color: rgba(255, 107, 53, 0.2);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: more) {
    .hptours-title__heading {
        font-weight: 900;
    }
    
    .hptours-title__subtitle {
        opacity: 1;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hptours-title__accent,
    .hptours-title--style-4 .hptours-title__heading::before,
    .hptours-title--style-5 .hptours-title__gradient,
    .hptours-title--style-6 .hptours-title__icon {
        animation: none !important;
    }
}

/* css/destination-widget-07.css */
/**
 * Destination Widget 07 - Mixed Grid Layout Styles
 */

.destination-widget-07 {
    width: 100%;
    padding: 40px 20px;
}

.destination-widget-07 .destination-header {
    text-align: center;
    margin-bottom: 50px;
}

.destination-widget-07 .destination-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.destination-widget-07 .destination-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.destination-widget-07 .destination-description {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Grid Container */
.destination-mixed-grid .destination-grid-wrapper {
    position: relative;
}

.destination-mixed-grid .destination-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

/* Grid Columns */
.destination-mixed-grid .grid-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.destination-mixed-grid .grid-column-left,
.destination-mixed-grid .grid-column-right {
    justify-content: flex-start;
}

.destination-mixed-grid .grid-column-center {
    justify-content: center;
}

/* Cards */
.destination-mixed-grid .destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.destination-mixed-grid .destination-card-small {
    height: 220px;
    aspect-ratio: auto;
}

.destination-mixed-grid .destination-card-large {
    height: 480px;
    aspect-ratio: auto;
}

.destination-mixed-grid .destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-mixed-grid .destination-card:hover .destination-image {
    transform: scale(1.08);
}

/* Overlay */
.destination-mixed-grid .destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.destination-mixed-grid .destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
}

.destination-mixed-grid .destination-overlay h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.destination-mixed-grid .destination-card-small .destination-overlay h3 {
    font-size: 18px;
}

.destination-mixed-grid .destination-overlay h3 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.destination-mixed-grid .destination-overlay h3 a:hover {
    color: #ff6b35;
}

.destination-mixed-grid .destination-overlay span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pagination */
.destination-mixed-grid .destination-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.destination-mixed-grid .pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.destination-mixed-grid .pagination-dot.active {
    background-color: #ff6b35;
    width: 30px;
    border-radius: 6px;
}

.destination-mixed-grid .pagination-dot:hover {
    background-color: #ff6b35;
}

/* Grid Pages */
.destination-mixed-grid .destination-grid-page {
    display: block;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .destination-widget-07 .destination-title {
        font-size: 36px;
    }

    .destination-mixed-grid .destination-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }

    .destination-mixed-grid .destination-card-small {
        height: 180px;
    }

    .destination-mixed-grid .destination-card-large {
        height: 380px;
    }

    .destination-mixed-grid .destination-overlay h3 {
        font-size: 18px;
    }

    .destination-mixed-grid .destination-overlay {
        padding: 20px 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .destination-widget-07 {
        padding: 20px 15px;
    }

    .destination-widget-07 .destination-title {
        font-size: 28px;
    }

    .destination-mixed-grid .destination-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .destination-mixed-grid .grid-column {
        gap: 12px;
    }

    .destination-mixed-grid .destination-card-small {
        height: 150px;
    }

    .destination-mixed-grid .destination-card-large {
        height: 250px;
    }

    .destination-mixed-grid .destination-overlay h3 {
        font-size: 16px;
    }

    .destination-mixed-grid .destination-overlay {
        padding: 15px 12px;
    }

    .destination-mixed-grid .destination-overlay span {
        font-size: 11px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .destination-widget-07 {
        padding: 15px 10px;
    }

    .destination-widget-07 .destination-subtitle {
        font-size: 12px;
    }

    .destination-widget-07 .destination-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .destination-widget-07 .destination-description {
        font-size: 14px;
    }

    .destination-mixed-grid .destination-card-small {
        height: 120px;
    }

    .destination-mixed-grid .destination-card-large {
        height: 200px;
    }

    .destination-mixed-grid .destination-overlay h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .destination-mixed-grid .destination-overlay {
        padding: 12px 10px;
    }

    .destination-mixed-grid .pagination-dot {
        width: 10px;
        height: 10px;
    }

    .destination-mixed-grid .pagination-dot.active {
        width: 24px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-mixed-grid .destination-grid-page {
    animation: fadeIn 0.3s ease;
}

/* css/hptours-home06.css */
/* ═══════════════════════════════════════════════════
   HOME 06 — All Widget Styles
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --hp06-accent: #0CB8B6;
    --hp06-accent-dark: #0a9e9c;
    --hp06-dark: #1a1a2e;
    --hp06-text: #555;
    --hp06-light-bg: #f0f7ff;
    --hp06-radius: 12px;
    --hp06-container: 1200px;
}

/* ═══════ 1. HERO SHOWCASE ═══════ */
.hp06-hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hp06-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hp06-hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--hp06-container);
    margin: 0 auto;
    padding: 80px 30px 120px;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hp06-hero__left {
    flex: 1;
    max-width: 520px;
}

.hp06-hero__heading {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--hp06-dark);
    margin: 0 0 20px;
}

.hp06-hero__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 30px;
}

.hp06-hero__btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--hp06-accent);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.hp06-hero__btn:hover {
    background: var(--hp06-accent-dark);
    transform: translateY(-2px);
    color: #fff;
}

/* Tour Cards in hero */
.hp06-hero__right {
    flex: 1;
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    padding-top: 30px;
}

.hp06-hero__tour-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--hp06-radius);
    overflow: hidden;
    width: 240px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s;
}

.hp06-hero__tour-card:hover {
    transform: translateY(-5px);
}

.hp06-hero__tour-card--1 {
    margin-top: 50px;
}

.hp06-hero__tour-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.hp06-hero__tour-info {
    padding: 16px;
}

.hp06-hero__tour-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hp06-dark);
    margin: 0 0 8px;
}

.hp06-hero__tour-price {
    font-size: 0.95rem;
    color: var(--hp06-text);
}

.hp06-hero__tour-price del {
    color: #999;
    margin-right: 6px;
}

.hp06-hero__tour-sale {
    font-weight: 700;
    color: var(--hp06-dark);
}

/* Search Bar */
.hp06-search {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    max-width: var(--hp06-container);
    padding: 0 30px 40px;
}

.hp06-search__form {
    background: #fff;
    border-radius: var(--hp06-radius);
    padding: 24px 30px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.hp06-search__field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hp06-search__field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp06-dark);
}

.hp06-search__field input,
.hp06-search__field select {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--hp06-dark);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.hp06-search__field input:focus,
.hp06-search__field select:focus {
    border-color: var(--hp06-accent);
}

.hp06-search__btn {
    padding: 12px 36px;
    background: var(--hp06-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.hp06-search__btn:hover {
    background: var(--hp06-accent-dark);
}

/* ═══════ 2. ABOUT COMPANY ═══════ */
.hp06-about {
    background: var(--hp06-light-bg);
    padding: 100px 0;
}

.hp06-about__container {
    max-width: var(--hp06-container);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hp06-about__left {
    flex: 1;
}

.hp06-about__subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--hp06-accent);
    margin-bottom: 12px;
}

.hp06-about__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--hp06-dark);
    line-height: 1.25;
    margin: 0 0 24px;
}

.hp06-about__text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--hp06-text);
    margin: 0 0 12px;
}

.hp06-about__btn {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 36px;
    background: var(--hp06-accent);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.hp06-about__btn:hover {
    background: var(--hp06-accent-dark);
    transform: translateY(-2px);
    color: #fff;
}

.hp06-about__right {
    flex: 1;
    position: relative;
    min-height: 420px;
}

.hp06-about__img {
    border-radius: var(--hp06-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hp06-about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hp06-about__img--1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 75%;
    z-index: 2;
}

.hp06-about__img--2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 75%;
    z-index: 1;
}

/* ═══════ 3. DESTINATIONS SHOWCASE CARDS ═══════ */
.hp06-destinations {
    background: var(--hp06-light-bg);
    padding: 80px 30px;
    max-width: 100%;
}

.hp06-destinations__header {
    max-width: var(--hp06-container);
    margin: 0 auto 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.hp06-destinations__header-left {
    flex: 1;
}

.hp06-destinations__subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--hp06-accent);
    margin-bottom: 10px;
}

.hp06-destinations__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hp06-dark);
    line-height: 1.25;
    margin: 0;
}

.hp06-destinations__btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--hp06-dark);
    color: #fff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap;
}

.hp06-destinations__btn:hover {
    background: #111;
    transform: translateY(-2px);
    color: #fff;
}

.hp06-destinations__grid {
    max-width: var(--hp06-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hp06-destinations__card {
    background: #fff;
    border-radius: var(--hp06-radius);
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hp06-destinations__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.hp06-destinations__card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hp06-destinations__card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: var(--hp06-radius) var(--hp06-radius) 0 0;
}

.hp06-destinations__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.hp06-destinations__card:hover .hp06-destinations__card-img img {
    transform: scale(1.05);
}

.hp06-destinations__badge {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: var(--hp06-accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
}

.hp06-destinations__card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hp06-dark);
    padding: 22px 16px 16px;
    margin: 0;
}

/* ═══════ 4. TOURS — uses existing tour cards widget ═══════ */
/* Additional header for tour section when used with tour cards widget */
.hp06-tours-header {
    max-width: var(--hp06-container);
    margin: 0 auto 40px;
    padding: 0 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.hp06-tours-header__left {
    flex: 1;
}

.hp06-tours-header__subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--hp06-accent);
    margin-bottom: 10px;
}

.hp06-tours-header__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hp06-dark);
    line-height: 1.25;
    margin: 0;
}

.hp06-tours-header__btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--hp06-dark);
    color: #fff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap;
}

.hp06-tours-header__btn:hover {
    background: #111;
    transform: translateY(-2px);
    color: #fff;
}

/* ═══════ 5. TESTIMONIALS SHOWCASE ═══════ */
.hp06-testimonials {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    overflow: hidden;
}

.hp06-testimonials__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hp06-testimonials__container {
    position: relative;
    z-index: 2;
    max-width: var(--hp06-container);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hp06-testimonials__left {
    flex: 1;
}

.hp06-testimonials__subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--hp06-accent);
    margin-bottom: 12px;
}

.hp06-testimonials__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 20px;
}

.hp06-testimonials__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hp06-testimonials__right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hp06-testimonials__card {
    background: #fff;
    border-radius: var(--hp06-radius);
    padding: 40px;
    max-width: 480px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hp06-testimonials__quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--hp06-text);
    margin: 0 0 24px;
    font-style: normal;
}

.hp06-testimonials__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hp06-testimonials__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.hp06-testimonials__name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--hp06-dark);
}

/* ═══════ 6. BLOG POSTS ═══════ */
.hp06-blog {
    padding: 80px 30px;
    max-width: var(--hp06-container);
    margin: 0 auto;
}

.hp06-blog__header {
    margin-bottom: 40px;
}

.hp06-blog__subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--hp06-accent);
    margin-bottom: 10px;
}

.hp06-blog__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hp06-dark);
    margin: 0;
}

.hp06-blog__grid {
    display: grid;
    gap: 24px;
}

.hp06-blog__grid--2col { grid-template-columns: repeat(2, 1fr); }
.hp06-blog__grid--3col { grid-template-columns: repeat(3, 1fr); }
.hp06-blog__grid--4col { grid-template-columns: repeat(4, 1fr); }

.hp06-blog__card {
    background: #fff;
    border-radius: var(--hp06-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hp06-blog__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.hp06-blog__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hp06-blog__card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.hp06-blog__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.hp06-blog__card:hover .hp06-blog__card-img img {
    transform: scale(1.05);
}

.hp06-blog__card-body {
    padding: 16px;
}

.hp06-blog__card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 10px;
}

.hp06-blog__card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--hp06-dark);
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
    .hp06-hero__container {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px 140px;
    }
    .hp06-hero__left { max-width: 100%; }
    .hp06-hero__heading { font-size: 2.5rem; }
    .hp06-hero__right { justify-content: center; }

    .hp06-search__form {
        flex-wrap: wrap;
    }
    .hp06-search__field {
        min-width: calc(50% - 10px);
    }

    .hp06-about__container {
        flex-direction: column;
    }
    .hp06-about__right {
        min-height: 350px;
        width: 100%;
    }

    .hp06-destinations__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp06-testimonials__container {
        flex-direction: column;
        text-align: center;
    }

    .hp06-blog__grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hp06-hero__heading { font-size: 2rem; }
    .hp06-hero__right { flex-direction: column; align-items: center; }
    .hp06-hero__tour-card--1 { margin-top: 0; }
    .hp06-hero__tour-card { width: 100%; max-width: 280px; }

    .hp06-search__form {
        flex-direction: column;
    }
    .hp06-search__field {
        min-width: 100%;
    }

    .hp06-about__title { font-size: 1.8rem; }
    .hp06-about__img--1,
    .hp06-about__img--2 {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }
    .hp06-about__right {
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-height: auto;
    }

    .hp06-destinations__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .hp06-destinations__grid {
        grid-template-columns: 1fr;
    }
    .hp06-destinations__title { font-size: 1.6rem; }

    .hp06-testimonials__title { font-size: 1.8rem; }

    .hp06-blog__grid--4col,
    .hp06-blog__grid--3col {
        grid-template-columns: 1fr;
    }
    .hp06-blog__title { font-size: 1.6rem; }
}

/* css/plan-trip-section.css */
/**
 * Plan Trip Section Widget Styles
 */

.plan-trip-section {
    width: 100%;
    padding: 80px 60px;
    background: #ffffff;
    position: relative;
}

.plan-trip-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.plan-trip-decor-icon {
    position: absolute;
    height: auto;
    opacity: 0.9;
}

.plan-trip-accent {
    position: absolute;
    left: var(--accent-x);
    top: var(--accent-y);
    width: var(--accent-size);
    height: var(--accent-size);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.plan-trip-accent-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent-color);
}

.plan-trip-accent-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: auto;
}

.plan-trip-container {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 100px;
    align-items: flex-start;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Left Side - Images */
.plan-trip-left {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
}

.plan-trip-images {
    display: grid;
    grid-template-columns: 320px 1fr;
    grid-template-rows: 240px 1fr;
    gap: 0;
    width: 560px;
    height: 560px;
    max-width: 100%;
    position: relative;
}

/* Main Large Image - Left Side (spans 2 rows) */
.plan-trip-image-main {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.plan-trip-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Top Right - Horizontal Rectangle */
.plan-trip-image-circle {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    margin-left: 20px;
}

.plan-trip-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom Right - Large Square */
.plan-trip-image-card {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    margin-left: 20px;
    margin-top: 20px;
}

.plan-trip-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side - Content */
.plan-trip-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.plan-trip-header {
    margin-bottom: 30px;
}

.plan-trip-subtitle {
    display: block;
    font-size: 22px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    font-style: italic;
    font-family: "Segoe Print", "Great Vibes", cursive;
}

.plan-trip-title {
    font-weight: 900;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.plan-trip-title::after {
    content: "";
    display: none;
}

.plan-trip-header {
    margin-bottom: 10px;
}

.plan-trip-description {
    font-size: 15px;
    color: #888888;
    line-height: 1.7;
    margin: 8px 0 20px 0 !important;
    padding: 0 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
    display: block;
    font-weight: normal;
    letter-spacing: normal;
}

/* Style all child elements inside description */
.plan-trip-description p {
    margin: 0 !important;
    padding: 0 !important;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.plan-trip-description p + p {
    margin-top: 10px !important;
}

/* Ensure editor preview also respects paragraph gaps */
.elementor-editor-active .plan-trip-description p + p,
.elementor-editor-preview .plan-trip-description p + p,
.elementor-editor-preview .plan-trip-description p + p {
    margin-top: 10px !important;
}

.plan-trip-description strong,
.plan-trip-description b {
    color: inherit;
    font-weight: 700;
}

.plan-trip-description em,
.plan-trip-description i {
    color: inherit;
    font-style: italic;
}

.plan-trip-description a {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.plan-trip-description u {
    color: inherit;
    text-decoration: underline;
}

.plan-trip-description ul,
.plan-trip-description ol {
    margin: 0 0 0 20px !important;
    padding: 0 !important;
    color: inherit;
}

.plan-trip-description li {
    color: inherit;
    margin: 5px 0 !important;
}

/* Features */
.plan-trip-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 36px;
    width: 100%;
}

.plan-trip-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    min-width: 0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d98b8;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 22px rgba(13, 152, 184, 0.3);
}

.feature-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-icon i {
    font-size: 32px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    padding-top: 2px;
    min-width: 0;
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 15px;
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0;
    max-width: 520px;
    word-break: normal;
    white-space: normal;
    width: 100%;
}

/* Button */
.plan-trip-button-wrap {
    margin-top: 10px;
}

.plan-trip-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    background-color: #1a3a4a;
    color: #ffffff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
}

.plan-trip-button:hover {
    background-color: #0d98b8;
    transform: translateX(5px);
}

.arrow-icon {
    font-size: 16px;
}

/* Responsive Design */

@media (max-width: 1200px) {
    .plan-trip-section {
        padding: 60px 30px;
    }

    .plan-trip-container {
        grid-template-columns: 500px 1fr;
        gap: 60px;
    }

    .plan-trip-title {
    }

    .plan-trip-images {
        width: 480px;
        height: 480px;
        grid-template-columns: 280px 1fr;
        grid-template-rows: 220px 1fr;
    }

    .plan-trip-image-main {
        width: 100%;
        height: 100%;
    }

    .plan-trip-image-circle {
        width: 100%;
        height: 100%;
        margin-left: 15px;
    }

    .plan-trip-image-card {
        width: 100%;
        height: 100%;
        margin-left: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 1024px) {
    .plan-trip-section {
        padding: 50px 25px;
    }

    .plan-trip-accent,
    .plan-trip-decor {
        display: none;
    }

    .plan-trip-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plan-trip-title {
    }

    .plan-trip-left {
        width: 100%;
    }

    .plan-trip-images {
        width: 100%;
        height: 420px;
        grid-template-columns: 260px 1fr;
        grid-template-rows: 200px 1fr;
        margin: 0 auto;
    }

    .plan-trip-right {
        min-width: 0;
    }

    .plan-trip-image-main {
        width: 100%;
        height: 100%;
    }

    .plan-trip-image-circle {
        width: 100%;
        height: 100%;
        margin-left: 12px;
    }

    .plan-trip-image-card {
        width: 100%;
        height: 100%;
        margin-left: 12px;
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .plan-trip-section {
        padding: 40px 20px;
    }

    .plan-trip-container {
        gap: 30px;
    }

    .plan-trip-left {
        width: 100%;
    }

    .plan-trip-images {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 12px;
        margin: 0 auto;
    }

    .plan-trip-image-main {
        grid-column: 1 / -1;
        grid-row: 1;
        height: 280px;
        width: 100%;
        margin-left: 0;
    }

    .plan-trip-image-circle {
        grid-column: 1;
        grid-row: 2;
        height: 160px;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .plan-trip-image-card {
        grid-column: 2;
        grid-row: 2;
        height: 160px;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .plan-trip-title {
    }

    .plan-trip-title::after {
        width: 10px;
        height: 10px;
        margin-top: 8px;
    }

    .plan-trip-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .plan-trip-features {
        gap: 28px;
        margin-bottom: 35px;
    }

    .plan-trip-feature-item {
        gap: 18px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon img {
        width: 24px;
        height: 24px;
    }

    .feature-icon i {
        font-size: 24px;
        color: #ffffff;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .plan-trip-section {
        padding: 30px 15px;
    }

    .plan-trip-accent,
    .plan-trip-decor {
        display: none;
    }

    .plan-trip-container {
        gap: 20px;
    }

    .plan-trip-left {
        width: 100%;
    }

    .plan-trip-images {
        width: 100%;
        height: auto;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 8px;
        margin: 0 auto;
    }

    .plan-trip-image-main {
        grid-column: 1;
        grid-row: 1;
        height: 120px;
        width: 100%;
        margin-left: 0;
        border-radius: 16px;
    }

    .plan-trip-image-circle {
        grid-column: 2;
        grid-row: 1;
        height: 120px;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        border-radius: 16px;
    }

    .plan-trip-image-card {
        grid-column: 3;
        grid-row: 1;
        height: 120px;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        border-radius: 16px;
    }

    .plan-trip-title {
    }

    .plan-trip-title::after {
        width: 8px;
        height: 8px;
        margin-top: 6px;
    }

    .plan-trip-subtitle {
        font-size: 11px;
    }

    .plan-trip-description {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .plan-trip-features {
        gap: 24px;
        margin-bottom: 30px;
    }

    .plan-trip-feature-item {
        gap: 14px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-icon img {
        width: 22px;
        height: 22px;
    }

    .feature-icon i {
        font-size: 20px;
        color: #ffffff;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-description {
        font-size: 12px;
    }

    .plan-trip-button {
        padding: 12px 32px;
        font-size: 14px;
    }
}

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

.plan-trip-left,
.plan-trip-right {
    animation: fadeInUp 0.6s ease-out;
}

.plan-trip-left {
    animation-delay: 0.1s;
}

.plan-trip-right {
    animation-delay: 0.2s;
}

/* css/recent-gallery-widget.css */
/**
 * Recent Gallery Widget Styles
 * Modern masonry gallery layout with decorative elements
 *
 * @package HighPassTours
 * @version 1.0.0
 */

/* ============================================
   WIDGET CONTAINER
   ============================================ */

.recent-gallery-widget {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    overflow: hidden;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.recent-gallery-header {
    margin-bottom: 60px;
}

.recent-gallery-subtitle {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 36px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.2;
}

.recent-gallery-title {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

/* ============================================
   MASONRY GALLERY GRID
   ============================================ */

.recent-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Gallery Items with Different Sizes */
.gallery-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

/* Small Items */
.gallery-item-small {
    grid-column: span 1;
}

/* Medium Items */
.gallery-item-medium {
    grid-column: span 1;
    grid-row: span 1;
}

/* Large Items */
.gallery-item-large {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

.gallery-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-plane {
    position: absolute;
    animation: floatPlane 8s ease-in-out infinite;
}

.decoration-plane-1 {
    top: 15%;
    left: 5%;
    transform: rotate(-15deg);
}

.decoration-flower {
    position: absolute;
    animation: rotateFlower 12s linear infinite;
}

.decoration-flower-1 {
    bottom: 10%;
    right: 5%;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes floatPlane {
    0%, 100% {
        transform: rotate(-15deg) translateY(0px);
    }
    50% {
        transform: rotate(-15deg) translateY(-20px);
    }
}

@keyframes rotateFlower {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets and Small Desktops */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .recent-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .gallery-item-small,
    .gallery-item-medium {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .recent-gallery-subtitle {
        font-size: 28px;
    }
    
    .recent-gallery-title {
    }
}

/* Tablets and Large Phones */
@media screen and (max-width: 767px) {
    .recent-gallery-widget {
        padding: 60px 16px;
    }
    
    .recent-gallery-header {
        margin-bottom: 40px;
    }
    
    .recent-gallery-subtitle {
        font-size: 24px;
    }
    
    .recent-gallery-title {
    }
    
    .recent-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item-small,
    .gallery-item-medium,
    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item img {
        border-radius: 16px;
    }
    
    .decoration-plane,
    .decoration-flower {
        display: none;
    }
}

/* Small Phones */
@media screen and (max-width: 480px) {
    .recent-gallery-widget {
        padding: 40px 12px;
    }
    
    .recent-gallery-subtitle {
        font-size: 20px;
    }
    
    .recent-gallery-title {
    }
    
    .recent-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 12px;
    }
}

/* ============================================
   ADVANCED GRID LAYOUT (Desktop)
   ============================================ */

@media screen and (min-width: 1025px) {
    .recent-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
        gap: 20px;
    }
    
    /* Specific positioning for masonry effect */
    .gallery-item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    
    .gallery-item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .gallery-item:nth-child(3) {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }
    
    .gallery-item:nth-child(4) {
        grid-column: 4 / 5;
        grid-row: 1 / 2;
    }
    
    .gallery-item:nth-child(5) {
        grid-column: 2 / 3;
        grid-row: 2 / 4;
    }
    
    .gallery-item:nth-child(6) {
        grid-column: 4 / 5;
        grid-row: 2 / 3;
    }
    
    .gallery-item:nth-child(7) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .gallery-item:nth-child(8) {
        grid-column: 3 / 5;
        grid-row: 3 / 4;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.gallery-item a:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 4px;
    border-radius: 24px;
}

.gallery-item a:focus img {
    transform: scale(1.02);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .gallery-item img,
    .decoration-plane,
    .decoration-flower {
        animation: none !important;
        transition: none !important;
    }

    /* .gallery-item's base rule starts at opacity:0 and relies on the
       fadeInUp animation (now disabled above) to reach opacity:1 — without
       this, the whole gallery stays invisible whenever reduced-motion is on,
       which iOS enables by default for a large share of mobile visitors. */
    .gallery-item {
        opacity: 1 !important;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .gallery-decorations {
        display: none;
    }
    
    .gallery-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ============================================
   GALLERY 02 - COLUMN LAYOUT STYLE
   ============================================ */

.recent-gallery-gallery-02 .gallery-area {
    padding: 0;
}

.recent-gallery-gallery-02 .container.th-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.recent-gallery-gallery-02 .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.recent-gallery-gallery-02 .row.gy-10 {
    row-gap: 20px;
}

.recent-gallery-gallery-02 .row.gx-10 {
    column-gap: 20px;
}

.recent-gallery-gallery-02 .row.justify-content-center {
    justify-content: center;
}

.recent-gallery-gallery-02 .row.align-items-center {
    align-items: center;
}

.recent-gallery-gallery-02 .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
}

.recent-gallery-gallery-02 .col-lg-2 {
    padding: 0 10px;
}

@media (min-width: 768px) {
    .recent-gallery-gallery-02 .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .recent-gallery-gallery-02 .col-lg-2 {
        width: 16.666667%;
    }
}

.recent-gallery-gallery-02 .gallery-card {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-gallery-gallery-02 .gallery-card:last-child {
    margin-bottom: 0;
}

/* Tall card for column 3 - spans height of 2 regular cards + gap */
.recent-gallery-gallery-02 .gallery-card-tall {
    margin-bottom: 0;
}

.recent-gallery-gallery-02 .gallery-card-tall .box-img {
    height: 100%;
}

.recent-gallery-gallery-02 .gallery-card-tall .box-img img {
    height: 100%;
    min-height: 400px;
}

.recent-gallery-gallery-02 .gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.recent-gallery-gallery-02 .box-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100% !important;
    height: 190px !important;
    display: block;
}

.recent-gallery-gallery-02 .box-img.global-img {
    width: 100% !important;
    height: 190px !important;
}

.recent-gallery-gallery-02 .box-img img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transition: transform 0.5s ease;
}

/* Tall card for column 3 - exactly 2x regular height + gap */
.recent-gallery-gallery-02 .gallery-card-tall .box-img,
.recent-gallery-gallery-02 .gallery-card-tall .box-img.global-img {
    height: 400px;
}

.recent-gallery-gallery-02 .popup-image {
    display: block;
    position: relative;
    overflow: hidden;
}

.recent-gallery-gallery-02 .popup-image:hover img {
    transform: scale(1.1);
}

.recent-gallery-gallery-02 .icon-btn {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    z-index: 100 !important;
    pointer-events: none !important;
    font-size: 24px !important;
    color: #2271b1 !important;
}

.recent-gallery-gallery-02 .popup-image:hover .icon-btn {
    opacity: 1 !important;
}

.recent-gallery-gallery-02 .icon-btn i {
    font-size: 24px !important;
    color: #2271b1 !important;
    line-height: 1 !important;
}

/* Show a + symbol if icon doesn't load */
.recent-gallery-gallery-02 .icon-btn::after {
    content: '+';
    font-size: 28px;
    font-weight: bold;
    color: #2271b1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.recent-gallery-gallery-02 .popup-image::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0) !important;
    transition: background 0.3s ease !important;
    z-index: 50 !important;
    border-radius: 12px !important;
}

.recent-gallery-gallery-02 .popup-image:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

/* Hide decorations for Gallery 02 */
.recent-gallery-gallery-02 .gallery-decorations {
    display: none;
}

/* Responsive for Gallery 02 */
@media screen and (max-width: 991px) {
    .recent-gallery-gallery-02 .col-lg-2 {
        width: 33.333333%;
    }
}

@media screen and (max-width: 767px) {
    .recent-gallery-gallery-02 .col-md-6,
    .recent-gallery-gallery-02 .col-lg-2 {
        width: 50%;
    }
    
    .recent-gallery-gallery-02 .gallery-card {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 480px) {
    .recent-gallery-gallery-02 .col-md-6,
    .recent-gallery-gallery-02 .col-lg-2 {
        width: 100%;
    }
}

/* css/hptours-activity-cards.css */
/**
 * Activity Cards Widget — All 5 Variant Styles
 *
 * Uses theme CSS variables:
 *   --primary-color, --secondary-color, --accent-color,
 *   --dark-color, --light-color, --text-color, --border-color
 * And activity tokens from activity-page.css:
 *   --act-accent, --act-accent-dark, --act-dark, --act-text,
 *   --act-muted, --act-light, --act-border, --act-radius,
 *   --act-shadow, --act-shadow-lg
 *
 * @package HighPassTours
 * @since   3.0.0
 */

/* ─── Fallback tokens ─── */
:root {
    --act-accent:      var(--primary-color, #FF6B35);
    --act-accent-dark: var(--accent-color, #e55a28);
    --act-dark:        var(--dark-color, #1a1a2e);
    --act-text:        var(--text-color, #374151);
    --act-muted:       #6b7280;
    --act-light:       var(--light-color, #f8fafc);
    --act-border:      var(--border-color, #e5e7eb);
    --act-radius:      16px;
    --act-shadow:      0 4px 24px rgba(0,0,0,0.08);
    --act-shadow-lg:   0 12px 48px rgba(0,0,0,0.12);
}

/* ─── Empty state ─── */
.hpt-act__empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--act-muted);
    font-size: 15px;
}

/* ─── Shared price block ─── */
.hpt-act__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.hpt-act__price-old {
    font-size: 13px;
    color: var(--act-muted);
    text-decoration: line-through;
}
.hpt-act__price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--act-accent);
}
.hpt-act__sale-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, var(--act-accent), var(--act-accent-dark));
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
}

/* ─── Shared stars ─── */
.hpt-act__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #f59e0b;
    margin: 4px 0;
}
.hpt-act__star { transition: color .2s; }
.hpt-act__star.filled { color: #f59e0b; }
.hpt-act__star.half { color: #fbbf24; }
.hpt-act__review-count {
    font-size: 12px;
    color: var(--act-muted);
    margin-left: 4px;
}

/* ─── Shared difficulty badge ─── */
.hpt-act__difficulty {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--diff-color, var(--act-accent));
    padding: 3px 10px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--diff-color, var(--act-accent)) 10%, transparent);
}
.hpt-act__difficulty svg {
    stroke: var(--diff-color, var(--act-accent));
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   DESIGN 01 — Compact Card
   ═══════════════════════════════════════════════════ */

.hpt-act-compact {
    background: #fff;
    border-radius: var(--act-radius);
    overflow: hidden;
    box-shadow: var(--act-shadow);
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
}
.hpt-act-compact:hover {
    transform: translateY(-6px);
    box-shadow: var(--act-shadow-lg);
}

/* Image */
.hpt-act-compact__img {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.hpt-act-compact__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.hpt-act-compact:hover .hpt-act-compact__img img {
    transform: scale(1.08);
}

/* Badges on image */
.hpt-act-compact__type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.hpt-act-compact__featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--act-accent), var(--act-accent-dark));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Body */
.hpt-act-compact__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hpt-act-compact__title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--act-dark);
}
.hpt-act-compact__title a {
    color: inherit;
    text-decoration: none;
}
.hpt-act-compact__title a:hover {
    color: var(--act-accent);
}

/* Meta chips */
.hpt-act-compact__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.hpt-act-compact__chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--act-muted);
    background: var(--act-light);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.hpt-act-compact__chip svg {
    flex-shrink: 0;
    opacity: .7;
}

/* Footer */
.hpt-act-compact__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--act-border);
}
.hpt-act-compact__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--act-accent);
    text-decoration: none;
    transition: gap .25s ease;
}
.hpt-act-compact__cta:hover {
    gap: 8px;
}

/* ═══════════════════════════════════════════════════
   DESIGN 02 — Detailed Card
   ═══════════════════════════════════════════════════ */

.hpt-act-detailed {
    background: #fff;
    border-radius: var(--act-radius);
    overflow: hidden;
    box-shadow: var(--act-shadow);
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
}
.hpt-act-detailed:hover {
    transform: translateY(-6px);
    box-shadow: var(--act-shadow-lg);
}

/* Image */
.hpt-act-detailed__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.hpt-act-detailed__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.hpt-act-detailed:hover .hpt-act-detailed__img-wrap img {
    transform: scale(1.06);
}
.hpt-act-detailed__sale {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border-radius: 20px;
}
.hpt-act-detailed__type {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
}

/* Body */
.hpt-act-detailed__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hpt-act-detailed__title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--act-dark);
}
.hpt-act-detailed__title a { color: inherit; text-decoration: none; }
.hpt-act-detailed__title a:hover { color: var(--act-accent); }

.hpt-act-detailed__tagline {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--act-muted);
}

/* Highlights */
.hpt-act-detailed__highlights {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
.hpt-act-detailed__highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--act-text);
    padding: 4px 0;
    line-height: 1.5;
}
.hpt-act-detailed__highlights li svg {
    flex-shrink: 0;
}

/* Badges row */
.hpt-act-detailed__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.hpt-act-detailed__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--act-text);
    background: var(--act-light);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
.hpt-act-detailed__badge svg {
    flex-shrink: 0;
    opacity: .65;
}

/* Footer */
.hpt-act-detailed__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--act-border);
    gap: 12px;
}
.hpt-act-detailed__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--act-accent), var(--act-accent-dark));
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.hpt-act-detailed__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,.35);
    color: #fff;
}

/* ═══════════════════════════════════════════════════
   DESIGN 03 — Minimal List
   ═══════════════════════════════════════════════════ */

.hpt-act-grid--minimal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hpt-act-minimal {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: var(--act-radius);
    padding: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--act-text);
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid var(--act-border);
}
.hpt-act-minimal:hover {
    transform: translateX(4px);
    box-shadow: var(--act-shadow);
    border-color: var(--act-accent);
}

.hpt-act-minimal__img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}
.hpt-act-minimal__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hpt-act-minimal__body {
    flex: 1;
    min-width: 0;
}
.hpt-act-minimal__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: var(--act-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hpt-act-minimal__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hpt-act-minimal__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--act-muted);
}
.hpt-act-minimal__meta svg { opacity: .6; flex-shrink: 0; }

.hpt-act-minimal__price {
    flex-shrink: 0;
    text-align: right;
    padding-right: 4px;
}
.hpt-act-minimal__price-label {
    display: block;
    font-size: 11px;
    color: var(--act-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}
.hpt-act-minimal__price-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--act-accent);
}

.hpt-act-minimal__arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--act-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--act-muted);
    transition: background .2s ease, color .2s ease;
}
.hpt-act-minimal:hover .hpt-act-minimal__arrow {
    background: var(--act-accent);
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .hpt-act-minimal { flex-wrap: wrap; gap: 10px; }
    .hpt-act-minimal__img { width: 60px; height: 60px; }
    .hpt-act-minimal__price { text-align: left; }
    .hpt-act-minimal__arrow { display: none; }
}

/* ═══════════════════════════════════════════════════
   DESIGN 04 — Event / Festival Highlight
   ═══════════════════════════════════════════════════ */

.hpt-act-event {
    background: #fff;
    border-radius: var(--act-radius);
    overflow: hidden;
    box-shadow: var(--act-shadow);
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
    position: relative;
}
.hpt-act-event:hover {
    transform: translateY(-6px);
    box-shadow: var(--act-shadow-lg);
}

/* Image */
.hpt-act-event__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.hpt-act-event__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.hpt-act-event:hover .hpt-act-event__img-wrap img {
    transform: scale(1.06);
}
.hpt-act-event__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 60%);
    pointer-events: none;
}

/* Date badge */
.hpt-act-event__date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    min-width: 58px;
}
.hpt-act-event__date-day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--act-accent);
    line-height: 1;
}
.hpt-act-event__date-mon {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--act-dark);
    margin-top: 3px;
}
.hpt-act-event__date-yr {
    display: block;
    font-size: 10px;
    color: var(--act-muted);
    margin-top: 2px;
}

/* Cultural tag */
.hpt-act-event__cultural-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--secondary-color, #004E89), color-mix(in srgb, var(--secondary-color, #004E89) 80%, #000));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
}

/* Body */
.hpt-act-event__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hpt-act-event__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--act-dark);
}
.hpt-act-event__title a { color: inherit; text-decoration: none; }
.hpt-act-event__title a:hover { color: var(--act-accent); }

.hpt-act-event__info {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}
.hpt-act-event__loc,
.hpt-act-event__dur {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--act-muted);
}
.hpt-act-event__loc svg,
.hpt-act-event__dur svg {
    opacity: .65;
    flex-shrink: 0;
}

/* Countdown */
.hpt-act-event__countdown {
    background: linear-gradient(135deg, var(--act-light), color-mix(in srgb, var(--act-accent) 5%, #fff));
    border: 1px solid color-mix(in srgb, var(--act-accent) 15%, transparent);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
}
.hpt-act-event__countdown-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--act-accent);
    margin-bottom: 8px;
}
.hpt-act-event__countdown-units {
    display: flex;
    gap: 16px;
}
.hpt-act-event__cu {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hpt-act-event__cu-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--act-dark);
    line-height: 1;
}
.hpt-act-event__cu-lbl {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--act-muted);
    margin-top: 3px;
}

/* Footer */
.hpt-act-event__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--act-border);
    gap: 12px;
}
.hpt-act-event__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary-color, #004E89), color-mix(in srgb, var(--secondary-color, #004E89) 75%, var(--act-accent)));
    padding: 10px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.hpt-act-event__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,78,137,.3);
    color: #fff;
}

/* ═══════════════════════════════════════════════════
   DESIGN 05 — City Tour
   ═══════════════════════════════════════════════════ */

.hpt-act-city {
    background: #fff;
    border-radius: var(--act-radius);
    overflow: hidden;
    box-shadow: var(--act-shadow);
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
}
.hpt-act-city:hover {
    transform: translateY(-6px);
    box-shadow: var(--act-shadow-lg);
}

/* Image */
.hpt-act-city__img-wrap {
    position: relative;
    overflow: visible;
    aspect-ratio: 3 / 2;
}
.hpt-act-city__img-wrap > a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--act-radius) var(--act-radius) 0 0;
}
.hpt-act-city__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.hpt-act-city:hover .hpt-act-city__img-wrap img {
    transform: scale(1.06);
}

.hpt-act-city__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 14px 16px;
    pointer-events: none;
}
.hpt-act-city__dest {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* Pill row (overlay bottom) */
.hpt-act-city__pill-row {
    position: absolute;
    bottom: -12px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}
.hpt-act-city__pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--act-dark);
    background: #fff;
    border: 1px solid var(--act-border);
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    white-space: nowrap;
}
.hpt-act-city__pill svg { flex-shrink: 0; opacity: .6; }
.hpt-act-city__pill--guide {
    background: var(--act-accent);
    color: #fff;
    border-color: var(--act-accent);
}
.hpt-act-city__pill--guide svg { opacity: 1; stroke: #fff; }

/* Body */
.hpt-act-city__body {
    padding: 26px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hpt-act-city__title {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--act-dark);
}
.hpt-act-city__title a { color: inherit; text-decoration: none; }
.hpt-act-city__title a:hover { color: var(--act-accent); }

.hpt-act-city__desc {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--act-muted);
}

/* Footer */
.hpt-act-city__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--act-border);
    gap: 12px;
}
.hpt-act-city__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--act-accent);
    text-decoration: none;
    transition: gap .25s ease;
}
.hpt-act-city__cta:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════
   Global Responsive
   ═══════════════════════════════════════════════════ */

@media (max-width: 767px) {
    .hpt-act-compact__title,
    .hpt-act-detailed__title,
    .hpt-act-event__title,
    .hpt-act-city__title { font-size: 15px; }

    .hpt-act-detailed__body,
    .hpt-act-event__body { padding: 16px; }

    .hpt-act-city__body { padding: 22px 14px 14px; }

    .hpt-act-event__date-badge { padding: 8px 10px; min-width: 48px; }
    .hpt-act-event__date-day { font-size: 20px; }

    .hpt-act-event__countdown-units { gap: 10px; }
    .hpt-act-event__cu-num { font-size: 18px; }
}

/* ═══════════════════════════════════════════════════
   DESIGN 06 — Inspiration
   Padded card with soft border, inset rounded image,
   date badge bottom-right, destination chip, bold title
   ═══════════════════════════════════════════════════ */

.hpt-act-inspo {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #e8e8e8;
    padding: 10px;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease, border-color .3s ease;
}
.hpt-act-inspo:hover {
    transform: translateY(-5px);
    box-shadow: var(--act-shadow-lg);
    border-color: #d0d0d0;
}

/* Inner link wraps image */
.hpt-act-inspo__inner {
    display: block;
    text-decoration: none;
}

/* Image wrapper — inset with rounded corners */
.hpt-act-inspo__img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.hpt-act-inspo__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.hpt-act-inspo:hover .hpt-act-inspo__img-wrap img {
    transform: scale(1.06);
}

/* Date badge — bottom right of image */
.hpt-act-inspo__date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 14px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    min-width: 48px;
}
.hpt-act-inspo__date-day {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
}
.hpt-act-inspo__date-mon {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #3b82f6;
    margin-top: 2px;
}

/* Body */
.hpt-act-inspo__body {
    padding: 14px 8px 8px;
}

/* Destination chip */
.hpt-act-inspo__dest {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #3b82f6;
    background: #eff6ff;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 10px;
    border: 1px solid #dbeafe;
}
.hpt-act-inspo__dest svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

/* Title */
.hpt-act-inspo__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--act-dark);
    letter-spacing: -0.01em;
}

/* ─── Shared View All button (all designs) ─── */
.hpt-act__view-all {
    text-align: center;
    margin-top: 36px;
}
.hpt-act__view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--act-dark);
    background: #fff;
    border: 1.5px solid #d1d5db;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.hpt-act__view-btn:hover {
    border-color: var(--act-dark);
    background: var(--act-dark);
    color: #fff;
    transform: translateY(-2px);
}
.hpt-act__view-btn svg {
    transition: transform .25s ease;
}
.hpt-act__view-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Responsive */
@media (max-width: 767px) {
    .hpt-act-inspo { padding: 8px; }
    .hpt-act-inspo__title { font-size: 15px; }
    .hpt-act-inspo__body { padding: 10px 6px 6px; }
    .hpt-act-inspo__date { padding: 6px 10px; min-width: 40px; }
    .hpt-act-inspo__date-day { font-size: 18px; }
    .hpt-act__view-all { margin-top: 24px; }
}

/* ═══════════════════════════════════════════════════
   Elementor Editor / Preview polish
   ═══════════════════════════════════════════════════ */
.elementor-editor-active .hpt-act-grid--compact,
.elementor-editor-active .hpt-act-grid--detailed,
.elementor-editor-active .hpt-act-grid--event,
.elementor-editor-active .hpt-act-grid--citytour,
.elementor-editor-active .hpt-act-grid--inspiration {
    min-height: 120px;
}
.elementor-editor-active .hpt-act-grid--minimal {
    min-height: 80px;
}

