@font-face {
    font-family: 'Bunga Zivilia';
    src: url('bunga-zivilia-font/BungaZivilia-lgvDD.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --vn-emerald: #004d40;
    --vn-gold: #d4af37;
    --vn-orange: #e67e22;
    --vn-cream: #fdfaf6;
    --vn-dark: #1a1a1a;
}

/* Elite Typography */
h1,
h2,
h3,
.about-title {
    font-family: 'Playfair Display', serif !important;
}

body {
    background-color: var(--vn-cream);
    color: var(--vn-dark);
}

/* Elite Location Badge */
.location-badge-elite {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* margin-bottom: 2rem; */
    position: relative;
    /* padding-bottom: 10px; */
    padding-top: 1rem;
}

.loc-icon-pulse {
    width: 20px;
    height: 20px;
    background: var(--vn-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    position: relative;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* .loc-icon-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--vn-gold);
    animation: locPulse 2s infinite;
} */

@keyframes locPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.location-text-elite {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.loc-divider-gold {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--vn-gold);
    border-radius: 2px;
}

/* Savings Badge Elite */
.savings-badge-elite {
    background: linear-gradient(135deg, var(--vn-gold), #b8860b);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.savings-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.savings-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Hero Title Tweaks */
.hero-title-elegant .outline-text {
    color: transparent !important;
    -webkit-text-stroke: 2px #fff;
    text-shadow: none !important;
}

/* Elite Header */
.main-header {
    background-color: #051915 !important;
}

.btn-primary,
.btn-solid {
    background-color: #d4af37 !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 77, 64, 0.3);
    color: #ffffff;
}

.btn-primary:hover,
.btn-solid:hover {
    background-color: #d4af37 !important;
    transform: translateY(-3px);
}

/* Bonus Refund Section */
.bonus-refund-card {
    background: #fff;
    border-left: 5px solid var(--vn-gold);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bonus-icon {
    font-size: 3rem;
    background: #fdf3e5;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bonus-text h3 {
    color: var(--vn-gold);
    margin-bottom: 0.5rem;
}

/* Inclusions Grid Elite */
.inclusions-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.inclusion-card-elite {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: visible;
    border-top: 3px solid var(--vn-gold);
}

.inclusion-card-elite:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--vn-gold);
}

.inclusion-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #fdf3e5;
    color: var(--vn-emerald);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.inclusion-card-elite:hover .inclusion-icon-wrapper {
    background: #f9ddb6;
    color: #fff;
}

.inclusion-card-elite h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--vn-dark);
}

.inclusion-card-elite p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Hero Title V4 - Reference Match */
.hero-title-container-v4 {
    position: relative;
    margin-bottom: 1rem;
    /* padding-top: 2rem; */
    text-align: left;
}

.days-badge-v4 {
    position: absolute;
    top: -5px;
    left: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title-v4 {
    font-family: 'Playfair Display', serif !important;
    font-size: 8.5rem;
    color: #eee;
    line-height: 0.9;
    margin: 0;
    font-weight: 700;
    letter-spacing: 5px;
    /* text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; */
    text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.9);
}

.hero-pre-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: -5px;
    position: relative;
    z-index: 2;
}

.hero-subtitle-v4 {
    /* padding: 15px; */
    font-family: 'Bunga Zivilia', cursive !important;
    font-size: 2rem;
    color: #b11b1b;
    margin: 0;
    position: absolute;
    bottom: -40px;
    right: 0px;
    white-space: nowrap;
    font-weight: 600;
    /* text-shadow: 1px 0px 1px rgba(255, 255, 255, 0.8); */
    z-index: 2;
    /* transform: rotate(-3deg); */
    /* float: right; */
    /* background: #0d1b2d; */
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

/* Hero Offer Info V4 */
.hero-offer-info-v4 {
    /* margin-top: 1.8rem; */
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 1s ease-out forwards;
}

.price-savings-group {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border: 1px solid rgba(212, 175, 55, 0.3); */
    padding: 0 1rem;
    max-width: 450px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.1);
    animation: fadeInUp 1.2s ease-out forwards;
}

/* Glowing Border Effect */
/* .price-savings-group::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--vn-gold);
    box-shadow: 0 0 4px var(--vn-gold);
    z-index: 2;
}

.price-savings-group::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    width: 225px;
} */

/* .price-savings-group::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
} */

.card-header-v4 {
    /* text-align: center; */
    position: relative;
}

.days-badge-v4 {
    position: static;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.8rem;
}

/* Premium Stay Split Badge */
.stay-split-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 12px;
    padding-top: 5px;
}

.stay-split-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.stay-split-nights {
    font-family: 'Outfit', sans-serif;
    color: var(--vn-gold);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stay-split-loc {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.stay-split-divider {
    color: rgba(212, 175, 55, 0.5);
    font-size: 1.5rem;
    font-weight: 300;
}

.header-divider-v4 {
    width: 60px;
    height: 2px;
    background: var(--vn-gold);
    margin: 0 auto;
    box-shadow: 0 0 10px var(--vn-gold);
}

.price-content-v4 {
    text-align: center;
    padding: 5px 0;
}

.now-price {
    font-size: 4.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    display: block;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.price-details-v4 {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.per-couple {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}

.worth-strike {
    font-size: 0.6rem;
    /* text-decoration: line-through; */
    color: #ffffff85;
    letter-spacing: 1px;
}

.card-footer-v4 {
    /* border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem; */
    margin-top: 1rem;
}

.hero-features-v4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgb(0 0 0 / 0%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 10px;
    border-radius: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    border-top: none;
    border-right: none;
    position: relative;
}

/* Partial Top Border with Full Circle - Aligned to Curve */
.hero-features-v4::before {
    content: '';
    position: absolute;
    top: 3px;
    left: -1px;
    width: calc(30% + 8px);
    height: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-top-left-radius: 12px;
    background: radial-gradient(circle at calc(100% - 4px) 0px, #fff 3px, transparent 3.5px) no-repeat;
    background-size: 8px 8px;
    background-position: right top;
    pointer-events: none;
    z-index: 5;
    /* Move the circle up slightly to be centered on the 1px border */
    transform: translateY(-3px);
}

/* Partial Right Border from Bottom with Full Circle - Aligned to Curve */
.hero-features-v4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 3px;
    width: 20px;
    height: calc(40% + 8px);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom-right-radius: 12px;
    background: radial-gradient(circle at 100% 4px, #fff 3px, transparent 3.5px) no-repeat;
    background-size: 8px 8px;
    background-position: right top;
    pointer-events: none;
    z-index: 5;
    /* Move the circle right slightly to be centered on the 1px border */
    transform: translateX(3px);
}

.feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    gap: 8px;
}

.feat-item i {
    color: var(--vn-gold);
    font-size: 1.2rem;
    /* text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); */
}

.feat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.feat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
}

.savings-badge-v4 {
    background: var(--vn-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(2deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.save-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.save-val {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
}

}

.feat-item i {
    color: var(--vn-gold);
    font-size: 0.9rem;
}

.hero-btn-v4 {
    padding: 1.2rem 3rem !important;
    font-size: 1rem !important;
    letter-spacing: 2px !important;
    font-weight: 800 !important;
    width: fit-content;
}

.limited-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    font-style: italic;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Smudge Banner Effect */
.smudge-banner-container {
    position: relative;
    margin: 30px 0 10px 0;
    width: fit-content;
    z-index: 10;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.smudge-banner {
    position: relative;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 40px;
    letter-spacing: 2px;
    display: inline-block;
    z-index: 1;
}

.smudge-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0d1e36;
    /* Dark navy matching the reference */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 15' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 4 1 Q 50 -1 96 1 L 98 3 L 93 4 L 100 6 L 94 8 L 99 10 L 95 12 L 97 14 Q 50 16 4 14 L 2 12 L 6 10 L 0 8 L 5 6 L 1 4 L 6 3 Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 15' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 4 1 Q 50 -1 96 1 L 98 3 L 93 4 L 100 6 L 94 8 L 99 10 L 95 12 L 97 14 Q 50 16 4 14 L 2 12 L 6 10 L 0 8 L 5 6 L 1 4 L 6 3 Z' fill='black'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    z-index: -1;
}

/* Responsive V4 */
@media (max-width: 992px) {
    .hero-title-v4 {
        font-size: 6rem;
    }

    .days-badge-v4 {
        font-size: 1rem;
    }

    .smudge-banner {
        font-size: 1rem;
        padding: 10px 25px;
        letter-spacing: 1px;
    }

    .smudge-banner-container {
        margin: 20px 0 10px 0;
        margin-top: 16rem;
    }

    .stay-split-premium {
        gap: 10px;
    }

    .stay-split-nights {
        font-size: 1.1rem;
    }

    .stay-split-loc {
        font-size: 0.65rem;
    }

    .hero-pre-title {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 0;
    }

    .hero-subtitle-v4 {
        font-size: 16px;
        position: relative;
        bottom: 0;
        left: 0;
        text-align: right;
        display: block;
        margin-top: 5px;
        white-space: normal;
    }

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

    .bonus-refund-card {
        display: flex !important;
        flex-direction: column !important;
        padding: 1rem;
        gap: 1rem !important;
    }

    .bonus-icon {
        font-size: 2rem;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .hero-title-container-v4 {
        text-align: center;
    }

    .days-badge-v4 {
        position: relative;
        display: block;
        text-align: left;
        margin-bottom: 0.5rem;
    }

    .hero-title-v4 {
        font-size: 4.5rem;
        letter-spacing: -1px;
    }

    .price-savings-group {
        padding: 5px 5px;
        margin: 0 auto;
        max-width: 320px;
        background: none;
        backdrop-filter: none;
        box-shadow: none;
    }

    .now-price {
        font-size: 3rem;
    }

    .hero-offer-info-v4 {
        align-items: center;
        text-align: center;
        /* margin-top: 16rem; */
    }

    .hero-features-v4 {
        padding: 10px 5px;
        gap: 2px;
    }

    .feat-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }

    .feat-item i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .inclusions-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* Important Notes Elite Design */
.important-note-section {
    padding: 80px 0;
    background-color: var(--vn-cream);
    position: relative;
    z-index: 1;
}

.note-card-elite {
    background: #fff;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.note-card-elite::before {
    content: " \;
 position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--vn-gold);
}

.note-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 1.5rem;
}

.note-icon-elite {
    font-size: 1.8rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.note-title-elite {
    font-family: \Playfair Display\, serif !important;
    font-size: 2rem;
    color: var(--vn-dark);
    margin: 0;
    font-weight: 700;
}

.note-content-elite {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.note-item-elite {
    display: flex;
    align-items: center;
    gap: 15px;
}

.note-dot-elite {
    width: 10px;
    height: 10px;
    background: var(--vn-gold);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.note-item-elite p {
    font-family: \Outfit\, sans-serif;
    font-size: 1.15rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.note-divider-elite {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
    /* margin: 2rem 0; */
}

.note-footer-elite p {
    font-family: \Outfit\, sans-serif;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .note-card-elite {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .note-title-elite {
        font-size: 1.6rem;
    }

    .note-item-elite p {
        font-size: 1rem;
    }
}

/* Itinerary Swiper Carousel */
.itinerary-swiper {
    margin: 40px auto;
    position: relative;
    padding: 20px 50px 60px 50px !important;
    /* Space for arrows (sides) and pagination (bottom) */
    overflow: hidden;
}

.itinerary-swiper .swiper-pagination-bullet-active {
    background: var(--vn-gold);
}

.itinerary-swiper .swiper-button-next::after,
.itinerary-swiper .swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

.itinerary-card-sticky {
    position: relative;
    height: auto;
}

.itinerary-disclaimer {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: left;
    display: none;
}

/* Important Note Section Styling */
.important-note-section {
    margin-top: 4rem;
    padding: 0 15px;
}

.note-card-elite {
    background: #ffffff;
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.2);
    position: relative;
    overflow: hidden;
}

.note-card-elite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--vn-gold);
}

.note-title-elite {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    color: var(--vn-dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.note-grid-elite {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.note-item-elite {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.note-item-elite i {
    color: var(--vn-gold);
    font-size: 1.2rem;
    margin-top: 4px;
}

.note-item-elite p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Highlighted Flights Note */
.note-item-elite.note-highlight-flights {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.note-item-elite.note-highlight-flights:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.05);
}

.note-item-elite.note-highlight-flights i {
    color: var(--vn-gold);
    font-size: 1.8rem;
    margin-top: 0;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.15));
}

.note-highlight-content {
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
    text-align: left;
}

.note-highlight-content strong {
    color: var(--vn-emerald);
    font-weight: 700;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .note-grid-elite {
        grid-template-columns: 1fr;
    }

    .note-card-elite {
        padding: 2.5rem 1.5rem;
    }

    .note-item-elite.note-highlight-flights {
        padding: 15px 20px;
        gap: 15px;
        flex-direction: row;
        align-items: flex-start;
    }

    .note-item-elite.note-highlight-flights i {
        font-size: 1.4rem;
        margin-top: 4px;
    }

    .note-highlight-content {
        font-size: 0.95rem;
    }

    .note-highlight-content strong {
        font-size: 1.05rem;
    }
}

.itinerary-card-inner {
    background: #ffffff;
    border-radius: 35px;
    display: flex;
    overflow: hidden;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); */
    min-height: 450px;
    border: 5px solid rgba(212, 175, 55, 0.15);
    transform-origin: center top;
    position: relative;
}

.itinerary-text-side {
    flex: 1.2;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.itinerary-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--vn-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    width: fit-content;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.meta-dot {
    width: 8px;
    height: 8px;
    background: var(--vn-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.flights-notice {
    color: var(--vn-gold);
    font-weight: 700;
    margin-top: 15px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 20px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 50px;
}

.itinerary-card-title {
    font-family: "Playfair Display", serif !important;
    font-size: 2.2rem;
    color: var(--vn-dark);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    font-weight: 700;
    text-align: left;
}

.itinerary-card-desc {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: left;
    display: none;
}

.itinerary-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.itinerary-features li {
    position: relative;
    padding-left: 35px;
    font-size: 1.1rem;
    color: #222;
    font-weight: 500;
    text-align: left;
}

.itinerary-features li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--vn-gold);
    font-size: 1.3rem;
}

.itinerary-read-more {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    color: var(--vn-emerald);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1.15rem;
    width: fit-content;
}

.itinerary-read-more:hover {
    gap: 20px;
    color: var(--vn-gold);
}

.itinerary-image-side {
    flex: 0.8;
    position: relative;
    background: #fdfaf6;
}

.itinerary-img-wrapper {
    width: 100%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
    overflow: hidden;
    position: relative;
}

.itinerary-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.itinerary-card-sticky:hover .itinerary-img-wrapper img {
    transform: scale(1.15);
}

.itinerary-footer-text {
    font-family: "Outfit", sans-serif;
    color: #777;
    font-style: italic;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    text-align: center;
}

@media (max-width: 992px) {
    .itinerary-card-sticky {
        position: relative;
        margin-bottom: 40px;
    }

    .itinerary-card-inner {
        flex-direction: column;
        min-height: auto;
    }

    .itinerary-image-side {
        order: -1;
        height: 280px;
        /* Fixed height for all images on mobile */
        flex: none;
        width: 100%;
    }

    .itinerary-swiper {
        padding: 10px 10px 0px 10px !important;
        overflow: visible;
    }

    .itinerary-swiper .swiper-wrapper {
        display: block;
        /* Disables flex row to stack vertically */
    }

    .itinerary-swiper .swiper-pagination {
        display: none !important;
    }

    .itinerary-swiper .swiper-button-next,
    .itinerary-swiper .swiper-button-prev {
        display: none;
        /* Hide arrows on mobile, rely on swipe */
    }

    .itinerary-img-wrapper {
        clip-path: none;
    }

    .itinerary-text-side {
        padding: 3rem 1rem;
    }

    .itinerary-card-title {
        font-size: 1.5rem;
    }

    .itinerary-meta {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .itinerary-card-desc {
        font-size: 0.8rem;
    }

    .itinerary-features li {
        font-size: 0.9rem;
    }
}

/* Premium Missed Call Section (Vietnam Theme) */
.missed-call-section {
    background-color: var(--vn-cream);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.missed-call-card-elite {
    background: #051915;
    /* Deep luxury emerald */
    border-radius: 24px;
    padding: 45px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(5, 25, 21, 0.15);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.missed-call-card-elite::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.missed-call-card-elite::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.missed-call-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.missed-call-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--vn-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.missed-call-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.missed-call-title i {
    color: var(--vn-gold);
    font-style: italic;
}

.missed-call-btn-elite {
    background: linear-gradient(135deg, var(--vn-gold) 0%, #b8860b 100%);
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.missed-call-btn-elite i {
    font-size: 1.3rem;
    animation: phoneShake 2s infinite;
}

.missed-call-btn-elite:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.missed-call-note {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0 0 0;
    font-style: italic;
}

/* Phone Shake Animation */
@keyframes phoneShake {

    0%,
    100% {
        transform: rotate(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

@media (max-width: 768px) {
    .missed-call-section {
        padding: 40px 15px;
    }

    .missed-call-card-elite {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .missed-call-title {
        font-size: 1.2rem;
    }

    .missed-call-btn-elite {
        font-size: 1.15rem;
        padding: 12px 35px;
        gap: 10px;
    }

    .missed-call-btn-elite i {
        font-size: 1.1rem;
    }
}