:root {
    --ch-red: #fd5056;
    --ch-red-hover: #e5383e;
    --ch-red-dark: #c92127;
    --ch-red-light: #fff2f2;
    --ch-red-subtle: rgba(253, 80, 86, 0.08);
    --ch-red-glow: rgba(253, 80, 86, 0.28);
    
    --ch-dark: #090031;
    --ch-slate: #1f1a3a;
    --ch-body: #39325a;
    --ch-muted: #6b6487;
    --ch-light-text: #8e87aa;

    --ch-bg-pure: #ffffff;
    --ch-bg-cream: #fbf9f8;
    --ch-bg-soft: #f6f8fb;
    --ch-bg-warm: #fff9f8;
    --ch-border: #e9e6f0;
    --ch-border-light: #f1eff7;
    --ch-border-accent: rgba(253, 80, 86, 0.2);

    --ch-radius-sm: 8px;
    --ch-radius-md: 14px;
    --ch-radius-lg: 20px;
    --ch-radius-pill: 50px;
    --ch-shadow-subtle: 0 4px 20px rgba(9, 0, 49, 0.04);
    --ch-shadow-card: 0 10px 30px rgba(9, 0, 49, 0.06);
    --ch-shadow-hover: 0 18px 45px rgba(253, 80, 86, 0.12);
    --ch-shadow-red: 0 8px 24px rgba(253, 80, 86, 0.32);

    --ch-font-heading: 'Rubik', sans-serif;
    --ch-font-body: 'Roboto', 'Rubik', sans-serif;
    --ch-transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ch-root {
    font-family: var(--ch-font-body);
    color: var(--ch-body);
    line-height: 1.65;
    background-color: var(--ch-bg-pure);
    overflow-x: clip;
    position: relative;
}

.ch-root h1, .ch-root h2, .ch-root h3, .ch-root h4, .ch-root h5, .ch-root h6,
.ch-font-heading {
    font-family: var(--ch-font-heading);
    color: var(--ch-dark);
    font-weight: 700;
    line-height: 1.28;
}

.ch-title-red {
    color: var(--ch-red) !important;
    font-weight: 800;
}

.ch-bg-dots {
    background-image: radial-gradient(rgba(253, 80, 86, 0.12) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
}

.ch-bg-topo {
    background: 
        radial-gradient(circle at 10% 20%, rgba(253, 80, 86, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(65, 65, 165, 0.03) 0%, transparent 45%),
        linear-gradient(180deg, #ffffff 0%, var(--ch-bg-soft) 100%);
}

.ch-bg-mesh {
    background: 
        radial-gradient(circle at 85% 15%, rgba(253, 80, 86, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(253, 180, 86, 0.05) 0%, transparent 40%),
        #ffffff;
}

.ch-bg-pearl {
    background: linear-gradient(180deg, var(--ch-bg-soft) 0%, #ffffff 100%);
    border-top: 1px solid var(--ch-border-light);
    border-bottom: 1px solid var(--ch-border-light);
}

.ch-section {
    padding: 4.5rem 0;
    position: relative;
}

.ch-section-compact {
    padding: 3.25rem 0;
}

.ch-section-header {
    width: 100%;
    margin-bottom: 2.75rem;
    position: relative;
    z-index: 2;
}

.ch-section-header.text-center {
    text-align: center;
}

.ch-section-header.text-center .ch-section-title {
    margin-bottom: 1rem;
}

.ch-section-header.text-center .ch-section-desc {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding: 0 1rem;
}

.ch-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ch-red);
    background: var(--ch-red-light);
    border: 1px solid rgba(253, 80, 86, 0.2);
    padding: 0.35rem 0.95rem;
    border-radius: var(--ch-radius-pill);
    margin-bottom: 0.75rem;
}

.ch-section-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--ch-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.ch-section-title .text-red {
    color: var(--ch-red);
}

.ch-section-title .text-gradient {
    background: linear-gradient(135deg, var(--ch-dark) 20%, var(--ch-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ch-section-desc {
    font-size: 1.08rem;
    color: var(--ch-muted);
    max-width: 920px;
    line-height: 1.7;
    margin-bottom: 0;
}

.ch-section-description {
    font-size: 1.08rem;
    color: var(--ch-muted);
    max-width: 920px;
    line-height: 1.7;
    margin-bottom: 0;
}

.ch-watermark {
    position: absolute;
    right: 3%;
    top: 5%;
    font-family: var(--ch-font-heading);
    font-size: 7.5rem;
    font-weight: 900;
    color: rgba(9, 0, 49, 0.02);
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    white-space: nowrap;
}

.ch-btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, var(--ch-red) 0%, #e8373e 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 0.9rem 1.9rem;
    border-radius: var(--ch-radius-pill);
    border: none;
    transition: var(--ch-transition);
    text-decoration: none;
    box-shadow: var(--ch-shadow-red);
    position: relative;
    overflow: hidden;
}

.ch-btn-red:hover {
    background: linear-gradient(135deg, #ff6066 0%, var(--ch-red) 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(253, 80, 86, 0.42);
}

.ch-btn-white-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: #ffffff;
    color: var(--ch-dark) !important;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--ch-radius-pill);
    border: 1px solid var(--ch-border);
    transition: var(--ch-transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(9, 0, 49, 0.05);
}

.ch-btn-white-outline:hover {
    background: var(--ch-red-light);
    border-color: var(--ch-red);
    color: var(--ch-red) !important;
    transform: translateY(-2px);
}

.ch-hero {
    position: relative;
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
    border-bottom: 1px solid var(--ch-border-light);
    isolation: isolate;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.ch-hero-video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: #090031;
    pointer-events: none;
}

.ch-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.95) contrast(1.04);
}

.ch-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(8 1 14 / 76%) 0%, rgba(9, 0, 49, 0.48) 40%, rgb(0 0 0 / 82%) 100%);
    z-index: 2;
    pointer-events: none;
}

.ch-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ch-red);
    background: #ffffff;
    border: 1px solid rgba(253, 80, 86, 0.25);
    padding: 0.4rem 1.1rem;
    border-radius: var(--ch-radius-pill);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.2rem;
}

.ch-hero-badge i {
    color: var(--ch-red);
}

.ch-root .ch-hero-title,
.ch-hero-title {
    font-size: 3.35rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    max-width: 950px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.ch-hero-title .highlight {
    color: #ff5e64;
    position: relative;
    display: inline-block;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.75);
}

.ch-hero-title .highlight::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(253, 80, 86, 0.45);
    border-radius: 4px;
    z-index: -1;
}

.ch-root .ch-hero-lead,
.ch-hero-lead {
    font-size: 1.16rem;
    line-height: 1.75;
    color: #ffffff !important;
    margin-bottom: 2.25rem;
    max-width: 820px;
    font-weight: 400;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.ch-hero-content-wrap {
    color: #ffffff;
}

.ch-hero-pills-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(253, 80, 86, 0.22);
    border-radius: var(--ch-radius-md);
    padding: 0.95rem 1.15rem;
    margin-bottom: 1.35rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ch-hero-pill-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ch-hero-pill-item:not(:last-child) {
    border-right: 1px solid var(--ch-border-light);
    padding-right: 0.85rem;
}

.ch-pill-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ch-muted);
    margin-bottom: 0.15rem;
}

.ch-pill-val {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--ch-dark);
    line-height: 1.2;
}

.ch-pill-val.text-red {
    color: var(--ch-red);
}

.ch-pill-val small {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ch-muted);
}

.ch-pill-sub {
    font-size: 0.72rem;
    color: var(--ch-muted);
    margin-top: 0.1rem;
}

/* Hero Lead Form Card */
.ch-hero-form-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid rgba(253, 80, 86, 0.28);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(253, 80, 86, 0.15);
    padding: 1.75rem 1.85rem;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.ch-hero-form-header {
    margin-bottom: 1.15rem;
    text-align: left;
}

.ch-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ch-red);
    background: var(--ch-red-light);
    border: 1px solid rgba(253, 80, 86, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--ch-radius-pill);
    margin-bottom: 0.5rem;
}

.ch-pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--ch-red);
    border-radius: 50%;
    animation: chPulseDot 1.6s infinite ease-in-out;
}

@keyframes chPulseDot {
    0%, 100% { transform: scale(0.85); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.ch-hero-form-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--ch-dark);
    margin-bottom: 0.25rem;
    line-height: 1.25;
}

.ch-hero-form-subtitle {
    font-size: 0.84rem;
    color: var(--ch-muted);
    line-height: 1.45;
    margin: 0;
}

.ch-hero-form-body .ch-form-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.ch-hero-form-body .ch-form-input {
    height: 44px;
    padding: 0.55rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

.ch-hero-form-body .ch-form-textarea {
    min-height: 58px;
    height: 58px;
    padding: 0.55rem 0.85rem;
    font-size: 0.88rem;
}

.ch-hero-form-body .ch-select-trigger {
    height: 44px;
    padding: 0 0.85rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

.ch-form-consent {
    font-size: 0.74rem;
    color: #64748b;
    line-height: 1.45;
    text-align: center;
    padding-top: 0.25rem;
}

.ch-form-consent a {
    color: var(--ch-red);
    text-decoration: underline;
    font-weight: 600;
}

.ch-form-consent a:hover {
    color: var(--ch-red-dark);
}

.ch-hero-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #475569;
    font-weight: 600;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--ch-border-light);
}

.ch-hero-form-footer a {
    color: var(--ch-red);
    text-decoration: none;
    font-weight: 700;
}

.ch-hero-form-footer a:hover {
    text-decoration: underline;
}

/* Bottom Compliance & Assistance Desk */
.ch-compliance-section {
    position: relative;
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 4.5rem 0 4.25rem;
}

.ch-compliance-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 17, 34, 0.52) 0%,
        rgba(10, 17, 34, 0.38) 35%,
        rgba(12, 20, 39, 0.50) 70%,
        rgba(8, 14, 28, 0.68) 100%
    );
    z-index: 1;
}

/* Compliance Section Header & Title Styling */
#ch-compliance-desk .ch-compliance-title-main,
#ch-compliance-desk .ch-section-title,
#ch-compliance-desk .ch-enquiry-section-title,
#ch-compliance-desk h2 {
    color: #ffffff !important;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95);
}

#ch-compliance-desk .ch-compliance-title-main span,
#ch-compliance-desk .ch-section-title span,
#ch-compliance-desk .ch-enquiry-section-title span,
#ch-compliance-desk .ch-highlight-gold,
#ch-compliance-desk h2 span {
    color: #ffb830 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95);
}

#ch-compliance-desk .ch-compliance-desc-main,
#ch-compliance-desk .ch-section-desc,
#ch-compliance-desk .ch-enquiry-section-desc,
#ch-compliance-desk p.ch-compliance-desc-main {
    font-size: 1.02rem;
    color: #ffffff !important;
    opacity: 0.95;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.25rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}

.ch-compliance-card {
    background: #ffffff;
    border: 1px solid var(--ch-border);
    border-radius: var(--ch-radius-lg);
    padding: 2.25rem 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
}

.ch-compliance-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 0.3rem 0.8rem;
    border-radius: var(--ch-radius-pill);
    margin-bottom: 0.75rem;
}

.ch-compliance-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--ch-dark);
    margin-bottom: 0.45rem;
    line-height: 1.25;
}

.ch-compliance-intro {
    font-size: 0.9rem;
    color: var(--ch-muted);
    line-height: 1.6;
    margin-bottom: 1.35rem;
}

.ch-compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.35rem;
}

.ch-comp-item {
    background: #f8fafc;
    border: 1px solid var(--ch-border-light);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
}

.ch-comp-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ch-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ch-comp-label i {
    color: var(--ch-red);
}

.ch-comp-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ch-dark);
}

.ch-disclaimer-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--ch-red);
    border-radius: 8px;
    padding: 1.15rem 1.35rem;
    margin: 1.35rem 0;
}

.ch-disclaimer-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ch-disclaimer-text {
    font-size: 0.84rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0.65rem;
}

.ch-disclaimer-text a {
    color: var(--ch-red);
    text-decoration: underline;
    font-weight: 600;
}

.ch-reg-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding: 0.85rem 0;
    border-top: 1px solid var(--ch-border-light);
    border-bottom: 1px solid var(--ch-border-light);
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
    color: #475569;
}

.ch-reg-meta-item strong {
    color: #0f172a;
}

.ch-hp {
    display: none !important;
    position: absolute !important;
    opacity: 0 !important;
    left: -9999px !important;
}

.ch-hero-booking-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(253, 80, 86, 0.25);
    border-radius: var(--ch-radius-lg);
    box-shadow: 0 20px 45px rgba(9, 0, 49, 0.09);
    padding: 1.5rem 1.8rem;
    margin-bottom: 1.75rem;
}

.ch-booking-bar-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.1fr 1fr auto;
    gap: 1.25rem;
    align-items: center;
}

.ch-bar-col {
    position: relative;
    padding-right: 1rem;
    border-right: 1px solid var(--ch-border-light);
}

.ch-bar-lbl {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ch-muted);
    margin-bottom: 0.2rem;
}

.ch-bar-val {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--ch-dark);
    line-height: 1.25;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.ch-bar-val.text-red {
    color: var(--ch-red);
    font-size: 1.35rem;
}

.ch-bar-unit {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ch-muted);
}

.ch-bar-sub {
    display: block;
    font-size: 0.78rem;
    color: var(--ch-muted);
    margin-top: 0.15rem;
}

.ch-bar-action .ch-btn-red {
    padding: 0.95rem 1.65rem;
    white-space: nowrap;
}

.ch-btn-pulse {
    box-shadow: 0 0 0 0 rgba(253, 80, 86, 0.5);
    animation: chPulse 2.4s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes chPulse {
    to {
        box-shadow: 0 0 0 16px rgba(253, 80, 86, 0);
    }
}

.ch-hero-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-top: 0.5rem;
}

.ch-hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

.ch-trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.ch-trust-badge-item i {
    color: #ff5e64;
    font-size: 0.95rem;
}

.ch-video-ctrl-btn {
    position: absolute;
    bottom: 20px;
    right: 25px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--ch-border);
    backdrop-filter: blur(8px);
    color: var(--ch-dark);
    padding: 0.4rem 0.85rem;
    border-radius: var(--ch-radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--ch-transition);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.ch-video-ctrl-btn:hover {
    background: #ffffff;
    border-color: var(--ch-red);
    color: var(--ch-red);
}

.ch-overview-editorial {
    position: relative;
    padding: 3rem 0 2.25rem;
    overflow: hidden;
    background-color: #faf8f5;
}

.ch-overview-atmosphere {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(251, 249, 246, 0.93) 50%, rgba(246, 243, 237, 0.97) 100%),
        url('/images/packages/adi-kailash-om-parvat-winter-aerial-darshan-by-mi-helicopter-67321b2289d3a.jpg') center bottom / cover no-repeat;
    pointer-events: none;
    z-index: 1;
}

.ch-editorial-masthead {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.75rem auto;
    text-align: center;
}

.ch-editorial-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ch-red);
    margin-bottom: 0.65rem;
}

.ch-editorial-headline {
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    font-weight: 900;
    color: var(--ch-dark);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
}

.ch-editorial-headline .ch-accent-red {
    color: var(--ch-red);
}

.ch-editorial-subheadline {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    line-height: 1.65;
    color: var(--ch-body);
    margin: 0 auto 1.75rem auto;
    font-weight: 400;
    text-align: center;
}

.ch-editorial-keyfacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(9, 0, 49, 0.1);
    border-bottom: 1px solid rgba(9, 0, 49, 0.1);
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.ch-keyfact {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.ch-keyfact-val {
    display: block;
    font-family: var(--ch-font-heading);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 900;
    color: var(--ch-dark);
    line-height: 1.2;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.ch-keyfact-lbl {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ch-muted);
    line-height: 1.4;
}

.ch-keyfact-divider {
    width: 1px;
    height: 48px;
    background: rgba(9, 0, 49, 0.12);
    flex-shrink: 0;
}

.ch-panoramic-carousel-outer {
    position: relative;
    width: 100%;
    margin: 2rem 0 0.5rem;
    overflow: hidden;
}

.ch-carousel-track-wrapper {
    position: relative;
    width: 100%;
    padding-left: max(1.25rem, calc((100vw - min(1320px, 92vw)) / 2 + 15px));
    overflow: visible;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.ch-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.ch-carousel-track:active,
.ch-carousel-track.is-grabbing {
    cursor: grabbing !important;
}

body.ch-grabbing-active,
body.ch-grabbing-active * {
    cursor: grabbing !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.ch-carousel-slide {
    flex: 0 0 auto;
    width: min(1160px, calc(100vw - 300px));
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.ch-carousel-track.is-grabbing .ch-carousel-slide {
    cursor: grabbing !important;
}

.ch-carousel-slide:not(.active) {
    opacity: 0.82;
    transform: scale(0.985);
}

.ch-carousel-slide:not(.active):hover {
    opacity: 0.96;
    transform: scale(0.995);
}

.ch-carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.ch-carousel-slide .ch-panoramic-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.22);
    height: 520px;
    background-color: #0d0d11;
}

.ch-carousel-slide .ch-panoramic-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none; 
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ch-carousel-slide:hover .ch-panoramic-photo {
    transform: scale(1.025);
}

.ch-carousel-slide .ch-panoramic-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0.88) 100%);
    pointer-events: none;
}

.ch-carousel-slide .ch-panoramic-caption-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.25rem 2.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    color: #ffffff;
    z-index: 2;
}

.ch-panoramic-caption-text {
    max-width: 720px;
}

.ch-panoramic-caption-sub {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #ff8e93;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.ch-panoramic-caption-main {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 800;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.35;
    margin: 0;
}

.ch-carousel-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(14, 14, 18, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.45rem 0.85rem;
    border-radius: var(--ch-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
    pointer-events: auto;
}

.ch-carousel-arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.88rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.ch-carousel-arrow-btn:hover {
    background: var(--ch-red);
    color: #ffffff;
    transform: scale(1.1);
}

.ch-carousel-counter {
    font-family: var(--ch-font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    user-select: none;
}

.ch-carousel-counter .ch-slide-num {
    color: #ffffff;
    font-weight: 800;
}

.ch-carousel-footer-container {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ch-carousel-nav-bar {
    display: inline-flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0.25rem 0;
    user-select: none;
}

.ch-carousel-capsule {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(9, 0, 49, 0.12);
    border-radius: 9999px;
    box-shadow: 0 4px 18px rgba(9, 0, 49, 0.07), 0 1px 3px rgba(9, 0, 49, 0.04);
    padding: 3px 6px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.ch-carousel-capsule:hover {
    border-color: rgba(253, 80, 86, 0.4);
    box-shadow: 0 6px 20px rgba(9, 0, 49, 0.11), 0 2px 6px rgba(253, 80, 86, 0.1);
}

.ch-capsule-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--ch-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.92rem;
    transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
    outline: none;
    padding: 0;
}

.ch-capsule-btn:hover {
    background: var(--ch-red);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(253, 80, 86, 0.35);
}

.ch-capsule-btn:active {
    transform: scale(0.92);
    background: #e03c42;
}

.ch-capsule-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(253, 80, 86, 0.35);
}

.ch-capsule-divider {
    width: 1px;
    height: 20px;
    background: rgba(9, 0, 49, 0.1);
    margin: 0 2px;
}

.ch-carousel-line-track {
    position: relative;
    width: clamp(180px, 20vw, 280px);
    height: 4px;
    background: rgba(9, 0, 49, 0.12);
    border-radius: 9999px;
    cursor: pointer;
    overflow: hidden;
    transition: height 0.2s ease, background 0.25s ease;
}

.ch-carousel-line-track:hover {
    height: 5px;
    background: rgba(9, 0, 49, 0.18);
}

.ch-carousel-line-runner {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, var(--ch-dark) 0%, var(--ch-red) 100%);
    border-radius: 9999px;
    box-shadow: 0 0 8px rgba(253, 80, 86, 0.45);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
    will-change: transform;
}

.ch-carousel-line-track:hover .ch-carousel-line-runner {
    background: var(--ch-red);
    box-shadow: 0 0 12px rgba(253, 80, 86, 0.65);
}

.ch-carousel-dots {
    display: none;
}

.ch-difference-section {
    position: relative;
    padding: 3rem 0;
    background-color: #f4efe6;
    border-top: 1px solid rgba(9, 0, 49, 0.08);
    border-bottom: 1px solid rgba(9, 0, 49, 0.08);
    overflow: hidden;
    color: var(--ch-dark);
}

.ch-diff-atmosphere {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(247, 243, 235, 0.95) 0%, rgba(240, 234, 223, 0.94) 100%),
        url('/images/packages/adi-kailash-om-parvat-winter-aerial-darshan-by-mi-helicopter-67321b2289d3a.jpg') center center / cover no-repeat;
    pointer-events: none;
    z-index: 1;
}

.ch-difference-header {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.75rem;
}

.ch-difference-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ch-red);
    margin-bottom: 0.5rem;
}

.ch-difference-title {
    font-size: clamp(2.3rem, 4.2vw, 3.4rem);
    font-weight: 900;
    color: var(--ch-dark);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.ch-diff-accent {
    color: var(--ch-red);
}

.ch-difference-lead {
    font-size: clamp(1.08rem, 1.6vw, 1.22rem);
    line-height: 1.6;
    color: var(--ch-body);
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.ch-contrast-matrix {
    padding: 1.75rem 0 0.25rem;
    border-top: 1px solid rgba(9, 0, 49, 0.12);
}

.ch-contrast-pair {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 1rem 0;
}

.ch-contrast-side {
    flex: 1;
    min-width: 0;
}

.ch-contrast-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
    margin-bottom: 0.45rem;
}

.ch-contrast-label i {
    font-size: 0.88rem;
}

.ch-contrast-label.label-accent {
    color: var(--ch-red);
}

.ch-contrast-label.label-accent i {
    color: var(--ch-red);
}

.ch-contrast-metric {
    font-family: var(--ch-font-heading);
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 900;
    color: #64748b;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.ch-contrast-metric.metric-accent {
    color: var(--ch-dark);
}

.ch-contrast-caption {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.side-heli .ch-contrast-caption {
    color: var(--ch-body);
    font-weight: 500;
}

.ch-contrast-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(9, 0, 49, 0.15);
    background: #ffffff;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(9, 0, 49, 0.05);
    flex-shrink: 0;
}

.ch-contrast-sep {
    height: 1px;
    background: rgba(9, 0, 49, 0.09);
    margin: 1.25rem 0;
}

@media (max-width: 991px) {
    .ch-editorial-keyfacts {
        gap: 1.5rem;
    }

    .ch-carousel-slide {
        width: calc(100vw - 140px);
    }

    .ch-carousel-slide .ch-panoramic-frame {
        height: 380px;
    }

    .ch-carousel-slide .ch-panoramic-caption-strip {
        padding: 1.5rem 1.75rem;
    }
}

@media (max-width: 767px) {
    .ch-overview-editorial {
        padding: 2.25rem 0 1.5rem;
    }

    .ch-editorial-masthead {
        margin-bottom: 1.5rem;
    }

    .ch-editorial-keyfacts {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.25rem 0;
    }

    .ch-keyfact-divider {
        width: 100%;
        height: 1px;
    }

    .ch-carousel-track-wrapper {
        padding-left: 1rem;
    }

    .ch-carousel-slide {
        width: calc(100vw - 3.75rem);
    }

    .ch-carousel-slide .ch-panoramic-frame {
        height: 290px;
        border-radius: 14px;
    }

    .ch-carousel-slide .ch-panoramic-caption-strip {
        padding: 1rem 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .ch-carousel-nav-pill {
        align-self: flex-end;
        padding: 0.35rem 0.65rem;
    }

    .ch-carousel-arrow-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .ch-difference-section {
        padding: 2.25rem 0 2.5rem;
    }

    .ch-difference-header {
        margin-bottom: 1.25rem;
    }

    .ch-difference-tag {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        margin-bottom: 0.35rem;
    }

    .ch-difference-title {
        font-size: clamp(1.75rem, 6.2vw, 2.35rem);
        line-height: 1.15;
        letter-spacing: -0.025em;
        margin-bottom: 0.65rem;
    }

    .ch-difference-lead {
        font-size: 0.95rem;
        line-height: 1.55;
        color: #4b5563;
    }

    .ch-contrast-matrix {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.15rem 0 0;
        border-top: 1px solid rgba(9, 0, 49, 0.08);
    }

    .ch-contrast-sep {
        display: none;
    }

    .ch-contrast-pair {
        background: #ffffff;
        border: 1px solid rgba(9, 0, 49, 0.08);
        border-radius: 18px;
        padding: 0.85rem;
        box-shadow: 0 4px 20px rgba(9, 0, 49, 0.04), 0 1px 3px rgba(9, 0, 49, 0.02);
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 0;
    }

    .ch-contrast-side {
        width: 100%;
        border-radius: 14px;
        padding: 1rem 1.1rem;
        box-sizing: border-box;
    }

    .ch-contrast-side.side-road {
        background: #f8f6f2;
        border: 1px solid rgba(9, 0, 49, 0.05);
        padding-bottom: 1.35rem;
    }

    .ch-contrast-vs {
        align-self: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #ffffff;
        border: 1.5px solid rgba(253, 80, 86, 0.35);
        color: var(--ch-dark);
        font-size: 0.68rem;
        font-weight: 800;
        text-transform: uppercase;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
        margin: -13px auto;
        z-index: 3;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ch-contrast-side.side-heli {
        background: linear-gradient(145deg, #fff7f7 0%, #ffffff 100%);
        border: 1.5px solid rgba(253, 80, 86, 0.22);
        box-shadow: 0 4px 16px rgba(253, 80, 86, 0.06);
        padding-top: 1.35rem;
    }

    .ch-contrast-label {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 0.35rem;
        display: flex;
        align-items: center;
        gap: 0.45rem;
    }

    .side-road .ch-contrast-label {
        color: #718096;
    }

    .side-heli .ch-contrast-label.label-accent {
        color: var(--ch-red);
        font-weight: 800;
    }

    .ch-contrast-metric {
        font-size: clamp(1.65rem, 5.5vw, 2.15rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 0.35rem;
    }

    .side-road .ch-contrast-metric {
        color: #64748b;
    }

    .side-heli .ch-contrast-metric.metric-accent {
        color: var(--ch-dark);
    }

    .side-heli .ch-contrast-metric {
        font-size: clamp(1.35rem, 4.8vw, 1.85rem);
    }

    .ch-contrast-caption {
        font-size: 0.86rem;
        line-height: 1.45;
        margin: 0;
    }

    .side-road .ch-contrast-caption {
        color: #788292;
    }

    .side-heli .ch-contrast-caption {
        color: var(--ch-body);
        font-weight: 500;
    }

    .ch-route-editorial-section {
        padding: 2.25rem 0 1.5rem;
    }

    .ch-route-story-header {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ch-difference-section {
        padding: 2rem 0 2.25rem;
    }

    .ch-difference-title {
        font-size: 1.62rem;
    }

    .ch-contrast-pair {
        padding: 0.65rem;
        border-radius: 16px;
    }

    .ch-contrast-side {
        padding: 0.85rem 0.9rem;
    }

    .ch-contrast-side.side-road {
        padding-bottom: 1.25rem;
    }

    .ch-contrast-side.side-heli {
        padding-top: 1.25rem;
    }

    .ch-contrast-metric {
        font-size: 1.55rem;
    }

    .side-heli .ch-contrast-metric {
        font-size: 1.28rem;
    }

    .ch-contrast-caption {
        font-size: 0.82rem;
    }
}

.ch-quick-nav {
    background: #ffffff;
    border-bottom: 2px solid var(--ch-border-light);
    position: sticky;
    top: 0;
    z-index: 120;
    box-shadow: 0 4px 16px rgba(9, 0, 49, 0.04);
}

.ch-quick-nav-list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.ch-quick-nav-list::-webkit-scrollbar {
    display: none;
}

.ch-quick-nav-link {
    display: block;
    padding: 0.95rem 1.15rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ch-muted);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: var(--ch-transition);
}

.ch-quick-nav-link:hover,
.ch-quick-nav-link.active {
    color: var(--ch-red);
    border-bottom-color: var(--ch-red);
    font-weight: 700;
}

.ch-route-editorial-section {
    position: relative;
    padding: 3rem 0 2.25rem;
    background-color: #faf8f5;
    border-top: 1px solid rgba(9, 0, 49, 0.08);
    scroll-margin-top: 80px;
}

.ch-route-story-header {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.75rem auto;
}

.ch-route-story-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ch-red);
    display: block;
    margin-bottom: 0.45rem;
}

.ch-route-story-title {
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    font-weight: 900;
    color: var(--ch-dark);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0.65rem;
}

.ch-route-story-desc {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.05rem, 1.35vw, 1.16rem);
    color: var(--ch-body);
    line-height: 1.65;
    margin: 0 auto;
    text-align: center;
}

.ch-route-trail-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
    position: relative;
    padding: 0.75rem 0 1rem;
}

.ch-trail-milestone {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ch-trail-milestone:hover {
    transform: translateY(-4px);
}

.ch-trail-badge-indicator {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #f7f4ef);
    border: 2px dashed rgba(9, 0, 49, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--ch-dark);
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 22px rgba(9, 0, 49, 0.07);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s ease, 
                border-color 0.3s ease, 
                background 0.3s ease, 
                color 0.3s ease;
}

.milestone-start .ch-trail-badge-indicator i {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    animation: chPlaneBob 3s ease-in-out infinite;
}

@keyframes chPlaneBob {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(2px, -3px) rotate(-3deg);
    }
}

.milestone-start:hover .ch-trail-badge-indicator {
    border-color: var(--ch-red);
    border-style: solid;
    color: var(--ch-red);
    background: linear-gradient(135deg, #ffffff, #fff2f2);
    box-shadow: 0 16px 32px rgba(253, 80, 86, 0.28), 0 0 0 5px rgba(253, 80, 86, 0.12);
    transform: translateY(-6px) scale(1.05);
}

.milestone-start:hover .ch-trail-badge-indicator::after,
.milestone-return:hover .indicator-return::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--ch-red);
    animation: chPulseRing 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none;
}

@keyframes chPulseRing {
    0% {
        transform: scale(0.95);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.milestone-start:hover .ch-trail-badge-indicator i {
    animation: chPlaneTakeoff 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    color: var(--ch-red);
}

@keyframes chPlaneTakeoff {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    20% {
        transform: translate(-3px, 2px) rotate(-6deg) scale(0.92);
    }
    60% {
        transform: translate(9px, -10px) rotate(-22deg) scale(1.32);
    }
    85% {
        transform: translate(6px, -6px) rotate(-16deg) scale(1.2);
    }
    100% {
        transform: translate(7px, -7px) rotate(-18deg) scale(1.25);
    }
}

.ch-trail-photo-portal {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 25px rgba(9, 0, 49, 0.12), 0 0 0 1px rgba(9, 0, 49, 0.08);
    margin-bottom: 1.25rem;
    background: var(--ch-dark);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
    animation: chPortalBreathe 4s ease-in-out infinite;
}

.milestone-yamunotri .ch-trail-photo-portal { animation-delay: 0.2s; }
.milestone-gangotri .ch-trail-photo-portal { animation-delay: 0.7s; }
.milestone-kedarnath .ch-trail-photo-portal { animation-delay: 1.2s; }
.milestone-badrinath .ch-trail-photo-portal { animation-delay: 1.7s; }

@keyframes chPortalBreathe {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(9, 0, 49, 0.12), 0 0 0 1px rgba(9, 0, 49, 0.08);
    }
    50% {
        box-shadow: 0 12px 28px rgba(253, 80, 86, 0.18), 0 0 0 3px rgba(253, 80, 86, 0.16);
    }
}

.ch-trail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ch-trail-milestone:hover .ch-trail-photo-portal {
    transform: translateY(-6px) scale(1.08);
    border-color: #ffffff;
    box-shadow: 0 18px 36px rgba(253, 80, 86, 0.3), 0 0 0 3px var(--ch-red);
}

.ch-trail-milestone:hover .ch-trail-img {
    transform: scale(1.14);
}

.ch-trail-badge-indicator.indicator-return {
    background: linear-gradient(135deg, #ffffff, #fff0f1);
    border: 2px solid rgba(253, 80, 86, 0.35);
    color: var(--ch-red);
    animation: chReturnBreathe 3.5s ease-in-out infinite;
}

@keyframes chReturnBreathe {
    0%, 100% {
        box-shadow: 0 8px 22px rgba(253, 80, 86, 0.14);
    }
    50% {
        box-shadow: 0 12px 28px rgba(253, 80, 86, 0.28), 0 0 0 4px rgba(253, 80, 86, 0.12);
    }
}

.indicator-return i {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    animation: chCheckPulse 3s ease-in-out infinite;
}

@keyframes chCheckPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.milestone-return:hover .indicator-return {
    transform: translateY(-6px) scale(1.06);
    border-color: var(--ch-red);
    background: linear-gradient(135deg, #ffffff, #ffe3e5);
    box-shadow: 0 18px 38px rgba(253, 80, 86, 0.34), 0 0 0 6px rgba(253, 80, 86, 0.18);
}

.milestone-return:hover .indicator-return i {
    animation: chCheckPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes chCheckPop {
    0% {
        transform: scale(1) rotate(0deg);
    }
    20% {
        transform: scale(0.65) rotate(-15deg);
    }
    55% {
        transform: scale(1.52) rotate(8deg);
        color: #d91c24;
    }
    75% {
        transform: scale(1.08) rotate(-3deg);
    }
    100% {
        transform: scale(1.28) rotate(0deg);
        color: #d91c24;
    }
}

.ch-trail-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(9, 0, 49, 0.28);
    font-size: 0.95rem;
    flex-shrink: 0;
    padding-top: 2.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ch-trail-dash {
    width: 26px;
    height: 2px;
    background: rgba(9, 0, 49, 0.14);
    margin-right: 5px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.ch-trail-dash::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--ch-red), transparent);
    animation: chDashFlight 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.ch-trail-connector i {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    animation: chArrowGlide 2.8s ease-in-out infinite;
}

@keyframes chDashFlight {
    0% {
        left: -100%;
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes chArrowGlide {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.32;
    }
    50% {
        transform: translateX(4px);
        opacity: 1;
        color: var(--ch-red);
    }
}

.ch-route-trail-grid .ch-trail-connector:nth-child(2) .ch-trail-dash::after,
.ch-route-trail-grid .ch-trail-connector:nth-child(2) i {
    animation-delay: 0s;
}

.ch-route-trail-grid .ch-trail-connector:nth-child(4) .ch-trail-dash::after,
.ch-route-trail-grid .ch-trail-connector:nth-child(4) i {
    animation-delay: 0.5s;
}

.ch-route-trail-grid .ch-trail-connector:nth-child(6) .ch-trail-dash::after,
.ch-route-trail-grid .ch-trail-connector:nth-child(6) i {
    animation-delay: 1.0s;
}

.ch-route-trail-grid .ch-trail-connector:nth-child(8) .ch-trail-dash::after,
.ch-route-trail-grid .ch-trail-connector:nth-child(8) i {
    animation-delay: 1.5s;
}

.ch-route-trail-grid .ch-trail-connector:nth-child(10) .ch-trail-dash::after,
.ch-route-trail-grid .ch-trail-connector:nth-child(10) i {
    animation-delay: 2.0s;
}

.ch-trail-connector:hover {
    color: var(--ch-red);
    transform: scale(1.15);
}

.ch-trail-connector:hover .ch-trail-dash {
    background: var(--ch-red);
    box-shadow: 0 0 10px rgba(253, 80, 86, 0.4);
}

.ch-trail-connector:hover i {
    transform: translateX(6px);
    color: var(--ch-red);
    opacity: 1;
}

.ch-trail-milestone:hover + .ch-trail-connector i {
    transform: translateX(5px);
    color: var(--ch-red);
    opacity: 1;
}

.ch-trail-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ch-trail-phase {
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ch-red);
    display: block;
    margin-bottom: 0.3rem;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

.ch-trail-milestone:hover .ch-trail-phase {
    transform: translateY(-2px);
    letter-spacing: 0.13em;
}

.ch-trail-title {
    font-size: 1.32rem;
    font-weight: 900;
    color: var(--ch-dark);
    line-height: 1.2;
    margin: 0 0 0.35rem 0;
    letter-spacing: -0.015em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.ch-trail-milestone:hover .ch-trail-title {
    color: var(--ch-red);
    transform: translateY(-1px);
}

.ch-trail-meta {
    font-size: 0.84rem;
    color: var(--ch-muted);
    line-height: 1.45;
    margin: 0;
    max-width: 155px;
    transition: color 0.3s ease;
}

.ch-trail-milestone:hover .ch-trail-meta {
    color: var(--ch-dark);
}

@media (max-width: 991px) {
    .ch-route-trail-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.25rem;
        padding-left: 2.25rem;
        border-left: 2px solid rgba(253, 80, 86, 0.3);
        margin-left: 1.5rem;
    }

    .ch-trail-milestone {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
    }

    .ch-trail-content {
        align-items: flex-start;
    }

    .ch-trail-meta {
        max-width: none;
    }

    .ch-trail-photo-portal,
    .ch-trail-badge-indicator {
        margin-bottom: 0;
        width: 72px;
        height: 72px;
    }

    .ch-trail-connector {
        display: none;
    }
}

.ch-destinations-section {
    position: relative;
    padding: 2.75rem 0 3rem;
    background: linear-gradient(180deg, #fdf8f0 0%, #fbf3e6 50%, #f7eee0 100%);
    border-top: 1px solid rgba(197, 148, 38, 0.22);
    border-bottom: 1px solid rgba(197, 148, 38, 0.22);
    color: var(--ch-dark);
    overflow: hidden;
}

.ch-om-watermark {
    position: absolute;
    font-family: 'Cinzel', 'Noto Serif Devanagari', 'Playfair Display', serif;
    font-size: clamp(9rem, 18vw, 22rem);
    line-height: 1;
    color: rgba(212, 160, 23, 0.045);
    user-select: none;
    pointer-events: none;
    z-index: 1;
    font-weight: 900;
}

.ch-om-top-right {
    top: 2%;
    right: 2%;
    transform: rotate(8deg);
}

.ch-om-mid-left {
    top: 46%;
    left: -2%;
    transform: rotate(-10deg);
}

.ch-om-bottom-right {
    bottom: 3%;
    right: 1%;
    transform: rotate(6deg);
}

.ch-dest-header {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.ch-dest-kicker-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.ch-dest-om-icon {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--ch-red);
    line-height: 1;
}

.ch-dest-kicker {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ch-red);
}

.ch-dest-title {
    font-size: clamp(1.85rem, 3.2vw, 2.9rem);
    font-weight: 900;
    color: var(--ch-dark);
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 0.85rem;
}

.ch-dest-accent {
    color: var(--ch-red);
}

@media (min-width: 992px) {
    .ch-dest-title {
        white-space: nowrap;
    }
}

.ch-dest-lead {
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.72;
    color: #4a5568;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.ch-destinations-list {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.ch-dest-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2.5rem, 5.5vw, 5rem);
    align-items: center;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(197, 148, 38, 0.18);
}

.ch-dest-row:first-child {
    padding-top: 0;
}

.ch-dest-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (min-width: 992px) {
    .ch-dest-row:nth-child(even) {
        grid-template-columns: 1fr 1.15fr;
    }

    .ch-dest-row:nth-child(even) .ch-dest-visual {
        order: 2;
    }

    .ch-dest-row:nth-child(even) .ch-dest-content {
        order: 1;
    }
}

.ch-dest-visual {
    width: 100%;
}

.ch-dest-spiritual-frame {
    position: relative;
    width: 100%;
    padding: 10px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(212, 160, 23, 0.35);
    box-shadow: 
        0 0 0 4px #fbf3e6, 
        0 0 0 5.5px rgba(212, 160, 23, 0.22), 
        0 20px 48px rgba(9, 0, 49, 0.08);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.ch-dest-row:hover .ch-dest-spiritual-frame {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 4px #fbf3e6, 
        0 0 0 5.5px rgba(253, 80, 86, 0.35), 
        0 24px 54px rgba(9, 0, 49, 0.12);
}

.ch-frame-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    pointer-events: none;
    z-index: 4;
    transition: border-color 0.3s ease;
}

.ch-corner-tl {
    top: 6px;
    left: 6px;
    border-top: 2.5px solid #d4af37;
    border-left: 2.5px solid #d4af37;
    border-top-left-radius: 8px;
}

.ch-corner-tr {
    top: 6px;
    right: 6px;
    border-top: 2.5px solid #d4af37;
    border-right: 2.5px solid #d4af37;
    border-top-right-radius: 8px;
}

.ch-corner-bl {
    bottom: 6px;
    left: 6px;
    border-bottom: 2.5px solid #d4af37;
    border-left: 2.5px solid #d4af37;
    border-bottom-left-radius: 8px;
}

.ch-corner-br {
    bottom: 6px;
    right: 6px;
    border-bottom: 2.5px solid #d4af37;
    border-right: 2.5px solid #d4af37;
    border-bottom-right-radius: 8px;
}

.ch-dest-row:hover .ch-frame-corner {
    border-color: var(--ch-red);
}

.ch-dest-frame-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 9px;
    overflow: hidden;
    background-color: #0b0b0f;
    box-shadow: inset 0 0 0 1px rgba(212, 160, 23, 0.2);
}

.ch-dest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ch-dest-row:hover .ch-dest-photo {
    transform: scale(1.035);
}

.ch-dest-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ch-dest-meta-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.ch-dest-index {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ch-red);
}

.ch-dest-dot {
    color: rgba(9, 0, 49, 0.25);
    font-size: 0.8rem;
}

.ch-dest-valley {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.ch-dest-name {
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    font-weight: 900;
    color: var(--ch-dark);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
}

.ch-dest-desc {
    font-size: clamp(0.98rem, 1.25vw, 1.06rem);
    line-height: 1.7;
    color: var(--ch-body);
    margin-bottom: 1.5rem;
}

.ch-dest-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(197, 148, 38, 0.2);
}

.ch-dest-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ch-dest-meta-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #718096;
}

.ch-dest-meta-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ch-dark);
}

.ch-dest-meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(197, 148, 38, 0.22);
}

@media (max-width: 991px) {
    .ch-destinations-section {
        padding: 2.25rem 0 2.5rem;
    }

    .ch-dest-header {
        margin-bottom: 1.5rem;
    }

    .ch-dest-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.85rem 0;
    }

    .ch-dest-frame-inner {
        aspect-ratio: 16 / 10;
        max-height: 380px;
    }
}

@media (max-width: 767px) {
    .ch-destinations-section {
        padding: 1.85rem 0 2rem;
    }

    .ch-dest-header {
        margin-bottom: 1.25rem;
    }

    .ch-dest-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.15em;
    }

    .ch-dest-title {
        font-size: clamp(1.75rem, 6.2vw, 2.35rem);
        line-height: 1.16;
        margin-bottom: 0.75rem;
    }

    .ch-dest-lead {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .ch-dest-row {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .ch-dest-spiritual-frame {
        padding: 8px;
        border-radius: 14px;
    }

    .ch-dest-frame-inner {
        aspect-ratio: 16 / 10;
        border-radius: 8px;
    }

    .ch-dest-name {
        font-size: 1.85rem;
        margin-bottom: 0.75rem;
    }

    .ch-dest-desc {
        font-size: 0.92rem;
        line-height: 1.62;
        margin-bottom: 1.25rem;
    }

    .ch-dest-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        padding-top: 1rem;
    }

    .ch-dest-meta-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .ch-destinations-section {
        padding: 1.5rem 0 1.75rem;
    }

    .ch-dest-title {
        font-size: 1.65rem;
    }

    .ch-dest-frame-inner {
        aspect-ratio: 16 / 10;
    }

    .ch-dest-name {
        font-size: 1.65rem;
    }
}

.ch-itinerary-section {
    position: relative;
    padding: 4.25rem 0 4.75rem;
    background: linear-gradient(159deg, #66023C 0%, #CD1C18 100%);
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.ch-itinerary-header {
    margin-bottom: 3rem;
}

.ch-root .ch-itinerary-section .ch-itinerary-title,
.ch-itinerary-section .ch-itinerary-title,
h2.ch-itinerary-title {
    font-size: clamp(1.95rem, 3.2vw, 2.85rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
    color: #D4AF37 !important;
    background: linear-gradient(180deg, #F0BA35 0%, #D4AF37 32%, #B37D14 70%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
}

.ch-root .ch-itinerary-section .ch-itinerary-title span,
.ch-itinerary-section .ch-itinerary-title span,
.ch-root .ch-itinerary-section .ch-itinerary-title .ch-accent-red,
.ch-itinerary-section .ch-itinerary-title .ch-accent-red {
    color: inherit !important;
    background: none !important;
    -webkit-text-fill-color: inherit !important;
    font-weight: 900;
}

.ch-itinerary-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 820px;
    line-height: 1.7;
    margin: 0 auto;
}

.ch-itinerary-timeline {
    position: relative;
    padding-left: 2.8rem;
    margin-left: 1.2rem;
}

.ch-itinerary-timeline::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        #ffffff 0%, 
        #D4AF37 50%, 
        #ffffff 100%);
    border-radius: 4px;
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
}

.ch-itinerary-item {
    position: relative;
    padding-bottom: 2.25rem;
}

.ch-itinerary-item:last-child {
    padding-bottom: 0;
}

.ch-itinerary-node {
    position: absolute;
    left: -3.85rem;
    top: 1.25rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid #66023C;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35), 0 4px 14px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.88rem;
    color: #66023C;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ch-itinerary-item:hover .ch-itinerary-node {
    background: #D4AF37;
    color: #66023C;
    border-color: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.5), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.ch-itinerary-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 1.85rem 2rem;
    box-shadow: 0 14px 40px rgba(40, 0, 15, 0.22);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.ch-itinerary-item:hover .ch-itinerary-card {
    border-color: #ffffff;
    box-shadow: 0 20px 52px rgba(40, 0, 15, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.ch-day-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #f1f3f7;
}

.ch-day-left-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.ch-day-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, var(--ch-red) 0%, #e03238 100%);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(253, 80, 86, 0.25);
}

.ch-route-indicator {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--ch-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.ch-route-indicator i {
    color: var(--ch-red);
    font-size: 0.75rem;
}

.ch-flight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #8c5b05;
    background: #fdf6e7;
    border: 1px solid rgba(212, 160, 23, 0.28);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
}

.ch-flight-badge i {
    color: #d4a017;
}

.ch-day-h3 {
    font-size: 1.38rem;
    font-weight: 800;
    color: var(--ch-dark);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.ch-day-p {
    font-size: 0.96rem;
    color: #4a5568;
    line-height: 1.74;
    margin-bottom: 1.35rem;
}

.ch-day-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.ch-spec-tile {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: all 0.2s ease;
}

.ch-spec-tile:hover {
    background: #ffffff;
    border-color: rgba(253, 80, 86, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.ch-spec-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a94a6;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ch-spec-label i {
    color: var(--ch-red);
    font-size: 0.74rem;
}

.ch-spec-value {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ch-dark);
    line-height: 1.35;
}

.ch-itinerary-sidebar-col {
    position: relative;
}

.ch-itinerary-sidebar-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 16px 45px rgba(40, 0, 15, 0.28);
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    z-index: 10;
    border-top: 4px solid var(--ch-red);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.ch-sidebar-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ch-red);
    background: var(--ch-red-light);
    padding: 0.25rem 0.65rem;
    border-radius: 14px;
    margin-bottom: 0.5rem;
}

.ch-sidebar-h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ch-dark);
    margin-bottom: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f2f5;
}

.ch-route-tracker {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.ch-route-step {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ch-slate);
}

.ch-step-node {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f3f7;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.ch-step-node.active {
    background: var(--ch-red);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(253, 80, 86, 0.35);
}

.ch-step-name strong {
    color: var(--ch-dark);
}

.ch-step-name span {
    color: #718096;
    font-size: 0.76rem;
    margin-left: 0.25rem;
}

.ch-sidebar-inclusions {
    background: #f8fafc;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid #edf2f7;
}

.ch-sidebar-inc-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #334155;
    margin-bottom: 0.45rem;
}

.ch-sidebar-inc-item:last-child {
    margin-bottom: 0;
}

.ch-sidebar-inc-item i {
    color: #10b981;
    font-size: 0.8rem;
}

.ch-sidebar-price-box {
    text-align: center;
    padding-top: 0.85rem;
    border-top: 1px solid #f0f2f5;
}

.ch-sidebar-price-label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    font-weight: 700;
    display: block;
}

.ch-sidebar-price-val {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--ch-red);
    line-height: 1.1;
    margin: 0.3rem 0;
}

.ch-sidebar-price-sub {
    font-size: 0.74rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 0.95rem;
}

.ch-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
    font-weight: 800;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ch-red) 0%, #e03238 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(253, 80, 86, 0.32);
    transition: all 0.28s ease;
    text-decoration: none;
}

.ch-sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(253, 80, 86, 0.42);
    color: #ffffff;
}

.ch-sidebar-helpline {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: #64748b;
    text-align: center;
}

.ch-sidebar-helpline a {
    color: var(--ch-red);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .ch-itinerary-section {
        padding: 3rem 0 3.5rem;
    }

    .ch-itinerary-header {
        margin-bottom: 2rem;
    }

    .ch-itinerary-title {
        font-size: clamp(1.75rem, 4vw, 2.3rem);
    }

    .ch-day-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .ch-itinerary-sidebar-col {
        margin-top: 2rem;
    }

    .ch-itinerary-sidebar-card {
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .ch-route-tracker {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem 1rem;
    }
}

@media (max-width: 767px) {
    .ch-itinerary-section {
        padding: 2.25rem 0 2.75rem;
    }

    .ch-itinerary-header {
        margin-bottom: 1.75rem;
    }

    .ch-itinerary-title {
        font-size: clamp(1.5rem, 5.2vw, 1.95rem);
    }

    .ch-itinerary-desc {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .ch-itinerary-timeline {
        padding-left: 1.85rem;
        margin-left: 0.9rem;
    }

    .ch-itinerary-timeline::before {
        top: 1.25rem;
        bottom: 1.25rem;
        width: 2.5px;
    }

    .ch-itinerary-node {
        left: -2.85rem;
        width: 1.95rem;
        height: 1.95rem;
        font-size: 0.78rem;
        top: 1rem;
        border-width: 2px;
        box-shadow: 0 0 0 3px #ffffff, 0 3px 10px rgba(253, 80, 86, 0.2);
    }

    .ch-itinerary-card {
        padding: 1.25rem 1.15rem;
        border-radius: 14px;
    }

    .ch-day-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding-bottom: 0.65rem;
        margin-bottom: 0.65rem;
    }

    .ch-day-left-meta {
        gap: 0.45rem;
        width: 100%;
    }

    .ch-day-badge {
        font-size: 0.68rem;
        padding: 0.22rem 0.6rem;
    }

    .ch-route-indicator {
        font-size: 0.8rem;
        line-height: 1.35;
        flex-wrap: wrap;
    }

    .ch-flight-badge {
        font-size: 0.72rem;
        padding: 0.2rem 0.55rem;
    }

    .ch-day-h3 {
        font-size: 1.18rem;
        margin-bottom: 0.5rem;
    }

    .ch-day-p {
        font-size: 0.88rem;
        line-height: 1.62;
        margin-bottom: 1rem;
    }

    .ch-day-specs-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .ch-spec-tile {
        padding: 0.6rem 0.75rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .ch-spec-label {
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .ch-spec-value {
        font-size: 0.8rem;
        text-align: right;
    }

    .ch-route-tracker {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .ch-itinerary-sidebar-card {
        padding: 1.35rem 1.15rem;
        border-radius: 14px;
    }

    .ch-sidebar-h4 {
        font-size: 1.1rem;
        margin-bottom: 0.85rem;
    }

    .ch-sidebar-price-val {
        font-size: 1.65rem;
    }

    .ch-sidebar-cta {
        padding: 0.75rem 1rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .ch-itinerary-timeline {
        padding-left: 1.5rem;
        margin-left: 0.75rem;
    }

    .ch-itinerary-node {
        left: -2.45rem;
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.72rem;
        top: 0.85rem;
    }

    .ch-itinerary-card {
        padding: 1.1rem 0.95rem;
        border-radius: 12px;
    }

    .ch-spec-tile {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .ch-spec-value {
        text-align: left;
    }
}

.ch-pricing-section {
    position: relative;
    padding: 2.75rem 0 0;
    background: linear-gradient(180deg, #F6F2EA 0%, #EDE7DC 100%);
    border-top: 1px solid rgba(205, 28, 24, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.ch-pricing-section .ch-section-header {
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 1.85rem;
}

.ch-pricing-section .ch-pricing-title {
    font-size: clamp(1.75rem, 2.55vw, 2.45rem);
    font-weight: 800;
    color: #0f172a !important;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

@media (min-width: 992px) {
    .ch-pricing-section .ch-pricing-title {
        white-space: nowrap;
    }
}

.ch-pricing-section .ch-pricing-title .ch-title-red {
    color: var(--ch-red) !important;
    font-weight: 800;
}

.ch-pricing-section .ch-pricing-desc {
    font-size: 1.02rem;
    color: #4b5563;
    line-height: 1.7;
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.ch-pricing-hero-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.85rem;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ch-pricing-hero-card:hover {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.ch-pricing-card-inner {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    align-items: stretch;
}

.ch-pricing-card-left {
    padding: 2.25rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ch-pricing-figure-wrap {
    margin-bottom: 1.15rem;
}

.ch-pricing-amount {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
    color: #0f172a;
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.ch-currency-symbol {
    font-size: 0.65em;
    font-weight: 800;
    color: #CD1C18;
}

.ch-currency-code {
    font-size: 0.36em;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-left: 0.35rem;
}

.ch-pricing-sub {
    font-size: 0.92rem;
    color: #64748b;
    font-weight: 600;
    display: block;
}

.ch-pricing-value-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.ch-value-pill {
    display: inline-block;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s ease;
}

.ch-value-pill:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.ch-pricing-policy-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.85rem 1.15rem;
    font-size: 0.83rem;
    line-height: 1.55;
    color: #475569;
}

.ch-pricing-policy-box strong {
    color: #0f172a;
}

.ch-pricing-card-right {
    padding: 2.25rem 2rem;
    background: #FCFBF9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ch-booking-action-box {
    text-align: center;
}

.ch-seats-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.55rem;
}

.ch-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: chPulse 1.8s infinite;
}

@keyframes chPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.ch-booking-slots-text {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 1.35rem;
    line-height: 1.5;
}

.ch-btn-gold-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, #CD1C18 0%, #a8100d 100%);
    color: #ffffff !important;
    font-size: 1.02rem;
    font-weight: 800;
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(205, 28, 24, 0.28);
    transition: all 0.25s ease;
}

.ch-btn-gold-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(205, 28, 24, 0.38);
    background: linear-gradient(135deg, #B31317 0%, #8e0b08 100%);
    color: #ffffff !important;
}

.ch-pricing-call-desk {
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ch-pricing-call-desk span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ch-desk-phone {
    color: #CD1C18;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.ch-desk-phone:hover {
    color: #0f172a;
}

.ch-package-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.75rem;
}

.ch-package-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 1.85rem 1.85rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ch-package-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.ch-package-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.ch-package-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
}

.ch-package-card-title.text-success-dark {
    color: #065f46;
}

.ch-package-card-title.text-neutral-dark {
    color: #1e293b;
}

.ch-package-badge-included {
    font-size: 0.74rem;
    font-weight: 800;
    color: #059669;
    background: #ecfdf5;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ch-package-badge-excluded {
    font-size: 0.74rem;
    font-weight: 800;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(100, 116, 139, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ch-package-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ch-package-list li {
    position: relative;
    padding: 0.65rem 0 0.65rem 1.65rem;
    font-size: 0.91rem;
    color: #4b5563;
    line-height: 1.6;
    border-bottom: 1px solid #f8fafc;
}

.ch-package-list li:last-child {
    border-bottom: none;
}

.ch-package-list li strong {
    color: #0f172a;
}

.ch-list-included li::before {
    content: "•";
    position: absolute;
    left: 0.2rem;
    top: 0.65rem;
    color: #059669;
    font-size: 1.35rem;
    line-height: 1;
}

.ch-list-excluded li::before {
    content: "•";
    position: absolute;
    left: 0.2rem;
    top: 0.65rem;
    color: #94a3b8;
    font-size: 1.35rem;
    line-height: 1;
}

.ch-pricing-assurance-strip {
    position: relative;
    width: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(240, 186, 53, 0.16) 0%, transparent 65%),
                linear-gradient(159deg, #66023C 0%, #CD1C18 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    padding: 3.25rem 0 3.5rem;
    color: #ffffff;
    overflow: hidden;
}

.ch-pricing-assurance-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(240, 186, 53, 0.6) 50%, transparent 100%);
    pointer-events: none;
}

.ch-mandala {
    position: absolute;
    pointer-events: none;
    color: rgba(245, 200, 76, 0.28);
    z-index: 0;
}

.ch-mandala svg {
    width: 100%;
    height: 100%;
}

.ch-mandala-left {
    width: 480px;
    height: 480px;
    top: 50%;
    left: -120px;
    transform: translateY(-50%);
    animation: chMandalaSpinCW 90s linear infinite;
}

.ch-mandala-right {
    width: 420px;
    height: 420px;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    animation: chMandalaSpinCCW 75s linear infinite;
}

@keyframes chMandalaSpinCW {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes chMandalaSpinCCW {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(-360deg); }
}

.ch-pricing-assurance-strip > .container {
    position: relative;
    z-index: 1;
}

.ch-assurance-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 2.75rem;
}

.ch-assurance-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.76rem;
    font-weight: 800;
    color: #F5C84C;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: rgba(0, 0, 0, 0.22);
    padding: 0.38rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 200, 76, 0.35);
    margin-bottom: 0.95rem;
    backdrop-filter: blur(4px);
}

.ch-assurance-badge-symbol {
    color: #F5C84C;
    font-size: 0.82rem;
    line-height: 1;
}

.ch-assurance-title {
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.3;
    margin: 0 0 0.75rem;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.ch-assurance-subtitle {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    margin: 0;
}

.ch-assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
}

.ch-assurance-col {
    position: relative;
    padding-right: 2.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    flex-direction: column;
}

.ch-assurance-col:last-child {
    padding-right: 0;
    border-right: none;
}

.ch-assurance-col-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.95rem;
}

.ch-assurance-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #F5C84C;
    line-height: 1;
    font-family: var(--ch-font-heading);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.ch-assurance-pill {
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.ch-assurance-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0 0 0.7rem 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.ch-assurance-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.68;
    margin: 0 0 1.25rem 0;
    flex-grow: 1;
}

.ch-assurance-check {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #FDE68A;
    line-height: 1.45;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ch-check-symbol {
    color: #F5C84C;
    font-weight: 900;
    font-size: 0.95rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.ch-guidelines-section {
    background: linear-gradient(180deg, #ffffff 0%, #FAF8F5 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3rem 0;
}

.ch-guidelines-header {
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 2.75rem;
}

.ch-guidelines-title {
    font-size: clamp(1.75rem, 2.55vw, 2.45rem);
    font-weight: 800;
    color: #0f172a !important;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

@media (min-width: 992px) {
    .ch-guidelines-title {
        white-space: nowrap;
    }
}

.ch-guidelines-title .ch-title-red {
    color: var(--ch-red) !important;
    font-weight: 800;
}

.ch-guidelines-desc {
    font-size: 1.02rem;
    color: #4b5563;
    line-height: 1.7;
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.ch-guidelines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.ch-guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.45rem;
    padding: 1.85rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: background 0.3s ease;
}

.ch-guideline-item:hover {
    background: rgba(205, 28, 24, 0.025);
}

.ch-guideline-item:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.ch-guideline-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.ch-guideline-num-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(205, 28, 24, 0.08) 0%, rgba(205, 28, 24, 0.04) 100%);
    border: 1px solid rgba(205, 28, 24, 0.12);
}

.ch-guideline-num {
    font-size: 1.15rem;
    font-weight: 900;
    color: #CD1C18;
    font-family: var(--ch-font-heading);
    letter-spacing: -0.02em;
    line-height: 1;
}

.ch-guideline-body {
    flex: 1;
    min-width: 0;
}

.ch-guideline-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #CD1C18;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(205, 28, 24, 0.06);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(205, 28, 24, 0.12);
    margin-bottom: 0.55rem;
}

.ch-guideline-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.55rem 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.ch-guideline-text {
    font-size: 0.91rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

.ch-accommodations-section {
    background: linear-gradient(180deg, #FAF8F5 0%, #F4F0EA 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3rem 0;
}

.ch-accom-header {
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 2.75rem;
}

.ch-accom-title {
    font-size: clamp(1.75rem, 2.55vw, 2.45rem);
    font-weight: 800;
    color: #0f172a !important;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.ch-accom-title .ch-title-red {
    color: var(--ch-red) !important;
    font-weight: 800;
}

.ch-accom-desc {
    font-size: 1.02rem;
    color: #4b5563;
    line-height: 1.7;
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.ch-accom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.ch-accom-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ch-accom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.ch-accom-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ch-accom-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ch-accom-card:hover .ch-accom-img-wrap img {
    transform: scale(1.06);
}

.ch-accom-night-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ch-accom-body {
    padding: 1.55rem 1.65rem 1.65rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ch-accom-sector {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #CD1C18;
    letter-spacing: 0.06em;
    margin-bottom: 0.45rem;
}

.ch-accom-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.65rem 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.ch-accom-text {
    font-size: 0.91rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0 0 1.15rem 0;
    flex-grow: 1;
}

.ch-accom-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ch-accom-amenities span {
    font-size: 0.7rem;
    font-weight: 700;
    color: #374151;
    background: #f3f4f6;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ch-accom-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.15rem 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ch-accom-note-label {
    font-weight: 800;
    color: #0f172a;
}

#ch-reviews.ch-section {
    padding: 2.25rem 0 2rem;
    position: relative;
    background: 
        radial-gradient(ellipse 65% 45% at 15% 15%, rgba(253, 80, 86, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 85% 85%, rgba(197, 160, 89, 0.07) 0%, transparent 60%),
        linear-gradient(180deg, #F3ECE2 0%, #E7DECf 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#ch-reviews .ch-section-header {
    margin-bottom: 1.85rem;
}

.ch-reviews-title {
    font-size: clamp(1.85rem, 2.7vw, 2.45rem);
    font-weight: 800;
    color: #111827 !important;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 1.05rem;
    letter-spacing: -0.015em;
}

.ch-reviews-title .ch-title-red {
    color: var(--ch-red) !important;
    font-weight: 800;
}

@media (min-width: 992px) {
    .ch-reviews-title {
        white-space: nowrap;
    }
}

#ch-reviews .ch-section-header .ch-reviews-desc,
.ch-section-header.text-center .ch-reviews-desc {
    font-size: 1.02rem;
    color: #4b5563;
    line-height: 1.78;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 1.85rem !important;
    padding: 0 1rem;
}

.ch-reviews-trust-strip {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 2.25rem;
}

.ch-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 999px;
    padding: 0.52rem 1.45rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.035);
    font-size: 0.88rem;
    color: #374151;
    font-weight: 600;
}

.ch-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    color: #1f2937;
}

.ch-trust-stars {
    color: #f59e0b;
    letter-spacing: 0.12em;
    font-size: 0.95rem;
}

.ch-trust-score {
    font-weight: 800;
    color: #111827;
}

.ch-trust-dot {
    color: #cbd5e1;
}

.ch-trust-text {
    color: #64748b;
    font-weight: 500;
}

.ch-reviews-carousel-outer {
    position: relative;
    width: 100%;
    padding: 0 54px;
}

.ch-rev-arrow {
    position: absolute;
    top: calc(50% - 24px);
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    z-index: 10;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    outline: none;
}

.ch-rev-arrow:hover {
    background: var(--ch-red);
    color: #ffffff;
    border-color: var(--ch-red);
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.ch-rev-arrow:focus-visible {
    outline: 2px solid var(--ch-red);
    outline-offset: 2px;
}

.ch-rev-arrow:disabled,
.ch-rev-arrow.is-disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: not-allowed;
    box-shadow: none;
}

.ch-rev-prev {
    left: 0;
}

.ch-rev-next {
    right: 0;
}

.ch-reviews-slider {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    padding: 8px 2px 16px;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
    touch-action: pan-y;
}

.ch-reviews-slider.is-dragging {
    cursor: grabbing;
}

.ch-reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.ch-review-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    box-sizing: border-box;
    display: flex;
}

#ch-reviews .ch-watermark {
    color: rgba(0, 0, 0, 0.038);
}

.ch-review-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2.1rem 1.85rem;
    box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.02);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

.ch-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px -4px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.03);
    border-color: rgba(253, 80, 86, 0.28);
}

.ch-review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.35rem;
}

.ch-review-quote-icon {
    color: rgba(253, 80, 86, 0.35);
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.ch-review-card:hover .ch-review-quote-icon {
    color: var(--ch-red);
    transform: scale(1.08);
}

.ch-review-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.ch-review-text {
    font-size: 0.98rem;
    line-height: 1.74;
    color: #334155;
    margin: 0 0 1.75rem 0;
    flex-grow: 1;
    font-style: normal;
    font-weight: 400;
}

.ch-review-author-wrap {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ch-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff2f2 0%, #fee2e2 100%);
    color: var(--ch-red);
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--ch-font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(253, 80, 86, 0.2);
    flex-shrink: 0;
}

.ch-review-author-meta {
    flex: 1;
    min-width: 0;
}

.ch-review-author-name {
    font-size: 1.04rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.15rem 0;
    line-height: 1.3;
}

.ch-review-author-sub {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    display: block;
    line-height: 1.3;
}

.ch-reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.75rem;
}

.ch-rev-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #cbd5e1;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ch-rev-dot:hover {
    background: #94a3b8;
}

.ch-rev-dot.active {
    width: 28px;
    background: var(--ch-red);
}

.ch-reviews-foot-cta {
    margin-top: 1.35rem;
}

.ch-reviews-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.65rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1.5px solid rgba(253, 80, 86, 0.35);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.ch-reviews-more-btn:hover {
    background: var(--ch-red);
    color: #ffffff;
    border-color: var(--ch-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.25);
}

.ch-reviews-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.ch-reviews-more-btn:hover i {
    transform: translateX(3px);
}

.ch-faq-section {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 3.5rem;
    background: linear-gradient(180deg, #fff9f8 0%, #fef7f5 50%, #fdf2f0 100%);
    border-top: 1px solid rgba(9, 0, 49, 0.06);
    border-bottom: 1px solid rgba(9, 0, 49, 0.06);
}

.ch-faq-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 42% at 8% 12%, rgba(253, 80, 86, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 45% 38% at 96% 88%, rgba(197, 160, 89, 0.08) 0%, transparent 68%);
}

.ch-faq-layout {
    display: block;
}

.ch-faq-intro {
    position: static;
}

.ch-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ch-red);
    background: var(--ch-red-light);
    border: 1px solid rgba(253, 80, 86, 0.22);
    padding: 0.32rem 0.85rem;
    border-radius: var(--ch-radius-pill);
    margin-bottom: 1rem;
}

.ch-faq-eyebrow i {
    font-size: 0.72rem;
}

.ch-faq-heading {
    font-family: var(--ch-font-heading);
    font-size: clamp(1.85rem, 2.6vw, 2.55rem);
    font-weight: 800;
    color: var(--ch-dark);
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0 0 0.9rem;
}

.ch-faq-heading span {
    color: #CD1C18;
}

.ch-faq-lede {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--ch-muted);
    margin: 0 0 1.65rem;
    max-width: 38ch;
}

.ch-faq-signals {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.ch-faq-signals li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ch-slate);
    line-height: 1.45;
}

.ch-faq-signal-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #ffffff;
    border: 1px solid var(--ch-border);
    color: var(--ch-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.78rem;
    box-shadow: 0 2px 8px rgba(9, 0, 49, 0.04);
}

.ch-faq-help {
    background: #ffffff;
    border: 1px solid var(--ch-border);
    border-radius: 18px;
    padding: 1.25rem 1.3rem 1.35rem;
    box-shadow: 0 10px 28px rgba(9, 0, 49, 0.05);
    margin-top: 2rem;
}

.ch-faq-help-kicker {
    font-family: var(--ch-font-heading);
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--ch-dark);
    margin: 0 0 0.3rem;
}

.ch-faq-help-text {
    font-size: 0.86rem;
    color: var(--ch-muted);
    line-height: 1.55;
    margin: 0 0 1rem;
}

.ch-faq-help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.ch-faq-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.ch-faq-help-call {
    background: var(--ch-red);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(253, 80, 86, 0.28);
}

.ch-faq-help-call:hover {
    color: #ffffff;
    background: var(--ch-red-hover);
    transform: translateY(-1px);
}

.ch-faq-help-wa {
    background: #eef8f1;
    color: #128c4a;
    border: 1px solid rgba(18, 140, 74, 0.18);
}

.ch-faq-help-wa:hover {
    color: #0d6e3a;
    background: #e3f4e8;
    transform: translateY(-1px);
}

.ch-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.ch-faq-item {
    background: #ffffff;
    border: 1px solid rgba(9, 0, 49, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(9, 0, 49, 0.03);
    transition:
        border-color 0.35s ease,
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ch-faq-item:hover {
    border-color: rgba(253, 80, 86, 0.28);
    box-shadow: 0 8px 22px rgba(9, 0, 49, 0.06);
}

.ch-faq-item.is-open {
    border-color: rgba(253, 80, 86, 0.38);
    box-shadow:
        0 12px 32px rgba(253, 80, 86, 0.1),
        inset 3px 0 0 var(--ch-red);
}

.ch-faq-item-title {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.ch-faq-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 1.05rem 1.2rem 1.05rem 1.25rem;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.ch-faq-btn:focus-visible {
    outline: 2px solid var(--ch-red);
    outline-offset: -3px;
    border-radius: 14px;
}

.ch-faq-btn-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ch-faq-num {
    font-family: var(--ch-font-heading);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--ch-red);
    background: var(--ch-red-light);
    border: 1px solid rgba(253, 80, 86, 0.2);
    padding: 0.12rem 0.45rem;
    border-radius: 6px;
    line-height: 1.2;
}

.ch-faq-cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ch-light-text);
}

.ch-faq-btn-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.ch-faq-question {
    font-family: var(--ch-font-heading);
    font-size: 1.04rem;
    font-weight: 700;
    color: var(--ch-dark);
    line-height: 1.4;
    letter-spacing: -0.015em;
    transition: color 0.25s ease;
}

.ch-faq-btn:hover .ch-faq-question,
.ch-faq-item.is-open .ch-faq-question {
    color: #CD1C18;
}

.ch-faq-icon {
    position: relative;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f4f2f8;
    color: var(--ch-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease, color 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ch-faq-btn:hover .ch-faq-icon {
    background: var(--ch-red-light);
}

.ch-faq-item.is-open .ch-faq-icon {
    background: var(--ch-red);
    color: #ffffff;
    transform: rotate(90deg);
}

.ch-faq-icon span {
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.ch-faq-icon span:first-child {
    width: 12px;
    height: 2px;
}

.ch-faq-icon span:last-child {
    width: 2px;
    height: 12px;
}

.ch-faq-item.is-open .ch-faq-icon span:last-child {
    transform: rotate(90deg);
    opacity: 0;
}

.ch-faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ch-faq-item.is-open .ch-faq-panel {
    grid-template-rows: 1fr;
}

.ch-faq-panel-inner {
    overflow: hidden;
    min-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    padding: 0 1.25rem 0 1.25rem;
    border-top: 1px solid transparent;
    transition:
        opacity 0.35s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease;
}

.ch-faq-item.is-open .ch-faq-panel-inner {
    opacity: 1;
    transform: translateY(0);
    padding: 0.85rem 1.25rem 1.25rem 1.25rem;
    border-top-color: rgba(9, 0, 49, 0.06);
}

.ch-faq-panel-inner p {
    margin: 0 0 0.7rem;
    font-size: 0.94rem;
    line-height: 1.72;
    color: var(--ch-body);
}

.ch-faq-panel-inner p:last-child {
    margin-bottom: 0;
}

.ch-faq-panel-inner a {
    color: var(--ch-red);
    font-weight: 700;
    text-decoration: none;
}

.ch-faq-panel-inner a:hover {
    text-decoration: underline;
}

.ch-faq-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem 1rem;
    margin-top: 0.55rem;
    padding: 1.05rem 1.2rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px dashed rgba(9, 0, 49, 0.12);
    border-radius: 14px;
    font-size: 0.9rem;
    color: var(--ch-muted);
}

.ch-faq-foot a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 800;
    color: var(--ch-red);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.ch-faq-foot a:hover {
    color: var(--ch-red-dark);
}

.ch-faq-foot a i {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.ch-faq-foot a:hover i {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .ch-faq-item,
    .ch-faq-panel,
    .ch-faq-panel-inner,
    .ch-faq-icon,
    .ch-faq-icon span,
    .ch-faq-help-btn,
    .ch-faq-question {
        transition: none !important;
    }
}

#ch-enquiry.ch-section {
    padding: 2.5rem 0 2.25rem;
}

#ch-enquiry .ch-section-header {
    margin-bottom: 1.5rem;
}

.ch-enquiry-section-title {
    color: #111827 !important;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.ch-enquiry-section-title .ch-title-red {
    color: var(--ch-red) !important;
    font-weight: 800;
}

@media (min-width: 992px) {
    .ch-enquiry-section-title {
        white-space: nowrap;
    }
}

.ch-enquiry-section-desc {
    font-size: 1.02rem;
    color: #4b5563;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ch-enquiry-pane {
    background: #ffffff;
    border: 1px solid var(--ch-border);
    border-radius: var(--ch-radius-lg);
    padding: 2.25rem 2.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.ch-enquiry-header {
    margin-bottom: 1.5rem;
}

.ch-enquiry-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--ch-dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.ch-enquiry-subtitle {
    font-size: 0.92rem;
    color: var(--ch-muted);
    line-height: 1.55;
    margin: 0;
}

.ch-form-lbl {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
}

.ch-lbl-opt {
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748b;
    margin-left: 0.2rem;
}

.ch-form-input {
    width: 100%;
    height: 48px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    color: #0f172a;
    background-color: #ffffff;
    font-family: var(--ch-font-body);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ch-form-input::placeholder {
    color: #94a3b8;
}

.ch-form-input:hover {
    border-color: #cbd5e1;
}

.ch-form-input:focus {
    outline: none;
    border-color: var(--ch-red);
    box-shadow: 0 0 0 3px rgba(205, 28, 24, 0.12);
}

.ch-form-textarea {
    height: auto;
    min-height: 96px;
    padding: 0.85rem 1rem;
    resize: vertical;
}

.ch-custom-select {
    position: relative;
    width: 100%;
}

.ch-custom-select.is-open {
    z-index: 100;
}

.ch-enquiry-pane [class*="col-"]:has(.ch-custom-select.is-open) {
    z-index: 50;
    position: relative;
}

.ch-sr-only-select {
    display: none !important;
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.ch-select-trigger {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--ch-font-body);
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    cursor: pointer;
    text-align: left;
    user-select: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ch-select-trigger:hover {
    border-color: #cbd5e1;
    background-color: #fcfdfe;
}

.ch-select-trigger:focus,
.ch-custom-select.is-open .ch-select-trigger {
    outline: none;
    border-color: var(--ch-red);
    box-shadow: 0 0 0 3px rgba(205, 28, 24, 0.12);
    background-color: #ffffff;
}

.ch-select-value {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1e293b;
}

.ch-select-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #64748b;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    flex-shrink: 0;
}

.ch-custom-select.is-open .ch-select-chevron {
    transform: rotate(180deg);
    color: var(--ch-red);
}

.ch-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.14), 0 4px 10px -2px rgba(15, 23, 42, 0.06);
    padding: 6px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.ch-custom-select.is-open .ch-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.ch-select-dropdown::-webkit-scrollbar {
    width: 6px;
}
.ch-select-dropdown::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 4px;
}
.ch-select-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.ch-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.ch-select-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 0.91rem;
    color: #334155;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.ch-select-item:hover,
.ch-select-item:focus {
    background: #fdf2f2;
    color: var(--ch-red);
    outline: none;
}

.ch-select-item.is-selected {
    background: #fef2f2;
    color: var(--ch-red);
    font-weight: 700;
}

.ch-select-check {
    font-size: 0.8rem;
    color: var(--ch-red);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.ch-select-item.is-selected .ch-select-check {
    opacity: 1;
    transform: scale(1);
}

.ch-enquiry-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 1.75rem;
    font-size: 1.02rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(205, 28, 24, 0.25);
    transition: all 0.25s ease;
    cursor: pointer;
}

.ch-enquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 28, 24, 0.35);
}

.ch-enquiry-submit:active {
    transform: translateY(0);
}

.ch-contact-sidebar {
    background: linear-gradient(180deg, #ffffff 0%, #fbf9f6 100%);
    border: 1px solid var(--ch-border);
    border-radius: var(--ch-radius-lg);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.ch-contact-sidebar-top {
    flex: 1;
}

.ch-contact-badge {
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ch-red);
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    display: block;
}

.ch-contact-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ch-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.ch-contact-desc {
    font-size: 0.88rem;
    color: var(--ch-muted);
    line-height: 1.55;
    margin-bottom: 1.4rem;
}

.ch-contact-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ch-contact-card-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 12px;
    padding: 0.95rem 1.1rem;
    text-decoration: none;
    color: var(--ch-dark);
    transition: all 0.25s ease;
}

.ch-contact-card-link:hover {
    border-color: var(--ch-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(205, 28, 24, 0.08);
    color: var(--ch-red);
}

.ch-contact-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--ch-red-light);
    color: var(--ch-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.ch-contact-card-link:hover .ch-contact-icon-wrap {
    background: var(--ch-red);
    color: #ffffff;
}

.ch-contact-card-body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ch-contact-card-body .meta-t {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--ch-muted);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.ch-contact-card-body .meta-v {
    font-size: 1.02rem;
    font-weight: 800;
    color: #0f172a;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ch-contact-card-link:hover .meta-v {
    color: var(--ch-red);
}

.ch-contact-icon-wrap.wa-icon {
    background: #e8f7ee;
    color: #25d366;
}

.ch-contact-card-link.ch-contact-wa:hover {
    border-color: #25d366;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.12);
}

.ch-contact-card-link.ch-contact-wa:hover .ch-contact-icon-wrap {
    background: #25d366;
    color: #ffffff;
}

.ch-contact-card-link.ch-contact-wa:hover .meta-v {
    color: #128c7e;
}

.ch-contact-credentials {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.ch-cred-badge {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ch-red);
    margin-bottom: 0.35rem;
    letter-spacing: 0.05em;
}

.ch-cred-text {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.ch-cred-points {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ch-cred-pt {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.ch-cred-pt i {
    color: #10b981;
    font-size: 0.75rem;
}

.ch-hp {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
}

@media (max-width: 1199.98px) {
    .ch-route-steps-flow {
        grid-template-columns: repeat(3, 1fr);
    }
    .ch-hotel-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ch-booking-bar-grid {
        grid-template-columns: 1.15fr 1fr 1fr 1fr auto;
        gap: 1rem;
    }
    .ch-hero-booking-bar {
        padding: 1.35rem 1.5rem;
    }
    .ch-bar-val.text-red {
        font-size: 1.25rem;
    }
    .ch-bar-val {
        font-size: 1.05rem;
    }
}

@media (max-width: 991.98px) {
    .ch-review-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .ch-hero {
        padding: 3.25rem 0 2.5rem;
        min-height: auto;
    }
    .ch-root .ch-hero-title,
    .ch-hero-title {
        font-size: 2.35rem;
        line-height: 1.2;
    }
    .ch-root .ch-hero-lead,
    .ch-hero-lead {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    .ch-hero-booking-bar {
        padding: 1.35rem 1.5rem;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid rgba(253, 80, 86, 0.2);
    }
    .ch-booking-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .ch-bar-col {
        border-right: none;
        padding: 0;
        background: transparent;
        border: none;
    }
    .ch-bar-col-price {
        grid-column: 1 / -1;
        border-bottom: 1px solid rgba(9, 0, 49, 0.08);
        padding-bottom: 0.85rem;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .ch-bar-col-price .ch-bar-val.text-red {
        font-size: 1.65rem;
    }
    .ch-bar-col-duration,
    .ch-bar-col-helipad {
        grid-column: span 1;
    }
    .ch-bar-col-shrines {
        grid-column: 1 / -1;
        border-top: 1px dashed rgba(9, 0, 49, 0.08);
        padding-top: 0.75rem;
    }
    .ch-bar-action {
        grid-column: 1 / -1;
        margin-top: 0.35rem;
    }
    .ch-bar-action .ch-btn-red {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.5rem;
    }

    .ch-hero-trust-strip {
        gap: 0.75rem 1.25rem;
    }

    .ch-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ch-inc-exc-grid {
        grid-template-columns: 1fr;
    }
    .ch-guidelines-grid {
        grid-template-columns: 1fr;
    }
    .ch-guideline-item {
        padding: 1.65rem 1.25rem;
    }
    .ch-guideline-item:nth-child(odd) {
        border-right: none;
    }
    .ch-guideline-item:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }
    .ch-guideline-item:last-child {
        border-bottom: none;
    }
    .ch-price-amount-display {
        font-size: 2.75rem;
    }
    .ch-pricing-card-inner {
        grid-template-columns: 1fr;
    }
    .ch-pricing-card-right {
        padding: 2.25rem 2rem;
    }
    .ch-package-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.25rem;
    }
    .ch-pricing-assurance-strip {
        padding: 2.75rem 0;
    }
    .ch-assurance-header {
        margin-bottom: 2rem;
    }
    .ch-assurance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ch-assurance-col {
        padding-right: 0;
        border-right: none;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
    .ch-assurance-col:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    .ch-mandala-left {
        width: 320px;
        height: 320px;
        left: -160px;
    }
    .ch-mandala-right {
        width: 280px;
        height: 280px;
        right: -140px;
    }

    .ch-overview-media-card {
        margin-top: 1.75rem;
    }
    .ch-overview-img {
        height: 290px;
    }

    .ch-review-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .ch-reviews-carousel-outer {
        padding: 0 44px;
    }
}

@media (max-width: 767.98px) {
    .ch-accommodations-section {
        padding: 2.25rem 0;
    }
    .ch-accom-header {
        margin-bottom: 1.75rem;
    }
    .ch-accom-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .ch-accom-img-wrap {
        height: 200px;
    }
    .ch-accom-body {
        padding: 1.35rem 1.25rem;
    }
    .ch-accom-name {
        font-size: 1.15rem;
    }
    .ch-accom-text {
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .ch-accom-note {
        margin-top: 1.5rem;
        padding: 1rem 1.15rem;
        font-size: 0.84rem;
    }

    #ch-reviews.ch-section {
        padding: 2.5rem 0 2rem;
        position: relative;
    }
    #ch-reviews .ch-watermark {
        display: none;
    }
    #ch-reviews .ch-section-header {
        margin-bottom: 1.25rem;
    }
    .ch-reviews-title {
        font-size: 1.75rem;
        white-space: normal;
        line-height: 1.25;
        margin-bottom: 0.85rem;
    }
    #ch-reviews .ch-section-header .ch-reviews-desc,
    .ch-section-header.text-center .ch-reviews-desc {
        font-size: 0.92rem;
        line-height: 1.65;
        margin: 0 auto 1.35rem !important;
        padding: 0 0.5rem;
    }
    .ch-reviews-trust-strip {
        margin-top: 0.25rem;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }
    .ch-trust-pill {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        border-radius: 999px;
        text-align: center;
        padding: 0.55rem 1rem;
        gap: 0.35rem 0.65rem;
        font-size: 0.82rem;
        max-width: 100%;
        line-height: 1.3;
    }
    .ch-google-badge {
        font-size: 0.82rem;
        gap: 0.35rem;
    }
    .ch-google-badge svg {
        width: 16px;
        height: 16px;
    }
    .ch-trust-stars {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
    }
    .ch-trust-score {
        font-size: 0.82rem;
    }
    .ch-trust-dot {
        display: none;
    }
    .ch-trust-text {
        font-size: 0.78rem;
    }
    .ch-reviews-carousel-outer {
        padding: 0 4px;
        overflow: hidden;
    }
    .ch-rev-arrow {
        display: none;
    }
    .ch-reviews-slider {
        padding: 4px 0 10px;
        touch-action: pan-y;
        width: 100%;
    }
    .ch-reviews-track {
        gap: 16px;
    }
    .ch-review-slide {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .ch-review-card {
        padding: 1.45rem 1.25rem;
        border-radius: 16px;
    }
    .ch-review-card-top {
        margin-bottom: 1rem;
    }
    .ch-review-quote-icon svg {
        width: 20px;
        height: 15px;
    }
    .ch-review-stars {
        font-size: 0.88rem;
    }
    .ch-review-text {
        font-size: 0.91rem;
        line-height: 1.65;
        margin: 0 0 1.25rem 0;
    }
    .ch-review-author-wrap {
        gap: 0.75rem;
        padding-top: 1rem;
    }
    .ch-review-avatar {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .ch-review-author-name {
        font-size: 0.95rem;
    }
    .ch-review-author-sub {
        font-size: 0.74rem;
    }
    .ch-reviews-dots {
        margin-top: 1.35rem;
        gap: 6px;
    }
    .ch-rev-dot {
        width: 8px;
        height: 8px;
    }
    .ch-rev-dot.active {
        width: 24px;
    }
    .ch-reviews-foot-cta {
        margin-top: 1.25rem;
        padding: 0 0.5rem;
    }
    .ch-reviews-more-btn {
        width: 100%;
        max-width: 380px;
        justify-content: center;
        text-align: center;
        font-size: 0.86rem;
        padding: 0.75rem 1.15rem;
    }
    .ch-mandala {
        display: none;
    }
    .ch-guidelines-section {
        padding: 3rem 0;
    }
    .ch-guideline-item {
        padding: 1.35rem 0.5rem;
        gap: 1rem;
    }
    .ch-guideline-num-wrap {
        width: 40px;
        height: 40px;
    }
    .ch-guideline-num {
        font-size: 1rem;
    }
    .ch-guideline-title {
        font-size: 1.02rem;
    }
    .ch-guideline-text {
        font-size: 0.86rem;
    }
    .ch-hero {
        padding: 2.25rem 0 1.75rem;
        min-height: auto;
    }

    .ch-hero-pills-bar {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding: 0.85rem 1rem;
        margin-bottom: 1.15rem;
    }
    .ch-hero-pill-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--ch-border-light);
        padding-right: 0;
        padding-bottom: 0.55rem;
    }
    .ch-hero-form-card {
        padding: 1.35rem 1.15rem;
        margin-top: 1.35rem;
        border-radius: 16px;
    }
    .ch-hero-form-title {
        font-size: 1.25rem;
    }

    .ch-hero-video-overlay {
        background: linear-gradient(180deg, rgb(8 1 14 / 76%) 0%, rgba(9, 0, 49, 0.48) 40%, rgb(0 0 0 / 82%) 100%);
    }

    .ch-hero-badge {
        font-size: 0.72rem;
        padding: 0.32rem 0.85rem;
        margin-bottom: 0.75rem;
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
        border-radius: var(--ch-radius-pill);
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .ch-root .ch-hero-title,
    .ch-hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin-bottom: 0.65rem;
        word-break: break-word;
        color: #ffffff !important;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
    }

    .ch-hero-title .highlight {
        color: #ff5e64;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
    }

    .ch-hero-title .highlight::after {
        height: 4px;
        bottom: 2px;
    }

    .ch-root .ch-hero-lead,
    .ch-hero-lead {
        font-size: 0.94rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
        color: rgba(255, 255, 255, 0.95) !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
    }

    .ch-hero-booking-bar {
        background: #ffffff;
        border: 1px solid rgba(253, 80, 86, 0.2);
        border-radius: 16px;
        padding: 1.25rem 1.15rem;
        margin-bottom: 1.25rem;
        box-shadow: 0 16px 36px rgba(9, 0, 49, 0.18);
    }

    .ch-booking-bar-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 1rem;
        row-gap: 0.75rem;
    }

    .ch-bar-col {
        border-right: none;
        padding: 0;
        background: transparent;
        border: none;
        margin: 0;
    }

    .ch-bar-col-price {
        grid-column: 1 / -1;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0 0 0.75rem 0;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(9, 0, 49, 0.08);
    }

    .ch-bar-col-price .ch-bar-lbl {
        display: block;
        width: 100%;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--ch-red);
        margin-bottom: 0.15rem;
    }

    .ch-bar-col-price .ch-bar-val.text-red {
        font-size: 1.65rem;
        font-weight: 900;
        color: var(--ch-red);
        line-height: 1.1;
    }

    .ch-bar-col-price .ch-bar-unit {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--ch-muted);
    }

    .ch-bar-col-price .ch-bar-sub {
        width: 100%;
        font-size: 0.74rem;
        color: var(--ch-muted);
        margin-top: 0.15rem;
    }

    .ch-bar-col-duration {
        grid-column: 1;
        margin: 0;
        padding: 0;
    }

    .ch-bar-col-helipad {
        grid-column: 2;
        margin: 0;
        padding: 0;
    }

    .ch-bar-col-duration .ch-bar-lbl,
    .ch-bar-col-helipad .ch-bar-lbl {
        font-size: 0.66rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--ch-muted);
        margin-bottom: 0.15rem;
    }

    .ch-bar-col-duration .ch-bar-val,
    .ch-bar-col-helipad .ch-bar-val {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--ch-dark);
        line-height: 1.25;
    }

    .ch-bar-col-duration .ch-bar-sub,
    .ch-bar-col-helipad .ch-bar-sub {
        font-size: 0.72rem;
        color: var(--ch-muted);
        margin-top: 0.1rem;
        line-height: 1.25;
    }

    .ch-bar-col-shrines {
        grid-column: 1 / -1;
        display: block;
        padding-top: 0.65rem;
        margin-top: 0;
        border-top: 1px dashed rgba(9, 0, 49, 0.08);
    }

    .ch-bar-col-shrines .ch-bar-lbl {
        font-size: 0.66rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--ch-muted);
        margin-bottom: 0.15rem;
    }

    .ch-bar-col-shrines .ch-bar-val {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--ch-dark);
        line-height: 1.25;
    }

    .ch-bar-col-shrines .ch-bar-sub {
        font-size: 0.72rem;
        color: var(--ch-muted);
        margin-top: 0.1rem;
    }

    .ch-bar-action {
        grid-column: 1 / -1;
        display: block;
        width: 100%;
        margin-top: 0.25rem;
    }

    .ch-bar-action .ch-btn-red {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.95rem 1.4rem;
        font-size: 1.05rem;
        font-weight: 700;
        border-radius: var(--ch-radius-pill);
    }

    .ch-hero-bottom-bar {
        display: block;
        width: 100%;
        padding-top: 0.25rem;
        overflow: hidden;
    }

    .ch-hero-trust-strip {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0.5rem;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 0.25rem 0.25rem 0.5rem;
    }

    .ch-hero-trust-strip::-webkit-scrollbar {
        display: none;
    }

    .ch-trust-badge-item {
        flex: 0 0 auto;
        white-space: nowrap !important;
        display: inline-flex;
        align-items: center;
        gap: 0.38rem;
        font-size: 0.74rem;
        font-weight: 600;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: var(--ch-radius-pill);
        padding: 0.4rem 0.78rem;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
    }

    .ch-trust-badge-item i {
        color: #ff5e64;
        font-size: 0.82rem;
    }

    .ch-video-ctrl-btn {
        top: 12px;
        right: 12px;
        bottom: auto;
        padding: 0.25rem 0.55rem;
        font-size: 0.7rem;
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #ffffff;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .ch-overview-section {
        padding: 3.5rem 0 3rem;
    }
    .ch-pillars-grid {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }
    .ch-compare-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .ch-overview-img {
        height: 240px;
    }
    .ch-overview-pills-strip {
        gap: 0.4rem;
    }
    .ch-overview-meta-pill {
        font-size: 0.76rem;
        padding: 0.35rem 0.7rem;
    }
    .ch-img-floating-tag {
        font-size: 0.72rem;
        padding: 0.32rem 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .ch-section {
        padding: 3.25rem 0;
    }
    .ch-section-title {
        font-size: 1.75rem;
    }
    .ch-route-steps-flow {
        grid-template-columns: 1fr;
    }
    .ch-stats-grid {
        grid-template-columns: 1fr;
    }
    .ch-hotel-card-grid {
        grid-template-columns: 1fr;
    }
    .ch-pricing-section {
        padding: 3rem 0 3.5rem;
    }
    .ch-pricing-card-left {
        padding: 1.75rem 1.25rem;
    }
    .ch-pricing-card-right {
        padding: 1.75rem 1.25rem;
    }
    .ch-pricing-amount {
        font-size: 2.5rem;
    }
    .ch-pricing-value-pills {
        gap: 0.4rem;
    }
    .ch-value-pill {
        font-size: 0.78rem;
        padding: 0.32rem 0.75rem;
    }
    .ch-pricing-section {
        padding: 2.25rem 0 0;
    }
    .ch-package-details-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    .ch-package-card {
        padding: 1.6rem 1.25rem;
    }
    .ch-pricing-assurance-strip {
        padding: 2.25rem 0 2.5rem;
    }
    .ch-assurance-title {
        font-size: 1.35rem;
    }
    .ch-assurance-subtitle {
        font-size: 0.88rem;
    }
    .ch-assurance-num {
        font-size: 1.35rem;
    }
    .ch-assurance-heading {
        font-size: 1.12rem;
    }
    .ch-assurance-desc {
        font-size: 0.88rem;
        margin-bottom: 0.85rem;
    }
    .ch-assurance-check {
        font-size: 0.8rem;
    }
    .ch-guidelines-section {
        padding: 2.5rem 0;
    }
    .ch-guidelines-header {
        margin-bottom: 2rem;
    }
    .ch-guidelines-title {
        font-size: 1.55rem;
        white-space: normal;
    }
    .ch-guidelines-desc {
        font-size: 0.92rem;
    }
    .ch-guideline-item {
        padding: 1.25rem 0.25rem;
        gap: 0.85rem;
    }
    .ch-guideline-num-wrap {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .ch-guideline-num {
        font-size: 0.92rem;
    }
    .ch-guideline-tag {
        font-size: 0.65rem;
        padding: 0.18rem 0.55rem;
    }
    .ch-guideline-title {
        font-size: 0.98rem;
    }
    .ch-guideline-text {
        font-size: 0.84rem;
        line-height: 1.6;
    }
    .ch-enquiry-pane {
        padding: 1.35rem 1.15rem;
    }
    .ch-enquiry-title {
        font-size: 1.22rem;
    }
    .ch-contact-sidebar {
        padding: 1.35rem 1.15rem;
    }
    #ch-reviews.ch-section {
        padding: 2rem 0 1.75rem;
    }
    .ch-reviews-title {
        font-size: 1.5rem;
    }
    #ch-reviews .ch-section-header .ch-reviews-desc,
    .ch-section-header.text-center .ch-reviews-desc {
        font-size: 0.88rem;
        line-height: 1.6;
        margin: 0 auto 1.25rem !important;
    }
    .ch-reviews-trust-strip {
        margin-top: 0.15rem;
        margin-bottom: 1.45rem;
    }
    .ch-trust-pill {
        padding: 0.45rem 0.85rem;
        font-size: 0.78rem;
        border-radius: 14px;
    }
    .ch-review-card {
        padding: 1.25rem 1.05rem;
        border-radius: 14px;
    }
    .ch-review-text {
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 1.1rem;
    }
    .ch-reviews-more-btn {
        width: 100%;
        font-size: 0.82rem;
        padding: 0.72rem 0.95rem;
        line-height: 1.35;
    }
    .ch-reviews-more-btn span {
        white-space: normal;
        text-align: center;
    }
    .ch-accommodations-section {
        padding: 2rem 0;
    }
    .ch-accom-title {
        font-size: 1.55rem;
    }
    .ch-accom-desc {
        font-size: 0.92rem;
    }
    .ch-accom-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }
    .ch-accom-img-wrap {
        height: 185px;
    }
    .ch-accom-body {
        padding: 1.25rem 1.1rem;
    }
    .ch-accom-amenities span {
        font-size: 0.68rem;
        padding: 0.22rem 0.55rem;
    }
}

@media (max-width: 420px) {
    .ch-review-card {
        padding: 1.15rem 0.9rem;
    }
    .ch-reviews-more-btn {
        font-size: 0.78rem;
        padding: 0.68rem 0.85rem;
    }
    .ch-enquiry-pane {
        padding: 1.15rem 0.95rem;
    }
    .ch-enquiry-submit {
        font-size: 0.88rem;
        padding: 0.85rem 1rem;
    }
    .ch-hero {
        padding: 1.85rem 0 1.5rem;
    }

    .ch-hero-badge {
        font-size: 0.68rem;
        padding: 0.28rem 0.75rem;
    }

    .ch-root .ch-hero-title,
    .ch-hero-title {
        font-size: 1.65rem;
        line-height: 1.2;
    }

    .ch-root .ch-hero-lead,
    .ch-hero-lead {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .ch-hero-booking-bar {
        padding: 1rem 0.95rem;
        border-radius: 14px;
    }

    .ch-bar-col-price .ch-bar-val.text-red {
        font-size: 1.5rem;
    }

    .ch-trust-badge-item {
        font-size: 0.72rem;
        padding: 0.35rem 0.68rem;
    }
}
