/* Extracted from packages.php */
/* Professional OTA Redesign Styles for Holiday Packages (inspired by EMT & MMT) */
:root {
    --gold: #C5A059;
    --gold-glow: rgba(197, 160, 89, 0.4);
    --dark-bg: #050a14;
    --card-bg: rgba(15, 24, 42, 0.85);
}

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* 1. Hero Banner with Auto-Scrolling Saved Destinations */
.emt-pkg-hero {
    position: relative;
    padding: 120px 20px 160px; /* Matches hotels.php */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-slides-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.hero-slide-bg.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%; /* Anchors the image near the top to prevent mountains/sky from being cut off */
    transform: scale(1.08);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide-bg.active .hero-slide-img {
    transform: scale(1.0);
}

.emt-pkg-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.85) 0%, rgba(5, 10, 20, 0.48) 50%, rgba(5, 10, 20, 0.92) 100%);
    pointer-events: none;
}

.emt-pkg-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
}

.luxury-accent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(5, 10, 20, 0.65);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50px;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.hero-slide-text {
    display: none;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide-text.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hero-dest-script-title {
    font-family: 'Great Vibes', 'Playfair Display', cursive, serif;
    font-size: clamp(3rem, 5vw, 4.2rem); /* Scaled down to fit sleek hero */
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.hero-dest-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    max-width: 800px;
    margin: 0 auto 36px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-slider-nav {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 15;
}

.hero-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slide-dot.active {
    width: 32px;
    border-radius: 20px;
    background: var(--gold, #c5a059);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.8);
}

.hero-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(5, 10, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    opacity: 0.75;
}

.hero-arrow-btn:hover {
    background: var(--gold, #c5a059);
    color: #050a14;
    border-color: var(--gold, #c5a059);
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}
.hero-arrow-left { left: 25px; }
.hero-arrow-right { right: 25px; }

@media (max-width: 768px) {
    .hero-arrow-btn { display: none; }
    .hero-slider-nav { bottom: 12px; }
    .hero-dest-script-title { font-size: 3.2rem; }
}

/* 2. Interactive Multi-Input Search Dock (Dark Glass Style) */
.search-bar-wrapper { width: 100%; margin-top: -60px; background: linear-gradient(to bottom, transparent 60px, #0d1a29 60px); position: relative; z-index: 1000; }
.search-bar-container { background: rgba(13, 26, 41, 0.85); backdrop-filter: blur(15px); padding: 35px 40px 45px; display: flex; justify-content: center; position: relative; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 15px 40px rgba(0,0,0,0.4); max-width: 1200px; margin-left: auto; margin-right: auto; border-radius: 12px; margin-bottom: 0px; }
.search-bar { display: flex; gap: 15px; background: transparent; width: 100%; align-items: flex-end; position: static; }
.search-input-group { flex: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; position: relative; }
.search-input-group .group-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; display: block; width: 100%; }
.input-with-icon { display: flex; align-items: center; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0 15px; width: 100%; transition: border-color 0.2s; box-sizing: border-box; }
.input-with-icon:hover, .input-with-icon:focus-within { border-color: rgba(255,255,255,0.3); }
.input-with-icon .material-symbols-outlined { color: rgba(255,255,255,0.6); font-size: 22px; margin-right: 10px; flex-shrink: 0; }
.search-input-group input, .search-input-group select { border: none; outline: none; width: 100%; font-weight: 600; color: #fff !important; background: transparent; cursor: pointer; font-size: 1.1rem; padding: 12px 0; -webkit-text-fill-color: #fff; box-sizing: border-box; appearance: none; -moz-appearance: none; -webkit-appearance: none; }
.search-input-group select { padding-right: 30px; }
.search-input-group select option { color: #000; background: #fff; }
.search-input-group input::placeholder { color: rgba(255,255,255,0.8) !important; -webkit-text-fill-color: rgba(255,255,255,0.8); font-weight: 500; }
.search-input-group input:-webkit-autofill,
.search-input-group input:-webkit-autofill:hover, 
.search-input-group input:-webkit-autofill:focus, 
.search-input-group input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
}
.btn-search { 
    background: #008cff;
    color: #ffffff; 
    border: none; 
    border-radius: 40px; 
    padding: 14px 70px; 
    font-weight: 700; 
    font-size: 1.2rem; 
    cursor: pointer; 
    transition: 0.3s;
    position: absolute;
    bottom: -25px; 
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 20px rgba(0, 140, 255, 0.4);
    z-index: 1001;
}
.btn-search:hover { background: #0077d9; transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 25px rgba(0, 140, 255, 0.5); }


.search-input-control {
    background: transparent;
    border: none;
    outline: none;
    color: #111827;
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    width: 100%;
    padding: 0;
    cursor: pointer;
}

.search-input-control::placeholder {
    color: #6b7280;
    font-weight: 400;
}

.search-input-control option {
    background: #ffffff;
    color: #111827;
}

.btn-mmt-search {
    background: linear-gradient(135deg, #c5a059 0%, #d97706 100%);
    color: #ffffff;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-mmt-search:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.65);
    background: linear-gradient(135deg, #d1ad69 0%, #ea580c 100%);
}

/* 2.2. Signature Domestic Destinations Showcase (Bespoke Portrait Cards) */
.sanctuaries-section-wrap {
    background: #0d1a29;
    padding: 60px 20px 40px;
    position: relative;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
    overflow: hidden;
}
.sanctuaries-glass-container {
    max-width: 1300px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(13, 23, 40, 0.85) 0%, rgba(5, 11, 22, 0.95) 100%);
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 32px;
    padding: 42px 48px 32px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 45px rgba(197, 160, 89, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
}
.sanctuaries-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}
.sanctuaries-title-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sanctuaries-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sanctuaries-title .gold-icon-badge {
    color: var(--gold, #C5A059);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.5));
}
.sanctuaries-subtitle {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.sanctuaries-nav-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sanctuaries-btn-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sanctuaries-btn-nav:hover {
    background: var(--gold, #C5A059);
    color: #050a14;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}
.sanctuaries-track-wrapper {
    position: relative;
    margin: 0 -10px;
}
.sanctuaries-cards-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 10px 32px;
    margin: -10px 0 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
    will-change: scroll-position;
}
.sanctuaries-cards-track.active-drag {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}
.sanctuaries-cards-track.active-drag .sanctuary-portrait-card {
    transition: none !important;
    transform: translateZ(0) !important;
}
.sanctuaries-cards-track.active-drag .sanctuary-card-img {
    transition: none !important;
    transform: none !important;
}
.sanctuaries-cards-track::-webkit-scrollbar {
    display: none;
}
.sanctuary-portrait-card {
    flex: 0 0 185px;
    height: 270px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    background: #091322;
    cursor: pointer;
    scroll-snap-align: start;
    transform: translateZ(0);
}
.sanctuary-portrait-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.8), 0 0 28px rgba(197, 160, 89, 0.45);
    border-color: var(--gold, #C5A059);
}
.sanctuary-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.sanctuary-portrait-card:hover .sanctuary-card-img {
    transform: scale(1.12);
}
.sanctuary-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(5, 10, 20, 0.96) 20%, rgba(5, 10, 20, 0.7) 60%, rgba(5, 10, 20, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 16px 18px;
    z-index: 2;
}
.sanctuary-dest-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    transition: color 0.25s ease;
}
.sanctuary-portrait-card:hover .sanctuary-dest-name {
    color: var(--gold, #C5A059);
}
.sanctuary-dest-explore {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold, #C5A059);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sanctuary-portrait-card:hover .sanctuary-dest-explore {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .sanctuaries-glass-container {
        padding: 28px 20px 20px;
        border-radius: 24px;
    }
    .sanctuaries-title {
        font-size: 1.8rem;
    }
    .sanctuary-portrait-card {
        flex: 0 0 155px;
        height: 235px;
    }
}

/* 2.5. Top Trending Tours Showcase (EaseMyTrip + Luxury Hybrid) */
.trending-tours-section {
    background: #050b14;
    padding: 65px 20px 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.trending-header-bar {
    max-width: 1280px;
    margin: 0 auto 38px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 22px;
}

.trending-title-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trending-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.trending-subtitle {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-weight: 400;
}

.trending-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trending-pills-group {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trending-pill {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    padding: 9px 22px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trending-pill:hover {
    color: #ffffff;
}

.trending-pill.active {
    background: linear-gradient(135deg, #C5A059 0%, #D8B468 100%);
    color: #050a14;
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35);
}

.trending-track-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.trending-cards-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 25px 15px 40px;
    margin: -15px -15px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
    will-change: scroll-position;
}

.trending-cards-track.active-drag {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

.trending-cards-track.active-drag .trending-tour-card {
    transition: none !important;
    transform: translateZ(0) !important;
}

.trending-cards-track::-webkit-scrollbar {
    display: none;
}

.trending-tour-card {
    flex: 0 0 290px;
    height: 400px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    text-decoration: none;
    display: block;
    -webkit-user-drag: none;
    user-drag: none;
    scroll-snap-align: start;
    transform: translateZ(0);
}

.trending-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.75), 0 0 28px rgba(197, 160, 89, 0.35);
    border-color: var(--gold, #C5A059);
}

.trending-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.trending-tour-card:hover .trending-card-img {
    transform: scale(1.1);
}

.trending-top-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    pointer-events: none;
}

.badge-trending-hot {
    background: rgba(13, 22, 37, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.65);
    color: #fb923c;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 13px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-trending-type {
    background: rgba(255, 255, 255, 0.94);
    color: #050a14;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.trending-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75%;
    background: linear-gradient(to top, rgba(5, 10, 20, 0.96) 20%, rgba(5, 10, 20, 0.75) 55%, rgba(5, 10, 20, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px 22px;
    z-index: 2;
    transition: background 0.3s ease;
}

.trending-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.32rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 6px 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.trending-card-dest {
    font-size: 0.82rem;
    color: var(--gold, #C5A059);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trending-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 14px;
    margin-top: 4px;
}

.trending-price-group {
    display: flex;
    flex-direction: column;
}

.trending-price-lbl {
    font-size: 0.70rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.trending-price-val {
    font-size: 1.22rem;
    font-weight: 800;
    color: #ffffff;
}

.btn-trending-explore {
    background: var(--gold, #c5a059);
    color: #050a14;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s ease;
}

.trending-tour-card:hover .btn-trending-explore {
    background: #ffffff;
    transform: translateX(3px);
}

/* Exclusive Offers Showcase Styles */
.badge-offer-discount {
    background: rgba(16, 185, 129, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 13px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
}
.offer-pill {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    padding: 9px 22px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.offer-pill:hover {
    color: #ffffff;
}
.offer-pill.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
}
.btn-offer-claim {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0 14px;
    width: 120px;
    height: 36px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}
.trending-tour-card:hover .btn-offer-claim {
    background: #ffffff;
    color: #059669;
    transform: translateX(3px);
}
.offer-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.75), 0 0 28px rgba(16, 185, 129, 0.45) !important;
    border-color: #10b981 !important;
}

/* 3. Interactive Theme Discovery Photo Circle Carousel (EaseMyTrip & Pic 1 Style) */
.theme-circle-section {
    background: #050a14;
    padding: 50px 0 60px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    position: relative;
    overflow: hidden;
}

.theme-strip-heading {
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.theme-carousel-wrapper {
    position: relative;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 65px;
}

.theme-carousel-track {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    will-change: scroll-position;
}
.theme-carousel-track.active-drag {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}
.theme-carousel-track.active-drag .emt-theme-card {
    transition: none !important;
    transform: translateZ(0) !important;
}
.theme-carousel-track::-webkit-scrollbar {
    display: none;
}

.emt-theme-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    /* Exactly 5 cards per screen across the track, factoring in 4 gaps of 25px (100px total gap) */
    width: calc((100% - 100px) / 5);
    flex-shrink: 0;
    cursor: pointer !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    scroll-snap-align: start;
    transform: translateZ(0);
}

.emt-circle-photo {
    width: 185px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(197, 160, 89, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    background: #0d172a;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 auto 16px auto;
}

.emt-circle-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.emt-circle-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05) 40%, rgba(5, 10, 20, 0.6) 100%);
    border-radius: 50%;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.emt-circle-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 4px 0;
    text-align: center;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.emt-circle-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* Hover & Active states */
.emt-theme-card:hover {
    transform: translateY(-8px);
}
.emt-theme-card:hover .emt-circle-photo,
.emt-theme-card.active .emt-circle-photo {
    border-color: var(--gold);
    box-shadow: 0 14px 40px rgba(197, 160, 89, 0.5);
}
.emt-theme-card:hover .emt-circle-bg {
    transform: scale(1.12);
}
.emt-theme-card:hover .emt-circle-title,
.emt-theme-card.active .emt-circle-title {
    color: var(--gold);
    font-weight: 600;
}
.emt-theme-card:hover .emt-circle-sub,
.emt-theme-card.active .emt-circle-sub {
    color: #ffffff;
}

/* EaseMyTrip Style Navigation Arrows */
.emt-nav-btn {
    position: absolute;
    top: 105px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 24, 42, 0.95);
    border: 1.5px solid var(--gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(197, 160, 89, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.emt-nav-btn:hover {
    background: var(--gold);
    color: #050a14;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}
.emt-nav-prev {
    left: 8px;
}
.emt-nav-next {
    right: 8px;
}

@media (max-width: 1200px) {
    .emt-theme-card {
        width: calc((100% - 75px) / 4); /* 4 cards per screen */
    }
}
@media (max-width: 992px) {
    .emt-theme-card {
        width: calc((100% - 50px) / 3); /* 3 cards per screen */
    }
}
@media (max-width: 768px) {
    .theme-carousel-wrapper {
        padding: 0 45px;
    }
    .emt-theme-card {
        width: calc((100% - 25px) / 2); /* 2 cards per screen */
    }
    .emt-circle-photo {
        width: 140px;
    }
    .emt-circle-title {
        font-size: 1.15rem;
    }
    .emt-nav-btn {
        top: 85px;
        width: 38px;
        height: 38px;
    }
    .emt-nav-prev { left: 4px; }
    .emt-nav-next { right: 4px; }
}
@media (max-width: 480px) {
    .emt-theme-card {
        width: 100%;
    }
}

.all-collections-banner-wrap {
    text-align: center;
    margin-top: 45px;
    padding: 0 20px;
}

.btn-explore-all-tours {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    background: linear-gradient(145deg, rgba(15, 24, 42, 0.95), rgba(8, 15, 28, 0.95));
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 15px rgba(197, 160, 89, 0.15);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-explore-all-tours .icon-globe {
    color: var(--gold);
    font-size: 1.4rem !important;
    transition: transform 0.4s ease;
}

.btn-explore-all-tours .icon-arrow {
    color: var(--gold);
    font-size: 1.3rem !important;
    transition: transform 0.3s ease;
}

.btn-explore-all-tours:hover {
    background: var(--gold);
    color: #050a14;
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(197, 160, 89, 0.5);
}

.btn-explore-all-tours:hover .icon-globe,
.btn-explore-all-tours:hover .icon-arrow {
    color: #050a14;
}

.btn-explore-all-tours:hover .icon-globe {
    transform: rotate(35deg);
}

.btn-explore-all-tours:hover .icon-arrow {
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .btn-explore-all-tours {
        padding: 12px 24px;
        font-size: 0.88rem;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
}

/* 4. Navigation Toggle Pill & Breadcrumb */
.catalog-nav-bar {
    max-width: 1380px;
    margin: 25px auto 15px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.catalog-nav-bar a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

.catalog-nav-bar a:hover {
    opacity: 0.8;
}

.results-count-pill {
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.45);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.package-switcher-container {
    text-align: center;
    margin: 30px auto 45px;
}

.package-switcher-pill {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    padding: 6px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.package-switcher-tab {
    padding: 11px 32px;
    border-radius: 99px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.package-switcher-tab.active {
    background: var(--gold);
    color: #050a14;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.package-switcher-tab.inactive {
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
}

.package-switcher-tab.inactive:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

/* 5. Main Catalog Layout (Full-Width Expandable Showcase) */
.packages-catalog-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    align-items: start;
}

/* Floating Filter & Sorting Dock (Bottom-Left Symmetrical Pill) */
.floating-filter-dock {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13, 22, 38, 0.95);
    backdrop-filter: blur(16px);
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 11px 24px 11px 16px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 0 20px rgba(197, 160, 89, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.floating-filter-dock:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(145deg, rgba(20, 32, 55, 0.98), rgba(10, 18, 32, 0.98));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(197, 160, 89, 0.6);
}

.dock-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C5A059 0%, #D8B468 100%);
    color: #050a14;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dock-icon-circle .material-symbols-outlined {
    font-size: 1.25rem !important;
    font-weight: 700;
}

.dock-badge-counter {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.dock-badge-counter.active {
    background: var(--gold);
    color: #050a14;
    border-color: var(--gold);
}

/* Slide-Out Glassmorphic Filter Drawer & Backdrop */
.filter-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 15, 0.75);
    backdrop-filter: blur(6px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.filter-drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.filter-side-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 380px;
    max-width: 90vw;
    background: rgba(11, 18, 32, 0.98);
    border-right: 1px solid rgba(197, 160, 89, 0.4);
    box-shadow: 25px 0 60px rgba(0, 0, 0, 0.75);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.filter-side-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(7, 12, 22, 0.8);
}

.drawer-title-box {
    display: flex;
    flex-direction: column;
}

.drawer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.drawer-subtitle {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.05em;
}

.drawer-close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s;
}
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 2;
}

.card-badge-dark {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(5, 10, 20, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    z-index: 2;
}

.card-body-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-dest-label {
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.card-tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 16px;
    transition: color 0.25s;
}

.ota-package-card:hover .card-tour-title {
    color: var(--gold);
}

/* MMT Amenity Highlights Strip */
.card-amenities-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 18px;
}

.amenity-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amenity-item i {
    font-size: 1.15rem !important;
    color: var(--gold);
}

.card-footer-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-block .start-lbl {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}

.pricing-block .amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.pricing-block .orig-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    margin-right: 6px;
}

.pricing-block .per-pax {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.btn-card-explore {
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.5);
    color: var(--gold);
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.ota-package-card:hover .btn-card-explore {
    background: var(--gold);
    color: #050a14;
    border-color: var(--gold);
    transform: translateX(3px);
}

/* 7. Trust Guarantee Strip (Why Book With Us) */
.trust-guarantee-section {
    background: rgba(10, 16, 28, 0.95);
    border-top: 1px solid rgba(197, 160, 89, 0.25);
    padding: 70px 20px;
    margin-top: 90px;
}

.trust-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.trust-card {
    text-align: center;
    padding: 0 15px;
}

.trust-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: var(--gold);
    font-size: 2rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-icon-circle {
    transform: scale(1.1) rotate(6deg);
    background: rgba(197, 160, 89, 0.22);
}

.trust-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.trust-card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Empty State */
.catalog-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.catalog-empty-state svg {
    width: 54px;
    height: 54px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Responsive Overrides */
@media (max-width: 1050px) {
    .packages-catalog-layout {
        grid-template-columns: 1fr;
    }
    .filters-sidebar-panel {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }
}

@media (max-width: 850px) {
    .emt-pkg-hero {
        padding: 160px 15px 50px;
        min-height: auto;
    }
    .mmt-search-dock {
        flex-direction: column;
        border-radius: 26px;
        padding: 22px 20px;
        gap: 18px;
    }
    .search-dock-field {
        width: 100%;
    }
    .search-dock-divider {
        width: 100%;
        height: 1px;
    }
    .btn-mmt-search {
        width: 100%;
        justify-content: center;
    }
    .catalog-nav-bar {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .theme-circle-container {
        gap: 16px;
    }
    .theme-circle-btn {
        width: 78px;
    }
    .theme-circle-shell {
        width: 64px;
        height: 64px;
    }
}



/* ─── Fixed Header Alignments (Prevents Jumping & Vertical Stacking) ─── */
.sanctuaries-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    flex-wrap: nowrap !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 20px !important;
}

.sanctuaries-title-box {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.sanctuaries-controls {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-shrink: 0 !important;
}

.trending-header-bar {
    max-width: 1280px !important;
    margin: 0 auto 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    flex-wrap: nowrap !important;
}

.trending-title-group {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.trending-controls {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-shrink: 0 !important;
}

.sanctuaries-nav-arrows,
.trending-nav-arrows {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.sanctuaries-btn-nav {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(197, 160, 89, 0.4) !important;
    color: #ffffff !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.sanctuaries-btn-nav:hover {
    background: var(--gold, #C5A059) !important;
    color: #050a14 !important;
    transform: scale(1.08) !important;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4) !important;
}

.trending-pills-group--flush {
    margin-bottom: 0 !important;
}

.nav-arrow-icon { font-size: 1.6rem !important; }
.nav-arrow-lg { font-size: 1.8rem !important; }
.explore-arrow { font-size: 0.95rem !important; }
.dest-pin-icon { font-size: 1rem !important; }
.icon-fire { color: #fb923c !important; }
.icon-gift { color: #10b981 !important; }

/* ─── Complete Tour Inventory CTA Section ─── */
.cta-portfolio-section {
    padding: 5rem 1.5rem 6rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

.cta-portfolio-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    border-radius: 28px !important;
    padding: 4rem 2rem !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(16px) !important;
}

.cta-portfolio-glow {
    position: absolute !important;
    top: -50% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 600px !important;
    height: 300px !important;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%) !important;
    pointer-events: none !important;
}

.cta-portfolio-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 18px !important;
    background: rgba(197, 160, 89, 0.15) !important;
    border: 1px solid rgba(197, 160, 89, 0.4) !important;
    border-radius: 50px !important;
    color: var(--gold, #C5A059) !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 1.5rem !important;
}

.cta-portfolio-heading {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 1.2rem !important;
    font-family: 'Playfair Display', serif !important;
    line-height: 1.2 !important;
}

.gold-italic {
    color: var(--gold, #C5A059) !important;
    font-style: italic !important;
}

.cta-portfolio-desc {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1.05rem !important;
    max-width: 700px !important;
    margin: 0 auto 2.5rem !important;
    line-height: 1.6 !important;
}

.cta-portfolio-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px 36px !important;
    background: linear-gradient(135deg, #e5c158 0%, #b89130 100%) !important;
    color: #050a14 !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.cta-portfolio-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.6) !important;
}

/* --- Trending & Offers Navigation Arrow Layout Fix --- */
.trending-nav-arrows {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.trending-controls {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
}

/* --- Filter Hidden State --- */
.is-hidden {
    display: none !important;
}

/* --- Scroll-Snap Smooth Override for Programmatic Arrow Scrolling --- */
.sanctuaries-cards-track.is-scrolling,
.trending-cards-track.is-scrolling,
.theme-carousel-track.is-scrolling {
    scroll-snap-type: none !important;
    scroll-behavior: smooth !important;
}
