/* --- VARIABLE SCOPE --- */
: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-canvas-width: 1920px;
    --hr-container-width: 1400px;
    --hr-max-width: 1300px;
    /* Kept for backward compatibility */
    --hr-serif: 'Playfair Display', serif;
    --hr-sans: 'Inter', sans-serif;
}

/* ... existing code ... */

/* --- LUXURY REDESIGN COMPONENTS --- */

/* Expedition Pulse (Stats Grid) */
.hr-pulse-section {
    padding: 80px 0;
}

.hr-pulse-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.hr-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hr-stat-card {
    background: white;
    border: 1px solid var(--hr-border);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hr-stat-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--hr-primary);
}

.hr-stat-icon {
    color: var(--hr-primary);
    margin-bottom: 15px;
}

.hr-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--hr-text-muted);
    margin-bottom: 4px;
}

.hr-stat-value {
    font-weight: 700;
    font-size: 16px;
}

.hr-expert-tip {
    background: #faf9f6;
    border: 1px dashed var(--hr-primary);
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.hr-expert-tip::before {
    content: 'lightbulb';
    font-family: 'Material Symbols Outlined';
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--hr-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Narrative Section */
.hr-narrative-section {
    padding: 80px 0;
    background: white;
    border-top: 1px solid var(--hr-border);
}

.hr-narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.hr-section-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--hr-primary);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.hr-section-title {
    font-size: 36px;
    margin-bottom: 30px;
    font-family: var(--hr-serif);
}

.hr-highlights-list {
    list-style: none;
}

.hr-highlights-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.hr-highlights-item span {
    color: var(--hr-primary);
    font-weight: bold;
}

.hr-narrative-text p {
    font-size: 18px;
    color: var(--hr-text-muted);
    margin-bottom: 25px;
    font-weight: 300;
}

/* Journey / Itinerary Redesign */
.hr-itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.hr-itinerary-title-group h2 {
    font-size: 48px;
    margin-top: 8px;
    font-family: var(--hr-serif);
}

.hr-itinerary-desc {
    max-width: 400px;
    color: var(--hr-text-muted);
    font-size: 14px;
}

.hr-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hr-accordion-item {
    background: var(--hr-white);
    border: 1px solid var(--hr-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hr-accordion-item[open] {
    border-color: var(--hr-primary);
    box-shadow: 0 10px 30px rgba(179, 142, 93, 0.08);
}

.hr-accordion-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    cursor: pointer;
    list-style: none;
}

.hr-accordion-summary::-webkit-details-marker {
    display: none;
}

.hr-summary-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hr-day-num {
    font-family: var(--hr-serif);
    font-size: 32px;
    color: rgba(179, 142, 93, 0.4);
    font-style: italic;
    width: 60px;
}

.hr-day-title h3 {
    font-family: var(--hr-serif);
    font-size: 24px;
    margin: 0;
}

.hr-expand-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(179, 142, 93, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hr-primary);
    transition: transform 0.3s ease;
}

.hr-accordion-item[open] .hr-expand-circle {
    transform: rotate(180deg);
    background-color: var(--hr-primary);
    color: var(--hr-white);
}

.hr-accordion-content {
    padding: 0 32px 32px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hr-itinerary-text {
    color: var(--hr-text-muted);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 32px;
}

.hr-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid var(--hr-border);
    border-bottom: 1px solid var(--hr-border);
}

.hr-metric-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hr-metric-item .material-symbols-outlined {
    color: var(--hr-primary);
    font-size: 24px;
}

.hr-metric-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--hr-text-muted);
}

.hr-metric-value {
    font-size: 13px;
    font-weight: 600;
}

.hr-itinerary-image-wrapper {
    position: relative;
}

.hr-itinerary-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hr-image-overlay-border {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    border-radius: 4px;
}

/* Package Tiers (Similar Packages) */
.hr-tiers-section {
    background-color: rgba(179, 142, 93, 0.05);
    padding: 64px;
    border-radius: 16px;
    margin: 40px 0;
}

.hr-tiers-header {
    text-align: center;
    margin-bottom: 48px;
}

.hr-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.hr-tier-card {
    background: var(--hr-white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hr-tier-card:hover {
    transform: translateY(-8px);
}

.hr-tier-card.hr-recommended {
    border: 2px solid var(--hr-primary);
}

.hr-tier-badge {
    background-color: var(--hr-primary);
    color: var(--hr-white);
    text-align: center;
    padding: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hr-tier-badge-alt {
    background-color: #f1f5f9;
    color: #64748b;
}

.hr-tier-body {
    padding: 40px;
    flex-grow: 1;
}

.hr-tier-title {
    font-family: var(--hr-serif);
    font-size: 28px;
    margin-bottom: 12px;
}

.hr-tier-desc {
    font-size: 14px;
    color: var(--hr-text-muted);
    margin-bottom: 32px;
}

.hr-tier-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
}

.hr-price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--hr-primary);
}

.hr-price-unit {
    font-size: 14px;
    color: var(--hr-text-muted);
}

.hr-tier-btn {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hr-btn-outline-gold {
    background: transparent;
    border: 1px solid var(--hr-primary);
    color: var(--hr-primary);
}

/* Departures & Calendar */
.hr-booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.hr-departures-table-wrapper {
    border: 1px solid var(--hr-border);
    border-radius: 12px;
    overflow: hidden;
}

.hr-departures-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.hr-departures-table th {
    background: #f8fafc;
    padding: 16px 24px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hr-text-muted);
}

.hr-departures-table td {
    padding: 20px 24px;
    border-top: 1px solid var(--hr-border);
}

.hr-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.hr-status-green {
    color: #16a34a;
}

.hr-status-orange {
    color: #ea580c;
}

.hr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.hr-calendar-card {
    background: var(--hr-white);
    border: 1px solid var(--hr-border);
    border-radius: 12px;
    padding: 32px;
}

.hr-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.hr-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 4px;
}

.hr-cal-day-name {
    font-size: 10px;
    font-weight: 700;
    color: var(--hr-text-muted);
    padding-bottom: 8px;
}

.hr-cal-cell {
    padding: 8px 0;
    font-size: 12px;
    border-radius: 4px;
}

.hr-cal-active {
    background: var(--hr-primary);
    color: var(--hr-white);
    position: relative;
}

.hr-cal-range {
    background: rgba(179, 142, 93, 0.1);
    color: var(--hr-primary);
}

.hr-cal-muted {
    color: #cbd5e1;
}

/* Includes / Excludes Redesign */
.hr-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    background: var(--hr-white);
    padding: 64px;
    border-radius: 12px;
    border: 1px solid var(--hr-border);
    margin-top: 40px;
}

.hr-service-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 24px;
    font-family: var(--hr-serif);
}

.hr-service-list {
    list-style: none;
    padding: 0;
}

.hr-service-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--hr-text-muted);
}

.hr-service-list .material-symbols-outlined {
    font-size: 18px;
    margin-top: 2px;
}

/* USP Row */
.hr-usp-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    padding: 60px 0;
}

.hr-usp-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(179, 142, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    color: var(--hr-primary);
    transition: all 0.3s;
}

.hr-usp-item:hover .hr-usp-icon-box {
    background: var(--hr-primary);
    color: var(--hr-white);
}

.hr-usp-item h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.hr-usp-item p {
    font-size: 12px;
    color: var(--hr-text-muted);
}

/* Expert Contact Card */
.hr-expert-card {
    background: var(--hr-bg-dark);
    color: var(--hr-white);
    padding: 64px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    margin: 40px 0;
}

.hr-expert-team {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.hr-expert-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hr-expert-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--hr-primary);
    object-fit: cover;
}

.hr-contact-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hr-contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    color: var(--hr-white);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.hr-contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hr-icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fixed Footer */
.hr-fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--hr-border);
    padding: 16px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hr-fixed-footer.visible {
    transform: translateY(0);
}

.hr-footer-content {
    max-width: var(--hr-container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hr-footer-pricing {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hr-footer-btn-group {
    display: flex;
    gap: 16px;
}

.hr-btn-footer-main {
    padding: 14px 48px;
    background: var(--hr-primary);
    color: var(--hr-white);
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(179, 142, 93, 0.2);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .hr-accordion-content {
        grid-template-columns: 1fr;
    }

    .hr-booking-grid {
        grid-template-columns: 1fr;
    }

    .hr-expert-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hr-expert-team {
        justify-content: center;
    }

    .hr-pulse-grid {
        grid-template-columns: 1fr;
    }

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

    .hr-narrative-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hr-service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }

    .hr-usp-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hr-stats-grid {
        grid-template-columns: 1fr;
    }

    .hr-usp-row {
        grid-template-columns: 1fr;
    }

    .hr-itinerary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hr-itinerary-title-group h2 {
        font-size: 32px;
    }
}

/* --- SCOPED RESET & BASE --- */
.hr-canvas,
.hr-canvas * {
    box-sizing: border-box;
}

.hr-canvas {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: transparent;
    font-family: var(--hr-sans);
    color: var(--hr-text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.hr-canvas .hr-container {
    max-width: var(--hr-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* --- MODERN GLASS STICKY NAVIGATION --- */
.hr-canvas #packageStickyNav {
    position: sticky;
    top: 75px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    height: 70px;
    display: flex;
    align-items: center;
    width: 100%;
}

.hr-canvas #packageStickyNav .hr-sticky-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    height: 100%;
}

.hr-canvas #packageStickyNav .hr-package-nav-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    align-items: center;
    flex: 1;
}

/* Link Styling */
.hr-canvas #packageStickyNav .hr-package-nav-link {
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: #475569 !important;
    position: relative;
    padding: 10px 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Gold Underline Logic */
.hr-canvas #packageStickyNav .hr-package-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--hr-himalayan-gold);
    transition: width 0.3s ease;
}

.hr-canvas #packageStickyNav .hr-package-nav-link.hr-active {
    color: var(--hr-himalayan-gold) !important;
}

.hr-canvas #packageStickyNav .hr-package-nav-link.hr-active::after {
    width: 100% !important;
}

/* Sticky Nav Book Button */
.hr-canvas #packageStickyNav .hr-btn-sticky-book {
    background-color: #1e293b;
    color: #ffffff !important;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
    white-space: nowrap;
}

.hr-canvas #packageStickyNav .hr-btn-sticky-book:hover {
    background-color: var(--hr-himalayan-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179, 142, 93, 0.3);
}

/* Jump Offset for Anchors */
section {
    scroll-margin-top: 150px;
}

/* --- HERO SECTION GRID --- */
.hr-canvas .hr-hero-section {
    background: linear-gradient(90deg, rgba(179, 142, 93, 0.1) 0%, rgba(179, 142, 93, 0.05) 100%);
    padding: 40px 0;
}

.hr-canvas .hr-hero-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 24px;
}

/* --- HERO LEFT: SLIDER --- */
.hr-canvas .hr-hero-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px -15px rgba(179, 142, 93, 0.3);
}

.hr-canvas .hr-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.hr-canvas .hr-slider-container::-webkit-scrollbar {
    display: none;
}

.hr-canvas .hr-hero-slide {
    min-width: 100%;
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 4 / 3;
}

.hr-canvas .hr-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hr-canvas .hr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.hr-canvas .hr-tag {
    display: inline-block;
    background-color: var(--hr-himalayan-gold);
    color: var(--hr-white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    width: fit-content;
}

.hr-canvas .hr-hero-title {
    font-family: var(--hr-serif);
    color: var(--hr-white);
    font-size: 2.2rem;
    margin-bottom: 8px;
    line-height: 1.1;
    font-weight: 700;
}

.hr-canvas .hr-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 16px;
    font-weight: 300;
}

.hr-canvas .hr-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.hr-canvas .hr-slider-arrow.prev {
    left: 30px;
}

.hr-canvas .hr-slider-arrow.next {
    right: 30px;
}

/* --- HERO RIGHT: VIDEO & CONTENT --- */
.hr-canvas .hr-hero-right {
    display: flex;
    flex-direction: column;
}

.hr-canvas .hr-video-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #000;
    cursor: pointer;
    margin-bottom: 12px;
}

.hr-canvas .hr-video-box img,
.hr-canvas .hr-video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
}

.hr-canvas .hr-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--hr-himalayan-gold);
    color: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* --- HERO CONTENT STACK --- */
.hr-canvas .hr-hero-content-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.hr-canvas .hr-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--hr-himalayan-gold);
}

.hr-canvas .hr-rating-text {
    color: var(--hr-text-slate);
    font-size: 13px;
    margin-left: 8px;
    font-weight: 500;
}

.hr-canvas .hr-package-title-h1 {
    font-family: var(--hr-serif);
    font-size: 28px;
    line-height: 1.2;
    margin: 0;
    color: var(--hr-text-dark);
}

.hr-canvas .hr-pricing-card {
    background-color: var(--hr-white);
    border: 1px solid rgba(179, 142, 93, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hr-canvas .hr-price-value {
    font-family: var(--hr-serif);
    font-size: 24px;
    color: var(--hr-himalayan-gold);
}

.hr-canvas .hr-btn-primary {
    background-color: var(--hr-text-dark);
    color: var(--hr-white);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.hr-canvas .hr-quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hr-canvas .hr-quick-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(179, 142, 93, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    color: var(--hr-text-dark);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.hr-canvas .hr-btn-gold {
    background-color: var(--hr-himalayan-gold);
    color: var(--hr-white);
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

/* --- BREADCRUMB --- */
.hr-canvas .hr-breadcrumb-row {
    border-bottom: 1px solid #eee;
    /* Changed to transparent to ensure the blur behind the nav is consistent when scrolling */
    background-color: transparent;
    padding: 15px 0;
}

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

.hr-canvas .hr-breadcrumb-nav {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 500;
}

.hr-canvas .hr-breadcrumb-nav a {
    text-decoration: none;
    color: #888;
    transition: color 0.2s;
}

.hr-canvas .hr-breadcrumb-nav a:hover {
    color: var(--hr-himalayan-gold);
}

.hr-canvas .hr-sep {
    margin: 0 10px;
    color: #ccc;
}

.hr-canvas .hr-current {
    color: #333;
    font-weight: 700;
}

.hr-canvas .hr-breadcrumb-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.hr-canvas .hr-last-updated {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

.hr-canvas .hr-last-updated span {
    color: #555;
}

.hr-canvas .hr-share-container {
    display: flex;
    gap: 15px;
    align-items: center;
    border-left: 1px solid #eee;
    padding-left: 20px;
    position: relative;
}

.hr-canvas .hr-share-label {
    font-size: 11px;
    font-weight: 800;
    color: #333;
}

.hr-canvas .hr-social-icons {
    display: flex;
    gap: 12px;
}

.hr-canvas .hr-social-icons a {
    font-size: 14px;
    transition: transform 0.2s;
}

.hr-canvas .hr-social-icons a:hover {
    transform: translateY(-2px);
}

.hr-canvas .hr-social-fb {
    color: #3b5998;
}

.hr-canvas .hr-social-ig {
    color: #E1306C;
}

.hr-canvas .hr-social-wa {
    color: #25d366;
}

.hr-canvas .hr-more-share {
    position: relative;
}

.hr-canvas .hr-more-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--hr-himalayan-gold);
    font-size: 11px;
    font-weight: 800;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hr-canvas .hr-share-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 160px;
    padding: 10px 0;
}

.hr-canvas .hr-share-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.hr-canvas .hr-share-dropdown a:hover {
    background-color: #f8f9fa;
    color: var(--hr-himalayan-gold);
}

.hr-canvas .hr-share-dropdown hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 5px 0;
}

.hr-canvas .hr-share-dropdown i {
    width: 20px;
    margin-right: 8px;
}

/* --- SECTIONS --- */
.hr-canvas .hr-section {
    padding: 64px 0;
}

.hr-canvas .hr-section-title {
    font-family: var(--hr-serif);
    font-size: 32px;
    color: var(--hr-text-dark);
}

.hr-canvas .hr-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hr-canvas .hr-fact-card {
    background-color: var(--hr-white);
    border: 1px solid rgba(179, 142, 93, 0.1);
    padding: 24px;
    border-radius: 12px;
}

.hr-canvas .hr-expert-tip {
    background-color: rgba(179, 142, 93, 0.05);
    border: 2px dashed rgba(179, 142, 93, 0.3);
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.hr-canvas .hr-tip-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background-color: var(--hr-himalayan-gold);
    color: var(--hr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hr-canvas .hr-highlights-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
}

.hr-canvas .hr-highlight-item p {
    font-size: 15px;
    color: var(--hr-text-slate);
    margin: 0;
}

.hr-canvas .hr-split-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 64px;
}

/* --- ACCORDIONS (<details>) --- */
.hr-accordion-item {
    background-color: var(--hr-white);
    border: 1px solid var(--hr-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hr-accordion-item[open] {
    border-color: var(--hr-himalayan-gold);
    box-shadow: 0 10px 30px rgba(179, 142, 93, 0.05);
}

.hr-accordion-header {
    padding: 24px 32px;
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--hr-text-dark);
    font-size: 18px;
    transition: background 0.2s;
}

.hr-accordion-header::-webkit-details-marker {
    display: none;
}

.hr-accordion-header:hover {
    background-color: rgba(179, 142, 93, 0.02);
}

.hr-accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hr-accordion-item[open] .hr-accordion-icon {
    transform: rotate(180deg);
}

.hr-accordion-content {
    background-color: var(--hr-white);
}

.hr-accordion-inner {
    padding: 0 32px 32px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--hr-text-slate);
}

/* --- PAGE TITLES --- */
.hr-page-title-wrap {
    background: var(--hr-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--hr-border);
}

.hr-page-title {
    font-family: var(--hr-serif);
    font-size: 42px;
    color: var(--hr-text-dark);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

/* --- SIMPLE GALLERY GRID (for Photos Page) --- */
.hr-gallery-grid-simple {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.hr-gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
}

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

.hr-gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .hr-gallery-grid-simple {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hr-gallery-grid-simple {
        grid-template-columns: repeat(3, 1fr);
    }

    .hr-page-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hr-gallery-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- GALLERY MASONRY --- */
.hr-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.hr-gallery-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #eee;
}

.hr-gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hr-gallery-tile:hover img {
    transform: scale(1.1);
}

.hr-gallery-hero {
    grid-column: span 2;
    grid-row: span 2;
}

.hr-gallery-more {
    position: relative;
}

.hr-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 26, 21, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--hr-white);
    transition: background 0.3s;
}

.hr-gallery-tile:hover .hr-gallery-overlay {
    background: rgba(29, 26, 21, 0.5);
}

.hr-more-count {
    font-family: var(--hr-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.hr-more-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-top: 8px;
}

/* --- LIGHTBOX (Vanilla) --- */
.hr-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hr-lightbox.active {
    display: flex;
    opacity: 1;
}

.hr-lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    position: relative;
}

.hr-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.hr-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    cursor: pointer;
    font-size: 24px;
    transition: opacity 0.2s;
}

.hr-lightbox-caption {
    color: white;
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    font-family: var(--hr-serif);
}

/* --- UTILS --- */
.hr-canvas .material-symbols-outlined {
    font-variation-settings: 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 1024px) {
    .hr-canvas .hr-container {
        padding: 0 20px;
    }

    /* 1. HERO SECTION RESPONSIVE */
    .hr-canvas .hr-hero-grid {
        grid-template-columns: 1fr;
        /* Stack left and right vertically */
        gap: 30px;
    }

    .hr-canvas .hr-hero-slide {
        aspect-ratio: 16 / 10;
        /* Slightly shallower for mobile screens */
    }

    .hr-canvas .hr-hero-title {
        font-size: 1.6rem;
        /* Smaller title for mobile */
    }

    .hr-canvas .hr-hero-overlay {
        padding: 20px;
    }

    .hr-canvas .hr-hero-content-stack {
        gap: 15px;
        /* Add spacing between title, price, and buttons */
    }

    /* 2. BREADCRUMB RESPONSIVE */
    .hr-canvas .hr-breadcrumb-content {
        flex-direction: column;
        /* Stack breadcrumbs above share icons */
        align-items: flex-start;
        gap: 15px;
    }

    .hr-canvas .hr-breadcrumb-nav {
        font-size: 10px;
        white-space: nowrap;
        overflow-x: auto;
        /* Allow side-scroll if the name is too long */
        width: 100%;
        padding-bottom: 5px;
    }

    .hr-canvas #packageStickyNav {
        height: auto;
        /* Allow height to adjust for padding */
        padding: 10px 0;
        top: 0;
        /* Usually main headers hide on mobile scroll, so we reset to top */
    }

    .hr-canvas #packageStickyNav .hr-sticky-flex {
        flex-direction: column;
        /* Stack links above button on mobile */
        gap: 15px;
    }

    .hr-canvas #packageStickyNav .hr-package-nav-links {
        width: 100%;
        overflow-x: auto;
        /* ENABLE SWIPE */
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        /* Smooth swipe on iOS */
        scrollbar-width: none;
        /* Hide scrollbar for clean look */
        justify-content: flex-start;
        gap: 20px;
    }

    .hr-canvas #packageStickyNav .hr-package-nav-links::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .hr-canvas #packageStickyNav .hr-package-nav-link {
        font-size: 11px !important;
        /* Smaller text for mobile */
    }

    .hr-canvas #packageStickyNav .hr-btn-sticky-book {
        width: 100%;
        /* Full width button on mobile */
        margin-left: 0;
        padding: 15px;
    }
}

/* 4. CONTENT SECTIONS */
.hr-canvas .hr-split-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.hr-canvas .hr-facts-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns instead of 3 */
}

.hr-canvas .hr-highlights-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Extra small devices (Phones) */
@media (max-width: 480px) {
    .hr-canvas .hr-facts-grid {
        grid-template-columns: 1fr;
        /* 1 column for very small phones */
    }

    .hr-canvas .hr-pricing-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .hr-canvas .hr-btn-primary {
        width: 100%;
        /* Make 'Book Now' button full width */
    }
}

@media (max-width: 767px) {

    /* Stack breadcrumbs and share buttons */
    .hr-breadcrumb-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hr-breadcrumb-right {
        width: 100%;
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
}

/* --- GENERIC MODAL (Vanilla) --- */
.hr-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hr-modal.active {
    display: flex;
}

.hr-modal-content {
    background: var(--hr-white);
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.3s ease-out;
}

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

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

.hr-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--hr-text-muted);
    cursor: pointer;
    line-height: 1;
}

.hr-modal-header {
    padding: 32px 32px 0;
}

.hr-modal-header h3 {
    font-family: var(--hr-serif);
    font-size: 24px;
    margin: 0;
}

.hr-modal-body {
    padding: 32px;
    max-height: 70vh;
    overflow-y: auto;
    font-size: 16px;
    line-height: 1.6;
    color: var(--hr-text-slate);
}

/* --- BUTTONS & UTILS --- */
.hr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

.hr-btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

.hr-btn-green {
    background-color: #2e7d32;
    color: white;
}

.hr-btn-green:hover {
    background-color: #1b5e20;
}

.hr-btn-outline {
    background: transparent;
    border: 1px solid var(--hr-border);
    color: var(--hr-text-dark);
}

.hr-btn-outline:hover {
    background: var(--hr-bg-light);
    border-color: var(--hr-text-dark);
}

.hr-sub-title {
    font-size: 18px;
    color: var(--hr-text-muted);
    display: block;
    margin-top: 10px;
}

.hr-gap-medium {
    gap: 20px;
}

/* --- REVIEW CARDS --- */
.hr-review-card {
    background: var(--hr-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--hr-border);
}

.hr-user-review {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hr-review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.hr-user-name {
    font-family: var(--hr-serif);
    font-size: 20px;
    margin: 0 0 5px 0;
}

.hr-address {
    font-size: 14px;
    color: var(--hr-text-muted);
}

.hr-rating {
    color: #ffb400;
    font-size: 14px;
    margin-top: 10px;
    display: block;
}

.hr-review-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--hr-text-slate);
}

/* --- FORMS (Vanilla) --- */
.hr-input,
.hr-select,
.hr-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--hr-border);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    background: var(--hr-white);
    box-sizing: border-box;
}

.hr-input:focus,
.hr-select:focus,
.hr-textarea:focus {
    outline: none;
    border-color: var(--hr-primary);
}

.hr-textarea {
    min-height: 150px;
    resize: vertical;
}

.hr-input-with-icon {
    padding-left: 40px;
}

.hr-form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hr-text-muted);
    pointer-events: none;
}

.hr-btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.hr-radio-label,
.hr-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.hr-bg-muted {
    background-color: #f9fafb;
}

.hr-section {
    padding: 80px 0;
}

.hr-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* --- MISSION CARDS --- */
.hr-mission-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hr-mission-card:hover {
    transform: translateY(-5px);
}

.hr-mission-title {
    font-family: var(--hr-serif);
    font-size: 22px;
    color: var(--hr-primary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--hr-primary);
    display: inline-block;
    padding-bottom: 5px;
}

.hr-mission-body {
    font-size: 15px;
    color: var(--hr-text-slate);
    line-height: 1.6;
}

/* --- TEAM CARDS --- */
.hr-team-card {
    background: var(--hr-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 20px;
}

.hr-team-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hr-team-photo {
    margin: 0 auto 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--hr-primary);
}

.hr-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hr-team-name {
    font-family: var(--hr-serif);
    font-size: 20px;
    margin-bottom: 5px;
}

.hr-team-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--hr-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hr-team-desc {
    font-size: 14px;
    color: var(--hr-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- TABS --- */
.hr-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--hr-border);
    margin-bottom: 40px;
}

.hr-tab-link {
    padding: 12px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--hr-text-muted);
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.hr-tab-link.active {
    color: var(--hr-primary);
    border-bottom-color: var(--hr-primary);
}

/* --- FAQ ACCORDION --- */
.hr-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.hr-accordion-item {
    border-bottom: 1px solid var(--hr-border);
}

.hr-accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    background: var(--hr-white);
}

.hr-accordion-content {
    padding: 0 20px 20px;
    font-size: 16px;
    color: var(--hr-text-slate);
    line-height: 1.7;
    display: none;
}

details[open] .hr-accordion-content {
    display: block;
}

details .hr-accordion-icon {
    transition: transform 0.3s;
}

.hr-tab-panel {
    display: none;
}

.hr-tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

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

.hr-modal-large {
    max-width: 900px;
}

.hr-team-info-row {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.hr-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hr-text-muted);
    display: block;
    margin-bottom: 5px;
}

.hr-value {
    font-size: 18px;
    color: var(--hr-text-dark);
    font-weight: 600;
}

.hr-content-small {
    font-size: 15px;
    color: var(--hr-text-slate);
    line-height: 1.6;
}

.hr-flex-column {
    display: flex;
    flex-direction: column;
}

.hr-justify-center {
    justify-content: center;
}

/* --- BLOG SYSTEM --- */
.hr-blog-card {
    background: var(--hr-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hr-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hr-blog-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.hr-blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--hr-primary);
    color: var(--hr-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.hr-blog-date-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(51, 65, 85, 0.9);
    backdrop-filter: blur(4px);
    color: var(--hr-white);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-top-left-radius: 10px;
}

.hr-blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hr-blog-title {
    font-family: var(--hr-serif);
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hr-blog-title a {
    color: var(--hr-text-dark);
    transition: color 0.2s;
}

.hr-blog-title a:hover {
    color: var(--hr-primary);
}

.hr-blog-excerpt {
    font-size: 14px;
    color: var(--hr-text-slate);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- FEATURED BLOG --- */
.hr-featured-blog {
    background: var(--hr-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.hr-featured-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.hr-featured-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hr-featured-title {
    font-size: 32px;
    margin-bottom: 20px;
}

/* --- BLOG SINGLE --- */
.hr-blog-single-header {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 60px;
}

.hr-blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--hr-text-muted);
}

.hr-blog-meta i {
    color: var(--hr-primary);
}

.hr-blog-featured-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- SIDEBAR --- */
.hr-sidebar-widget {
    background: var(--hr-white);
    border: 1px solid var(--hr-border);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.hr-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--hr-primary);
    display: inline-block;
    padding-bottom: 5px;
}

.hr-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hr-sidebar-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.hr-sidebar-list li:last-child {
    border-bottom: 0;
}

.hr-sidebar-list a {
    color: var(--hr-text-dark);
    transition: color 0.2s;
}

.hr-sidebar-list a:hover {
    color: var(--hr-primary);
}

.hr-recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.hr-recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.hr-recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hr-recent-post-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.hr-recent-post-date {
    font-size: 12px;
    color: var(--hr-text-muted);
}

/* --- GENERIC ACCORDION --- */
.hr-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hr-accordion-item {
    border: 1px solid var(--hr-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--hr-white);
}

.hr-accordion-header {
    padding: 20px 25px;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.hr-accordion-header:hover {
    background: #f1f5f9;
}

.hr-accordion-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--hr-primary);
}

.hr-accordion-content {
    padding: 25px;
    border-top: 1px solid var(--hr-border);
    display: none;
}

.hr-accordion-item.active .hr-accordion-content {
    display: block;
}

/* --- FORMS & INPUTS --- */
.hr-form-group {
    margin-bottom: 25px;
}

.hr-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--hr-text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hr-form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--hr-border);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
    background: var(--hr-white);
    outline: none;
}

.hr-form-control:focus {
    border-color: var(--hr-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.hr-input-icon-wrap {
    position: relative;
    width: 100%;
}

.hr-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hr-text-muted);
    pointer-events: none;
}

.hr-traveller-card {
    background: var(--hr-bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--hr-border);
    margin-bottom: 40px;
}

.hr-traveller-card h2 {
    font-family: var(--hr-serif);
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--hr-primary);
}

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

.hr-margin-small-top {
    margin-top: 10px;
}

.hr-margin-medium-bottom {
    margin-bottom: 40px;
}

.hr-margin-medium-top {
    margin-top: 40px;
}

.hr-relative {
    position: relative;
}

.hr-flex {
    display: flex;
}

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

.hr-light {
    color: var(--hr-white);
}

.hr-text-uppercase {
    text-transform: uppercase;
}

.hr-h2 {
    font-family: var(--hr-serif);
    font-size: 32px;
}

/* --- GRID SYSTEM (Vanilla) --- */
.hr-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
}

.hr-grid>* {
    padding-left: 20px;
    box-sizing: border-box;
}

.hr-grid-medium {
    margin-left: -30px;
}

.hr-grid-medium>* {
    padding-left: 30px;
}

.hr-width-1-1 {
    width: 100%;
}

.hr-width-1-2-m {
    width: 50%;
}

.hr-width-2-3-m {
    width: 66.666%;
}

.hr-width-1-3-m {
    width: 33.333%;
}

@media (max-width: 959px) {

    .hr-width-1-2-m,
    .hr-width-2-3-m,
    .hr-width-1-3-m {
        width: 100%;
    }
}

.hr-width-1-1-l {
    width: 100%;
}

/* --- SPACING --- */
.hr-padding-remove-bottom {
    padding-bottom: 0 !important;
}

.hr-heading-line {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.hr-heading-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--hr-border);
    z-index: 1;
}

.hr-heading-line span {
    position: relative;
    z-index: 2;
    background: var(--hr-white);
    padding: 0 15px;
}

/* --- LUXURY FOOTER REDESIGN MIGRATED TO STYLE.CSS --- */