/**
 * Single Mountain Trekking Template Styles
 * 
 * Professional layout for mountain trek pages.
 * Uses Elementor global CSS variables for theming consistency.
 * 
 * @package RoamEase_Pro
 * @since 2.2.0
 */

/* ============================================================
   RESET & BASE
   ============================================================ */

/* Prevent horizontal scrolling on page - aggressive fix */
html.roamease-single-mountain,
html.roamease-single-mountain body,
body.roamease-single-mountain {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

/* Ensure WordPress admin bar doesn't cause overflow */
body.roamease-single-mountain #wpadminbar {
    position: fixed;
    max-width: 100vw;
}

.re-mountain-single {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    color: var(--e-global-color-text, #2d3748);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
}

.re-mountain-single *,
.re-mountain-single *::before,
.re-mountain-single *::after {
    box-sizing: border-box;
    max-width: 100%;
}

.re-mountain-single .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Ensure all images don't overflow */
.re-mountain-single img {
    max-width: 100%;
    height: auto;
}

/* Ensure iframes and embeds don't overflow */
.re-mountain-single iframe,
.re-mountain-single embed,
.re-mountain-single object,
.re-mountain-single video {
    max-width: 100%;
}

/* Ensure tables don't overflow */
.re-mountain-single table {
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    display: block;
}

.re-mountain-single .prose {
    font-size: 16px;
    line-height: 1.75;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.re-mountain-single .prose p {
    margin-bottom: 1em;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.re-mountain-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #2f2a27;
    padding: 80px 24px 60px;
}

.re-mountain-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(199, 147, 117, 0.22) 0%, rgba(199, 147, 117, 0) 42%),
        linear-gradient(
            to top,
            rgba(22, 19, 18, 0.86) 0%,
            rgba(37, 32, 29, 0.58) 46%,
            rgba(37, 32, 29, 0.22) 100%
        );
}

.re-mountain-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #fff;
}

.re-mountain-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.re-mountain-hero__breadcrumb .breadcrumb-sep {
    opacity: 0.6;
}

.re-mountain-hero__title {
    font-family: var(--e-global-typography-primary-font-family, 'Playfair Display', serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.re-mountain-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.re-mountain-hero__meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 100%;
    flex-shrink: 0;
}

.re-mountain-hero__meta .meta-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.re-mountain-stats {
    background: transparent;
    color: var(--re-heading, #2A2118);
    padding: 0;
    position: relative;
    margin-top: -30px;
    margin-bottom: 48px;
    z-index: 10;
}

.re-mountain-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 14px;
    background: transparent;
    width: 100%;
    max-width: 100%;
}

.re-mountain-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(199, 147, 117, 0.22);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(42, 33, 24, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.re-mountain-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(42, 33, 24, 0.1);
}

/* HIDE PRICE in stats grid - Booking card always shows price */
/* Only visible on mobile (480px) where booking card is hidden */
.re-mountain-stats .stat-item--price {
    display: none;
}

.re-mountain-stats .stat-icon {
    flex-shrink: 0;
    opacity: 1;
    color: var(--e-global-color-primary, #C79375);
}

.re-mountain-stats .stat-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.re-mountain-stats .stat-value {
    font-family: var(--e-global-typography-primary-font-family, 'Playfair Display', serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    color: var(--re-heading, #2A2118);
}

.re-mountain-stats .stat-label {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 12px;
    color: var(--re-subheading, #4F3F2B);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.re-mountain-main {
    padding: 60px 24px 80px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.re-mountain-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start; /* Start alignment for sticky sidebar */
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Single column layout only on mobile (below 768px) */
@media (max-width: 768px) {
    .re-mountain-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .re-mountain-main {
        padding: 32px 16px 48px;
    }
    
    .re-mountain-hero {
        min-height: 50vh;
        padding: 60px 16px 40px;
    }
    
    .re-mountain-hero__content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .re-mountain-hero__breadcrumb {
        flex-wrap: wrap;
        font-size: 12px;
    }
    
    .re-mountain-hero__title {
        font-size: clamp(24px, 6vw, 36px);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .re-mountain-hero__meta {
        gap: 8px;
    }
    
    .re-mountain-hero__meta .meta-item {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .re-mountain-stats {
        margin-top: -20px;
        margin-bottom: 32px;
    }
    
    .re-mountain-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .re-mountain-stats .stat-item {
        padding: 16px 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .re-mountain-stats .stat-value {
        font-size: 16px;
    }
    
    .re-mountain-stats .stat-label {
        font-size: 10px;
    }
}

/* ============================================================
   ROUTE MAP SHELL
   ============================================================ */
.re-route-map-shell {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.re-route-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    padding: 4px 2px 0;
}

.re-route-map-legend__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 12px;
    font-weight: 500;
    color: var(--re-subheading, #4F3F2B);
}

.re-route-map-legend__swatch {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 3px 8px rgba(42, 33, 24, 0.18);
    background: var(--e-global-color-primary, #C79375);
}

.re-route-map-legend__item--start .re-route-map-legend__swatch {
    background: var(--e-global-color-secondary, #333333);
}

.re-route-map-legend__item--camp .re-route-map-legend__swatch {
    background: var(--e-global-color-primary, #C79375);
}

.re-route-map-legend__item--summit .re-route-map-legend__swatch {
    background: #b86a36;
}

.re-route-map-legend__item--exit .re-route-map-legend__swatch {
    background: #7a6c60;
}

@media (max-width: 767px) {
    .re-route-map-legend {
        gap: 8px 10px;
    }

    .re-route-map-legend__item {
        font-size: 11px;
    }
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.re-mountain-section {
    margin-bottom: 48px;
    background: transparent;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.re-mountain-section .section-title {
    font-family: var(--e-global-typography-primary-font-family, 'Playfair Display', serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--re-heading, #2A2118);
    margin: 0 0 32px 0;
    padding-bottom: 16px;
    border-bottom: 3px solid rgba(199, 147, 117, 0.55);
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.re-mountain-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 160px);
    gap: 12px;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.re-mountain-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
}

.re-mountain-gallery .gallery-item--0 {
    grid-column: span 2;
    grid-row: span 2;
}

.re-mountain-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.re-mountain-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.re-mountain-gallery .gallery-more {
    background: var(--e-global-color-primary, #083321);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--e-global-typography-primary-font-family, 'Playfair Display', serif);
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .re-mountain-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 120px);
        gap: 8px;
    }
    
    .re-mountain-gallery .gallery-item--0 {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .re-mountain-gallery .gallery-more {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .re-mountain-gallery .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 100px);
        gap: 6px;
    }
}

/* ============================================================
   HIGHLIGHTS GRID
   ============================================================ */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(244, 240, 236, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(199, 147, 117, 0.18);
    transition: all 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(-2px);
}

.highlight-item svg {
    flex-shrink: 0;
    color: var(--e-global-color-secondary, #FEBC11);
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.highlight-item span {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 15px;
    line-height: 1.5;
    color: var(--re-heading, #2A2118);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 640px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .highlight-item {
        padding: 12px 14px;
    }
    
    .highlight-item span {
        font-size: 14px;
    }
}

/* ============================================================
   ITINERARY ACCORDION
   ============================================================ */
.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.itinerary-accordion__item {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(199, 147, 117, 0.18);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.94);
}

.itinerary-accordion__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.itinerary-accordion__item.is-active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.itinerary-accordion__header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px 24px;
    margin: 0;
    background: linear-gradient(180deg, rgba(244, 240, 236, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%) !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.itinerary-accordion__day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 70px;
    padding: 8px 12px;
    background: var(--e-global-color-primary, #C79375);
    color: var(--e-global-color-a1dac06, #FFFFFF);
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
}

.itinerary-accordion__title {
    flex: 1 1 auto;
    min-width: 0;
    font-family: var(--e-global-typography-primary-font-family, 'Playfair Display', serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--re-heading, #2A2118);
    line-height: 1.3;
    text-align: left !important;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.itinerary-accordion__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: var(--e-global-color-primary, #C79375);
    transition: transform 0.3s ease;
}

.itinerary-accordion__icon svg {
    width: 20px;
    height: 20px;
}

.itinerary-accordion__item.is-active .itinerary-accordion__icon {
    transform: rotate(180deg);
}

.itinerary-accordion__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    max-width: 100%;
}

.itinerary-accordion__item.is-active .itinerary-accordion__body {
    grid-template-rows: 1fr;
}

.itinerary-accordion__content {
    overflow: hidden;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.itinerary-accordion__item.is-active .itinerary-accordion__content {
    padding: 24px;
}

@media (max-width: 768px) {
    .itinerary-accordion__header {
        gap: 12px;
        padding: 16px 14px;
    }
    
    .itinerary-accordion__day {
        min-width: 55px;
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .itinerary-accordion__title {
        font-size: 14px;
        text-align: left !important;
    }
    
    .itinerary-accordion__item.is-active .itinerary-accordion__content {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .itinerary-accordion__header {
        gap: 10px;
        padding: 14px 12px;
    }
    
    .itinerary-accordion__day {
        min-width: 48px;
        padding: 5px 8px;
        font-size: 10px;
    }
    
    .itinerary-accordion__title {
        font-size: 13px;
        text-align: left !important;
    }
    
    .itinerary-accordion__icon {
        width: 20px;
        height: 20px;
    }
    
    .itinerary-accordion__icon svg {
        width: 16px;
        height: 16px;
    }
    
    .itinerary-accordion__item.is-active .itinerary-accordion__content {
        padding: 14px 12px;
    }
}

.day-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    padding-top: 4px;
}

.day-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: var(--e-global-color-primary, #083321);
    background: rgba(254, 188, 17, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(254, 188, 17, 0.25);
}

.day-stat svg {
    color: var(--e-global-color-secondary, #FEBC11);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.day-description {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 15px;
    line-height: 1.75;
    color: var(--e-global-color-text, #4a5568);
}

.day-description p {
    margin-bottom: 1em;
}

.day-description p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   INCLUSIONS GRID
   ============================================================ */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.inclusions-col {
    background: rgba(244, 240, 236, 0.6);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(199, 147, 117, 0.24);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .inclusions-col {
        padding: 20px 16px;
        border-radius: 12px;
    }
}

.inclusions-col--included {
    background: rgba(244, 240, 236, 0.78);
}

.inclusions-col--excluded {
    background: rgba(255, 255, 255, 0.94);
}

.inclusions-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--e-global-typography-primary-font-family, 'Playfair Display', serif);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

@media (max-width: 480px) {
    .inclusions-heading {
        font-size: 16px;
    }
}

.inclusions-col--included .inclusions-heading {
    color: var(--e-global-color-primary, #C79375);
}

.inclusions-col--excluded .inclusions-heading {
    color: var(--e-global-color-secondary, #333333);
}

.inclusions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.inclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: none;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    color: var(--e-global-color-text, #111212);
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 480px) {
    .inclusions-list li {
        font-size: 13px;
        gap: 10px;
        padding: 10px 0;
    }
}

.inclusions-list li:last-child {
    padding-bottom: 0;
}

.inclusions-list li .list-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.inclusions-col--included .inclusions-list li .list-icon {
    color: var(--e-global-color-primary, #C79375);
}

.inclusions-col--excluded .inclusions-list li .list-icon {
    color: var(--e-global-color-secondary, #333333);
}

/* ============================================================
   PACKING GRID
   ============================================================ */
.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.packing-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(254, 188, 17, 0.08);
    border: 1px solid rgba(254, 188, 17, 0.15);
    border-radius: 10px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    color: var(--e-global-color-primary, #083321);
    transition: all 0.2s ease;
}

.packing-item:hover {
    background: rgba(254, 188, 17, 0.15);
}

.packing-item svg {
    flex-shrink: 0;
    color: var(--e-global-color-secondary, #FEBC11);
}

/* ============================================================
   FITNESS REQUIREMENTS
   ============================================================ */
.fitness-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
}

.fitness-icon {
    flex-shrink: 0;
    color: var(--e-global-color-secondary, #FEBC11);
}

.fitness-text {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 15px;
    line-height: 1.7;
    color: var(--e-global-color-text, #4a5568);
}

.fitness-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .fitness-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============================================================
   ASK A QUESTION SECTION
   ============================================================ */
.re-mountain-question {
    background: var(--e-global-color-primary, #083321);
    border-radius: 20px;
    padding: 48px;
    margin-top: 48px;
}

.re-mountain-question .section-title {
    color: #fff;
}

.re-mountain-question .section-title::after {
    background: var(--e-global-color-secondary, #FEBC11);
}

.question-section-content {
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
}

.question-intro {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px 0;
}

.question-form {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.question-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.question-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.question-form label {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
}

.question-form input,
.question-form textarea {
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.question-form input:focus,
.question-form textarea:focus {
    outline: none;
    border-color: var(--e-global-color-secondary, #FEBC11);
    box-shadow: 0 0 0 4px rgba(254, 188, 17, 0.15);
}

.question-form textarea {
    resize: vertical;
    min-height: 100px;
}

.question-form .form-actions {
    margin-top: 24px;
}

.btn-submit-question {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--e-global-color-secondary, #FEBC11);
    color: var(--e-global-color-primary, #083321);
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-question:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-submit-question:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.question-form .form-message {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.question-form .form-message--success {
    background: rgba(56, 161, 105, 0.15);
    color: #38a169;
    border: 1px solid rgba(56, 161, 105, 0.3);
}

.question-form .form-message--error {
    background: rgba(229, 62, 62, 0.15);
    color: #e53e3e;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

/* Question Form - Country Select with Flags */
.question-form .country-select-flags {
    width: 100%;
    padding: 14px 16px;
    padding-left: 48px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    background: #fff;
    color: #333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.question-form .country-select-flags:focus {
    outline: none;
    border-color: var(--e-global-color-secondary, #FEBC11);
    box-shadow: 0 0 0 4px rgba(254, 188, 17, 0.15);
}

.question-form .country-select-flags:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

/* Country Select Wrapper with Flag */
.country-select-wrapper {
    position: relative;
}

.country-select-wrapper .country-flag {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
    z-index: 2;
}

/* Question Form - Phone Input */
.question-form .phone-input-wrapper {
    position: relative;
    display: block;
}

.question-form .phone-input-wrapper .iti {
    width: 100%;
    display: block;
}

.question-form .phone-input-wrapper .iti--allow-dropdown {
    width: 100%;
}

.question-form .phone-input-wrapper .iti input,
.question-form .phone-input-wrapper .iti input[type="tel"] {
    width: 100%;
    height: 52px;
    padding: 14px 16px 14px 110px !important;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.question-form .phone-input-wrapper .iti input:focus {
    outline: none;
    border-color: var(--e-global-color-secondary, #FEBC11);
    box-shadow: 0 0 0 4px rgba(254, 188, 17, 0.15);
}

.question-form .phone-input-wrapper .iti__flag-container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}

.question-form .phone-input-wrapper .iti__selected-flag {
    padding: 0 10px 0 14px;
    background: transparent;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
}

.question-form .phone-input-wrapper .iti__country-list {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    z-index: 100;
}

/* Preferred Contact Method - Radio Buttons */
.preferred-contact-group {
    margin-bottom: 0;
    margin-top: 20px;
}

.preferred-contact-label {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    display: block;
    margin-bottom: 12px;
}

.preferred-contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.radio-option {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.radio-option:hover {
    background: #f0f4f8;
    border-color: rgba(0, 0, 0, 0.1);
}

/* Hide the default radio but keep it in DOM for accessibility */
.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

/* Custom radio circle - default state */
.radio-custom {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border: 2px solid #cbd5e0;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: inline-block;
    box-sizing: border-box;
    background: #fff;
    margin-right: 4px;
}

/* Inner dot for radio */
.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.2s ease;
}

/* Checked state - green border and background */
.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--e-global-color-primary, #083321);
    background: var(--e-global-color-primary, #083321);
}

/* Checked state - show white dot */
.radio-option input[type="radio"]:checked + .radio-custom::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Checked state - icon color */
.radio-option input[type="radio"]:checked ~ .radio-icon {
    color: var(--e-global-color-primary, #083321);
}

/* Checked state - label bold and colored */
.radio-option input[type="radio"]:checked ~ .radio-label {
    color: var(--e-global-color-primary, #083321);
    font-weight: 600;
}

/* Checked state - box highlight */
.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--e-global-color-primary, #083321);
    background: rgba(8, 51, 33, 0.05);
}

.radio-icon {
    color: #718096;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
    margin-right: 6px;
}

.radio-icon svg {
    width: 16px;
    height: 16px;
}

.radio-label {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Responsive for radio options */
@media (max-width: 640px) {
    .preferred-contact-options {
        grid-template-columns: 1fr;
    }
    
    .question-form__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .re-mountain-question {
        padding: 32px 24px;
    }
    
    .question-form__grid {
        grid-template-columns: 1fr;
    }
    
    .question-form {
        padding: 24px;
    }
}

/* ============================================================
   SIDEBAR / BOOKING CARD
   ============================================================ */
.re-mountain-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Wrapper for related packages and CTA - no longer needs sticky since sidebar is sticky */
.sidebar-sticky-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 22px;
}

.booking-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-card__header {
    background: var(--e-global-color-primary, #083321);
    color: #fff;
    padding: 28px 24px;
    text-align: center;
}

.booking-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-price .price-label {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-price .price-value {
    font-family: var(--e-global-typography-primary-font-family, 'Playfair Display', serif);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
}

.booking-price .price-suffix {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    opacity: 0.8;
}

.booking-price--enquiry .price-value {
    font-size: 24px;
}

.booking-card__body {
    padding: 24px;
}

.booking-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.booking-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    color: var(--e-global-color-primary, #083321);
}

.booking-features li:last-child {
    border-bottom: none;
}

.booking-features li svg {
    flex-shrink: 0;
    color: var(--e-global-color-secondary, #FEBC11);
}

.booking-card__footer {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-book-trek {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--e-global-color-secondary, #FEBC11);
    color: var(--e-global-color-primary, #083321);
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-book-trek:hover {
    background: var(--e-global-color-primary, #083321);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-send-inquiry {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--e-global-color-primary, #083321);
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    font-weight: 500;
    padding: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send-inquiry:hover {
    border-color: var(--e-global-color-primary, #083321);
    background: rgba(8, 51, 33, 0.05);
}

/* Section Nav */
.section-nav {
    margin-top: 24px;
    background: rgba(244, 240, 236, 0.75);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(199, 147, 117, 0.16);
}

.section-nav__title {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--re-subheading, #4F3F2B);
    margin: 0 0 12px 0;
}

.section-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-nav__list li {
    margin-bottom: 8px;
}

.section-nav__list li:last-child {
    margin-bottom: 0;
}

.section-nav__list a {
    display: block;
    padding: 10px 14px;
    color: var(--re-heading, #2A2118);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    transition: all 0.2s ease;
}

.section-nav__list a:hover {
    background: #fff;
    color: var(--e-global-color-primary, #C79375);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   RELATED MOUNTAIN PACKAGES
   ============================================================ */
.related-packages {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(199, 147, 117, 0.16);
}

/* Hide mobile/tablet versions on desktop */
.related-packages--mobile,
.sidebar-cta--mobile {
    display: none;
}

.related-packages__title {
    font-family: var(--e-global-typography-primary-font-family, 'Playfair Display', serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--re-heading, #2A2118);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.related-packages__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-package-card {
    margin: 0;
    padding: 0;
}

.related-package-card__link {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: rgba(244, 240, 236, 0.68);
}

.related-package-card__link:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.related-package-card__image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.related-package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-package-card__content {
    flex: 1;
    min-width: 0;
}

.related-package-card__title {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--re-heading, #2A2118);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.related-package-card__excerpt {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 12px;
    color: #718096;
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-package-card__more {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 12px;
    font-weight: 600;
    color: var(--e-global-color-secondary, #FEBC11);
    transition: color 0.2s ease;
}

.related-package-card__link:hover .related-package-card__more {
    color: var(--e-global-color-primary, #083321);
}

/* ============================================================
   SIDEBAR CTA BUTTON
   ============================================================ */
.sidebar-cta {
    margin-top: 24px;
}

.sidebar-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--e-global-color-secondary, #FEBC11);
    color: var(--e-global-color-primary, #083321);
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 188, 17, 0.3);
}

.sidebar-cta__button:hover {
    background: var(--e-global-color-primary, #083321);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 51, 33, 0.3);
}

.sidebar-cta__button svg {
    transition: transform 0.3s ease;
}

.sidebar-cta__button:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   INLINE CTA (CONTENT COLUMN)
   ============================================================ */
.re-mountain-inline-cta {
    margin-top: -8px;
    margin-bottom: 44px;
}

.re-mountain-inline-cta__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(199, 147, 117, 0.22);
    background: linear-gradient(135deg, rgba(252, 248, 243, 0.95), rgba(244, 236, 229, 0.9));
}

.re-mountain-inline-cta__text {
    margin: 0;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--re-subheading, #4F3F2B);
}

.re-mountain-inline-cta__button {
    width: auto;
    min-width: 230px;
    margin-top: 0;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .re-mountain-inline-cta {
        margin-bottom: 38px;
    }

    .re-mountain-inline-cta__card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .re-mountain-inline-cta__text {
        font-size: 14px;
    }

    .re-mountain-inline-cta__button {
        width: 100%;
        min-width: 0;
    }
}

/* ============================================================
   INQUIRY MODAL
   ============================================================ */
.inquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    padding: 20px;
    overflow-y: auto;
}

.inquiry-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.inquiry-modal__container {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.inquiry-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.inquiry-modal__close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.inquiry-modal__header {
    text-align: center;
    margin-bottom: 32px;
}

.inquiry-modal__title {
    font-family: var(--e-global-typography-primary-font-family, 'Playfair Display', serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--e-global-color-primary, #083321);
    margin: 0 0 8px 0;
}

.inquiry-modal__subtitle {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 15px;
    color: #666;
    margin: 0;
}

.inquiry-modal__form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.inquiry-modal__form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.inquiry-modal__form .form-group--full {
    margin-bottom: 20px;
}

.inquiry-modal__form label {
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: #4a5568;
}

.inquiry-modal__form input,
.inquiry-modal__form select,
.inquiry-modal__form textarea {
    padding: 12px 14px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-modal__form input:focus,
.inquiry-modal__form select:focus,
.inquiry-modal__form textarea:focus {
    outline: none;
    border-color: var(--e-global-color-secondary, #FEBC11);
    box-shadow: 0 0 0 4px rgba(254, 188, 17, 0.15);
}

.inquiry-modal__form textarea {
    resize: vertical;
    min-height: 100px;
}

.inquiry-modal__form .form-actions {
    text-align: center;
    margin-top: 24px;
}

.inquiry-modal__form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--e-global-color-secondary, #FEBC11);
    color: var(--e-global-color-primary, #083321);
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-modal__form .btn-submit:hover {
    background: var(--e-global-color-primary, #083321);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.inquiry-modal__form .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.inquiry-modal__form .btn-submit .spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Phone input with country code */
.form-group--phone {
    position: relative;
}

.form-group--phone .iti {
    display: flex !important;
    width: 100%;
}

.form-group--phone .iti--allow-dropdown,
.form-group--phone .iti--separate-dial-code {
    width: 100%;
}

.form-group--phone .iti__flag-container {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 10;
}

.form-group--phone .iti__selected-flag {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 8px 0 12px;
    background: rgba(0, 0, 0, 0.03);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px 0 0 10px;
}

.form-group--phone .iti__selected-dial-code {
    margin-left: 6px;
    font-size: 14px;
    color: #333;
}

.form-group--phone input.phone-input {
    width: 100% !important;
    padding-left: 95px !important;
    box-sizing: border-box;
}

.form-group--phone .iti--separate-dial-code input.phone-input {
    padding-left: 108px !important;
}

.form-group--phone .iti__country-list {
    z-index: 99999;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-group--phone .iti__country-list .iti__country {
    padding: 10px 12px;
    background: #fff;
}

.form-group--phone .iti__country-list .iti__country:hover {
    background: #f5f5f5;
}

.form-group--phone .iti__country-list .iti__country.iti__highlight {
    background: #f0f0f0;
}

/* Form messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    font-size: 14px;
    margin-top: 20px;
}

.form-message--success {
    background: rgba(56, 161, 105, 0.1);
    color: #38a169;
    border: 1px solid rgba(56, 161, 105, 0.2);
}

.form-message--error {
    background: rgba(229, 62, 62, 0.1);
    color: #e53e3e;
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.form-message svg {
    flex-shrink: 0;
}

/* Honeypot - hidden from users */
/* Honeypot - hidden from users, traps bots */
.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Country Select Dropdown */
.country-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.country-select:focus {
    outline: none;
    border-color: var(--e-global-color-primary, #083321);
    box-shadow: 0 0 0 3px rgba(8, 51, 33, 0.1);
}

.country-select:hover {
    border-color: #999;
}

.country-select option {
    padding: 10px;
}

/* Country Select with Flags (Modal Forms) */
.inquiry-modal .country-select-wrapper {
    position: relative;
}

.inquiry-modal .country-select-wrapper .country-flag {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
    z-index: 2;
}

.inquiry-modal .country-select-flags {
    width: 100%;
    padding: 14px 16px;
    padding-left: 48px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif);
    background: #fff;
    color: #333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-modal .country-select-flags:focus {
    outline: none;
    border-color: var(--e-global-color-primary, #083321);
    box-shadow: 0 0 0 3px rgba(8, 51, 33, 0.1);
}

.inquiry-modal .country-select-flags:hover {
    border-color: #999;
}

@media (max-width: 640px) {
    .inquiry-modal__container {
        padding: 24px;
        margin: 10px;
    }
    
    .inquiry-modal__form .form-row {
        grid-template-columns: 1fr;
    }
    
    .inquiry-modal__title {
        font-size: 24px;
    }
}

/* ============================================================
   DIFFICULTY COLORS
   ============================================================ */
.difficulty--easy,
.difficulty--easy .stat-value {
    color: #38a169 !important;
}

.difficulty--moderate,
.difficulty--moderate .stat-value {
    color: #ed8936 !important;
}

.difficulty--challenging,
.difficulty--challenging .stat-value {
    color: #e53e3e !important;
}

.difficulty--expert,
.difficulty--expert .stat-value {
    color: #805ad5 !important;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

/* ============================================================
   TABLET VIEW (768px - 1024px) - SINGLE COLUMN LAYOUT
   ============================================================ */

/* Tablets (768px - 1024px) - Single column layout */
@media (max-width: 1024px) and (min-width: 769px) {
    .re-mountain-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Sidebar comes FIRST (after stats grid visually) */
    .re-mountain-sidebar {
        position: relative;
        top: auto;
        order: -1;
    }
    
    /* Hide sticky wrapper on tablet - mobile versions are shown instead */
    .sidebar-sticky-wrapper {
        display: none;
    }
    
    .re-mountain-content {
        order: 0;
    }
    
    /* Reduce top padding so sidebar appears closer to stats grid */
    .re-mountain-main {
        padding: 0 24px 60px;
    }
    
    /* Hero adjustments */
    .re-mountain-hero {
        min-height: 50vh;
        padding: 80px 24px 48px;
    }
    
    .re-mountain-hero__title {
        font-size: clamp(32px, 5vw, 44px);
    }
    
    .re-mountain-hero__meta {
        gap: 12px;
    }
    
    .re-mountain-hero__meta .meta-item {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    /* Price stat item hidden by default via base styles */
    
    /* Stats Grid - auto-fit columns */
    .re-mountain-stats__grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0;
    }
    
    .re-mountain-stats .stat-item {
        padding: 20px 16px;
        gap: 10px;
    }
    
    .re-mountain-stats .stat-value {
        font-size: 18px;
    }
    
    .re-mountain-stats .stat-label {
        font-size: 10px;
    }
    
    .re-mountain-stats .stat-icon svg {
        width: 24px;
        height: 24px;
    }
    
    /* Stats section - reduce bottom margin for tight spacing */
    .re-mountain-stats {
        margin-bottom: 16px;
    }
    
    /* Booking Card - 3 Row Stacked Layout */
    .booking-card {
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    /* Row 1: Price */
    .booking-card__header {
        padding: 24px 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .booking-price {
        text-align: center;
    }
    
    .booking-price .price-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        opacity: 0.85;
        display: block;
        margin-bottom: 4px;
    }
    
    .booking-price .price-value {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.1;
    }
    
    .booking-price .price-suffix {
        font-size: 12px;
        opacity: 0.85;
        display: block;
        margin-top: 2px;
    }
    
    /* Row 2: Features - 3 columns */
    .booking-card__body {
        padding: 20px 28px;
        background: #fff;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .booking-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px 24px;
        width: 100%;
    }
    
    .booking-features li {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }
    
    .booking-features li svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }
    
    /* Row 3: Buttons - Horizontal */
    .booking-card__footer {
        padding: 20px 28px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 16px;
        background: rgba(255,255,255,0.05);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .btn-book-trek {
        padding: 14px 28px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        white-space: nowrap;
        flex: 1;
        max-width: 200px;
        text-align: center;
    }
    
    .btn-send-inquiry {
        padding: 14px 28px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        white-space: nowrap;
        flex: 1;
        max-width: 200px;
        text-align: center;
    }
    
    .btn-send-inquiry:hover {
        opacity: 0.9;
    }
    
    /* Section Nav - Clean horizontal pills */
    .section-nav {
        margin-top: 20px;
        padding: 16px 20px;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    .section-nav__title {
        display: none;
    }
    
    .section-nav__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .section-nav__list li {
        margin: 0;
    }
    
    .section-nav__list a {
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 500;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    
    .section-nav__list a:hover {
        opacity: 0.85;
    }
    
    /* Hide sidebar related packages and CTA on tablet - show mobile versions instead */
    .re-mountain-sidebar .related-packages,
    .re-mountain-sidebar .sidebar-cta {
        display: none;
    }
    
    /* Show mobile versions of related packages and CTA */
    .related-packages--mobile {
        display: block;
        margin-top: 48px;
    }
    
    .sidebar-cta--mobile {
        display: block;
        margin-top: 24px;
        margin-bottom: 48px;
    }
    
    /* Section titles */
    .re-mountain-section .section-title {
        font-size: 26px;
    }
    
    /* Inclusions Grid - side by side */
    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .inclusions-col {
        padding: 24px 20px;
    }
    
    /* Highlights Grid - 2 columns */
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* Packing Grid - 3 columns */
    .packing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    /* Section Nav - Compact */
    .section-nav {
        padding: 16px;
    }
    
    .section-nav__list a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Related Packages */
    .related-packages {
        margin-top: 24px;
    }
    
    .related-packages__title {
        font-size: 13px;
    }
    
    .related-package-card__link {
        flex-direction: column;
    }
    
    .related-package-card__image {
        width: 100%;
        height: 80px;
    }
    
    .related-package-card__info {
        padding: 12px;
    }
    
    .related-package-card__title {
        font-size: 13px;
    }
    
    /* Question Form */
    .re-mountain-question {
        margin-top: 48px;
        padding: 48px 32px;
    }
    
    .question-section-content {
        max-width: 100%;
    }
    
    .preferred-contact-options {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Gallery Grid */
    .re-mountain-gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 160px);
        gap: 12px;
    }
    
    /* Itinerary */
    .itinerary-accordion__header {
        padding: 18px 24px;
    }
    
    /* Packing Grid - 3 columns */
    .packing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    /* Question Form */
    .re-mountain-question {
        margin-top: 48px;
        padding: 48px 32px;
    }
    
    .question-section-content {
        max-width: 100%;
    }
    
    .preferred-contact-options {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Gallery Grid */
    .re-mountain-gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 160px);
        gap: 12px;
    }
    
    /* Itinerary */
    .itinerary-accordion__header {
        padding: 18px 24px;
    }
    
    /* Fitness Content */
    .fitness-content {
        flex-direction: row;
        gap: 24px;
    }
}

/* Mobile - Small screens (768px and below) */
@media (max-width: 768px) {
    .re-mountain-single .container {
        padding: 0 16px;
    }
    
    /* Price stat item hidden by default - booking card shows price */
    /* It will be shown at 480px where booking card is hidden */
    
    /* Layout becomes single column - sidebar moves to top */
    .re-mountain-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .re-mountain-sidebar {
        order: -1;
        position: relative;
        top: auto;
    }
    
    /* Hide sticky wrapper on mobile - mobile versions are shown instead */
    .sidebar-sticky-wrapper {
        display: none;
    }
    
    /* Booking card - horizontal compact layout */
    .booking-card {
        display: grid;
        grid-template-columns: auto 1fr;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .booking-card__header {
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 140px;
    }
    
    .booking-price .price-value {
        font-size: 24px;
    }
    
    .booking-price .price-label {
        font-size: 11px;
    }
    
    .booking-card__body {
        display: none; /* Hide highlights on mobile */
    }
    
    .booking-card__footer {
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
    
    .btn-book-trek {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    /* Hide inquiry button on mobile - one clear CTA */
    .btn-send-inquiry {
        display: none;
    }
    
    /* Section nav - collapsible on mobile 768 */
    .section-nav {
        margin-top: 16px;
        padding: 0;
        background: #f8f9fa;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .section-nav__title {
        padding: 14px 16px;
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .section-nav__title::after {
        content: '';
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }
    
    .section-nav.is-open .section-nav__title::after {
        transform: rotate(-135deg);
    }
    
    .section-nav__list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
    }
    
    .section-nav.is-open .section-nav__list {
        max-height: 400px;
        padding: 8px 0;
    }
    
    .section-nav__list li {
        margin: 0;
    }
    
    .section-nav__list a {
        padding: 10px 16px;
        font-size: 13px;
        background: transparent;
        border-radius: 0;
    }
    
    .section-nav__list a:hover {
        background: #fff;
    }
    
    /* Hide sidebar related packages and CTA - show mobile versions */
    .re-mountain-sidebar .related-packages,
    .re-mountain-sidebar .sidebar-cta {
        display: none;
    }
    
    .related-packages--mobile {
        display: block;
        margin-top: 40px;
    }
    
    .sidebar-cta--mobile {
        display: block;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    
    .re-mountain-hero {
        min-height: 50vh;
        padding: 60px 16px 40px;
    }
    
    .re-mountain-hero__title {
        font-size: clamp(28px, 6vw, 42px);
    }
    
    .re-mountain-hero__meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .re-mountain-hero__meta .meta-item {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    .re-mountain-stats {
        margin-bottom: 32px;
    }
    
    .re-mountain-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .re-mountain-stats .stat-item {
        padding: 16px 14px;
        gap: 10px;
    }
    
    .re-mountain-stats .stat-value {
        font-size: 16px;
    }
    
    .re-mountain-stats .stat-label {
        font-size: 10px;
    }
    
    .re-mountain-stats .stat-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .re-mountain-main {
        padding: 32px 16px 48px;
    }
    
    .re-mountain-section {
        margin-bottom: 36px;
    }
    
    .re-mountain-section .section-title {
        font-size: 24px;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }
    
    .re-mountain-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 120px);
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .highlight-item {
        padding: 14px 16px;
    }
    
    .itinerary-accordion__header {
        padding: 16px 20px;
        gap: 12px;
    }
    
    .itinerary-accordion__day {
        min-width: 56px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .itinerary-accordion__title {
        font-size: 15px;
        text-align: left !important;
    }
    
    .itinerary-accordion__content {
        padding: 0 20px;
    }
    
    .itinerary-accordion__item.is-active .itinerary-accordion__content {
        padding: 20px;
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .inclusions-col {
        padding: 20px;
    }
    
    .packing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .packing-item {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .fitness-content {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }
    
    /* Booking card already styled in earlier 768px section */
    
    .section-nav {
        padding: 0;
    }
    
    .re-mountain-inquiry {
        padding: 48px 16px;
    }
    
    .inquiry-title {
        font-size: clamp(24px, 5vw, 32px);
    }
    
    .inquiry-form {
        padding: 24px;
    }
    
    .inquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 16px 24px;
    }
    
    /* Related Packages - Tablet 768 */
    .related-packages__list {
        grid-template-columns: 1fr;
    }
    
    .related-package-card__link {
        flex-direction: row;
    }
    
    .related-package-card__image {
        width: 100px;
        height: 75px;
    }
    
    /* Question Form - Tablet 768 */
    .re-mountain-question {
        padding: 32px 20px !important;
        margin: 32px 0 0 0 !important;
        width: 100% !important;
        border-radius: 16px;
        box-sizing: border-box;
        overflow: hidden;
        text-align: center;
    }
    
    .question-section-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .re-mountain-question .section-title {
        display: inline-block;
    }
    
    .question-intro {
        text-align: center;
    }
    
    .question-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        text-align: left;
    }
    
    .question-form__grid {
        grid-template-columns: 1fr;
    }
    
    .preferred-contact-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .re-mountain-single {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .re-mountain-single .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .re-mountain-hero {
        min-height: 45vh;
        padding: 48px 16px 32px;
        width: 100%;
    }
    
    .re-mountain-hero__breadcrumb {
        font-size: 11px;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .re-mountain-hero__title {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 16px;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    /* Hide hero meta items on mobile */
    .re-mountain-hero__meta {
        display: none;
    }
    
    .re-mountain-stats {
        margin: 0 auto 24px;
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .re-mountain-stats .container {
        padding: 0;
    }
    
    .re-mountain-stats__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        padding: 0;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .re-mountain-stats .stat-item {
        padding: 16px 8px;
        gap: 6px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 90px;
    }
    
    /* SHOW price in stats grid on mobile (since booking card is hidden) */
    .re-mountain-stats .stat-item--price {
        display: flex !important;
        grid-column: span 3;
        flex-direction: row;
        gap: 12px;
        min-height: auto;
        padding: 14px 16px;
        background: var(--e-global-color-secondary, #FEBC11);
        color: var(--e-global-color-primary, #083321);
    }
    
    .re-mountain-stats .stat-icon {
        display: flex;
        justify-content: center;
    }
    
    .re-mountain-stats .stat-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .re-mountain-stats .stat-item--price .stat-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .re-mountain-stats .stat-content {
        align-items: center;
    }
    
    .re-mountain-stats .stat-item--price .stat-content {
        align-items: flex-start;
    }
    
    .re-mountain-stats .stat-value {
        font-size: 14px;
        font-weight: 600;
    }
    
    .re-mountain-stats .stat-item--price .stat-value {
        font-size: 18px;
    }
    
    .re-mountain-stats .stat-label {
        font-size: 9px;
        letter-spacing: 0.3px;
    }
    
    .re-mountain-stats .stat-item--price .stat-label {
        font-size: 11px;
    }
    
    .re-mountain-main {
        padding: 24px 16px 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .re-mountain-layout {
        gap: 0;
        width: 100%;
    }
    
    /* Mobile Quick Links - NOT sticky, relative positioning */
    .re-mountain-sidebar {
        order: -1;
        position: relative;
        top: auto;
        z-index: 10;
        background: #fff;
        margin: 0 0 32px 0;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }
    
    /* Hide sticky wrapper on small mobile */
    .sidebar-sticky-wrapper {
        display: none;
    }
    
    .booking-card {
        display: none;
    }
    
    .section-nav {
        margin: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    
    .section-nav__title {
        padding: 16px 20px;
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        color: var(--e-global-color-primary, #083321);
        background: #f8f9fa;
        border-bottom: 1px solid #e2e8f0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .section-nav__title::after {
        content: '';
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--e-global-color-primary, #083321);
        border-bottom: 2px solid var(--e-global-color-primary, #083321);
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }
    
    .section-nav.is-open .section-nav__title::after {
        transform: rotate(-135deg);
    }
    
    .section-nav__list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
        background: #fff;
    }
    
    .section-nav.is-open .section-nav__list {
        max-height: 500px;
        padding: 12px 0;
    }
    
    .section-nav__list li {
        margin: 0;
    }
    
    .section-nav__list a {
        padding: 12px 20px;
        font-size: 14px;
        display: block;
        border-radius: 0;
        background: transparent;
        color: #4a5568;
    }
    
    .section-nav__list a:hover {
        background: #f8f9fa;
        color: var(--e-global-color-primary, #083321);
        box-shadow: none;
    }
    
    /* Hide related packages and CTA on mobile - show at bottom */
    .re-mountain-sidebar .related-packages,
    .re-mountain-sidebar .sidebar-cta {
        display: none;
    }
    
    /* Show mobile versions after question section */
    .related-packages--mobile {
        display: block;
        margin-top: 32px;
    }
    
    .sidebar-cta--mobile {
        display: block;
        margin-top: 20px;
        margin-bottom: 32px;
    }
    
    .re-mountain-section {
        margin-bottom: 32px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .re-mountain-section .section-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        max-width: 100%;
        word-wrap: break-word;
        text-align: left;
    }
    
    /* All text content should be justified */
    .re-mountain-section p,
    .re-mountain-section .prose,
    .day-description,
    .fitness-text {
        text-align: justify;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .re-mountain-gallery .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 100px);
        gap: 8px;
        width: 100%;
    }
    
    .re-mountain-gallery .gallery-item--0 {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .highlight-item {
        padding: 12px 14px;
        font-size: 14px;
        word-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
    }
    
    .highlight-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .itinerary-accordion {
        gap: 10px;
        width: 100%;
    }
    
    .itinerary-accordion__item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .itinerary-accordion__header {
        padding: 14px 16px;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .itinerary-accordion__day {
        min-width: auto;
        padding: 5px 10px;
        font-size: 11px;
        flex-shrink: 0;
    }
    
    .itinerary-accordion__title {
        font-size: 14px;
        flex: 1;
        text-align: left !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .itinerary-accordion__content {
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .itinerary-accordion__item.is-active .itinerary-accordion__content {
        padding: 16px;
    }
    
    .day-stats {
        gap: 6px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }
    
    .day-stat {
        font-size: 11px;
        padding: 4px 8px;
        gap: 4px;
    }
    
    .day-stat svg {
        width: 12px;
        height: 12px;
    }
    
    .day-description {
        font-size: 14px;
        line-height: 1.65;
        text-align: justify;
    }
    
    .inclusions-grid {
        width: 100%;
        box-sizing: border-box;
    }
    
    .inclusions-col {
        padding: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .inclusions-heading {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .inclusions-list li {
        padding: 8px 0;
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .inclusions-list li svg {
        flex-shrink: 0;
    }
    
    .packing-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
    }
    
    .packing-item {
        padding: 10px 12px;
        font-size: 13px;
        word-wrap: break-word;
        box-sizing: border-box;
    }
    
    .packing-item svg {
        flex-shrink: 0;
    }
    
    .fitness-content {
        padding: 20px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .fitness-text {
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
    }
    
    /* Question Form - Mobile */
    .re-mountain-question {
        padding: 28px 16px 32px 16px !important;
        margin: 32px 0 0 0 !important;
        width: 100% !important;
        border-radius: 16px;
        box-sizing: border-box;
        overflow: hidden;
        text-align: center;
    }
    
    .question-section-content {
        padding: 0;
        max-width: 100% !important;
        text-align: center;
        width: 100% !important;
    }
    
    .re-mountain-question .section-title {
        font-size: 20px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        display: inline-block;
    }
    
    .question-intro {
        font-size: 13px;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.6;
    }
    
    .question-form {
        padding: 20px 14px !important;
        border-radius: 12px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: left;
        margin: 0 !important;
    }
    
    .question-form__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .question-form .form-group {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .question-form label {
        font-size: 13px;
        display: block;
        width: 100%;
    }
    
    .question-form input,
    .question-form select,
    .question-form textarea {
        padding: 12px 14px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .question-form textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    .question-form .phone-input-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .question-form .phone-input-wrapper .iti {
        width: 100%;
        max-width: 100%;
    }
    
    .question-form .phone-input-wrapper .iti input,
    .question-form .phone-input-wrapper .iti input[type="tel"] {
        height: 48px;
        padding: 12px 14px 12px 100px !important;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .question-form .country-select-flags {
        padding: 12px 14px;
        padding-left: 44px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .preferred-contact-group {
        width: 100%;
        max-width: 100%;
    }
    
    .preferred-contact-options {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }
    
    .radio-option {
        padding: 12px 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .radio-label {
        font-size: 13px;
    }
    
    .question-form .form-actions {
        width: 100%;
    }
    
    .btn-submit-question {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        box-sizing: border-box;
    }
    
    .itinerary-accordion__title {
        font-size: 14px;
        text-align: left !important;
    }
    
    .itinerary-accordion__icon {
        width: 24px;
        height: 24px;
    }
    
    .itinerary-accordion__icon svg {
        width: 16px;
        height: 16px;
    }
    
    .itinerary-accordion__content {
        padding: 0 16px;
    }
    
    .itinerary-accordion__item.is-active .itinerary-accordion__content {
        padding: 16px;
    }
    
    .day-stats {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .day-stat {
        font-size: 11px;
        padding: 4px 8px;
        gap: 4px;
    }
    
    .day-stat svg {
        width: 12px;
        height: 12px;
    }
    
    .day-description {
        font-size: 14px;
        line-height: 1.65;
    }
    
    .inclusions-col {
        padding: 16px;
    }
    
    .inclusions-heading {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .inclusions-list li {
        padding: 8px 0;
        font-size: 13px;
        word-wrap: break-word;
    }
    
    .inclusions-list li svg {
        flex-shrink: 0;
    }
    
    .packing-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .packing-item {
        padding: 10px 12px;
        font-size: 13px;
        word-wrap: break-word;
    }
    
    .packing-item svg {
        flex-shrink: 0;
    }
    
    .fitness-content {
        padding: 20px 16px;
    }
    
    .fitness-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* Question Form - Mobile */
    .re-mountain-question {
        padding: 24px 14px 28px 14px !important;
        margin: 24px 0 0 0 !important;
        width: 100% !important;
        border-radius: 12px;
        overflow: hidden;
        text-align: center;
    }
    
    .question-section-content {
        text-align: center;
        width: 100% !important;
    }
    
    .re-mountain-question .section-title {
        font-size: 18px;
        display: inline-block;
    }
    
    .question-intro {
        font-size: 13px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .question-form {
        padding: 18px 12px !important;
        border-radius: 10px;
        text-align: left;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .question-form__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .question-form label {
        font-size: 13px;
    }
    
    .question-form input,
    .question-form select,
    .question-form textarea {
        padding: 12px 14px;
        font-size: 14px;
        width: 100%;
    }
    
    .question-form textarea {
        min-height: 100px;
    }
    
    .question-form .phone-input-wrapper .iti {
        width: 100%;
    }
    
    .question-form .phone-input-wrapper .iti input,
    .question-form .phone-input-wrapper .iti input[type="tel"] {
        height: 48px;
        padding: 12px 14px 12px 100px !important;
        font-size: 14px;
        width: 100%;
    }
    
    .question-form .country-select-flags {
        padding: 12px 14px;
        padding-left: 44px;
        font-size: 14px;
    }
    
    .preferred-contact-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .radio-option {
        padding: 12px 14px;
    }
    
    .radio-label {
        font-size: 13px;
    }
    
    .btn-submit-question {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    /* Modal - Mobile */
    .inquiry-modal {
        padding: 10px;
    }
    
    .inquiry-modal__container {
        padding: 20px 16px;
        margin: 0;
        border-radius: 16px;
        max-width: 100%;
        width: calc(100% - 20px);
        box-sizing: border-box;
    }
    
    .inquiry-modal__header {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .inquiry-modal__title {
        font-size: 22px;
        word-wrap: break-word;
    }
    
    .inquiry-modal__subtitle {
        font-size: 13px;
        word-wrap: break-word;
    }
    
    .inquiry-modal__form {
        width: 100%;
    }
    
    .inquiry-modal__form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }
    
    .inquiry-modal__form .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .inquiry-modal__form input,
    .inquiry-modal__form select,
    .inquiry-modal__form textarea {
        padding: 12px 14px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .inquiry-modal .country-select-flags {
        padding: 12px 14px;
        padding-left: 44px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .inquiry-modal .iti {
        width: 100%;
        max-width: 100%;
    }
    
    .inquiry-modal .iti input {
        padding-left: 100px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .inquiry-modal .form-actions {
        width: 100%;
    }
    
    .inquiry-modal .btn-submit {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Related Packages - Mobile (show after content) */
    .related-packages {
        padding: 16px;
        margin-top: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .related-packages__title {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .related-packages__list {
        gap: 10px;
        width: 100%;
    }
    
    .related-package-card__link {
        padding: 8px;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .related-package-card__image {
        width: 70px;
        height: 52px;
        flex-shrink: 0;
    }
    
    .related-package-card__content {
        flex: 1;
        min-width: 0;
    }
    
    .related-package-card__title {
        font-size: 13px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .related-package-card__excerpt {
        font-size: 11px;
        -webkit-line-clamp: 2;
        word-wrap: break-word;
    }
    
    .related-package-card__more {
        font-size: 11px;
    }
    
    /* Sidebar CTA - Mobile */
    .sidebar-cta {
        margin-top: 20px;
        width: 100%;
    }
    
    .sidebar-cta__button {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .re-mountain-single .container {
        padding: 0 12px;
    }
    
    .re-mountain-hero {
        padding: 48px 12px 32px;
    }
    
    .re-mountain-hero__title {
        font-size: 22px;
    }
    
    .re-mountain-stats {
        padding: 0 12px;
    }
    
    .re-mountain-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }
    
    .re-mountain-stats .stat-item {
        padding: 12px 6px;
        min-height: 80px;
    }
    
    .re-mountain-stats .stat-item--price {
        grid-column: span 2;
    }
    
    .re-mountain-stats .stat-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .re-mountain-stats .stat-value {
        font-size: 13px;
    }
    
    .re-mountain-stats .stat-item--price .stat-value {
        font-size: 16px;
    }
    
    .re-mountain-stats .stat-label {
        font-size: 8px;
    }
    
    .re-mountain-main {
        padding: 24px 12px 40px;
    }
    
    .re-mountain-section .section-title {
        font-size: 18px;
    }
    
    .itinerary-accordion__header {
        flex-wrap: nowrap;
        padding: 12px 14px;
    }
    
    .itinerary-accordion__day {
        min-width: 50px;
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .itinerary-accordion__title {
        font-size: 13px;
        text-align: left !important;
    }
    
    .highlight-item {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .inclusions-list li {
        font-size: 12px;
    }
    
    .related-package-card__link {
        flex-direction: row;
    }
    
    .related-package-card__image {
        width: 60px;
        height: 45px;
    }
    
    .related-package-card__title {
        font-size: 12px;
    }
    
    .related-package-card__excerpt {
        font-size: 10px;
    }
    
    .re-mountain-question {
        padding: 20px 12px 24px 12px !important;
        margin: 20px 0 0 0 !important;
        width: 100% !important;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
    }
    
    .question-section-content {
        text-align: center;
        width: 100% !important;
    }
    
    .re-mountain-question .section-title {
        font-size: 16px;
        display: inline-block;
    }
    
    .question-intro {
        font-size: 12px;
        text-align: center;
        line-height: 1.5;
    }
    
    .question-form {
        padding: 14px 10px !important;
        text-align: left;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* ============================================================
   ADDITIONAL MOBILE OVERFLOW FIXES
   ============================================================ */
@media (max-width: 768px) {
    /* Force all direct children to not overflow */
    .re-mountain-single > * {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Content sections must be contained */
    .re-mountain-content,
    .re-mountain-section {
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Ensure descriptions and text content are wrapped */
    .re-mountain-single p,
    .re-mountain-single li,
    .re-mountain-single span,
    .re-mountain-single div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix any potential pre/code overflow */
    .re-mountain-single pre,
    .re-mountain-single code {
        white-space: pre-wrap;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    /* Center the main content */
    .re-mountain-main {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .re-mountain-layout,
    .re-mountain-content {
        width: 100%;
        max-width: 100%;
    }
    
    /* Ensure grids don't overflow */
    .re-mountain-stats__grid,
    .highlights-grid,
    .inclusions-grid,
    .gallery-grid,
    .question-form__grid {
        max-width: 100%;
        width: 100%;
    }
    
    /* Fix any fixed-width elements */
    .re-mountain-single [style*="width"] {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* Extra aggressive mobile fixes */
    .re-mountain-single .container {
        padding: 0 12px;
        margin: 0;
        width: 100%;
    }
    
    .re-mountain-main {
        padding: 20px 12px 40px;
    }
    
    /* Reduce padding on cards */
    .booking-card__body,
    .booking-card__footer {
        padding: 16px;
    }
    
    .question-form {
        padding: 16px;
    }
}

/* ============================================================
   QUESTION FORM MOBILE FIX - HIGH SPECIFICITY
   ============================================================ */
@media screen and (max-width: 768px) {
    .re-mountain-single .re-mountain-section.re-mountain-question {
        padding: 28px 16px 32px 16px !important;
        margin: 32px 0 0 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 16px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        text-align: center !important;
    }
    
    .re-mountain-single .re-mountain-question .question-section-content {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    
    .re-mountain-single .re-mountain-question .section-title {
        display: inline-block !important;
        text-align: center !important;
    }
    
    .re-mountain-single .re-mountain-question .question-intro {
        text-align: center !important;
    }
    
    .re-mountain-single .re-mountain-question .question-form {
        padding: 20px 14px !important;
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: left !important;
        margin: 0 !important;
    }
    
    .re-mountain-single .re-mountain-question .question-form__grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .re-mountain-single .re-mountain-question .question-form .form-group {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .re-mountain-single .re-mountain-question .question-form input,
    .re-mountain-single .re-mountain-question .question-form select,
    .re-mountain-single .re-mountain-question .question-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* =====================================================
       OFF-CANVAS QUICK LINKS MENU FOR MOBILE
       ===================================================== */
    
    /* Overlay backdrop */
    .quick-links-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .quick-links-overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }
    
    /* Container for off-canvas - move sidebar to fixed overlay */
    .re-mountain-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -280px !important;
        width: 280px !important;
        height: 100% !important;
        z-index: 9999 !important;
        background: #fff !important;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15) !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        overflow-y: auto !important;
        transition: left 0.3s ease !important;
    }
    
    /* Hide sticky wrapper in off-canvas mode */
    .sidebar-sticky-wrapper {
        display: none !important;
    }
    
    .re-mountain-sidebar.is-open {
        left: 0 !important;
    }
    
    /* Section nav in off-canvas */
    .section-nav {
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .section-nav__title {
        padding: 20px !important;
        margin: 0 !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #fff !important;
        background: var(--e-global-color-primary, #083321) !important;
        cursor: default !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }
    
    .section-nav__title::after {
        display: none !important;
    }
    
    /* Close button in title */
    .quick-links-close {
        position: absolute !important;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 32px !important;
        height: 32px !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border: none !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: background 0.2s ease !important;
    }
    
    .quick-links-close:hover {
        background: rgba(255, 255, 255, 0.3) !important;
    }
    
    .quick-links-close::before,
    .quick-links-close::after {
        content: '' !important;
        position: absolute !important;
        width: 16px !important;
        height: 2px !important;
        background: #fff !important;
    }
    
    .quick-links-close::before {
        transform: rotate(45deg) !important;
    }
    
    .quick-links-close::after {
        transform: rotate(-45deg) !important;
    }
    
    /* List - always visible when sidebar is open */
    .section-nav__list {
        max-height: none !important;
        overflow: visible !important;
        padding: 16px 0 !important;
        margin: 0 !important;
        background: #fff !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .section-nav__list li {
        margin: 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .section-nav__list li:last-child {
        border-bottom: none !important;
    }
    
    .section-nav__list a {
        padding: 16px 20px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        display: block !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #333 !important;
        transition: background 0.2s ease, color 0.2s ease !important;
    }
    
    .section-nav__list a:hover,
    .section-nav__list a:active {
        background: #f8f9fa !important;
        color: var(--e-global-color-primary, #083321) !important;
        box-shadow: none !important;
    }
    
    /* Floating trigger button - always visible on mobile */
    .quick-links-trigger {
        position: fixed !important;
        bottom: 100px !important;
        left: 16px !important;
        width: 56px !important;
        height: 56px !important;
        background: var(--e-global-color-primary, #083321) !important;
        border: none !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
        z-index: 9990 !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }
    
    .quick-links-trigger:hover,
    .quick-links-trigger:active {
        transform: scale(1.05) !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
    }
    
    .quick-links-trigger svg {
        width: 24px !important;
        height: 24px !important;
        fill: none !important;
        stroke: #fff !important;
        stroke-width: 2 !important;
    }
    
    /* Floating Book Button - right side */
    .floating-book-btn {
        position: fixed !important;
        bottom: 100px !important;
        right: 16px !important;
        padding: 14px 24px !important;
        background: var(--e-global-color-secondary, #FEBC11) !important;
        color: var(--e-global-color-primary, #083321) !important;
        font-family: var(--e-global-typography-text-font-family, 'Poppins', sans-serif) !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        border: none !important;
        border-radius: 30px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
        z-index: 9990 !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }
    
    .floating-book-btn:hover,
    .floating-book-btn:active {
        transform: scale(1.05) !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
    }
    
    .floating-book-btn svg {
        width: 18px !important;
        height: 18px !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 2 !important;
    }
    
    /* Hide booking card in off-canvas mode */
    .booking-card {
        display: none !important;
    }
    
    /* Hide sidebar related packages and CTA in off-canvas - show mobile versions */
    .re-mountain-sidebar .related-packages,
    .re-mountain-sidebar .sidebar-cta {
        display: none !important;
    }
    
    /* Show mobile versions after question section */
    .related-packages--mobile {
        display: block !important;
        margin-top: 28px;
    }
    
    .sidebar-cta--mobile {
        display: block !important;
        margin-top: 16px;
        margin-bottom: 28px;
    }
}
