@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --premium-gold: #d4af37;
    --premium-gold-light: #f3e5ab;
    --premium-dark: #121212;
    --premium-text: #ffffff;
    --premium-cream: #fffdf9;
}

.premium-hero-v2 {
    position: relative;
    height: auto;
    min-height: 80vh;
    padding-top: 100px;
    padding-bottom: 60px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--premium-dark);
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://nagarjunatravels.com/images/packages/adi-kailash-yatra-package-from-haldwani-kathgodam-66aa07e87f864.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.05);
    animation: premiumPan 25s ease-in-out infinite alternate;
}

/* Background Crossfade Transition */
.hero-v2-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://nagarjunatravels.com/assets/images/special-pages/om-parvat-images/om-parvat-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: bgCrossfade 8s infinite alternate ease-in-out;
}

@keyframes bgCrossfade {
    0%, 35% { opacity: 0; }
    65%, 100% { opacity: 1; }
}

@keyframes premiumPan {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.15) translate(-2%, 2%); }
}

.hero-v2-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 12, 12, 0.95) 0%, rgba(12, 12, 12, 0.6) 45%, rgba(12, 12, 12, 0.1) 100%),
                linear-gradient(0deg, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0) 30%);
    z-index: 1;
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    max-width: 1050px;
    margin: 0;
    text-align: left;
}

.hero-v2-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.hero-v2-eyebrow .line {
    width: 40px;
    height: 2px;
    background-color: var(--premium-gold);
}

.hero-v2-eyebrow .text {
    color: var(--premium-gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-v2-title {
    color: var(--premium-text);
    font-size: clamp(2.8rem, 4vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-v2-highlight-wrapper {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25em;
}
.hero-v2-highlight {
    display: inline-block;
    background: linear-gradient(
        -45deg, 
        #FFDF00 0%, 
        #D4AF37 25%, 
        #FFFFF0 50%, 
        #D4AF37 75%, 
        #FFDF00 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShineFlow 4s linear infinite;
    font-style: italic;
    font-weight: 700;
}

@keyframes goldShineFlow {
    to { background-position: 200% center; }
}

/* Word Rotator Animation */
.word-rotator {
    display: inline-grid;
    vertical-align: baseline;
    padding-right: 15px;
}
.word-rotator .hero-v2-highlight {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(15px);
    animation: goldShineFlow 4s linear infinite, rotateWordOpacity 9s cubic-bezier(0.2, 1, 0.2, 1) infinite;
}
.word-rotator .hero-v2-highlight:nth-child(1) { animation-delay: 0s, 0s; }
.word-rotator .hero-v2-highlight:nth-child(2) { animation-delay: 0s, 3s; }
.word-rotator .hero-v2-highlight:nth-child(3) { animation-delay: 0s, 6s; }

@keyframes rotateWordOpacity {
    0% { opacity: 0; transform: translateY(15px); }
    11% { opacity: 1; transform: translateY(0); }
    33% { opacity: 1; transform: translateY(0); }
    44%, 100% { opacity: 0; transform: translateY(-15px); }
}

.hero-v2-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 850px;
}

.hero-v2-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    align-items: center;
}

.btn-v2-primary {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-v2-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    color: #000000;
}

.btn-v2-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-weight: 500;
    padding: 18px 45px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.btn-v2-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-v2-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-v2-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-v2-stats .stat-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
    width: 100%;
    text-align: center;
}

.hero-v2-stats .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--premium-gold);
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: center;
}

.hero-v2-stats .stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-v2-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-v2-scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scrollWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Mobile Responsiveness for Hero */
@media (max-width: 991px) {
    .premium-hero-v2 {
        height: auto;
        min-height: 70vh;
        padding: 120px 0 70px;
    }
    .hero-v2-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .premium-hero-v2 {
        height: auto;
        min-height: 60vh;
        padding: 100px 0 50px;
        text-align: left;
    }
    .hero-v2-gradient {
        background: linear-gradient(0deg, rgba(12, 12, 12, 0.95) 0%, rgba(12, 12, 12, 0.7) 65%, rgba(12, 12, 12, 0.2) 100%);
    }
    .hero-v2-title {
        font-size: 2.6rem;
        letter-spacing: -0.5px;
    }
    .hero-v2-desc {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .hero-v2-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 30px;
        align-items: stretch;
    }
    .btn-v2-primary, .btn-v2-secondary {
        width: 100%;
        padding: 14px 20px;
    }
    .hero-v2-stats {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-v2-stats .stat-val {
        font-size: 1.3rem;
    }
    .hero-v2-stats .stat-label {
        font-size: 0.65rem;
    }
    .hero-v2-stats .stat-divider {
        height: 30px;
    }
    .hero-v2-scroll-indicator {
        display: none;
    }
}

.premium-fleet-container {
    padding: 40px 0;
    background: linear-gradient(180deg, #fffcf6 0%, #fffbf2 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.premium-fleet-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.premium-fleet-subtitle {
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.premium-fleet-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.premium-fleet-desc {
    color: var(--color-text-light);
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.premium-fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

.premium-vehicle-card {
    background: #ffffff;
    border: 1.5px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(184, 150, 87, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: row;
    position: relative;
}

.premium-vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(212, 175, 55, 0.12), 0 5px 15px rgba(0, 0, 0, 0.03);
    border-color: rgba(253, 80, 86, 0.35);
}

.premium-vehicle-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #fd5056 0%, #d4af37 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(253, 80, 86, 0.25);
    z-index: 2;
}

.premium-vehicle-img-wrapper {
    width: 42%;
    position: relative;
    background: radial-gradient(circle at center, rgba(253, 80, 86, 0.06) 0%, rgba(212, 175, 55, 0.04) 65%, transparent 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-right: 1px solid rgba(212, 175, 55, 0.08);
}

.premium-vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    z-index: 1;
}

.premium-vehicle-card:hover .premium-vehicle-img {
    transform: scale(1.05);
}

.premium-vehicle-body {
    width: 58%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-vehicle-header {
    margin-bottom: 12px;
}

.premium-vehicle-class {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fd5056;
    margin-bottom: 6px;
    display: block;
}

.premium-vehicle-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.premium-vehicle-desc {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.55;
    margin-bottom: 0;
}

.premium-vehicle-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 15px;
}

.premium-spec-box {
    background: #fcfbf7;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    padding: 8px 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: all 0.3s ease;
}

.premium-vehicle-card:hover .premium-spec-box {
    border-color: rgba(212, 175, 55, 0.2);
    background: #ffffff;
}

.premium-spec-icon {
    color: #fd5056;
    font-size: 0.9rem;
    display: inline-flex;
    margin-bottom: 1px;
}

.premium-spec-val {
    font-size: 0.8rem;
    font-weight: 750;
    color: #1a1a2e;
    line-height: 1.1;
}

.premium-spec-lbl {
    font-size: 0.65rem;
    color: #888888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.premium-feature-pill {
    background: rgba(253, 80, 86, 0.04);
    border: 1px solid rgba(253, 80, 86, 0.15);
    color: #fd5056;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.premium-vehicle-card:hover .premium-feature-pill {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    color: #b89657;
}

@media (max-width: 991px) {
    .premium-vehicle-card {
        flex-direction: column;
    }
    .premium-vehicle-img-wrapper {
        width: 100%;
        height: 240px;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        padding: 0;
    }
    .premium-vehicle-body {
        width: 100%;
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .premium-fleet-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.premium-fleet-guarantees {
    background: #ffffff;
    border: 1.5px solid rgba(212, 175, 55, 0.22);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(184, 150, 87, 0.04);
}

.guarantee-card {
    text-align: center;
    padding: 10px 15px;
}

.guarantee-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(253, 80, 86, 0.04);
    border: 1.5px solid rgba(253, 80, 86, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fd5056;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.guarantee-card:hover .guarantee-icon-wrapper {
    background: #fd5056;
    color: #ffffff;
    border-color: #fd5056;
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 8px 22px rgba(253, 80, 86, 0.3);
}

.guarantee-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.guarantee-desc {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 0;
}

.premium-sticky-tabs {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 999;
    width: 90%;
    max-width: 580px;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.premium-sticky-tabs.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.sticky-tabs-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.58) 100%);
    backdrop-filter: blur(25px) saturate(210%);
    -webkit-backdrop-filter: blur(25px) saturate(210%);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 40px;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16), 
                0 4px 12px rgba(0, 0, 0, 0.06),
                inset 0 2px 3px rgba(255, 255, 255, 0.9),
                inset 0 -1.5px 2px rgba(0, 0, 0, 0.04);
}

.sticky-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2c2c2c;
    text-decoration: none !important;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex: 1;
    text-align: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

.sticky-tab-item i {
    font-size: 1.15rem;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #3d3d3d;
}

.sticky-tab-item .tab-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.sticky-tab-item:hover {
    color: #8c6b23;
}

.sticky-tab-item:hover i {
    transform: translateY(-2px);
    color: #8c6b23;
}

.sticky-tab-item.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.12) 100%);
    color: #8c6b23;
}

.sticky-tab-item.active i {
    color: #8c6b23;
    transform: scale(1.1);
}

.sticky-tab-item.active .tab-label {
    color: #614812;
    font-weight: 800;
}

.sticky-tab-item::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 4px;
    height: 4px;
    background-color: var(--color-gold, #d4af37);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.sticky-tab-item.active::after {
    transform: translateX(-50%) scale(1);
}

@media (max-width: 575px) {
    .premium-sticky-tabs {
        bottom: 12px;
        width: 94%;
    }
    .sticky-tabs-wrapper {
        padding: 5px 8px;
        border-radius: 30px;
    }
    .sticky-tab-item {
        padding: 6px 4px;
        gap: 2px;
    }
    .sticky-tab-item i {
        font-size: 1rem;
    }
    .sticky-tab-item .tab-label {
        font-size: 0.65rem;
        letter-spacing: 0;
    }
}

.gold-gradient-frame {
    background: linear-gradient(135deg, #d4af37 0%, #fff6d1 35%, #c59f3f 70%, #aa771c 100%);
    padding: 4px;
    border-radius: 19px;
    box-shadow: 0 12px 30px rgba(184, 150, 87, 0.22);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    overflow: hidden;
    display: block;
    width: 100%;
}

.gold-gradient-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(184, 150, 87, 0.38);
}

.gold-gradient-frame img.gallery-img {
    margin-top: 0 !important;
    border-radius: 15px !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: none !important;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gold-gradient-frame:hover img.gallery-img {
    transform: scale(1.05);
}

.logistics-panel {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 15px 45px rgba(184, 150, 87, 0.08);
    position: relative;
    overflow: hidden;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f3e5ab);
    border-radius: 5px;
}

.logistics-card {
    background: #fffdf9;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.logistics-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: var(--color-gold, #d4af37);
    box-shadow: 0 12px 30px rgba(184, 150, 87, 0.12);
}

.logistics-icon-box {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #fff9ed 0%, #fff1d6 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold, #d4af37);
    font-size: 1.45rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logistics-card:hover .logistics-icon-box {
    background: linear-gradient(135deg, var(--color-gold, #d4af37) 0%, #ffd700 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.logistics-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logistics-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-main, #2c2c2c);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.logistics-card:hover .logistics-card-title {
    color: #8c6b23;
}

.logistics-card-text {
    font-size: 0.9rem;
    color: var(--color-text-light, #666666);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .logistics-panel {
        padding: 35px 20px;
        border-radius: 20px;
    }
    
    .logistics-card {
        padding: 20px;
        gap: 15px;
    }
    
    .logistics-icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

:root {
    --luxury-red: #fd5056;
    --luxury-red-dark: #d63d42;
    --luxury-red-light: #fff5f5;
    --luxury-gold: #b89657;
    --luxury-gold-light: #f7eed8;
}

.luxury-experience-section {
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 1) 0%, rgba(254, 250, 242, 0.8) 90%),
                url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill='%23fd5056' fill-opacity='0.01' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.luxury-bg-mandala {
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -150px;
    right: -150px;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23fd5056' stroke-width='0.5' fill='none'/%3E%3Ccircle cx='50' cy='50' r='30' stroke='%23b89657' stroke-width='0.5' fill='none'/%3E%3Ccircle cx='50' cy='50' r='20' stroke='%23fd5056' stroke-width='0.5' fill='none'/%3E%3Cpath d='M 50,10 L 50,90 M 10,50 L 90,50 M 21.7,21.7 L 78.3,78.3 M 21.7,78.3 L 78.3,21.7' stroke='%23b89657' stroke-width='0.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    animation: rotateSlowly 120s linear infinite;
}

@keyframes rotateSlowly {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.luxury-floating-om {
    position: absolute;
    font-family: 'Outfit', 'Poppins', 'Rubik', sans-serif;
    font-size: clamp(8rem, 15vw, 15rem);
    font-weight: 300;
    color: rgba(179, 0, 0, 0.03);
    top: 50px;
    right: 5%;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    text-shadow: 0 0 40px rgba(179, 0, 0, 0.02);
}

.luxury-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--luxury-red);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.luxury-eyebrow::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--luxury-red), transparent);
}

.luxury-title {
    font-family: 'Outfit', 'Poppins', 'Rubik', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 400;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
    font-style: italic;
}

.luxury-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--luxury-gold);
    font-family: 'Outfit', 'Poppins', 'Rubik', sans-serif;
}

.luxury-separator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    width: 100%;
}

.luxury-separator-line {
    height: 1.5px;
    background: linear-gradient(90deg, var(--luxury-red) 0%, var(--luxury-gold) 70%, transparent 100%);
    width: 80px;
}

.luxury-separator-diamond {
    color: var(--luxury-red);
    font-size: 0.5rem;
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--luxury-red);
    transform: rotate(45deg);
}

.luxury-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.75;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.luxury-lead strong {
    font-weight: 600;
    color: #111111;
}

.luxury-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

/* Philosophy Quote styling */
.luxury-quote-block {
    position: relative;
    border-left: 3px solid var(--luxury-red);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.luxury-quote-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 0.4rem;
}

.luxury-quote-author {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--luxury-gold);
}

/* Overlapping Asymmetric Collage Layout */
.luxury-collage-container {
    position: relative;
    width: 100%;
    height: 540px;
    margin-top: 15px;
}

.luxury-collage-bg-glow {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(179, 0, 0, 0.04) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.luxury-collage-frame {
    position: absolute;
    border: 1px solid rgba(179, 0, 0, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 20px 45px rgba(179, 0, 0, 0.03);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.luxury-collage-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Positions of Collage Frames */
.luxury-collage-frame.frame-1 {
    width: 72%;
    height: 310px;
    top: 0;
    left: 0;
    z-index: 2;
}

.luxury-collage-frame.frame-2 {
    width: 46%;
    height: 340px;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.luxury-collage-frame.frame-3 {
    width: 40%;
    height: 190px;
    bottom: 25px;
    left: 4%;
    z-index: 4;
}

/* Frame Hover States */
.luxury-collage-frame:hover {
    transform: translateY(-8px) scale(1.025);
    z-index: 5;
    box-shadow: 0 35px 70px rgba(179, 0, 0, 0.12);
    border-color: rgba(179, 0, 0, 0.35);
}

.luxury-collage-frame:hover img {
    transform: scale(1.07);
}

/* Glassmorphism Label inside third collage image */
.luxury-collage-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(179, 0, 0, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--luxury-red);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(179, 0, 0, 0.05);
    z-index: 10;
}

/* 4 Pillars Card Grid styling */
.luxury-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2.5rem;
}

.luxury-pillar-card {
    background: #ffffff;
    border: 1px solid rgba(179, 0, 0, 0.08);
    border-top: 3px solid var(--luxury-red);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(179, 0, 0, 0.02);
    z-index: 1;
}

.luxury-pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(254, 250, 242, 0.4) 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.luxury-pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--luxury-gold);
    box-shadow: 0 20px 45px rgba(179, 0, 0, 0.08);
}

.luxury-pillar-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.luxury-pillar-icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--luxury-red) 0%, var(--luxury-red-dark) 100%);
    color: #ffffff;
    border: 2px solid var(--luxury-gold-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(179, 0, 0, 0.15);
}

.luxury-pillar-card:hover .luxury-pillar-icon-box {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 6px 15px rgba(179, 0, 0, 0.35);
}

.luxury-pillar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0;
    transition: color 0.3s ease;
}

.luxury-pillar-card:hover .luxury-pillar-title {
    color: var(--luxury-red);
}

.luxury-pillar-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2c2c2c;
    margin: 0;
    flex-grow: 1;
}

.luxury-pillar-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.luxury-pillar-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--luxury-red);
    background: var(--luxury-red-light);
    border: 1px solid rgba(179, 0, 0, 0.12);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.luxury-pillar-card:hover .luxury-pillar-tag {
    background: var(--luxury-red);
    color: #ffffff;
    border-color: transparent;
}

/* Responsiveness overrides for Luxury Section */
@media (max-width: 1199px) {
    .luxury-collage-container {
        height: 480px;
    }
    .luxury-collage-frame.frame-1 { height: 270px; }
    .luxury-collage-frame.frame-2 { height: 300px; }
    .luxury-collage-frame.frame-3 { height: 165px; }
}

@media (max-width: 991px) {
    .luxury-experience-section {
        padding: 30px 0 45px;
    }
    
    .luxury-collage-container {
        height: 400px;
        margin-bottom: 25px;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .luxury-collage-frame.frame-1 { height: 230px; }
    .luxury-collage-frame.frame-2 { height: 250px; }
    .luxury-collage-frame.frame-3 { height: 130px; }
    
    .luxury-title {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .luxury-eyebrow {
        justify-content: center;
        width: 100%;
        margin-bottom: 0.8rem;
    }
    
    .luxury-eyebrow::after {
        display: none;
    }
    
    .luxury-separator {
        justify-content: center;
        margin-bottom: 1.2rem;
    }
    
    .luxury-lead, .luxury-desc, .luxury-quote-block {
        text-align: center;
    }
    
    .luxury-lead {
        margin-bottom: 0.8rem;
    }
    
    .luxury-desc {
        margin-bottom: 1.2rem;
    }
    
    .luxury-quote-block {
        border-left: none;
        border-top: 1.5px solid var(--luxury-red);
        border-bottom: 1.5px solid var(--luxury-red);
        padding: 1.2rem 0;
        margin: 1.2rem auto;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .luxury-experience-section {
        padding: 25px 0 35px;
    }

    .luxury-pillars-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 1.8rem;
    }
    
    .luxury-collage-container {
        height: auto !important;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .luxury-collage-frame {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        box-shadow: 0 10px 25px rgba(179, 0, 0, 0.03) !important;
    }
    
    .luxury-collage-frame.frame-1 {
        width: calc(50% - 5px) !important;
        height: 150px !important;
        order: 1;
    }
    
    .luxury-collage-frame.frame-2 {
        width: calc(50% - 5px) !important;
        height: 150px !important;
        order: 2;
    }
    
    .luxury-collage-frame.frame-3 {
        width: 100% !important;
        height: 200px !important;
        order: 3;
    }
    
    .luxury-collage-tag {
        padding: 6px 14px;
        font-size: 0.75rem;
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .luxury-experience-section {
        padding: 20px 0 30px;
    }

    .luxury-collage-container {
        gap: 8px;
    }
    
    .luxury-collage-frame.frame-1 {
        width: calc(50% - 4px) !important;
        height: 120px !important;
    }
    
    .luxury-collage-frame.frame-2 {
        width: calc(50% - 4px) !important;
        height: 120px !important;
    }
    
    .luxury-collage-frame.frame-3 {
        width: 100% !important;
        height: 160px !important;
    }
    
    .luxury-collage-tag {
        padding: 5px 12px;
        font-size: 0.7rem;
        bottom: 10px;
        left: 10px;
    }
}

.chaukori-detour-section {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.1) 100%),
                url('https://nagarjunatravels.com/images/packages/khaliya-top-zero-point-summit-trek-munsiyari-684a6db141162.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 70px 0;
    position: relative;
    color: #ffffff;
}

.chaukori-content {
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, #fd5056, #d4af37) 1 100%;
    padding-left: 30px;
    position: relative;
}

.chaukori-badge {
    display: inline-block;
    background-color: #fd5056;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(253, 80, 86, 0.3);
}

.chaukori-title {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.chaukori-title em {
    font-style: italic;
    font-weight: 500;
    color: #d4af37;
}

.chaukori-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.chaukori-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 900px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Horizontal Highlights Bar */
.chaukori-highlights-bar {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-top: 25px !important;
}

.chaukori-hl-item {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    transition: all 0.3s ease !important;
}

.chaukori-hl-item span {
    display: inline-block !important;
    width: auto !important;
}

.chaukori-hl-item:hover {
    background: #fd5056 !important;
    border-color: #fd5056 !important;
    transform: translateY(-2px) !important;
}

.chaukori-hl-icon {
    font-size: 1.1rem !important;
    color: #fd5056 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.3s ease !important;
}

.chaukori-hl-item:hover .chaukori-hl-icon {
    color: #ffffff !important;
}

.chaukori-hl-text {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Responsive Overrides for Chaukori */
@media (max-width: 991px) {
    .chaukori-detour-section {
        padding: 60px 0;
    }
    .chaukori-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .chaukori-detour-section {
        background-attachment: scroll;
        padding: 50px 0;
    }
    .chaukori-content {
        padding-left: 20px;
    }
    .chaukori-title {
        font-size: 2rem;
    }
    .chaukori-lead {
        font-size: 1.1rem;
    }
    .chaukori-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .chaukori-highlights-bar {
        gap: 12px !important;
    }
    .chaukori-hl-item {
        padding: 8px 16px !important;
    }
    .chaukori-hl-text {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .chaukori-highlights-bar {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }
    .chaukori-hl-item {
        width: 100% !important;
        justify-content: flex-start !important;
    }
}

/* Itinerary Heading & Separator Design */
.itinerary-section-title {
    font-family: 'Outfit', 'Poppins', 'Rubik', sans-serif !important;
    color: #121212 !important;
    font-weight: 800 !important;
    margin-bottom: 5px !important;
    line-height: 1.25 !important;
}
.itinerary-red-accent {
    color: #fd5056 !important;
}
.itinerary-separator {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    margin: 15px auto 15px !important;
    width: 100% !important;
}
.itinerary-separator-line {
    height: 2px !important;
    background: linear-gradient(to right, transparent, #fd5056) !important;
    width: 80px !important;
}
.itinerary-separator-line.right {
    background: linear-gradient(to left, transparent, #fd5056) !important;
}
.itinerary-separator-icon {
    color: #fd5056 !important;
    font-size: 1.2rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: pulseSep 2s infinite alternate !important;
}
@keyframes pulseSep {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
@media (max-width: 767px) {
    .itinerary-section-title {
        font-size: 2rem !important;
    }
    .itinerary-separator-line {
        width: 50px !important;
    }
}

/* Premium Journey & Day Badges */
.premium-journey-badge {
    background: rgba(253, 80, 86, 0.08) !important;
    color: #fd5056 !important;
    border: 1px solid rgba(253, 80, 86, 0.3) !important;
    font-weight: 750 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    line-height: 1.2 !important;
    transition: all 0.3s ease !important;
}
.premium-journey-badge:hover {
    background: #fd5056 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.3) !important;
    transform: translateY(-2px) !important;
    border-color: #fd5056 !important;
}
.premium-day-badge {
    background: rgba(253, 80, 86, 0.08) !important;
    color: #fd5056 !important;
    border: 1px solid rgba(253, 80, 86, 0.3) !important;
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif !important;
    padding: 5px 15px !important;
    border-radius: 10px !important;
    display: inline-block !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease !important;
}
.premium-day-badge:hover {
    background: #fd5056 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    border-color: #fd5056 !important;
}

/* Luxury Itinerary Card Styles */
.itinerary-card {
    background: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.12) !important;
    border-left: 5px solid #fd5056 !important;
    border-radius: 20px !important;
    padding: 35px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 10px 30px rgba(184, 150, 87, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.itinerary-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, rgba(253, 80, 86, 0.02) 0%, transparent 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.itinerary-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px rgba(184, 150, 87, 0.08) !important;
    border-color: rgba(253, 80, 86, 0.2) !important;
}

.itinerary-card:hover::before {
    opacity: 1 !important;
}

/* Accent style for the special detour day (Day 5) */
.itinerary-card.special-detour {
    border-left: 5px solid #fac61e !important;
    background: #fffdf9 !important;
}

.itinerary-card.special-detour::before {
    background: linear-gradient(90deg, rgba(250, 198, 30, 0.03) 0%, transparent 100%) !important;
}

/* Day Badges uniform premium design */
.itinerary-card .day-badge {
    background: rgba(253, 80, 86, 0.08) !important;
    color: #fd5056 !important;
    border: 1px solid rgba(253, 80, 86, 0.25) !important;
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 5px 14px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
}

.itinerary-card:hover .day-badge {
    background: #fd5056 !important;
    color: #ffffff !important;
    border-color: #fd5056 !important;
}

.itinerary-card.special-detour .day-badge {
    background: rgba(250, 198, 30, 0.12) !important;
    color: #b8860b !important;
    border: 1px solid rgba(250, 198, 30, 0.35) !important;
}

.itinerary-card.special-detour:hover .day-badge {
    background: #fac61e !important;
    color: #000000 !important;
    border-color: #fac61e !important;
}

/* Title & Text styling inside cards */
.itinerary-card h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
    transition: color 0.3s ease !important;
    position: relative !important;
    z-index: 2 !important;
}

.itinerary-card:hover h4 {
    color: #fd5056 !important;
}

.itinerary-card.special-detour:hover h4 {
    color: #b8860b !important;
}

/* Subtitle metadata with icon */
.itinerary-meta-sub {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.85rem !important;
    color: #666666 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 15px !important;
    font-weight: 500 !important;
    position: relative !important;
    z-index: 2 !important;
}

.itinerary-meta-sub i {
    color: #fd5056 !important;
    font-size: 0.95rem !important;
}

.itinerary-card.special-detour .itinerary-meta-sub i {
    color: #fac61e !important;
}

/* Description paragraph */
.itinerary-card p.text-muted {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    color: #333333 !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Bottom footer row details */
.itinerary-card-footer {
    margin-top: 20px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(212, 175, 55, 0.1) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    position: relative !important;
    z-index: 2 !important;
}

.itinerary-footer-item {
    font-size: 0.85rem !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    background: #fcfbf7 !important;
    border: 1px solid rgba(212, 175, 55, 0.08) !important;
    transition: all 0.3s ease !important;
}

.itinerary-footer-item.inclusion {
    color: #2e7d32 !important;
    background: #e8f5e9 !important;
    border: 1px solid rgba(46, 125, 50, 0.15) !important;
}

.itinerary-footer-item.accommodation {
    color: #614812 !important;
    background: #fffdf9 !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.itinerary-card:hover .itinerary-footer-item {
    transform: translateY(-1px) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   ELITE ACCOMMODATIONS – 3-CARD CAROUSEL (Light Theme)
   ═══════════════════════════════════════════════════════════════════ */

.elite-carousel-section {
    position: relative;
    background: var(--bg-cream, #fffdf9);
    padding: 40px 0 35px;
    overflow: hidden;
}

/* ── Header ── */
.elite-carousel-header {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

.elite-carousel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--premium-gold, #d4af37);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.elite-carousel-title {
    color: var(--color-text-main, #1a1a2e);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.elite-carousel-title em {
    font-style: italic;
    color: #c0392b;
}

.elite-carousel-subtitle {
    color: var(--color-text-light, #666);
    font-size: 1.05rem;
    font-weight: 400;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Viewport & Track ── */
.elite-carousel-viewport {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.elite-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ── Individual Slide (Card) ── */
.elite-slide {
    min-width: calc((100% - 48px) / 3);
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s ease;
    cursor: pointer;
}

.elite-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.elite-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.3) 35%,
        rgba(0, 0, 0, 0.02) 65%,
        rgba(0, 0, 0, 0.08) 100%);
    z-index: 1;
    border-radius: 20px;
}

.elite-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    z-index: 2;
}

.elite-slide-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--premium-gold-light, #f3e5ab);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.elite-slide-location i {
    color: var(--premium-gold, #d4af37);
    font-size: 0.65rem;
}

.elite-slide-name {
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.3px;
    line-height: 1.15;
}

.elite-slide-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.elite-slide-amenities span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.elite-slide-amenities span:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.45);
    color: var(--premium-gold-light, #f3e5ab);
}

.elite-slide-amenities span i {
    color: var(--premium-gold, #d4af37);
    font-size: 0.72rem;
}

/* ── Navigation Arrows ── */
.elite-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--color-text-main, #1a1a2e);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.elite-arrow-prev { left: 4px; }
.elite-arrow-next { right: 4px; }

.elite-carousel-arrow:hover {
    background: var(--premium-gold, #d4af37);
    border-color: var(--premium-gold, #d4af37);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* ── Dot Indicators ── */
.elite-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
    position: relative;
    z-index: 5;
}

.elite-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0;
}

.elite-carousel-dots .dot.active {
    background: var(--premium-gold, #d4af37);
    border-color: var(--premium-gold, #d4af37);
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.35);
}

.elite-carousel-dots .dot:hover:not(.active) {
    background: rgba(0, 0, 0, 0.25);
}

/* ── Counter ── */
.elite-carousel-counter {
    text-align: center;
    margin-top: 18px;
    font-family: 'Outfit', sans-serif;
    color: rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    position: relative;
    z-index: 5;
}

.elite-carousel-counter #eliteCurrentSlide {
    color: var(--premium-gold, #d4af37);
    font-size: 1.15rem;
    font-weight: 800;
}

.elite-counter-sep {
    margin: 0 4px;
    opacity: 0.5;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .elite-carousel-viewport {
        padding: 0 50px;
    }
    .elite-slide {
        min-width: calc((100% - 24px) / 2);
        height: 400px;
    }
}

@media (max-width: 767px) {
    .elite-carousel-section {
        padding: 30px 0 25px;
    }
    .elite-carousel-header {
        margin-bottom: 20px;
    }
    .elite-carousel-viewport {
        padding: 0 40px;
    }
    .elite-slide {
        min-width: 100%;
        height: 380px;
    }
    .elite-slide-name {
        font-size: 1.3rem;
    }
    .elite-carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    .elite-arrow-prev { left: 2px; }
    .elite-arrow-next { right: 2px; }
    .elite-slide-amenities span {
        font-size: 0.68rem;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .elite-carousel-viewport {
        padding: 0 35px;
    }
    .elite-slide {
        height: 340px;
    }
    .elite-slide-content {
        padding: 22px 18px;
    }
    .elite-slide-name {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .elite-carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM PAYMENT & BOOKING SECTION
   ═══════════════════════════════════════════════════════════════════ */

.premium-bank-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(184, 150, 87, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.premium-bank-card.bandhan-bank-style {
    border-left: 5px solid #0054a6; /* Bandhan Blue */
}

.premium-bank-card.axis-bank-style {
    border-left: 5px solid #81003e; /* Axis Maroon */
}

.premium-bank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(184, 150, 87, 0.08);
}

.premium-bank-card.bandhan-bank-style:hover {
    border-color: rgba(0, 84, 166, 0.4);
    box-shadow: 0 20px 45px rgba(0, 84, 166, 0.08);
}

.premium-bank-card.axis-bank-style:hover {
    border-color: rgba(129, 0, 62, 0.4);
    box-shadow: 0 20px 45px rgba(129, 0, 62, 0.08);
}

.bank-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.bank-logo-wrapper {
    height: 45px;
    display: flex;
    align-items: center;
}

.bank-logo-img {
    max-height: 100%;
    max-width: 160px;
    object-fit: contain;
}

.bank-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 50px;
}

.bandhan-bank-style .bank-badge {
    background: rgba(0, 84, 166, 0.08);
    color: #0054a6;
    border: 1px solid rgba(0, 84, 166, 0.2);
}

.axis-bank-style .bank-badge {
    background: rgba(129, 0, 62, 0.08);
    color: #81003e;
    border: 1px solid rgba(129, 0, 62, 0.2);
}

.bank-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bank-detail-item {
    display: flex;
    align-items: center;
    background: #fdfbf7;
    border: 1px solid rgba(212, 175, 55, 0.06);
    border-radius: 14px;
    padding: 12px 18px;
    transition: all 0.3s ease;
    position: relative;
}

.premium-bank-card:hover .bank-detail-item {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.15);
}

.detail-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fd5056;
    font-size: 0.85rem;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.premium-bank-card:hover .detail-icon {
    background: rgba(253, 80, 86, 0.05);
    border-color: rgba(253, 80, 86, 0.15);
}

.detail-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
}

.detail-extra {
    font-size: 0.72rem;
    font-weight: 550;
    color: #777777;
    margin-left: 5px;
    display: inline-block;
}

.detail-copy-btn {
    background: none;
    border: none;
    padding: 6px;
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-copy-btn:hover {
    color: #fd5056;
    background: rgba(253, 80, 86, 0.06);
}

.detail-copy-btn.copied {
    color: #2e7d32 !important;
    background: #e8f5e9 !important;
}

/* ── Screenshot Action Box ── */
.screenshot-action-box {
    margin-top: 45px;
    background: linear-gradient(135deg, #fffdf8 0%, #fffcf2 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-bottom: 3px solid #fd5056;
    border-radius: 20px;
    padding: 25px 40px;
    box-shadow: 0 10px 30px rgba(184, 150, 87, 0.03);
}

.screenshot-box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.screenshot-icon-circle {
    width: 55px;
    height: 55px;
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulseWhatsapp 2s infinite alternate;
}

@keyframes pulseWhatsapp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.2); }
    100% { transform: scale(1.08); box-shadow: 0 0 15px 5px rgba(46, 213, 115, 0.15); }
}

.screenshot-text-wrapper {
    flex-grow: 1;
}

.screenshot-text-wrapper h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #1a1a2e;
    font-size: 1.25rem;
    margin-bottom: 5px;
    margin-top: 0;
}

.screenshot-text-wrapper p {
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 0;
    line-height: 1.45;
}

.screenshot-action-button {
    flex-shrink: 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #2ed573;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 15px rgba(46, 213, 115, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #20bf6b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 213, 115, 0.45);
}

@media (max-width: 767px) {
    .screenshot-box-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .screenshot-icon-circle {
        margin: 0 auto;
    }
    .screenshot-action-button {
        width: 100%;
    }
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    .premium-bank-card {
        padding: 22px;
    }
}
