/* ==========================================================================
   1. GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    color: #333;
    overflow-x: hidden;
    top: 0 !important;
    background: #fff;
}

/* --- LUXURY DESIGN TOKENS --- */
:root {
    --hr-primary: #BF954B;
    --hr-himalayan-gold: #BF954B;
    --hr-charcoal: #1a1a1a;
    --hr-bg-light: #f7f7f6;
    --hr-bg-dark: #163950;
    --hr-white: #ffffff;
    --hr-text-main: #1a1a1a;
    --hr-text-muted: #64748b;
    --hr-text-slate: #475569;
    --hr-text-dark: #1e293b;
    --hr-border: #e2e8f0;
    --hr-serif: 'Playfair Display', serif;
    --hr-sans: 'Inter', sans-serif;
}

/* --- UTILITY CLASSES --- */
.hr-primary-text {
    color: var(--hr-primary) !important;
}

.hr-text-center {
    text-align: center !important;
}

.hr-margin-right {
    margin-right: 15px !important;
}

.hr-margin-bottom {
    margin-bottom: 20px !important;
}

.hr-margin-large-bottom {
    margin-bottom: 60px !important;
}

.hr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

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

/* buttons */
.hr-btn-nav-contact,
.hr-btn-download-gated,
.hr-btn-whatsapp,
.hr-form-btn button,
.hr-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center;
    white-space: nowrap;
}

/* 2. THE BRAND STANDARD (Single Source of Truth for Gold) */
.hr-btn-nav-contact,
.hr-btn-download-gated,
.hr-form-btn button,
.hr-btn-cta {
    background-color: #BF954B;
    color: #ffffff;
}

/* GLOBAL HOVER (Gold -> Darker Gold/Bronze) */
.hr-btn-nav-contact:hover,
.hr-btn-download-gated:hover,
.hr-form-btn button:hover,
.hr-btn-cta:hover {
    background-color: #a37e3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(163, 126, 58, 0.2);
}

/* 3. SPECIFIC CONTEXT LOGIC (Size & Shape) */

/* Header Button (Compact) */
.hr-btn-nav-contact {
    height: 40px;
    padding: 0 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Mega Menu Cards (Symmetry-critical) */
.hr-btn-download-gated,
.hr-btn-whatsapp {
    height: 48px;
    width: 100%;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    gap: 8px;
}

/* Form Submit (Pill Shape) */
.hr-form-btn button {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
}

/* Standard Call-to-Action (The .hr-btn-cta) */
.hr-btn-cta {
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 14px;
}

/* 4. EXCEPTIONS (Specific Functional Colors) */
.hr-btn-whatsapp {
    background-color: #62d370 !important;
    color: #000 !important;
}

.hr-btn-whatsapp:hover {
    background-color: #52c360 !important;
    opacity: 1;
    /* Override the standard opacity hover for color consistency */
}

/* Fix for Google Translate artifacts */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget-icon {
    display: none !important;
}

body>.skiptranslate {
    display: none !important;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ==========================================================================
   2. TOP ANNOUNCEMENT BAR & FLAGS
   ========================================================================== */
.hr-top-bar {
    background: #884c19;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    z-index: 1001;
    position: relative;
    height: 42px;
}

.hr-mobile-language-switcher {
    display: none;
}

.hr-flash-badge {
    background: #ff0000;
    color: #fff;
    padding: 2px 8px;
    font-weight: 900;
    margin-right: 12px;
    border-radius: 2px;
    animation: hrPulse 1.5s infinite;
    display: inline-block;
}

@keyframes hrPulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.hr-announcement {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}

.hr-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.hr-utility {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    color: #fff;
    font-weight: 700;
}

.hr-custom-flags {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hr-custom-flags li {
    cursor: pointer;
    line-height: 0;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hr-custom-flags img {
    width: 22px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: block;
}

.hr-custom-flags li:hover {
    transform: scale(1.25);
    filter: brightness(1.1);
}

/* ==========================================================================
   3. MAIN NAVIGATION & LOGO
   ========================================================================== */
.hr-main-nav {
    background: #ffffff;
    height: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.hr-main-nav.scrolled {
    height: 75px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hr-logo {
    flex: 0 0 220px;
}

.hr-logo img {
    height: 75px;
    width: auto;
    display: block;
    transition: all 0.4s ease;
}

.hr-main-nav.scrolled .hr-logo img {
    height: 55px;
}

.hr-main-nav .hr-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 20px !important;
}

/* 1. Base reset for all search-related elements */
.hr-nav-search-input,
.hr-search-form select,
.hr-search-form input {
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    appearance: none;
    box-sizing: border-box;
}

/* 2. Mega Menu Search Specifics (Section 4) */
.hr-nav-search-input {
    flex-grow: 1;
    padding: 12px 15px;
    font-size: 13px;
    min-width: 50%;
    color: #333;
    /* Ensuring text is visible */
}

/* 3. Hero/Home Search Form Specifics (Section 5) */
.hr-search-form select,
.hr-search-form input {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    width: 100%;
    padding: 2px 0;
}

/* This adds a subtle effect when clicking, since we removed the borders */
.hr-nav-search-input:focus,
.hr-search-form input:focus {
    background: rgba(191, 149, 75, 0.05);
    /* Very light gold tint on focus */
    transition: background 0.3s ease;
}

.hr-nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    padding: 0 15px;
}

.hr-nav-list {
    display: flex;
    list-style: none;
    gap: 15px;
    height: 100%;
    align-items: center;
}

.hr-nav-item {
    position: static;
}

.hr-nav-link {
    position: relative;
    text-decoration: none;
    color: #777167;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: color 0.3s;
    white-space: nowrap;
    padding: 10px 5px;
    letter-spacing: 0.25px;
}

.hr-nav-link::after {
    display: none;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #BF954B;
    transition: width 0.3s ease;
}

.hr-mobile-submenu-toggle {
    display: none;
}

.hr-main-nav.scrolled .hr-nav-link {
    padding: 25px 5px;
}

.hr-icon-sm {
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

@media (max-width: 991px) {
    .hr-icon-sm {
        display: none;
    }
}

.hr-nav-item:hover .hr-nav-link .hr-icon-sm {
    transform: rotate(180deg);
}

.hr-nav-item:hover>.hr-nav-link::after {
    width: 100%;
}



.hr-btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: transparent;
    color: #c49a5c;
    /* Match your brand gold */
    border: 1.5px solid #c49a5c;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.hr-btn-view-all:hover {
    background-color: #c49a5c;
    color: #fff;
    transform: translateX(5px);
    /* Subtle "arrow" nudge effect */
}

.hr-view-all-wrapper {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Separates it from the list above */
    padding-top: 15px;
}

.hr-nav-item.hr-nav-btn-wrapper {
    display: flex;
    align-items: center;
    padding: 15px;
}

.hr-nav-item.hr-nav-btn-wrapper .hr-nav-link {
    padding: 0;
    margin: 0;
}

/* ==========================================================================
   4. MEGA MENU SYSTEM
   ========================================================================== */
/* The Outer Container: Handles the "Bridge" and the Position */
.hr-mega-menu {
    position: absolute;
    /* Move it up slightly into the nav-link territory to eliminate the gap */
    top: 80%;
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);

    /* This padding is the "Solid Tunnel".
       It is invisible but keeps the hover state active. */
    padding-top: 20px;
    background: transparent;

    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);

    /* 0.2s delay on visibility keeps the menu from 'snapping' shut */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.2s;
    z-index: 1000;
}

.hr-main-nav.scrolled .hr-mega-menu {
    top: 73%;
}

/* The Inner Wrapper: Handles the Visual Design (White box, Border, Shadow) */
.hr-mega-menu-content {
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-top: 4px solid #BF954B;
    /* Adjust this padding for the spacing inside your white menu */
    padding: 25px;
}

/* Trigger State */
.hr-has-mega:hover .hr-mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
    /* Show instantly on hover */
}

.hr-mega-grid {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px 40px 40px;
    gap: 30px;
    width: 100%;
    justify-content: space-between;
}

.hr-mega-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hr-mega-col:has(.hr-cta-card) {
    flex: 1.5 1 0;
}

.hr-nav-search-container,
.hr-guide-preview-box,
.hr-expert-card {
    display: flex;
    flex-direction: column;
    background: #f4f7f9;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.hr-card-actions {
    margin-top: auto;
    padding-top: 20px;
}

.hr-nav-search-container,
.hr-expert-headshot,
.hr-guide-thumb {
    flex: 1;
    width: 100%;
    min-height: 200px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.hr-nav-search-container:hover,
.hr-guide-preview-box:hover,
.hr-expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-color: #BF954B;
}

.hr-mega-grid>.hr-mega-col:not(:last-child) {
    border-right: 1px solid #f0f0f0;
    padding-right: 25px;
}

.hr-col-title {
    font-size: 13px;
    font-weight: 900;
    color: #884c19;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    letter-spacing: 1px;
    position: relative;
    border-bottom: 1px solid #BF954B;
}

.hr-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #BF954B;
}

.hr-sub-links {
    list-style: none;
}

.hr-sub-links li {
    margin-bottom: 10px;
}

.hr-sub-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: block;
    transition: all 0.2s ease;
}

.hr-sub-links a:hover {
    color: #BF954B;
    transform: translateX(5px);
}

/* Menu Components (Trip Finder, Guide, Expert) */

.hr-nav-search-container {
    margin: -5px;
    height: auto;
    min-height: 240px;
}

.hr-search-group {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hr-search-group:focus-within {
    border-color: #BF954B;
    box-shadow: 0 0 0 3px rgba(191, 149, 75, 0.1);
}

.hr-search-label {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #666;
    text-transform: uppercase;
}

.hr-nav-search-btn {
    background: #163A51;
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

/* --- Search & Filter Tags --- */
.hr-filter-hint {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    color: #888;
    /* Muted gray for the "label" look */
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hr-filter-tags {
    display: flex;
    flex-wrap: wrap;
    /* Allows tags to wrap on smaller menu widths */
    gap: 10px;
    /* Precise spacing between buttons */
    margin-top: 5px;
}

.hr-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f4f1ee;
    /* Soft earth tone */
    color: #163A51;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hr-tag:hover {
    background: #BF954B;
    /* Your Gold */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(191, 149, 75, 0.2);
}

/* plan your trip and travel guide download */
.hr-guide-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
}

.hr-guide-name {
    font-size: 13px;
    font-weight: 800;
    color: #163A51;
    margin-bottom: 10px;
    line-height: 1.3;
}


.hr-btn-whatsapp {
    background: #62d370 !important;
    color: #000 !important;
}

.hr-btn-whatsapp:hover,
.hr-btn-download-gated:hover {
    opacity: 0.9;
}

.hr-view-all-wrapper {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hr-view-all-btn {
    display: inline-flex;
    align-items: center;
    color: #BF954B;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hr-view-all-btn i {
    margin-left: 8px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.hr-view-all-btn:hover {
    color: #163A51;
    text-decoration: none;
}

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

/* Expedition Hero in Menu */
.hr-cta-card.hr-cta-hero {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hr-cta-card.hr-cta-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hr-cta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(22, 58, 81, 0.9));
    text-align: center;
}

.hr-cta-overlay h4 {
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
}

.hr-btn-ascent {
    display: inline-block;
    border: 2px solid #BF954B;
    color: #fff !important;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
    transition: 0.3s;
    border-radius: 4px;
}

/* ==========================================================================
   5. HERO SECTION & CAPSULE SEARCH
   ========================================================================== */
.hr-hero-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hr-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hr-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115vw;
    height: 64.68vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.hr-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hr-hero-content-area {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hr-hero-stacked-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
}

.hr-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.hr-hero-subtitle {
    font-size: 1.1rem;
    color: #f1f1f1;
    margin-top: 15px;
    font-weight: 400;
    max-width: 700px;
}

/* Capsule Search Bar (TripAdvisor Style) */
.hr-hero-form-wrapper {
    width: 100%;
    max-width: 1050px;
}

.hr-search-form {
    background: #fff;
    padding: 10px 10px 10px 25px;
    border-radius: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 0;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hr-search-form .hr-form-group {
    border-right: 1px solid #eee;
    padding: 5px 15px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hr-search-form .hr-form-group:nth-child(4) {
    border-right: none;
}

.hr-search-form label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #BF954B;
    text-transform: uppercase;
    margin-bottom: 2px;
}


.flatpickr-day.selected {
    background: #BF954B !important;
    border-color: #BF954B !important;
}

/* ==========================================================================
   6. ABOUT SECTION
   ========================================================================== */
section.hr-about-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.hr-about-section .hr-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hr-about-section .hr-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hr-about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    text-transform: none;
}

.hr-about-section .hr-about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.hr-about-section .hr-about-image-wrapper {
    position: relative;
    padding: 10px;
}

.hr-about-section .hr-image-frame {
    position: relative;
    z-index: 2;
    display: block;
    width: 90%;
    max-width: 550px;
}

.hr-about-section .hr-image-frame::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background: #884c19;
    z-index: -1;
    border-radius: 4px;
}

.hr-about-section .hr-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border: 12px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

/* Glass Caption Over Image */
.hr-glass-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    /* position: absolute;
    bottom: 30px;
    left: -20px;
    right: 20px; */
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 4px;
    border-left: 5px solid #BF954B;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), inset 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 5;
}

.hr-glass-caption h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #163A51;
    margin-bottom: 8px;
}

.hr-glass-caption p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
    font-style: italic;
}

.hr-expert-name {
    color: #163A51;
    /* Your Navy */
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.hr-expert-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(191, 149, 75, 0.4);
    /* Faded Gold */
}

/* Experience Badge */
.hr-about-section .hr-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #b95f11 0%, #884c19 100%);
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), inset 0 0 15px rgba(255, 255, 255, 0.3);
    outline: 1px solid rgba(230, 126, 34, 0.3);
    outline-offset: 3px;
    padding: 5px;
}

/* Typography and Layout inside the Experience Badge */
.hr-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

.hr-badge-number {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    /* Large and impactful */
    font-weight: 800;
    line-height: 0.9;
    display: block;
    margin-bottom: 2px;
    line-height: 1;
    color: #BF954B;
}

.hr-badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 2px; */
    gap: 1px;
}

.hr-badge-years {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
}

.hr-badge-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.95;
    letter-spacing: 0.2px;
    /* white-space: nowrap; */
    line-height: 1.1;
    max-width: 80px;
    display: block;
    margin-top: 2px;
    line-height: 10px;
}

.hr-about-section .hr-badge-year {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 0.9;
}

.hr-about-section .hr-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2px;
}

.hr-about-content .hr-section-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    width: fit-content;
    display: block;
}

.hr-about-content .hr-section-title::after {
    margin: 15px 0 0 0;
    /* Keeps the decorative line pinned left */
    width: 60px;
    /* Consistent branding width */
}

/* Summit List */
.hr-summit-row {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    /* Subtle separation from the description */
    padding-top: 20px;
}

.hr-summit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hr-summit-item img {
    width: 28px;
    /* Slightly larger for better detail visibility */
    height: auto;
    filter: grayscale(1) brightness(0.5);
    /* Makes icons look professional/understated */
    transition: filter 0.3s ease;
}

.hr-summit-item:hover img {
    filter: none;
    /* Brings color back on hover */
}

.hr-summit-item span {
    font-size: 13px;
    font-weight: 700;
    color: #163A51;
    /* Your Navy */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   7. WHY TREK WITH US SECTION
   ========================================================================== */
.hr-why-us-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    left: 0;
    padding: 80px 0;
    /* Standardized padding */
    background-color: #fcfbf9;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.hr-why-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(252, 251, 249, 0.94);
    z-index: 1;
}

.hr-why-us-section .hr-container {
    position: relative;
    z-index: 2;
}

.hr-why-us-section .hr-sub-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #163A51;
    margin-bottom: 50px;
    z-index: 2;
    position: relative;
    text-transform: uppercase;
    word-spacing: 10px;
}

.hr-why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px 40px 40px;
    /* Extra top padding */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    /* Connects to the box below */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: none;
    /* Merges into the next div */
}

.hr-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.hr-why-item:hover {
    transform: translateY(-5px);
}

.hr-why-icon-circle {
    width: 80px;
    height: 80px;
    background: #884c19;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(136, 76, 25, 0.1);
    /* Subtle earth-tone shadow */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.hr-why-item:hover .hr-why-icon-circle {
    background: #BF954B;
    transform: translateY(-5px);
}

.hr-why-icon-circle img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.hr-why-item p {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    color: #163A51;
    letter-spacing: 1px;
    max-width: 150px;
}

/* Sustainability & Trust */
.hr-sustainability-box {
    max-width: 1100px;
    margin: 0 auto 0 auto;
    /* Centered with bottom margin */
    background: #ffffff;
    /* Solid white for the "seal" area */
    padding: 40px;
    border-radius: 0 0 20px 20px;
    /* Rounded bottom */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid #eee;
    /* Subtle separator line */
}

.hr-cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 25px 0;
}

.hr-cert-logos img {
    height: 45px;
    opacity: 0.7;
    width: auto;
    filter: grayscale(1);
    transition: opacity 0.3s;
}

.hr-cert-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.hr-commit-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
}

.hr-trust-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.hr-gov-img {
    height: 60px;
}

.hr-gov-info {
    text-align: left;
}

.hr-gov-info strong {
    display: block;
    font-size: 1rem;
    color: #1a1a1a;
}

.hr-gov-info span {
    font-size: 0.85rem;
    color: #666;
}

/* ==========================================================================
   8. PACKAGES, GRIDS & BANNERS
   ========================================================================== */

/* start featured section    */
.hr-package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* --- Featured Trips Grid --- */
.hr-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 4 across for desktop */
    gap: 30px;
    margin-top: 50px;
}

.hr-package-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.hr-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hr-package-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hr-package-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hr-package-card:hover .hr-package-image-wrapper img {
    transform: scale(1.1);
}

/* --- Badge & Price Styling --- */
.hr-package-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #BF954B;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.hr-package-date-badge strong {
    display: block;
    font-size: 16px;
}

.hr-package-price-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(10, 35, 66, 0.95);
    color: #fff;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top-left-radius: 12px;
}

.hr-duration-text {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    color: #ffffff;
    background: #BF954B;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.hr-price-value {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

/* --- Text Content --- */
.hr-package-body {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hr-package-title a {
    font-size: 15.5px;
    font-weight: 800;
    color: #0A2342;
    text-decoration: none;
    line-height: 1.3;
    display: block;
    transition: color 0.3s ease;
}

.hr-package-title a:hover {
    color: #BF954B;
}

/* end featured section */

/* --- Category Grid (The 2-Column Adventure Cards) --- */
.hr-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 across for category view */
    gap: 30px;
    margin: 40px 0;
}

.hr-cat-card-inner {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.hr-cat-card-inner:hover {
    transform: scale(1.02);
}

/* Apply this to both containers to ensure grid harmony */
.hr-cat-img,
.hr-package-img-link {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    /* Ensures the link/div respects dimensions */
    overflow: hidden;
    position: relative;
}

/* This targets the actual images inside those containers */
.hr-cat-img img,
.hr-package-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover effect for both */
.hr-cat-card-inner:hover .hr-cat-img img,
.hr-package-card:hover .hr-package-img-link img {
    transform: scale(1.1);
}

.hr-cat-info {
    padding: 25px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hr-cat-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hr-recommend-banner {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    position: relative;
}

.hr-recommend-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hr-recommend-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 15px;
    max-width: 550px;
    border-left: 6px solid #BF954B;
    /* Your Gold Seal */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hr-card-title {
    font-size: 32px;
    font-weight: 900;
    color: #163A51;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hr-card-desc {
    font-size: 16px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hr-card-desc p {
    margin-bottom: 15px;
}

.hr-link-btn {
    display: inline-flex;
    align-items: center;
    color: #BF954B;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: auto;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.hr-link-btn::after {
    content: ' →';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.hr-link-btn:hover {
    color: #0A2342;
    border-bottom: 2px solid #BF954B;
}

.hr-link-btn:hover::after {
    transform: translateX(5px);
}

.hr-view-more-wrapper {
    display: flex;
    justify-content: center;
    /* Centers the "View More" button */
    margin-top: 50px;
    width: 100%;
}

/* ==========================================================================
   9. BODY CONTENT - HEADER, PARAGRAPH, BUTTONS
   ========================================================================== */

.hr-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
}

.hr-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #884c19;
    margin: 15px auto 0;
}

.hr-content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    /* Space between paragraphs */
}

/* ==========================================================================
   10. THE LUXURY FOOTER
   ========================================================================== */
.hr-footer {
    background-color: var(--hr-bg-dark);
    color: var(--hr-white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* 1. Associated Partners Strip */
.hr-partners-strip {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid var(--hr-border);
}

.hr-partners-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hr-partners-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--hr-text-muted);
    font-weight: 700;
}

.hr-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.hr-partner-item img {
    height: 40px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hr-partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* 2. Main Footer Content */
.hr-footer-stack {
    padding: 100px 40px 60px 40px;
}

.hr-footer-brand-row {
    margin-bottom: 60px;
}

.hr-footer-brand-row h2 {
    font-family: var(--hr-serif);
    color: var(--hr-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hr-footer-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.hr-footer-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hr-footer-heading {
    font-family: var(--hr-serif);
    font-size: 20px;
    color: var(--hr-primary);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hr-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hr-footer-list a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.hr-footer-list a:hover {
    color: var(--hr-primary) !important;
    transform: translateX(5px);
}

/* 3. Info Row (Contact & Social) */
.hr-footer-info-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hr-contact-details p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.hr-contact-details a {
    color: var(--hr-white) !important;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.hr-contact-details a:hover {
    color: var(--hr-primary) !important;
}

.hr-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.hr-social-icons a {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--hr-white) !important;
    text-decoration: none !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.hr-social-icons a:hover {
    background: var(--hr-primary) !important;
    color: var(--hr-white) !important;
    transform: translateY(-5px) !important;
    border-color: var(--hr-primary) !important;
}

/* 4. Copyright Row */
.hr-footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.hr-footer-copyright strong {
    color: var(--hr-primary);
    font-weight: 700;
}

.hr-powered a {
    display: inline-block;
    vertical-align: middle;
}

.hr-powered img {
    height: 20px;
    margin-left: 10px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.hr-powered:hover img {
    opacity: 1;
}

/* ==========================================================================
   10. WHATSAPP & MODALS
   ========================================================================== */
.whatsapp-contact-link {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.whatsapp-contact-link img {
    width: 32px;
    height: 32px;
}

.hr-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.hr-modal-content {
    background-color: #fff;
    margin: 10vh auto;
    width: 90%;
    max-width: 450px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    animation: hrModalFadeIn 0.3s ease-out;
}

@keyframes hrModalFadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hr-close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
    z-index: 10;
}

.hr-modal-header {
    background: #163950;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.hr-pdf-icon {
    font-size: 30px;
    color: #BF954B;
    margin-bottom: 10px;
    display: block;
}

/* 2. Main Footer Content */
.hr-footer-stack {
    padding: 100px 40px 60px 40px;
}

.hr-footer-brand-row {
    margin-bottom: 60px;
}

.hr-footer-brand-row h2 {
    font-family: var(--hr-serif);
    color: var(--hr-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hr-modal-body {
    padding: 30px 40px;
}

.hr-form-group {
    margin-bottom: 15px;
}

.hr-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.hr-form-group input,
.hr-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fdfdfd;
    font-size: 14px;
}

.hr-btn-submit {
    width: 100%;
    background: #BF954B;
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

/* ==========================================================================
   11. RESPONSIVE & MOBILE OVERRIDES
   ========================================================================== */
.hr-mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hr-mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    display: block;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .hr-footer-main-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hr-container {
        padding: 0 20px;
    }

    .hr-top-bar {
        /* display: block !important; */
        /* Forces it to show */
        /* padding: 8px 0 !important;
        font-size: 11px !important; */
        height: auto !important;
        /* Allow it to grow */
    }

    .hr-top-bar .hr-flex-between {
        flex-direction: column;
        /* Stack contact info and social icons */
        gap: 8px;
        text-align: center;
    }

    /* Hide TOP BAR language switcher on mobile */
    .hr-top-bar .hr-language-switcher {
        display: none !important;
    }

    /* Hide TOP BAR WhatsApp/Utility on mobile */
    .hr-top-bar .hr-utility {
        display: none !important;
    }

    /* Show MOBILE MENU language switcher */
    .hr-mobile-language-switcher {
        display: block;
        margin-top: 25px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #eee;
        text-align: center;
    }

    .hr-mobile-language-switcher .hr-custom-flags {
        justify-content: center;
    }

    .hr-top-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hr-main-nav {
        top: 0;
        /* Keeps it under the top bar */
    }

    .hr-search-form {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 20px;
        padding: 20px;
        gap: 20px;
    }

    .hr-search-form .hr-form-group {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    .hr-form-btn {
        grid-column: span 2;
    }

    .hr-form-btn button {
        width: 100%;
    }
}

/* ==========================================================================
   12. Trip Search
   ========================================================================== */

/* 1400px Layout Wrapper */
.search-result .hr-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    /* Fixed sidebar, flexible results */
    gap: 40px;
    padding-top: 40px;
}

/* Sidebar Styling */
.filter-search-wrap {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
    /* Stays with user as they scroll */
}

.filter-heading {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0A2342;
    margin-bottom: 15px;
    border-bottom: 2px solid #BF954B;
    padding-bottom: 5px;
}

/* Custom Checkbox Look */
.filter-search .label {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-search .uk-checkbox:checked {
    background-color: #BF954B;
    border-color: #BF954B;
}

/* The Apply Button - Using our Master System */
.apply-button {
    width: 100%;
    background: #BF954B;
    color: white;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 20px;
}

/* ==========================================================================
   The Search UI CSS
   ========================================================================== */

/* Container Fix for Search Page */
.search-result .uk-container {
    max-width: 1400px !important;
    padding: 40px 20px;
}

/* The Main Card Layout */
.hr-search-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.hr-search-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hr-card-main-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}

.hr-search-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hr-search-card-content {
    padding: 25px;
}

.hr-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.hr-trip-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #0A2342;
}

.hr-card-indicators {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.hr-card-indicators i {
    color: #BF954B;
    margin-right: 5px;
}

/* Highlights Section */
.hr-card-highlights {
    background: #fcfcfc;
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Departure Bar */
.hr-departure-bar {
    background: #0A2342;
    color: #fff;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.hr-status-badge {
    background: #BF954B;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
}

/* ==========================================================================
   13. Responsive
   ========================================================================== */

@media (max-width: 991px) {

    /* 1. Reset Header Layout */
    .hr-main-nav .hr-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

    /* 2. The Mobile Toggle Button Styling */
    .hr-mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
        position: relative;
        z-index: 2005;
        width: 40px;
        height: 40px;
    }

    /* 3. The Slide-out Menu Wrapper */
    .hr-nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        /* Start off-screen */
        width: 85%;
        /* Take up most of the screen */
        height: 100vh;
        background: #ffffff;
        z-index: 2000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 100px 20px 40px 20px;
        /* Space for the top bar and toggle */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: block !important;
        overflow-y: auto;
        /* Allow scrolling if menu is long */
    }

    .hr-nav-wrapper.active {
        right: 0;
        /* Slide in */
    }

    /* 4. The List Items - STACKED */
    .hr-nav-list {
        display: flex !important;
        flex-direction: column !important;
        /* Forces vertical stack */
        gap: 0 !important;
        width: 100% !important;
        padding: 0;
    }

    .hr-nav-item {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        margin: 0 !important;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .hr-nav-link {
        display: block !important;
        padding: 15px 0 !important;
        font-size: 16px !important;
        color: #1e293b !important;
        flex-grow: 1;
    }

    /* 5. Mobile Submenu Toggle & Accordion */
    .hr-mobile-submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #f8f9fa;
        border-radius: 4px;
        cursor: pointer;
        color: #BF954B;
    }

    .hr-mega-menu {
        display: none;
        /* Hidden by default */
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border-top: none !important;
        background: #f9fafb !important;
    }

    .hr-mega-menu-content {
        padding: 10px !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
    }

    .hr-submenu-open .hr-mega-menu {
        display: block !important;
    }

    /* Hide complex mega grid layout on mobile, stack everything */
    .hr-mega-grid {
        display: block !important;
        padding: 0 !important;
    }

    .hr-mega-col {
        margin-bottom: 20px;
        width: 100%;
        border-right: none !important;
        padding-right: 0 !important;
    }

    .hr-col-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* 6. Contact Button on Mobile */
    .hr-btn-nav-contact {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        padding: 15px !important;
    }
}

@media (max-width: 767px) {
    .hr-hero-wrapper {
        height: auto;
        min-height: auto;
    }

    .hr-hero-title-h1 {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .hr-capsule-search {
        flex-direction: column;
        /* Vertical stack */
        width: 100%;
        border-radius: 12px;
        background: #fff;
        padding: 10px;
        margin-top: 20px;
    }

    .hr-search-unit {
        border-right: none !important;
        border-bottom: 1px solid #eee;
        width: 100%;
        padding: 12px 5px;
    }

    .hr-search-unit:last-child {
        border-bottom: none;
    }

    .hr-footer-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hr-footer-info-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* .hr-nav-wrapper { display: none; }  <-- REMOVED TO FIX MOBILE MENU */

    .hr-why-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
        padding: 30px 20px;
        border-radius: 15px;
    }

    .hr-why-item {
        flex-direction: row;
        /* Horizontal layout for mobile */
        text-align: left;
        gap: 20px;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .hr-why-item:last-child {
        border-bottom: none;
    }

    .hr-why-icon-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }

    .hr-cert-logos {
        flex-direction: column;
        /* Stack GSTC, TSC, Travelife on phones */
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .hr-search-form {
        grid-template-columns: 1fr;
    }

    .hr-form-btn {
        grid-column: span 1;
    }
}

/* ==========================================================================
   FINAL MOBILE OVERRIDES (Debug Fix)
   ========================================================================== */
@media (max-width: 991px) {

    /* Force Toggle Visibility */
    body .hr-mobile-toggle {
        display: flex !important;
        position: relative !important;
        z-index: 2005 !important;
    }

    /* Force Menu Wrapper Layout */
    body .hr-nav-wrapper {
        display: block !important;
        /* Ensure it is not hidden */
        padding-top: 100px !important;
    }

    /* Ensure Language Switcher is Visible */
    body .hr-mobile-language-switcher {
        display: block !important;
        background: #f8f9fa !important;
        padding: 20px !important;
        margin-top: 25px !important;
    }

    /* --- HOMEPAGE MOBILE OVERRIDES --- */

    /* 1. Hero Section Fixes */
    .hr-hero-wrapper {
        height: auto !important;
        min-height: 50vh !important;
        /* Give it some height but not fixed */
        padding-top: 100px;
        /* Space for fixed header */
    }

    /* Video Background - Center and Cover */
    .hr-video-background iframe {
        width: 300%;
        /* Zoom out to ensure coverage */
        /* Center it */
        height: 100%;
    }

    .hr-hero-title {
        font-size: 1.4rem !important;
        /* Smaller title */
        padding: 0 15px;
    }

    .hr-hero-subtitle {
        font-size: 0.8rem !important;
        padding: 0 15px;
    }

    /* 2. Search Form - Stack Vertically */
    .hr-search-form {
        display: flex !important;
        flex-direction: column !important;
        padding: 20px !important;
        gap: 15px !important;
        width: 90% !important;
        margin: 0 auto;
        border-radius: 15px !important;
    }

    .hr-search-form .hr-form-group {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 10px 0 !important;
    }

    .hr-search-form .hr-form-group:last-of-type {
        border-bottom: none !important;
    }

    .hr-form-btn {
        width: 100% !important;
    }

    .hr-form-btn button {
        width: 100% !important;
        padding: 15px !important;
    }

    /* 3. Content Sections - Single Column */
    .hr-about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .hr-package-grid {
        grid-template-columns: 1fr !important;
        /* Stack trips */
    }

    .hr-category-grid {
        grid-template-columns: 1fr !important;
        /* Stack categories */
    }

    .hr-about-image-wrapper {
        order: -1;
        /* Show image first on mobile? Usually better, or keep second. keeping default for now effectively, checking visual */
    }

    /* 4. Recommend Section */
    .hr-recommend-card {
        margin: 20px !important;
        padding: 30px !important;
    }

    .hr-recommend-banner {
        height: auto !important;
        padding: 60px 0;
    }

    /* 5. General Text Adjustments */
    .hr-section-title {
        font-size: 2rem !important;
    }

    /* 6. Package Results Grid - Mobile */
    .package-results-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   14. PACKAGE RESULTS GRID & BENTO CARDS
   ========================================================================== */

/* Grid Container */
.package-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Bento Card Component */
.bento-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.bc-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.bc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-card:hover .bc-image-wrapper img {
    transform: scale(1.1);
}

/* Ribbon Badge */
.bc-ribbon {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #BF954B;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Price Tag */
.bc-price-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(10, 35, 66, 0.95);
    color: #fff;
    padding: 12px 18px;
    font-size: 18px;
    font-weight: 900;
    border-top-left-radius: 12px;
    z-index: 2;
}

/* Card Body */
.bc-body {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Top Row - Activity & Rating */
.bc-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.bc-activity-tag {
    background: #f0f0f0;
    color: #163A51;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bc-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bc-stars {
    display: flex;
    gap: 2px;
}

.bc-count {
    font-size: 12px;
    color: #999;
}

/* Title */
.bc-title {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.bc-title a {
    color: #0A2342;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bc-title a:hover {
    color: #BF954B;
}

/* Meta Information */
.bc-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.bc-meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bc-meta-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
}

.bc-meta-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Departure Box */
.bc-departure-box {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.bc-dep-label {
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bc-dep-value {
    font-weight: 700;
    color: #163A51;
}

/* Footer */
.bc-footer {
    padding: 20px;
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

.bc-duration-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bc-days {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #163A51;
}

.bc-inclusive {
    font-size: 11px;
    color: #666;
}

.bc-btn {
    background: #BF954B;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.bc-btn:hover {
    background: #163A51;
    transform: translateX(3px);
}

/* ==========================================================================
   15. SEARCH SECTION (Dedicated)
   ========================================================================== */

.hr-search-section {
    padding: 80px 0;
    background: #f9fafb;
}

.hr-search-wrapper {
    max-width: 1200px;
    margin: 40px auto 0;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .package-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .package-results-grid {
        grid-template-columns: 1fr;
    }

    .bc-image-wrapper {
        height: 200px;
    }

    .hr-search-section {
        padding: 60px 0;
    }
}