/* ================================================================
   Home V2 — Local Expert Concierge
   All classes prefixed hv2- to prevent conflicts with style.css
   ================================================================ */

:root {
    --hv2-primary:  #B0531F;   /* darkened from #C8622A for WCAG AA: white text now ~4.6:1 (was ~4.0) */
    --hv2-dark:     #1C2D45;
    --hv2-cream:    #FBF5ED;
    --hv2-gold:     #D4A853;
    --hv2-muted:    #6b7280;
    --hv2-border:   #e5e7eb;
}

/* ── Accessibility: skip link ────────────────────────────────── */

/* Pairs with Bootstrap's .visually-hidden-focusable: hidden until
   keyboard focus, then appears top-left as a real, clickable link. */
.hv2-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    background: var(--hv2-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.hv2-skip-link:focus,
.hv2-skip-link:focus-visible {
    color: #fff;
    outline: 3px solid var(--hv2-gold);
    outline-offset: 2px;
}

/* The <main> target shouldn't show a focus ring when reached via skip link */
#main-content:focus {
    outline: none;
}

/* ── Accessibility: consistent keyboard focus ring ───────────── */

/* One clear, brand-tinted focus ring for keyboard users across all
   interactive controls. :focus-visible keeps it off mouse clicks.
   Form inputs/selects keep their own border-colour focus treatment. */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
[tabindex="0"]:focus-visible,
summary:focus-visible,
.hv2-btn-primary:focus-visible,
.hv2-btn-outline-white:focus-visible,
.hv2-nav__link:focus-visible,
.hv2-nav__cta:focus-visible,
.hv2-mmenu__cta:focus-visible,
.hv2-mega__cta:focus-visible {
    outline: 3px solid var(--hv2-gold);
    outline-offset: 2px;
    border-radius: 6px;
}

/* ── Accessibility: reduced motion (WCAG 2.3.3 / 2.2.2) ───────────
   Users who set "reduce motion" at the OS level get a calm, static
   experience: near-instant transitions, no looping/auto-playing
   animations, scroll-reveal content shown immediately, and no
   translate-based parallax. JS heroes also read this preference and
   skip their auto-advance timers (see index.blade.php). */
@media (prefers-reduced-motion: reduce) {

    /* Collapse every transition/animation to effectively zero, but
       keep one tick so JS `transitionend`/`animationend` still fire. */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Scroll-reveal: show content in its final state, no slide-in. */
    .hm-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Story-hero progress bar fill should not animate. */
    .hm-story-seg__fill {
        animation: none !important;
        transition: none !important;
    }

    /* Neutralise transform-based parallax / hover lifts / the
       plane-slide submit animation so nothing drifts on its own. */
    .hm-hero__bg,
    .hm-parallax,
    [data-parallax] {
        transform: none !important;
    }
}

/* ── Shared utilities ────────────────────────────────────────── */

.hv2-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--hv2-primary);
    display: block;
    margin-bottom: 10px;
}

.hv2-section-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--hv2-dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.hv2-section-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--hv2-muted);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 560px;
}

.hv2-btn-primary {
    background-color: var(--hv2-primary);
    color: #fff;
    border: 2px solid var(--hv2-primary);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s, border-color 0.2s;
    white-space: nowrap;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    line-height: 1;
}

.hv2-btn-primary:hover {
    background-color: #a84f1e;
    border-color: #a84f1e;
    color: #fff;
    text-decoration: none;
}
/* Mobile: kill the blue tap-highlight and keep button text white on tap/focus/visited
   (touch triggers :active/:visited, which otherwise fall back to the default link blue). */
a { -webkit-tap-highlight-color: transparent; }
.hv2-btn-primary:active,
.hv2-btn-primary:focus,
.hv2-btn-primary:visited {
    color: #fff;
    text-decoration: none;
}

.hv2-btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.65);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background-color 0.2s;
    white-space: nowrap;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    line-height: 1;
}

.hv2-btn-outline-white:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}

.hv2-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    border: 2px solid var(--hv2-border);
    background: transparent;
    color: var(--hv2-dark);
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    transition: background .2s, border-color .2s, color .2s;
}
.hv2-btn-secondary:hover {
    background: var(--hv2-dark);
    border-color: var(--hv2-dark);
    color: #fff;
    text-decoration: none;
}

/* ── Section 1: Hero ─────────────────────────────────────────── */

.hv2-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hv2-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

.hv2-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(28, 45, 69, 0.88) 0%,
        rgba(28, 45, 69, 0.60) 55%,
        rgba(28, 45, 69, 0.25) 100%
    );
    z-index: 1;
}

.hv2-hero__content {
    position: relative;
    z-index: 2;
    padding: 168px 0 90px;
}

.hv2-hero__edge {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}
.hv2-hero__edge svg {
    width: 100%;
    height: 36px;
    display: block;
}

.hv2-hero__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--hv2-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.hv2-hero__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--hv2-gold);
    flex-shrink: 0;
}

.hv2-hero__title {
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 22px;
    max-width: 660px;
}

.hv2-hero__title em {
    font-style: normal;
    color: var(--hv2-gold);
}

.hv2-hero__subtitle {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 38px;
}

.hv2-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hv2-hero__trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hv2-hero__trust-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hv2-hero__trust-value {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hv2-hero__trust-label {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
}

.hv2-hero__trust-sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* ── Section 2: Trust Stats ──────────────────────────────────── */

.hv2-stats {
    background-color: var(--hv2-dark);
    padding: 0;
}

.hv2-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hv2-stats__item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hv2-stats__item:last-child {
    border-right: none;
}

.hv2-stats__icon {
    color: var(--hv2-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hv2-stats__icon svg {
    width: 36px;
    height: 36px;
}

.hv2-stats__number {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hv2-stats__number span {
    color: var(--hv2-primary);
}

.hv2-stats__label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    max-width: 140px;
}

/* ── Section 3: Featured Tours ───────────────────────────────── */

.hv2-tours {
    background-color: #fff;
    padding: 84px 0;
}

.hv2-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.hv2-tour-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--hv2-border);
    background: #fff;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.hv2-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(28, 45, 69, 0.13);
    text-decoration: none;
}

.hv2-tour-card__img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e5e7eb;
}

.hv2-tour-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.hv2-tour-card:hover .hv2-tour-card__img-wrap img {
    transform: scale(1.05);
}

.hv2-tour-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.hv2-tour-card__img-placeholder i {
    font-size: 36px;
    color: #9ca3af;
}

.hv2-tour-card__duration {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(28, 45, 69, 0.88);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
}

.hv2-tour-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hv2-tour-card__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--hv2-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.hv2-tour-card__desc {
    font-size: 13px;
    font-weight: 400;
    color: var(--hv2-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.hv2-tour-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hv2-tour-card__tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--hv2-muted);
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hv2-tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--hv2-border);
    margin-top: auto;
}

.hv2-tour-card__price-label {
    font-size: 11px;
    color: var(--hv2-muted);
    font-weight: 400;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
}

.hv2-tour-card__price {
    font-size: 17px;
    font-weight: 700;
    color: var(--hv2-dark);
    line-height: 1;
}

.hv2-tour-card__cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--hv2-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.15s;
}

.hv2-tour-card:hover .hv2-tour-card__cta {
    gap: 8px;
}

.hv2-tours__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.hv2-link-underline {
    font-size: 15px;
    font-weight: 600;
    color: var(--hv2-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-bottom: 2px solid var(--hv2-primary);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.hv2-link-underline:hover {
    color: var(--hv2-primary);
    text-decoration: none;
}

.hv2-tours__custom-cta {
    font-size: 14px;
    color: var(--hv2-muted);
}

.hv2-tours__custom-cta a {
    color: var(--hv2-primary);
    font-weight: 600;
    text-decoration: none;
}

.hv2-tours__custom-cta a:hover {
    text-decoration: underline;
}

/* ── Section 4: Customize CTA ────────────────────────────────── */

.hv2-customize {
    background-color: var(--hv2-dark);
    padding: 84px 0;
}

.hv2-customize__title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 18px;
}

.hv2-customize__sub {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 460px;
}

.hv2-promises {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hv2-promises li {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.hv2-promises li i {
    color: var(--hv2-primary);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hv2-customize__form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    padding: 36px 32px;
}

.hv2-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.hv2-form-field {
    margin-bottom: 18px;
    min-width: 0;
}
.iti { width: 100%; }

.hv2-form-input,
.hv2-form-textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    transition: border-color 0.2s, background-color 0.2s;
    display: block;
}

.hv2-form-input::placeholder,
.hv2-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.hv2-form-input:hover,
.hv2-form-textarea:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background-color: rgba(255, 255, 255, 0.12);
}

.hv2-form-input:focus,
.hv2-form-textarea:focus {
    outline: none;
    border-color: var(--hv2-primary);
    background-color: rgba(255, 255, 255, 0.14);
}

.hv2-form-textarea {
    resize: vertical;
    min-height: 96px;
}

/* Custom select — consistent chevron arrow, no browser default */
.hv2-form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='rgba(255,255,255,0.5)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.hv2-form-submit {
    width: 100%;
    background-color: var(--hv2-primary);
    color: #fff;
    border: none;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hv2-form-submit:hover {
    background-color: #a84f1e;
}

.hv2-form-wa {
    text-align: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.hv2-form-wa a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.hv2-form-wa a:hover {
    color: #fff;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 991px) {
    .hv2-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hv2-stats__item:nth-child(2) { border-right: none; }
    .hv2-stats__item:nth-child(1),
    .hv2-stats__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }

    .hv2-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hv2-hero {
        min-height: 88vh;
    }
    .hv2-hero__content {
        padding: 110px 0 70px;
    }
    .hv2-hero__trust {
        gap: 14px;
    }
    .hv2-hero__trust-sep {
        display: none;
    }
    .hv2-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hv2-tours-grid {
        grid-template-columns: 1fr;
    }
    .hv2-tours__footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .hv2-customize {
        padding: 60px 0;
    }
    .hv2-customize__form {
        padding: 28px 22px;
        margin-top: 40px;
    }
}

/* ── Site header (fixed wrapper: topbar + nav) ───────────────── */

.hv2-site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}

.hv2-topbar {
    background: #111d2b;
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

/* Hide topbar on mobile — keeps the story hero clean */
@media (max-width: 991px) {
    .hv2-topbar { display: none; }
}

.hv2-site-header.hv2-header--scrolled .hv2-topbar {
    height: 0;
    opacity: 0;
}

.hv2-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hv2-topbar__ta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.65);
    font-family: 'Lexend', sans-serif;
}

.hv2-topbar__ta strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.hv2-topbar__ta-icon { flex-shrink: 0; }

.hv2-topbar__sep { color: rgba(255,255,255,0.2); }

.hv2-topbar__stars { color: #34E0A1; letter-spacing: 1px; }

.hv2-topbar__score { color: #fff; font-weight: 700; }

.hv2-topbar__wa {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
    transition: color 0.2s;
}
.hv2-topbar__wa:hover { color: #25D366; text-decoration: none; }

/* Mega backdrop */
.hv2-mega-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 999;
    pointer-events: none;
    transition: background 0.2s;
}
.hv2-mega-backdrop.is-visible {
    background: rgba(0,0,0,0.28);
    pointer-events: none;
}

/* ── Navbar ──────────────────────────────────────────────────── */

.hv2-nav {
    position: relative;
    overflow: visible;
    padding: 16px 0;
    transition: background-color 0.35s, backdrop-filter 0.35s, padding 0.3s, box-shadow 0.3s;
    background-color: transparent;
}

.hv2-nav.hv2-nav--scrolled {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 16px rgba(28, 45, 69, 0.09);
}

.hv2-nav__brand img {
    height: 36px;
    width: auto;
}

.hv2-nav:not(.hv2-nav--scrolled) .hv2-nav__brand-dark { display: none; }
.hv2-nav.hv2-nav--scrolled .hv2-nav__brand-light { display: none; }

.hv2-nav__link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    padding: 6px 14px;
    transition: color 0.2s;
    font-family: 'Lexend', sans-serif;
    text-decoration: none;
    display: block;
    position: relative;
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.hv2-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 14px;
    right: 14px;
    height: 1.5px;
    background: var(--hv2-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.hv2-nav__link:hover::after { transform: scaleX(1); }

.hv2-nav.hv2-nav--scrolled .hv2-nav__link {
    color: var(--hv2-dark);
    text-shadow: none;
}

.hv2-nav__link:hover {
    color: #fff;
    text-decoration: none;
}

.hv2-nav__cta {
    font-size: 13px !important;
    padding: 10px 20px !important;
    margin-left: 10px;
    white-space: nowrap;
}

.hv2-nav__toggler {
    border: none;
    background: none;
    padding: 6px;
    cursor: pointer;
}

.hv2-nav__toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: background 0.3s;
    border-radius: 2px;
}

.hv2-nav.hv2-nav--scrolled .hv2-nav__toggler span {
    background: var(--hv2-dark);
}

/* ── Mobile menu (right drawer) ──────────────────────────────── */

.hv2-mmenu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(28,45,69,0.5);
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.hv2-mmenu-backdrop.is-visible {
    opacity: 1;
    pointer-events: all;
}

.hv2-mmenu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(400px, 100vw);
    background: #fff;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: -8px 0 48px rgba(28,45,69,0.18);
}

.hv2-mmenu.is-open {
    transform: translateX(0);
    pointer-events: all;
}

/* Header */
.hv2-mmenu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.hv2-mmenu__logo img {
    height: 26px;
    width: auto;
}

.hv2-mmenu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: var(--hv2-dark);
    width: 34px;
    height: 34px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hv2-mmenu__close:hover {
    background: #fef3ed;
    border-color: var(--hv2-primary);
    color: var(--hv2-primary);
}

/* Scrollable body */
.hv2-mmenu__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Top-level nav links */
.hv2-mmenu__link {
    display: flex;
    align-items: center;
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--hv2-dark);
    text-decoration: none;
    padding: 14px 22px;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.18s, background 0.18s;
    letter-spacing: -0.1px;
}
.hv2-mmenu__link:hover {
    color: var(--hv2-primary);
    background: #fef9f6;
    text-decoration: none;
}

/* Egypt Trips toggle button */
.hv2-mmenu__link--toggle {
    background: none;
    border: none;
    border-bottom: 1px solid #f3f4f6;
    width: 100%;
    text-align: left;
    cursor: pointer;
    justify-content: space-between;
}
.hv2-mmenu__link--toggle:hover { background: #fef9f6; color: var(--hv2-primary); }
.hv2-mmenu__link--toggle.is-open {
    color: var(--hv2-primary);
    background: #fef3ed;
    border-bottom-color: transparent;
}

.hv2-mmenu__chevron { transition: transform 0.28s; flex-shrink: 0; color: var(--hv2-muted); }
.hv2-mmenu__link--toggle.is-open .hv2-mmenu__chevron { transform: rotate(180deg); color: var(--hv2-primary); }

/* Mega-style accordion panel */
.hv2-mmenu__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
    border-left: 3px solid var(--hv2-primary);
    border-bottom: 1px solid #f0f0f0;
}
.hv2-mmenu__submenu.is-open {
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Category header in mobile mega */
.hv2-mmenu__mega-cat-hd {
    display: block;
    font-family: 'Lexend', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hv2-primary);
    padding: 14px 20px 5px;
    text-decoration: none;
}
.hv2-mmenu__mega-cat-hd:hover { color: var(--hv2-dark); text-decoration: none; }

/* Sub-category heading */
.hv2-mmenu__mega-sub-hd {
    display: block;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--hv2-dark);
    padding: 6px 20px 2px 28px;
    text-decoration: none;
}
.hv2-mmenu__mega-sub-hd:hover { color: var(--hv2-primary); text-decoration: none; }

/* Program link */
.hv2-mmenu__mega-prog {
    display: block;
    font-size: 12px;
    color: var(--hv2-muted);
    padding: 4px 20px 4px 40px;
    text-decoration: none;
    transition: color 0.15s;
}
.hv2-mmenu__mega-prog:hover { color: var(--hv2-primary); text-decoration: none; }

/* Divider between categories */
.hv2-mmenu__mega-divider {
    height: 1px;
    background: #e9e9e9;
    margin: 6px 20px;
}

/* Browse all link */
.hv2-mmenu__mega-all {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--hv2-primary);
    padding: 12px 20px 14px;
    border-top: 1px solid #ebebeb;
    margin-top: 6px;
    text-decoration: none;
}
.hv2-mmenu__mega-all:hover { color: var(--hv2-dark); text-decoration: none; }

/* Footer */
.hv2-mmenu__footer {
    flex-shrink: 0;
    padding: 14px 18px 18px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    background: #fff;
}

.hv2-mmenu__cta {
    width: 100%;
    justify-content: center;
    font-size: 14px !important;
    padding: 12px 20px !important;
}

.hv2-mmenu__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #1a9449;
    text-decoration: none;
    padding: 9px 12px;
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
}
.hv2-mmenu__wa:hover {
    background: rgba(37,211,102,0.06);
    border-color: #25D366;
    text-decoration: none;
}

/* ── Desktop mega menu ───────────────────────────────────────── */

.hv2-nav__list {
    gap: 2px;
    align-items: stretch;
}

.hv2-nav__item {
    display: flex;
    align-items: center;
}

.hv2-nav__item--mega {
    position: static !important;
}

.hv2-nav__link--arrow {
    display: flex !important;
    align-items: center;
    gap: 4px;
}

.hv2-nav__chevron {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.hv2-nav__item--mega.is-mega-open .hv2-nav__chevron {
    transform: rotate(180deg);
}

.hv2-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid var(--hv2-primary);
    box-shadow: 0 20px 60px rgba(28,45,69,0.18);
    padding: 32px 0 24px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s;
    z-index: 50;
}

.hv2-nav__item--mega.is-mega-open .hv2-mega,
.hv2-nav__item--mega:focus-within .hv2-mega {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.hv2-mega__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--hv2-border);
}

.hv2-mega__col {
    padding: 0 20px 0 0;
    border-right: 1px solid var(--hv2-border);
}
.hv2-mega__col:last-child { border-right: none; }
.hv2-mega__col:not(:first-child) { padding-left: 20px; }

.hv2-mega__cat-hd {
    display: block;
    font-family: 'Lexend', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--hv2-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(200,98,42,0.2);
    transition: color 0.2s;
}
.hv2-mega__cat-hd:hover { color: var(--hv2-primary); text-decoration: none; }

.hv2-mega__sub { margin-bottom: 10px; }

.hv2-mega__sub-hd {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--hv2-dark);
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.15s;
}
.hv2-mega__sub-hd:hover { color: var(--hv2-primary); text-decoration: none; }

.hv2-mega__prog {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--hv2-muted);
    text-decoration: none;
    padding: 3px 0 3px 10px;
    border-left: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    line-height: 1.45;
    margin-bottom: 2px;
}
.hv2-mega__prog:hover {
    color: var(--hv2-primary);
    border-left-color: var(--hv2-primary);
    text-decoration: none;
}

.hv2-mega__see-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--hv2-primary);
    text-decoration: none;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.2s;
}
.hv2-mega__see-all:hover { gap: 6px; text-decoration: none; color: var(--hv2-primary); }

.hv2-mega__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hv2-mega__browse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hv2-dark);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}
.hv2-mega__browse:hover { color: var(--hv2-primary); gap: 10px; text-decoration: none; }

.hv2-mega__cta {
    font-size: 13px !important;
    padding: 10px 20px !important;
}

/* ── How It Works ────────────────────────────────────────────── */

.hv2-how {
    background: var(--hv2-cream);
    padding: 84px 0;
    position: relative;
    overflow: hidden;
}

.hv2-how__bg-deco {
    position: absolute;
    right: -80px;
    bottom: -60px;
    width: 480px;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}

.hv2-how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
    position: relative;
}

/* Dotted connector lines between steps */
.hv2-how__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 63px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--hv2-primary) 0,
        var(--hv2-primary) 6px,
        transparent 6px,
        transparent 11px
    );
    z-index: 2;
}

.hv2-how__step {
    position: relative;
    padding: 32px 28px 28px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(200,98,42,0.1);
    transition: box-shadow 0.25s, border-color 0.25s;
}

.hv2-how__step:hover {
    border-color: rgba(200,98,42,0.3);
    box-shadow: 0 8px 32px rgba(200,98,42,0.08);
}

.hv2-how__step::before {
    content: attr(data-step);
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 56px;
    font-weight: 900;
    color: var(--hv2-cream);
    line-height: 1;
    font-family: 'Lexend', sans-serif;
    letter-spacing: -2px;
}

.hv2-how__step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    flex-shrink: 0;
}

/* Diamond background behind each step icon */
.hv2-how__step-icon::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: rgba(200,98,42,0.1);
    transform: rotate(45deg);
    border-radius: 6px;
    transition: background 0.25s;
}

.hv2-how__step:hover .hv2-how__step-icon::before {
    background: rgba(200,98,42,0.18);
}

.hv2-how__step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--hv2-primary);
    position: relative;
    z-index: 1;
}

.hv2-how__step-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--hv2-dark);
    margin-bottom: 12px;
    line-height: 1.35;
}

.hv2-how__step-body {
    font-size: 14px;
    font-weight: 400;
    color: var(--hv2-muted);
    line-height: 1.7;
    margin: 0;
}

.hv2-how__note {
    font-size: 14px;
    font-weight: 500;
    color: var(--hv2-dark);
    margin-top: 40px;
    padding: 18px 28px;
    background: #fff;
    border-radius: 8px;
    border-left: 3px solid var(--hv2-primary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .hv2-how__steps { grid-template-columns: 1fr; gap: 18px; }
    .hv2-how__step:not(:last-child)::after { display: none; }
    .hv2-how__bg-deco { display: none; }
}

/* ── iEgypt Promise ──────────────────────────────────────────── */

.hv2-promise {
    background: #fff;
    padding: 84px 0;
}

.hv2-promise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 52px;
}

.hv2-promise__card {
    padding: 36px 28px;
    border-radius: 10px;
    border: 1px solid var(--hv2-border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hv2-promise__card:hover {
    border-color: var(--hv2-primary);
    box-shadow: 0 8px 28px rgba(200,98,42,0.08);
}

.hv2-promise__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    flex-shrink: 0;
}

/* Diamond container */
.hv2-promise__icon::before {
    content: '';
    position: absolute;
    inset: 6px;
    background: rgba(200,98,42,0.1);
    transform: rotate(45deg);
    border-radius: 6px;
    transition: background 0.25s;
}

.hv2-promise__card:hover .hv2-promise__icon::before {
    background: rgba(200,98,42,0.2);
}

.hv2-promise__icon svg {
    width: 32px;
    height: 32px;
    color: var(--hv2-primary);
    position: relative;
    z-index: 1;
}

.hv2-promise__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--hv2-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hv2-promise__body {
    font-size: 14px;
    color: var(--hv2-muted);
    line-height: 1.7;
    margin: 0;
}

.hv2-promise__quote {
    text-align: center;
    font-size: 16px;
    font-style: italic;
    color: var(--hv2-muted);
    margin-top: 52px;
    padding: 0 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.hv2-promise__quote::before {
    content: '\201C';
    font-size: 48px;
    color: var(--hv2-primary);
    opacity: 0.3;
    display: block;
    line-height: 0.8;
    margin-bottom: 8px;
    font-style: normal;
}

@media (max-width: 991px) {
    .hv2-promise__grid { grid-template-columns: 1fr; gap: 20px; }
    .hv2-promise__quote { padding: 0; }
}

/* ── Meet Specialists ────────────────────────────────────────── */

.hv2-specialists {
    background: var(--hv2-cream);
    padding: 84px 0;
}

.hv2-specialists__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0 40px;
}

.hv2-specialist-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--hv2-border);
    transition: transform 0.22s, box-shadow 0.22s;
}

.hv2-specialist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(28,45,69,0.1);
}

.hv2-specialist-card__photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e5e7eb;
}

.hv2-specialist-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.hv2-specialist-card:hover .hv2-specialist-card__photo img {
    transform: scale(1.05);
}

.hv2-specialist-card__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hv2-dark) 0%, #2d4a6b 100%);
    color: rgba(255,255,255,0.28);
}

.hv2-specialist-card__photo-placeholder svg {
    width: 54%;
    height: auto;
}

.hv2-specialist-card__body {
    padding: 20px;
}

.hv2-specialist-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--hv2-dark);
    margin-bottom: 3px;
}

.hv2-specialist-card__role {
    font-size: 12px;
    font-weight: 500;
    color: var(--hv2-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.hv2-specialist-card__divider {
    height: 1px;
    background: var(--hv2-border);
    margin-bottom: 14px;
}

.hv2-specialist-card__quote {
    font-size: 13px;
    font-style: italic;
    color: var(--hv2-muted);
    line-height: 1.6;
    margin: 0;
}

.hv2-specialists__cta-wrap {
    text-align: center;
}

.hv2-specialists__cta-note {
    display: block;
    font-size: 13px;
    color: var(--hv2-muted);
    margin-top: 12px;
}

@media (max-width: 991px) {
    .hv2-specialists__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .hv2-specialists__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ── Destinations ────────────────────────────────────────────── */

.hv2-destinations {
    background: var(--hv2-dark);
    padding: 84px 0;
}

.hv2-section-label--light { color: var(--hv2-gold); }
.hv2-section-title--light { color: #fff; }
.hv2-section-sub--light   { color: rgba(255,255,255,0.6); }

.hv2-destinations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.hv2-dest-tile {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 24px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    gap: 0;
}

.hv2-dest-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 55%, rgba(212,168,83,0.07) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.3s;
}

.hv2-dest-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.4);
    border-color: rgba(212,168,83,0.4);
    text-decoration: none;
}

.hv2-dest-tile:hover::before { opacity: 1; }

.hv2-dest-tile__illus {
    width: 100px;
    height: 76px;
    color: var(--hv2-gold);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.hv2-dest-tile__illus svg { width: 100%; height: 100%; }
.hv2-dest-tile:hover .hv2-dest-tile__illus { transform: scale(1.06) translateY(-3px); }

.hv2-dest-tile__name {
    font-family: 'Lexend', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    margin-bottom: 5px;
}

.hv2-dest-tile__sub {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.38);
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.4;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.hv2-dest-tile__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212,168,83,0.35);
    color: var(--hv2-gold);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s;
    position: relative;
    z-index: 1;
}
.hv2-dest-tile:hover .hv2-dest-tile__arrow {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .hv2-destinations__grid { grid-template-columns: repeat(2, 1fr); }
    .hv2-dest-tile__illus { width: 80px; height: 60px; }
}

@media (max-width: 575px) {
    .hv2-destinations__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── Traveler Reviews ────────────────────────────────────────── */

.hv2-reviews {
    background: var(--hv2-cream);
    padding: 84px 0;
}

/* TripAdvisor badge in header */
.hv2-reviews__ta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 1px solid rgba(52,224,161,0.25);
    border-radius: 8px;
    padding: 10px 16px;
    background: rgba(52,224,161,0.04);
    transition: border-color 0.2s, background 0.2s;
}
.hv2-reviews__ta-badge:hover {
    border-color: rgba(52,224,161,0.5);
    background: rgba(52,224,161,0.08);
    text-decoration: none;
}
.hv2-reviews__ta-score {
    font-size: 14px;
    font-weight: 700;
    color: var(--hv2-dark);
    line-height: 1.2;
}
.hv2-reviews__ta-label {
    font-size: 11px;
    color: var(--hv2-muted);
    line-height: 1.3;
}

/* Featured review — large dark card */
.hv2-review-featured {
    background: var(--hv2-dark);
    border-radius: 16px;
    padding: 40px 40px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hv2-review-featured__deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    pointer-events: none;
}

.hv2-review-featured__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hv2-review-featured__text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    flex: 1;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.hv2-review-featured__rule {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.hv2-review-featured__author {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    position: relative;
    z-index: 1;
}

.hv2-review-featured__meta {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.hv2-review-featured__verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #34E0A1;
    position: relative;
    z-index: 1;
}

/* Smaller review cards */
.hv2-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 26px;
    border: 1px solid var(--hv2-border);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hv2-review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.hv2-review-card__text {
    font-size: 14px;
    color: var(--hv2-dark);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}

.hv2-review-card__rule {
    height: 1px;
    background: var(--hv2-border);
    margin-bottom: 14px;
}

.hv2-review-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--hv2-dark);
    margin-bottom: 2px;
}

.hv2-review-card__meta {
    font-size: 12px;
    color: var(--hv2-muted);
}

.hv2-reviews__footer {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 991px) {
    .hv2-review-featured { padding: 28px 24px 26px; }
    .hv2-review-featured__text { font-size: 14px; }
}

@media (max-width: 767px) {
    .hv2-reviews { padding: 60px 0; }
    .hv2-review-featured { padding: 24px 20px; }
}

/* ── Egypt Insights (Blog) ───────────────────────────────────── */

.hv2-insights {
    background: #fff;
    padding: 84px 0;
}

.hv2-insights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    margin-bottom: 36px;
}

.hv2-post-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--hv2-border);
    text-decoration: none;
    transition: transform 0.22s, box-shadow 0.22s;
}

.hv2-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(28,45,69,0.09);
    text-decoration: none;
}

.hv2-post-card__img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e5e7eb;
    position: relative;
}

.hv2-post-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.hv2-post-card:hover .hv2-post-card__img img {
    transform: scale(1.05);
}

.hv2-post-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    font-size: 28px;
    color: #9ca3af;
}

.hv2-post-card__body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hv2-post-card__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--hv2-primary);
    margin-bottom: 10px;
}

.hv2-post-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--hv2-dark);
    line-height: 1.4;
    margin-bottom: 10px;
    flex: 1;
}

.hv2-post-card__excerpt {
    font-size: 13px;
    color: var(--hv2-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.hv2-post-card__read {
    font-size: 13px;
    font-weight: 600;
    color: var(--hv2-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.hv2-insights__footer {
    text-align: center;
}

@media (max-width: 991px) {
    .hv2-insights__grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ── Footer ──────────────────────────────────────────────────── */

.hv2-footer {
    background: #0d1a2a;
    padding: 64px 0 0;
}

.hv2-footer__logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.hv2-footer__tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 220px;
    margin-bottom: 24px;
}

.hv2-footer__social {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.hv2-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.hv2-footer__social a:hover {
    background: var(--hv2-primary);
    color: #fff;
}

.hv2-footer__col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.hv2-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hv2-footer__links a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.hv2-footer__links a:hover {
    color: #fff;
}

.hv2-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.hv2-footer__contact-item i {
    color: var(--hv2-primary);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.hv2-footer__contact-item:hover {
    color: #fff;
    text-decoration: none;
}

.hv2-footer__bottom {
    margin-top: 52px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.hv2-footer__copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.hv2-footer__bottom-links {
    display: flex;
    gap: 20px;
}

.hv2-footer__bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.hv2-footer__bottom-links a:hover {
    color: rgba(255,255,255,0.75);
}

@media (max-width: 767px) {
    .hv2-footer { padding: 48px 0 0; }
    .hv2-footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── Form additions (customize section) ─────────────────────── */

.hv2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hv2-form-select option {
    background: var(--hv2-dark);
    color: #fff;
}

.hv2-form-select:focus {
    outline: none;
    border-color: var(--hv2-primary);
}

@media (max-width: 575px) {
    .hv2-form-row { grid-template-columns: 1fr; }
}

/* ================================================================
   Programs Listing Page  (prefix: pgm-)
   ================================================================ */

/* ── Page header ─────────────────────────────────────────────── */
.pgm-page-hd {
    background: var(--hv2-dark);
    padding: 112px 0 48px; /* top accounts for fixed header: 36px topbar + ~76px nav */
    color: #fff;
}
.pgm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    margin-bottom: 16px;
    text-decoration: none;
}
.pgm-breadcrumb a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .15s;
}
.pgm-breadcrumb a:hover { color: #fff; }
.pgm-breadcrumb svg { opacity: .4; }
.pgm-page-hd__title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.pgm-page-hd__sub {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    margin: 0;
}

/* ── Section wrapper ─────────────────────────────────────────── */
.pgm-section {
    padding: 48px 0 80px;
    background: #fff;
}
.pgm-sidebar-col {
    padding-right: 32px;
    position: sticky;
    top: 112px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    overflow-x: hidden;
    align-self: flex-start;
    scrollbar-width: thin;
    scrollbar-color: #d8c9b4 transparent;
}
.pgm-sidebar-col::-webkit-scrollbar { width: 4px; }
.pgm-sidebar-col::-webkit-scrollbar-track { background: transparent; }
.pgm-sidebar-col::-webkit-scrollbar-thumb { background: #d8c9b4; border-radius: 4px; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.pgm-sidebar {
    background: #fff;
    border: 1px solid var(--hv2-border);
    border-radius: 10px;
    overflow: hidden;
}
.pgm-sidebar__block {
    border-bottom: 1px solid var(--hv2-border);
    padding: 0;
}
.pgm-sidebar__block:last-child { border-bottom: none; }
.pgm-sidebar__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--hv2-dark);
    padding: 18px 20px 14px;
    margin: 0;
}
.pgm-sidebar__group-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: background .15s;
}
.pgm-sidebar__group-hd:hover { background: var(--hv2-cream); }
.pgm-sidebar__chevron {
    color: var(--hv2-muted);
    transition: transform .2s;
    flex-shrink: 0;
}
.pgm-sidebar__group-hd.is-open .pgm-sidebar__chevron {
    transform: rotate(180deg);
}
.pgm-sidebar__group-body {
    display: none;
    padding: 4px 20px 16px;
}
.pgm-sidebar__group-body.is-open { display: block; }

/* Search input */
.pgm-sidebar__search-wrap {
    position: relative;
    padding: 0 20px 16px;
}
.pgm-sidebar__input {
    width: 100%;
    border: 1.5px solid var(--hv2-border);
    border-radius: 6px;
    padding: 9px 36px 9px 12px;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    color: var(--hv2-dark);
    background: #fff;
    transition: border-color .15s;
    box-sizing: border-box;
}
.pgm-sidebar__input:focus {
    outline: none;
    border-color: var(--hv2-primary);
}
.pgm-sidebar__search-icon {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hv2-muted);
    pointer-events: none;
}

/* Category groups */
.pgm-sidebar__cat-group { margin-bottom: 10px; }
.pgm-sidebar__cat-group:last-child { margin-bottom: 0; }
.pgm-sidebar__check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--hv2-dark);
    cursor: pointer;
    padding: 3px 0;
    transition: color .15s;
}
.pgm-sidebar__check-label:hover { color: var(--hv2-primary); }
.pgm-sidebar__check-label--parent {
    font-weight: 600;
    font-size: 13.5px;
}
.pgm-sidebar__check-label--child {
    font-size: 13px;
    color: var(--hv2-muted);
    padding-left: 20px;
}
.pgm-sidebar__check-label--child:hover { color: var(--hv2-primary); }
.pgm-sidebar__children { margin-top: 4px; }
.pgm-sidebar__check {
    width: 16px;
    height: 16px;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    accent-color: var(--hv2-primary);
    flex-shrink: 0;
    cursor: pointer;
}

/* Price inputs */
.pgm-sidebar__price-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.pgm-sidebar__price-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pgm-sidebar__price-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--hv2-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pgm-sidebar__price-input {
    width: 100%;
    border: 1.5px solid var(--hv2-border);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    color: var(--hv2-dark);
    background: #fff;
    transition: border-color .15s;
    box-sizing: border-box;
}
.pgm-sidebar__price-input:focus {
    outline: none;
    border-color: var(--hv2-primary);
}
.pgm-sidebar__price-sep {
    color: var(--hv2-muted);
    font-size: 16px;
    padding-bottom: 8px;
    flex-shrink: 0;
}

/* Sidebar actions */
.pgm-sidebar__actions {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pgm-sidebar__apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--hv2-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    transition: background .15s;
    width: 100%;
}
.pgm-sidebar__apply:hover { background: #b5561f; }
.pgm-sidebar__clear {
    text-align: center;
    font-size: 13px;
    color: var(--hv2-muted);
    text-decoration: none;
    transition: color .15s;
}
.pgm-sidebar__clear:hover { color: var(--hv2-primary); }

/* ── Mobile filter bar ───────────────────────────────────────── */
.pgm-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid var(--hv2-border);
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    color: var(--hv2-dark);
    cursor: pointer;
    transition: border-color .15s;
}
.pgm-filter-btn:hover { border-color: var(--hv2-primary); }
.pgm-filter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hv2-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-left: 2px;
}
.pgm-mobile-count {
    font-size: 13px;
    color: var(--hv2-muted);
}

/* Offcanvas sidebar */
.pgm-offcanvas { max-width: 320px; }
.pgm-offcanvas__header {
    border-bottom: 1px solid var(--hv2-border);
    padding: 16px 20px;
}
.pgm-offcanvas__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--hv2-dark);
    margin: 0;
}
.pgm-offcanvas .pgm-sidebar {
    position: static;
    border: none;
    border-radius: 0;
}

/* ── Results header ──────────────────────────────────────────── */
.pgm-results-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hv2-border);
}
.pgm-results-count {
    font-size: 14px;
    color: var(--hv2-muted);
}
.pgm-sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pgm-sort-label {
    font-size: 13px;
    color: var(--hv2-muted);
    white-space: nowrap;
}
.pgm-sort-select {
    border: 1.5px solid var(--hv2-border);
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 13px;
    font-family: 'Lexend', sans-serif;
    color: var(--hv2-dark);
    background: #fff;
    cursor: pointer;
}
.pgm-sort-select:focus { outline: none; border-color: var(--hv2-primary); }

/* ── Active filter chips ─────────────────────────────────────── */
.pgm-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.pgm-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--hv2-cream);
    color: var(--hv2-dark);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 11px;
    border-radius: 100px;
    border: 1px solid #e8ddd0;
}
.pgm-chip--clear {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s;
}
.pgm-chip--clear:hover { background: #fecaca; color: #dc2626; }

/* ── Program card grid ───────────────────────────────────────── */
.pgm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
@media (max-width: 1199px) { .pgm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .pgm-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ── Program card ────────────────────────────────────────────── */
.pgm-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--hv2-border);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, transform .2s;
}
.pgm-card:hover {
    box-shadow: 0 8px 28px rgba(28,45,69,.12);
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}
.pgm-card__img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--hv2-cream);
}
.pgm-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.pgm-card:hover .pgm-card__img { transform: scale(1.04); }
.pgm-card__days-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(28,45,69,.82);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}
.pgm-card__pace-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: rgba(28,45,69,.80);
    color: #fff;
    backdrop-filter: blur(4px);
}
.pgm-card__pace--easy     { background: #d1fae5; color: #065f46; }
.pgm-card__pace--moderate { background: #fef3c7; color: #92400e; }
.pgm-card__pace--active   { background: #fee2e2; color: #991b1b; }

.pgm-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 18px 18px;
}
.pgm-card__cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hv2-primary);
    margin-bottom: 6px;
    display: block;
}
.pgm-card__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--hv2-dark);
    line-height: 1.35;
    margin: 0 0 10px;
    transition: color .15s;
}
.pgm-card:hover .pgm-card__name { color: var(--hv2-primary); }
.pgm-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.pgm-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--hv2-muted);
}
.pgm-card__reviews {
    color: var(--hv2-gold);
}
.pgm-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--hv2-border);
}
.pgm-card__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.pgm-card__price-label {
    font-size: 11px;
    color: var(--hv2-muted);
}
.pgm-card__price {
    font-size: 17px;
    font-weight: 700;
    color: var(--hv2-dark);
}
.pgm-card__price--contact {
    font-size: 13px;
    font-weight: 600;
    color: var(--hv2-primary);
}
.pgm-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--hv2-primary);
    border: 1.5px solid var(--hv2-primary);
    padding: 5px 12px;
    border-radius: 100px;
    transition: background .15s, color .15s, gap .15s;
}
.pgm-card:hover .pgm-card__cta {
    background: var(--hv2-primary);
    color: #fff;
    gap: 7px;
}

/* ── Pagination (matches blog .bl-pagination; centered, stacked) ─ */
.pgm-pagination {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}
/* Stack the paginator vertically and centre it: page buttons on top,
   "Showing X to Y of Z results" centred beneath them. */
.pgm-pagination nav {
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.pgm-pagination nav > div:last-child {
    flex: none !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    gap: 12px;
}
.pgm-pagination nav p {
    margin: 0;
    text-align: center;
}
.pgm-pagination .pagination { gap: 4px; margin: 0; }
.pgm-pagination .page-link {
    border-radius: 100px !important;
    border-color: var(--hv2-border);
    color: var(--hv2-dark);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    padding: 8px 16px;
    transition: background .15s, border-color .15s, color .15s;
}
.pgm-pagination .page-link:hover {
    background: var(--hv2-cream);
    border-color: var(--hv2-primary);
    color: var(--hv2-primary);
}
.pgm-pagination .page-item.active .page-link {
    background: var(--hv2-primary);
    border-color: var(--hv2-primary);
    color: #fff;
}
.pgm-pagination .page-item.disabled .page-link { opacity: .4; }

/* ── Empty state ─────────────────────────────────────────────── */
.pgm-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 72px 24px;
    color: var(--hv2-muted);
}
.pgm-empty svg { margin-bottom: 20px; opacity: .35; }
.pgm-empty h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--hv2-dark);
    margin-bottom: 8px;
}
.pgm-empty p { font-size: 15px; margin-bottom: 0; }
.pgm-empty a:not(.hv2-btn-primary) { color: var(--hv2-primary); }
.pgm-empty .hv2-btn-primary { margin-top: 20px; }
.pgm-empty__reset {
    background: none;
    border: none;
    padding: 0;
    color: var(--hv2-primary);
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
}

/* ── Livewire loading states ────────────────────────────────── */
.pgm-loading-bar {
    height: 3px;
    background: #f0ebe4;
    border-radius: 3px;
    margin-bottom: 16px;
    overflow: hidden;
}
.pgm-loading-bar__inner {
    height: 100%;
    width: 40%;
    background: var(--hv2-primary);
    border-radius: 3px;
    animation: pgm-bar-slide 1s ease-in-out infinite;
}
@keyframes pgm-bar-slide {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}
.pgm-results--loading {
    opacity: .5;
    pointer-events: none;
    transition: opacity .15s;
}

/* ================================================================
   Program Detail Page  (prefix: pd-)
   ================================================================ */

/* ── Hero ─────────────────────────────────────────────────────── */
.pd-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
}
.pd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28,45,69,.45) 0%, rgba(28,45,69,.88) 100%);
    z-index: 0;
}
.pd-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 128px; /* 36px topbar + 76px nav + 16px breathing room */
    padding-bottom: 56px;
}
.pd-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    margin-bottom: 16px;
}
.pd-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
.pd-breadcrumb a:hover { color: #fff; }
.pd-breadcrumb svg { opacity: .45; }
.pd-hero__title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
    max-width: 760px;
}
.pd-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin-bottom: 24px;
}
.pd-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
}
.pd-hero__pace {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.pd-hero__pace--easy     { background: #d1fae5; color: #065f46; }
.pd-hero__pace--moderate { background: #fef3c7; color: #92400e; }
.pd-hero__pace--active   { background: #fee2e2; color: #991b1b; }
.pd-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pd-hero__view-itinerary {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color .15s;
}
.pd-hero__view-itinerary:hover { color: #fff; }

/* ── Category description band ───────────────────────────────── */
.cat-desc-band { padding-top: 32px; }
.cat-desc-text img { max-width: 100%; height: auto !important; }

/* ── Body layout ──────────────────────────────────────────────── */
.pd-body {
    padding: 56px 0 80px;
    background: #fff;
}

/* ── Section headings ─────────────────────────────────────────── */
.pd-section {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--hv2-border);
}
.pd-section:last-child { border-bottom: none; }
.pd-section__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--hv2-dark);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--hv2-primary);
    display: inline-block;
}
.pd-section__title--danger {
    border-bottom-color: #dc2626;
}

/* ── Overview ─────────────────────────────────────────────────── */
.pd-overview__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--hv2-dark);
    white-space: pre-line;
}

/* ── At a glance grid ─────────────────────────────────────────── */
.pd-glance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 575px) { .pd-glance-grid { grid-template-columns: repeat(2, 1fr); } }
.pd-glance-item {
    background: var(--hv2-cream);
    border: 1px solid #ede3d4;
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
}
.pd-glance-item__icon {
    font-size: 22px;
    color: var(--hv2-primary);
    margin-bottom: 8px;
    display: block;
}
.pd-glance-item__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hv2-muted);
    margin-bottom: 4px;
}
.pd-glance-item__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--hv2-dark);
}

/* ── Itinerary accordion ──────────────────────────────────────── */
.pd-itinerary { display: flex; flex-direction: column; gap: 0; }
.pd-itin-item {
    border: 1px solid var(--hv2-border);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}
.pd-itin-item__hd {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    text-align: left;
    transition: background .15s;
}
.pd-itin-item__hd:hover { background: var(--hv2-cream); }
.pd-itin-item__day {
    flex-shrink: 0;
    background: var(--hv2-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
}
.pd-itin-item__title {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--hv2-dark);
}
.pd-itin-item__chevron {
    color: var(--hv2-muted);
    font-size: 12px;
    transition: transform .2s;
    flex-shrink: 0;
}
.pd-itin-item__chevron.is-open { transform: rotate(180deg); }
.pd-itin-item__body { padding: 0 20px 20px; }
.pd-itin-item__img-wrap { margin-bottom: 16px; margin-left: -20px; margin-right: -20px; }
.pd-itin-item__img { width: 100%; height: 240px; object-fit: cover; }
.pd-itin-item__desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--hv2-dark);
    margin-bottom: 16px;
}
.pd-itin-item__desc img { max-width: 100%; height: auto !important; }
.pd-itin-item__footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid var(--hv2-border);
    flex-wrap: wrap;
}
.pd-itin-item__meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--hv2-muted);
}
.pd-empty-note {
    font-size: 15px;
    color: var(--hv2-muted);
    padding: 24px;
    background: var(--hv2-cream);
    border-radius: 8px;
    border: 1px solid #ede3d4;
}
.pd-empty-note a { color: var(--hv2-primary); }

/* ── Inclusions / Exclusions ──────────────────────────────────── */
.pd-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pd-check-list li {
    font-size: 14px;
    color: var(--hv2-dark);
    display: flex;
    align-items: flex-start;
    gap: 0;
    line-height: 1.5;
}

/* ── Available dates ──────────────────────────────────────────── */
.pd-dates { display: flex; flex-direction: column; gap: 12px; }
.pd-date-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1.5px solid var(--hv2-border);
    border-radius: 10px;
    padding: 18px 20px;
    flex-wrap: wrap;
}
.pd-date-row--sold-out { opacity: .6; background: #f9fafb; }
.pd-date-row__ribbon {
    position: absolute;
    top: -1px;
    left: 16px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 0 0 6px 6px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.pd-date-row__ribbon--offer    { background: #d1fae5; color: #065f46; }
.pd-date-row__ribbon--sold-out { background: #fee2e2; color: #991b1b; }
.pd-date-row__info { flex: 1; min-width: 160px; }
.pd-date-row__title { font-size: 15px; font-weight: 600; color: var(--hv2-dark); margin-bottom: 2px; }
.pd-date-row__dates { font-size: 13px; color: var(--hv2-muted); }
.pd-date-row__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
}
.pd-date-row__price-before {
    font-size: 13px;
    color: var(--hv2-muted);
    text-decoration: line-through;
}
.pd-date-row__price-now {
    font-size: 20px;
    font-weight: 700;
    color: var(--hv2-dark);
}
.pd-date-row__room {
    font-size: 12px;
    color: var(--hv2-muted);
}
.pd-date-row__book {
    flex-shrink: 0;
    background: var(--hv2-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    transition: background .15s;
}
.pd-date-row__book:hover:not(:disabled) { background: #b5561f; }
.pd-date-row__book--disabled,
.pd-date-row__book:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* ── Sticky sidebar ───────────────────────────────────────────── */
.pd-sidebar {
    position: sticky;
    top: 90px;
    background: #fff;
    border: 1.5px solid var(--hv2-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(28,45,69,.08);
}
.pd-sidebar__price-box {
    background: var(--hv2-dark);
    padding: 24px;
    text-align: center;
}
.pd-sidebar__price-from {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 4px;
}
.pd-sidebar__price {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.pd-sidebar__price-pp {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
}
.pd-sidebar__ctas {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid var(--hv2-border);
}
.pd-sidebar__cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--hv2-primary);
    color: #fff;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background .15s;
}
.pd-sidebar__cta-primary:hover { background: #b5561f; color: #fff; }
.pd-sidebar__cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background .15s;
}
.pd-sidebar__cta-whatsapp:hover { background: #1ebe5d; color: #fff; }
.pd-sidebar__cta-whatsapp .fa-whatsapp { font-size: 16px; }
.pd-sidebar__trust {
    list-style: none;
    margin: 0;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--hv2-border);
}
.pd-sidebar__trust li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--hv2-dark);
}
.pd-sidebar__trust .fa-circle-check { color: #16a34a; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.pd-sidebar__specialist {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}
.pd-sidebar__specialist-avatar-wrap { flex-shrink: 0; }
.pd-sidebar__specialist-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hv2-cream);
    border: 2px solid var(--hv2-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hv2-primary);
    font-size: 18px;
}
.pd-sidebar__specialist-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--hv2-dark);
    margin-bottom: 1px;
}
.pd-sidebar__specialist-role {
    font-size: 12px;
    color: var(--hv2-primary);
    margin-bottom: 2px;
}
.pd-sidebar__specialist-note {
    font-size: 11px;
    color: var(--hv2-muted);
    font-style: italic;
}

/* ── Mobile sticky CTA bar ────────────────────────────────────── */
.pd-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border-top: 1px solid var(--hv2-border);
    padding: 10px 0;
    box-shadow: 0 -4px 16px rgba(28,45,69,.1);
}
.pd-mobile-cta__primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--hv2-primary);
    color: #fff;
    text-decoration: none;
    padding: 12px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: background .15s;
}
.pd-mobile-cta__primary:hover { background: #b5561f; color: #fff; }
.pd-mobile-cta__whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: background .15s;
}
.pd-mobile-cta__whatsapp:hover { background: #1ebe5d; color: #fff; }

/* Push page content above the fixed mobile bar on small screens */
@media (max-width: 991px) {
    .pd-body { padding-bottom: 120px; }
}

/* ── Mobile menu footer WhatsApp button ──────────────────────── */
.hv2-mmenu__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border: 2px solid #25d366;
    border-radius: 100px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    transition: background .15s, border-color .15s;
}
.hv2-mmenu__wa:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
    text-decoration: none;
}

/* ── Prefooter editorial band  (orange — clearly distinct from footer) ── */
.hv2-prefooter {
    background: var(--hv2-primary);
    padding: clamp(64px, 7vw, 96px) 0;
    position: relative;
    overflow: hidden;
}
.hv2-prefooter::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hv2-prefooter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}
.hv2-prefooter__kicker {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 16px;
}
.hv2-prefooter__headline {
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -2.5px;
    margin: 0;
}
.hv2-prefooter__right { max-width: 380px; }
.hv2-prefooter__body {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    line-height: 1.65;
    margin-bottom: 28px;
}
.hv2-prefooter__ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hv2-prefooter__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--hv2-primary);
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: 100px;
    text-decoration: none;
    border: 2px solid #fff;
    transition: background .2s, transform .2s;
}
.hv2-prefooter__cta:hover {
    background: var(--hv2-cream);
    border-color: var(--hv2-cream);
    color: var(--hv2-primary);
    transform: translateY(-2px);
    text-decoration: none;
}
.hv2-prefooter__wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 22px;
    border: 1.5px solid rgba(255,255,255,.45);
    border-radius: 100px;
    transition: border-color .2s, background .2s;
}
.hv2-prefooter__wa:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.8);
    color: #fff;
    text-decoration: none;
}
.hv2-prefooter__wa i { font-size: 17px; }

@media (max-width: 767px) {
    .hv2-prefooter__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    .hv2-prefooter__right { max-width: 100%; }
    .hv2-prefooter__headline { letter-spacing: -1.8px; }
    .hv2-prefooter__ctas { width: 100%; }
    .hv2-prefooter__cta { flex: 1; justify-content: center; white-space: nowrap; font-size: 13px; padding: 12px 16px; }
    .hv2-prefooter__wa  { flex: 1; justify-content: center; white-space: nowrap; font-size: 13px; padding: 11px 14px; }
}

/* ================================================================
   Speak to a Specialist modal  — hv2-sq-
   ================================================================ */
.hv2-sq-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.hv2-sq-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
.hv2-sq-overlay__bd {
    position: absolute;
    inset: 0;
    background: rgba(4,9,18,.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.hv2-sq-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: none;
    box-shadow: 0 24px 64px rgba(4,9,18,.35);
    transform: translateY(16px);
    transition: transform 0.3s ease;
}
.hv2-sq-card::-webkit-scrollbar { display: none; }
.hv2-sq-overlay.is-open .hv2-sq-card { transform: translateY(0); }
.hv2-sq-card__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--hv2-border);
    background: #fff;
    color: var(--hv2-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .15s, color .15s;
    z-index: 2;
}
.hv2-sq-card__close:hover { border-color: var(--hv2-dark); color: var(--hv2-dark); }
.hv2-sq-card__hd {
    padding: 36px 36px 24px;
    border-bottom: 1px solid var(--hv2-border);
    margin-bottom: 28px;
}
.hv2-sq-card__label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hv2-primary);
    margin-bottom: 8px;
}
.hv2-sq-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--hv2-dark);
    margin: 0 0 6px;
}
.hv2-sq-card__sub {
    font-size: 13px;
    color: var(--hv2-muted);
    line-height: 1.6;
    margin: 0;
}
.hv2-sq-form { padding: 0 36px 32px; }
.hv2-sq-form .hv2-form-label {
    color: var(--hv2-dark);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
}
.hv2-sq-form .hv2-form-input {
    background-color: #f8f9fa;
    border: 1.5px solid var(--hv2-border);
    color: var(--hv2-dark);
    border-radius: 10px;
}
.hv2-sq-form .hv2-form-input::placeholder { color: #9ca3af; }
.hv2-sq-form .hv2-form-input:hover { background-color: #f0f1f3; border-color: #c5cad2; }
.hv2-sq-form .hv2-form-input:focus { background-color: #fff; border-color: var(--hv2-primary); outline: none; }
.hv2-sq-form .hv2-form-select {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236b7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.hv2-sq-submit {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 24px;
    transition: background-color .25s, border-color .25s;
}
.hv2-sq-submit.is-success {
    background-color: #16a34a !important;
    border-color: #16a34a !important;
    color: #fff !important;
    pointer-events: none;
}
.hv2-sq-form__wa {
    text-align: center;
    padding: 0 36px 24px;
    font-size: 13px;
    color: var(--hv2-muted);
}
.hv2-sq-form__wa a { color: #25d366; text-decoration: none; font-weight: 600; }
.hv2-sq-form__wa a:hover { opacity: .8; }
@media (max-width: 575px) {
    .hv2-sq-card__hd  { padding: 28px 20px 20px; }
    .hv2-sq-form       { padding: 0 20px 24px; }
    .hv2-sq-form__wa   { padding: 0 20px 20px; }
    .hv2-sq-card__title { font-size: 19px; }
}

/* ================================================================
   nav-solid — force solid navbar on light-background pages
   (verify, policies). Mirror the hv2-nav--scrolled state via a
   body class so it takes effect before JS runs (no flash).
   ================================================================ */
.nav-solid #hv2-navbar {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 16px rgba(28, 45, 69, 0.09);
}
.nav-solid #hv2-navbar .hv2-nav__link {
    color: var(--hv2-dark);
    text-shadow: none;
}
.nav-solid #hv2-navbar .hv2-nav__link:hover {
    color: var(--hv2-primary);
}
.nav-solid #hv2-navbar .hv2-nav__brand-light { display: none; }
.nav-solid #hv2-navbar .hv2-nav__brand-dark  { display: block; }
.nav-solid #hv2-navbar .hv2-nav__toggler span { background: var(--hv2-dark); }
.nav-solid #hv2-site-header .hv2-topbar { height: 0; opacity: 0; overflow: hidden; }

/* ================================================================
   pd-private-cta — No dates? Private booking CTA
   ================================================================ */
.pd-private-cta {
    background: var(--hv2-cream);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}
.pd-private-cta__text {
    font-size: 15px;
    color: var(--hv2-muted);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 24px;
}
.pd-private-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pd-private-cta__wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #25d366;
    text-decoration: none;
    transition: opacity .15s;
}
.pd-private-cta__wa:hover { opacity: .75; color: #25d366; }

/* ================================================================
   pd-related — Related tours section
   ================================================================ */
.pd-related {
    padding: 64px 0;
    background: var(--hv2-cream);
}
.pd-related__kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hv2-primary);
    margin-bottom: 8px;
}
.pd-related__title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--hv2-dark);
    margin: 0 0 32px;
}

/* ================================================================
   hm-prog-card — Shared program card component (used on homepage,
   program detail related tours, programs listing)
   ================================================================ */
.hm-prog-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(28,45,69,.08);
    text-decoration: none;
    transition: box-shadow .3s, transform .3s;
    height: 100%;
}
.hm-prog-card:hover {
    box-shadow: 0 10px 36px rgba(28,45,69,.13);
    transform: translateY(-4px);
    text-decoration: none;
}

.hm-prog-card__img-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 62%;
    flex-shrink: 0;
}
.hm-prog-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.hm-prog-card:hover .hm-prog-card__img { transform: scale(1.06); }

.hm-prog-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(4px);
    color: var(--hv2-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 2;
}

.hm-prog-card__body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hm-prog-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--hv2-dark);
    line-height: 1.35;
    margin: 0 0 12px;
}

.hm-prog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
    color: var(--hv2-muted);
}
.hm-prog-card__days i { margin-right: 4px; font-size: 12px; }

.hm-prog-card__price {
    font-weight: 700;
    color: var(--hv2-primary);
    white-space: nowrap;
}

/* ================================================================
   Quote form styles (shared — moved from home.css)
   ================================================================ */
.hm-quote__form-wrap {
    background: #fff;
    border-radius: 18px;
    padding: 36px 36px 40px;
    box-shadow: 0 8px 48px rgba(0,0,0,.25);
}

.hm-quote__form .hv2-form-label {
    color: var(--hv2-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: none;
    margin-bottom: 6px;
}
.hm-quote__form .hv2-form-label span { color: var(--hv2-primary); }

.hm-quote__form .hv2-form-input,
.hm-quote__form textarea.hv2-form-input {
    background-color: #f8f9fa;
    border-color: #e5e7eb;
    color: var(--hv2-dark);
}
.hm-quote__form .hv2-form-input:hover,
.hm-quote__form textarea.hv2-form-input:hover {
    border-color: #c5cad2;
    background-color: #f0f1f3;
}
.hm-quote__form .hv2-form-input:focus,
.hm-quote__form textarea.hv2-form-input:focus {
    background-color: #fff;
    border-color: var(--hv2-primary);
    color: var(--hv2-dark);
}
.hm-quote__form .hv2-form-input::placeholder { color: #9ca3af; }
.hm-quote__form .hv2-form-select {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236b7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hm-quote__submit {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 24px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.5s ease, border-color 0.5s ease;
}
.hm-quote__submit-text {
    transition: opacity 0.15s ease;
    pointer-events: none;
}
.hm-quote__plane {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 17px;
    opacity: 0;
    pointer-events: none;
    transition: left 1.8s ease, opacity 0.2s ease 1.6s;
}
.hm-quote__submit.is-hovering {
    background-color: #6b7280 !important;
    border-color: #6b7280 !important;
}
.hm-quote__submit.is-hovering .hm-quote__submit-text {
    opacity: 0;
}
.hm-quote__submit.is-hovering .hm-quote__plane {
    left: calc(100% - 44px);
    opacity: 1;
    transition: left 1.8s ease, opacity 0.15s ease;
}
.hm-quote__submit.is-success {
    background-color: #16a34a !important;
    border-color: #16a34a !important;
    color: #fff !important;
    pointer-events: none;
}
.hm-quote__submit.is-success .fa-circle-check { font-size: 20px; }

.hm-quote__success {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    color: #166534;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}
.hm-quote__success .fa-circle-check {
    color: #16a34a;
    font-size: 22px;
    flex-shrink: 0;
}

/* ── Quote form "Tell us more" expander ──────────────────────── */
.hq-more-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px dashed #d1d5db;
    border-radius: 100px;
    padding: 10px 18px;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--hv2-primary);
    cursor: pointer;
    transition: border-color .2s, background .2s;
    width: 100%;
    justify-content: center;
}
.hq-more-toggle:hover {
    border-color: var(--hv2-primary);
    background: #fef3ed;
}
.hq-more-toggle.is-open {
    border-style: solid;
    border-color: var(--hv2-primary);
    background: #fef3ed;
}
.hq-more-toggle__icon { transition: transform .25s; flex-shrink: 0; }
.hq-more-toggle.is-open .hq-more-toggle__icon { transform: rotate(45deg); }

.hq-more-block {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease, opacity .3s ease;
    opacity: 0;
    padding-top: 0;
}
.hq-more-block.is-open {
    max-height: 2000px;
    opacity: 1;
}

/* ── Quote form accordion sections ───────────────────────────── */
.hq-accordion {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
}
.hq-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;
    background: none;
    border: none;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--hv2-dark);
    cursor: pointer;
    text-align: left;
    transition: background .15s;
}
.hq-accordion__trigger:hover { background: #f0f1f2; }
.hq-accordion__chevron {
    flex-shrink: 0;
    transition: transform 0.25s;
    color: #9ca3af;
}
.hq-accordion.is-open .hq-accordion__chevron { transform: rotate(180deg); }
.hq-accordion.is-open .hq-accordion__trigger { color: var(--hv2-primary); }
.hq-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.hq-accordion.is-open .hq-accordion__panel { max-height: 700px; }
.hq-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    padding: 4px 16px 14px;
}
.hq-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--hv2-dark);
    cursor: pointer;
    user-select: none;
}
.hq-check-item input[type="checkbox"] {
    accent-color: var(--hv2-primary);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    cursor: pointer;
}

@media (max-width: 991px) {
    .hm-quote__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
@media (max-width: 767px) {
    .hm-quote__form-wrap { padding: 24px 20px 28px; }
    .hm-trips { padding: 48px 0; }
    .hm-trips__hd { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   M4 - Two-step quote form (qf-)
   Shared by homepage, program, category, and compact modal.
   ============================================================ */

[x-cloak] { display: none !important; }

.qf-form { position: relative; }

/* Panels receive programmatic focus on step change (a11y), but are never in the
   tab order (tabindex="-1") — suppress their focus outline so submitting via
   keyboard doesn't draw a black border around the whole step. */
.qf-panel:focus { outline: none; }

/* Progress indicator */
.qf-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}
.qf-steps__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    transition: color .25s ease;
}
.qf-steps__num {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
    transition: background-color .25s ease, color .25s ease;
}
.qf-steps__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    white-space: nowrap;
}
.qf-steps__item.is-active .qf-steps__num,
.qf-steps__item.is-done .qf-steps__num {
    background: var(--hv2-primary);
    color: #fff;
}
.qf-steps__item.is-active,
.qf-steps__item.is-done { color: var(--hv2-dark); }
.qf-steps__bar {
    flex: 1 1 auto;
    height: 3px;
    border-radius: 3px;
    background: #e5e7eb;
    overflow: hidden;
    min-width: 18px;
}
.qf-steps__bar-fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--hv2-primary);
    transition: width .35s ease;
}
.qf-steps__bar-fill.is-full { width: 100%; }

/* Step 1 trust line */
.qf-promise {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 0;
    font-size: 13px;
    color: #166534;
    font-weight: 600;
}
.qf-promise .fa-circle-check { color: #16a34a; }

.qf-phone-error {
    width: 100%;
    margin-top: 4px;
    font-size: 13px;
    color: #dc2626;
}

/* Step 2 */
.qf-step2-intro {
    margin: 0 0 16px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Interest chips */
.qf-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.qf-chip {
    position: relative;
    cursor: pointer;
    margin: 0;
}
.qf-chip input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.qf-chip span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 100px;
    border: 1.5px solid #e5e7eb;
    background: #f8f9fa;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
    user-select: none;
}
.qf-chip:hover span { border-color: #c5cad2; background: #f0f1f3; }
.qf-chip input:checked + span {
    background: var(--hv2-primary);
    border-color: var(--hv2-primary);
    color: #fff;
}
.qf-chip input:focus-visible + span {
    outline: 2px solid var(--hv2-primary);
    outline-offset: 2px;
}

/* Step 2 action row */
.qf-step2-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.qf-step2-actions .qf-send { flex: 1 1 auto; }
.qf-skip {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 6px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .15s ease;
}
.qf-skip:hover { color: var(--hv2-dark); }

.qf-next .fa-arrow-right { margin-left: 8px; }

/* Compact (modal) tweaks */
.hv2-sq-form .qf-steps { margin-bottom: 18px; }
.hv2-sq-form .qf-steps__label { font-size: 12px; }

@media (max-width: 575.98px) {
    /* Numbers + bars only — nowrap labels overflow the narrow modal / crowd the
       homepage form. The step is still conveyed by the active/done circle states. */
    .qf-steps { gap: 6px; }
    .qf-steps__label { display: none; }
    .qf-step2-actions { gap: 8px; }
    .qf-step2-actions .qf-send { flex: 1 1 100%; }
    .qf-skip { flex: 1 1 100%; text-align: center; }
}

/* "Show more" toggle for chip groups */
.qf-chips-more {
    margin-top: 10px;
    background: none;
    border: none;
    padding: 4px 2px;
    color: var(--hv2-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.qf-chips-more:hover { text-decoration: underline; text-underline-offset: 3px; }
.qf-chips-more .fa-chevron-down { font-size: 11px; }

/* Back button (slides 2 + 3) */
.qf-back {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .15s ease;
}
.qf-back:hover { color: var(--hv2-dark); }
.qf-back .fa-arrow-left { font-size: 12px; }

/* Step 3 - OTP verify slide */
.qf-otp__head { text-align: center; margin-bottom: 18px; }
.qf-otp__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 98, 42, .12);
    color: var(--hv2-primary);
    font-size: 22px;
}
.qf-otp__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    color: var(--hv2-dark);
}
.qf-otp__sub {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}
.qf-otp__sub strong { color: var(--hv2-dark); }
.qf-otp__input {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 6px;
}
.qf-otp__notice {
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
