/* ============================
   Promo Banner
   ============================ */

.promo-banner {
    background-color: var(--primary-navy);
    position: relative;
    z-index: 1050;
}

.promo-banner .btn-close-white {
    opacity: 0.8;
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* ============================
   Hero Section
   ============================ */

.hero-section {
    position: relative;
    background: linear-gradient(160deg, #b4e4f7 0%, #a8ddf0 20%, #8fd4ec 40%, #b0e0f5 60%, #c8ecfa 80%, #d6f0fc 100%);
    min-height: 500px;
    overflow: visible;
    padding-bottom: 2rem;
}

/* Floating decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    top: -80px;
    right: 10%;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    bottom: 60px;
    left: 5%;
    animation: heroFloat 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.12);
    top: 40%;
    left: 35%;
    animation: heroFloat 6s ease-in-out infinite 1s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Hero content - left side */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a5276;
    letter-spacing: 0.3px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0c2d48;
}

.hero-title-highlight {
    color: #f59e0b;
    position: relative;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #2c5f7c;
    line-height: 1.6;
}

/* Hero buttons */
.hero-btn-primary {
    background: #0c2d48;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(12, 45, 72, 0.25);
}

.hero-btn-primary:hover {
    background: #164b6e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(12, 45, 72, 0.35);
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    color: #0c2d48;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.25s;
}

.hero-btn-outline:hover {
    background: white;
    color: #0c2d48;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Trust indicators */
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #1a5276;
    background: rgba(255,255,255,0.3);
    border-radius: 1rem;
    padding: 0.3rem 0.7rem;
}

.hero-trust-item i {
    font-size: 0.75rem;
    color: #0c2d48;
}

/* Floating dots - right side */
.hero-dots-wrapper {
    position: relative;
    height: 420px;
}

.hero-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-dot-1  { width: 14px; height: 14px; background: rgba(12, 45, 72, 0.5);  top: 8%;  left: 20%;  animation: dotDrift 7s ease-in-out infinite; }
.hero-dot-2  { width: 22px; height: 22px; background: rgba(245, 158, 11, 0.55); top: 15%; left: 65%;  animation: dotDrift 9s ease-in-out infinite 1s; }
.hero-dot-3  { width: 10px; height: 10px; background: rgba(59, 130, 246, 0.5);  top: 30%; left: 10%;  animation: dotDrift 6s ease-in-out infinite 0.5s; }
.hero-dot-4  { width: 18px; height: 18px; background: rgba(12, 45, 72, 0.35);  top: 40%; left: 45%;  animation: dotDrift 8s ease-in-out infinite 2s; }
.hero-dot-5  { width: 8px;  height: 8px;  background: rgba(245, 158, 11, 0.6);  top: 55%; left: 80%;  animation: dotDrift 5s ease-in-out infinite 0.8s; }
.hero-dot-6  { width: 26px; height: 26px; background: rgba(59, 130, 246, 0.25); top: 65%; left: 30%;  animation: dotDrift 10s ease-in-out infinite 1.5s; }
.hero-dot-7  { width: 12px; height: 12px; background: rgba(12, 45, 72, 0.45);  top: 75%; left: 70%;  animation: dotDrift 7.5s ease-in-out infinite 0.3s; }
.hero-dot-8  { width: 6px;  height: 6px;  background: rgba(245, 158, 11, 0.7);  top: 20%; left: 85%;  animation: dotDrift 6.5s ease-in-out infinite 2.5s; }
.hero-dot-9  { width: 16px; height: 16px; background: rgba(59, 130, 246, 0.35); top: 48%; left: 15%;  animation: dotDrift 8.5s ease-in-out infinite 1.2s; }
.hero-dot-10 { width: 10px; height: 10px; background: rgba(12, 45, 72, 0.3);  top: 85%; left: 50%;  animation: dotDrift 7s ease-in-out infinite 3s; }
.hero-dot-11 { width: 20px; height: 20px; background: rgba(245, 158, 11, 0.3);  top: 5%;  left: 45%;  animation: dotDrift 9.5s ease-in-out infinite 0.7s; }
.hero-dot-12 { width: 7px;  height: 7px;  background: rgba(59, 130, 246, 0.6);  top: 70%; left: 5%;   animation: dotDrift 5.5s ease-in-out infinite 1.8s; }

/* Glowing ring accents */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(12, 45, 72, 0.12);
    pointer-events: none;
}

.hero-ring-1 {
    width: 120px; height: 120px;
    top: 18%; left: 35%;
    animation: ringPulse 8s ease-in-out infinite;
}

.hero-ring-2 {
    width: 80px; height: 80px;
    top: 55%; left: 60%;
    border-color: rgba(245, 158, 11, 0.15);
    animation: ringPulse 6s ease-in-out infinite 1s;
}

.hero-ring-3 {
    width: 160px; height: 160px;
    top: 35%; left: 5%;
    border-color: rgba(59, 130, 246, 0.1);
    animation: ringPulse 10s ease-in-out infinite 2s;
}

@keyframes dotDrift {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.7; }
    25%  { transform: translateY(-15px) translateX(8px) scale(1.15); opacity: 1; }
    50%  { transform: translateY(-25px) translateX(-5px) scale(0.9); opacity: 0.5; }
    75%  { transform: translateY(-10px) translateX(12px) scale(1.1); opacity: 0.85; }
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50%  { transform: scale(1.15); opacity: 0.8; }
}

/* Hero Main Title */
.hero-main-title {
    font-size: 2.5rem;
}

/* Hero Search Bar */
.hero-search-bar {
    background: white;
    border-radius: 1rem;
    padding: 0.65rem 0.75rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid #f59e0b;
    position: relative;
    z-index: 5;
    margin-top: 0.5rem;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem;
}

.search-field-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.65rem;
    background: #f0f2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-navy);
    flex-shrink: 0;
}

.search-field-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.search-field-input {
    font-size: 0.85rem;
    font-weight: 500;
}

.search-field-border {
    border-left: 1px solid #e9ecef;
}

.hero-search-btn {
    background: linear-gradient(135deg, var(--primary-navy), #3949ab);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.7rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(26, 35, 126, 0.3);
    width: 100%;
}

.hero-search-btn:hover {
    background: linear-gradient(135deg, #283593, #5c6bc0);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 35, 126, 0.4);
}

/* ============================
   Section Subtitle
   ============================ */

.section-subtitle {
    display: block;
    color: #b8860b;
    font-family: 'Instrument Sans', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* ============================
   Feature Cards
   ============================ */

.feature-card {
    padding: 1.5rem 1rem;
    border-radius: 0.75rem;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background-color: #f0f2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-navy);
}

/* ============================
   Promo Cards
   ============================ */

.promo-card {
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    min-height: 220px;
}

.promo-card-okx {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
}

.promo-card-stays {
    background: linear-gradient(135deg, #1565c0, #1976d2, #2196f3);
}

.promo-card-plans {
    background: linear-gradient(135deg, #1976d2, #2196f3, #42a5f5);
}


    .promo-section {
        background: #f8f8f8;
    }

    .promo-card {
        background: #fff;
        border: 1px solid #e6e6e6;
        border-radius: 20px;
        padding: 38px 40px;
        min-height: 225px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .promo-badge {
        display: inline-block;
        align-self: flex-start;
        background: #f4c542;
        color: #1f1f1f;
        font-size: 13px;
        font-weight: 700;
        padding: 6px 10px;
        border-radius: 4px;
        margin-bottom: 18px;
    }

    .promo-title {
        font-size: 2.1rem;
        line-height: 1.2;
        font-weight: 500;
        color: #1f2747;
        margin-bottom: 12px;
        max-width: 480px;
    }

    .promo-text {
        font-size: 1rem;
        color: #4d5566;
        line-height: 1.6;
        max-width: 460px;
        margin-bottom: 22px;
    }

    .promo-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 18px;
        border: 1px solid #3b5ccc;
        border-radius: 999px;
        color: #3b5ccc;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        width: fit-content;
        transition: 0.3s ease;
    }

    .promo-btn:hover {
        background: #3b5ccc;
        color: #fff;
    }

    @media (max-width: 991.98px) {
        .promo-card {
            padding: 28px 24px;
        }

        .promo-title {
            font-size: 1.8rem;
        }
    }

.promo-bar {
    background: #1a237e;
    border-radius: 1rem;
    overflow: hidden;
}

.promo-bar-cell-high {
    background: #2674d9;
    border-radius: 0 1.6rem 1.6rem 0;
    overflow: hidden;
    padding: 2rem;
}

.promo-bar-cell {
    padding: 2rem;
}

/* .promo-bar-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
} */

/* ============================
   Member Deals Banner
   ============================ */

.member-deals-banner {
    background: #c2a082;
    border-radius: 1.25rem;
    padding: 2rem;
}

.member-deals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.member-deals-header h3 {
    font-size: 1.35rem;
    color: #1a1a1a;
}

.member-deals-header .text-muted-dark {
    font-size: 0.9rem;
    color: #555;
}

.member-deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.member-deal-card {
    background: white;
    border-radius: 0.85rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.member-deal-img {
    height: 170px;
    overflow: hidden;
    position: relative;
}

.member-deal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-deal-card:hover .member-deal-img img {
    transform: scale(1.05);
}

.member-deal-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #ef4444;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s;
}

.member-deal-fav:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

.member-deal-vip-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(34, 197, 94, 0.92);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 0.35rem;
    letter-spacing: 0.3px;
    z-index: 2;
}

.member-deal-img-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-deal-card:hover .member-deal-img-nav {
    opacity: 1;
}

.member-deal-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.member-deal-nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.member-deal-body {
    padding: 0.85rem 1rem;
}

.member-deal-body h6 {
    font-size: 0.9rem;
    line-height: 1.3;
}

.member-deal-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 0.4rem 0.4rem 0.4rem 0;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.member-deal-member-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 1rem;
}

.member-deal-member-badge i {
    font-size: 0.65rem;
}

.member-deal-pricing {
    margin-top: 0.25rem;
}

.member-deal-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

.member-deal-tax {
    font-size: 0.7rem;
    color: #16a34a;
    margin-top: 0.15rem;
}

.member-deal-tax i {
    font-size: 0.6rem;
}

@media (max-width: 991.98px) {
    .member-deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .member-deals-grid {
        grid-template-columns: 1fr;
    }
    .member-deals-banner {
        padding: 1.25rem;
    }
    .member-deals-header h3 {
        font-size: 1.15rem;
    }
}

/* ============================
   Hotel Cards / Carousel
   ============================ */

.hotel-carousel,
.review-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
}

.hotel-carousel::-webkit-scrollbar,
.review-carousel::-webkit-scrollbar {
    display: none;
}

.hotel-card {
    min-width: 260px;
    max-width: 260px;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hotel-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.hotel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-card-img img {
    transform: scale(1.08);
}

.hotel-card-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.hotel-card-fav:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

.hotel-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.2rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    z-index: 2;
}

.tag-popular {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.tag-deal {
    background: rgba(234, 179, 8, 0.95);
    color: #1a1a1a;
}

.tag-trending {
    background: rgba(168, 85, 247, 0.9);
    color: white;
}

.tag-luxury {
    background: rgba(20, 20, 20, 0.85);
    color: #f0c040;
}

.hotel-card-body {
    padding: 1rem 1.1rem;
}

.hotel-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #f59e0b;
    background: #fef9c3;
    padding: 2px 8px;
    border-radius: 1rem;
}

.hotel-card-rating i {
    font-size: 0.7rem;
}

.hotel-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
}

/* View All button */
.btn-outline-primary-navy {
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    border-radius: 2rem;
    transition: all 0.25s;
}

.btn-outline-primary-navy:hover {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

/* Destination Grid */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.destination-grid-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: inherit;
}

.destination-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.destination-grid-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
}

.destination-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-grid-card:hover .destination-grid-img img {
    transform: scale(1.05);
}

.destination-grid-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(22, 163, 74, 0.9);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 0.35rem;
    text-transform: capitalize;
}

.destination-grid-info {
    padding: 0.75rem 0.25rem;
}

.destination-grid-info h6 {
    font-size: 0.95rem;
}

.destination-grid-info small {
    font-size: 0.8rem;
}

a.hotel-card {
    display: block;
}

@media (max-width: 991.98px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Carousel Nav Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.25s;
}

.carousel-nav-btn:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

/* ============================
   Promo Banner Cards
   ============================ */

.promo-banner-card {
    border-radius: 1rem;
    min-height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.promo-banner-card-v2 {
    position: relative;
    overflow: hidden;
}

.promo-banner-decor {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.promo-banner-card-v2::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.promo-discount-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
}

.letter-spacing-wide {
    letter-spacing: 1.5px;
}

.promo-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    opacity: 1;
    transition: all 0.3s;
}

.promo-indicators button.active {
    background: var(--primary-navy);
    width: 28px;
    border-radius: 1rem;
}

.promo-section {
    background: #f8fafc;
}

/* ============================
   Review Cards V2 — Marquee
   ============================ */

.reviews-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    overflow: hidden;
    position: relative;
    padding-bottom: 4rem !important;
}

/* Stats */
.review-stats-divider {
    width: 1px;
    height: 40px;
    background: #d1d5db;
    align-self: center;
}

/* Marquee wrapper */
.review-marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.review-marquee {
    width: 100%;
    overflow: hidden;
}

.review-marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
}

.review-marquee-left .review-marquee-track {
    animation: marqueeScrollLeft 60s linear infinite;
}

.review-marquee-right .review-marquee-track {
    animation: marqueeScrollRight 75s linear infinite;
}

.review-marquee:hover .review-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Fade edges */
.review-marquee-fade-left,
.review-marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 3;
    pointer-events: none;
}

.review-marquee-fade-left {
    left: 0;
    background: linear-gradient(90deg, #f8fafc 0%, transparent 100%);
}

.review-marquee-fade-right {
    right: 0;
    background: linear-gradient(270deg, #eef2ff 0%, transparent 100%);
}

/* Review Card V2 */
.review-card-v2 {
    min-width: 320px;
    max-width: 320px;
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #c7d2fe;
}

.review-card-v2-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-quote-icon {
    font-size: 1.5rem;
    color: #e0e7ff;
    line-height: 1;
}

.review-card-v2-stars {
    display: flex;
    gap: 2px;
}

.review-card-v2-stars i {
    font-size: 0.7rem;
    color: #f59e0b;
}

.review-card-v2-stars i.bi-star {
    color: #d1d5db;
}

.review-card-v2-text {
    font-size: 0.8rem;
    line-height: 1.55;
    color: #4b5563;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.review-card-v2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.65rem;
    border-top: 1px solid #f3f4f6;
}

.review-hotel-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-navy);
    background: #eef2ff;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
}

.review-hotel-tag i {
    font-size: 0.65rem;
}

/* ============================
   Crypto Section
   ============================ */

.crypto-section {
    background: #394E85;
    position: relative;
    overflow: hidden;
}

.crypto-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M0,60 Q360,0 720,60 Q1080,120 1440,60 L1440,120 L0,120Z'/%3E%3C/svg%3E") no-repeat bottom center / cover;
}

.crypto-logo-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.crypto-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.crypto-logo-item:hover {
    transform: scale(1.15);
}

.crypto-section .carousel-nav-btn {
    position: relative;
    top: auto;
    transform: none;
    width: auto;
    height: auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    flex-shrink: 0;
    font-size: 1.5rem;
    padding: 0;
}

.crypto-section .carousel-nav-btn:hover {
    background: none;
    transform: none;
    box-shadow: none;
    color: white;
}

/* ============================
   FAQ Section
   ============================ */

.faq-tabs-sidebar .nav-link {
    color: #333;
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    margin-bottom: 0.25rem;
    transition: all 0.2s;
}

.faq-tabs-sidebar .nav-link.active {
    background-color: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
}

.accordion-button {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 1rem 0;
    background: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-navy);
    background: none;
}

.accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.accordion-body {
    padding: 0 0 1rem 0;
}

/* ============================
   Continent Tabs
   ============================ */

.continent-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid #dee2e6;
    background: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}

.continent-tab:hover {
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

.continent-tab.active {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

/* ============================
   Region Cards
   ============================ */

.region-card {
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
}

.region-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
}

.region-card-body {
    padding: 1rem 1.25rem;
}

.region-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.region-list li {
    font-size: 0.875rem;
    color: #555;
    padding: 0.25rem 0;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.region-list li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-navy);
    transition: width 0.3s ease;
}

.region-list li:hover {
    color: var(--primary-navy);
}

.region-list li:hover::after {
    width: 100%;
}

/* ============================
   Newsletter
   ============================ */

.newsletter-bar {
    background: var(--primary-navy);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
}

.newsletter-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.newsletter-form .form-control {
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
}

/* ============================
   Footer
   ============================ */

.landing-footer {
    background: #f8f9fa;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.375rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-navy);
}

/* ============================
   Destination Tabs
   ============================ */

.destination-tabs .nav-link {
    color: #555;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid transparent;
    background: none;
    transition: all 0.25s;
}

.destination-tabs .nav-link:hover {
    color: var(--primary-navy);
    background: #eef2ff;
    border-color: #e0e7ff;
}

.destination-tabs .nav-link.active {
    color: white;
    background: var(--primary-navy);
    border-color: var(--primary-navy);
}

.destination-tabs .nav-link i {
    font-size: 0.8rem;
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-main-title {
        font-size: 1.8rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-search-bar {
        padding: 0.5rem;
    }

    .search-field {
        padding: 0.5rem;
    }

    .search-field-border {
        border-left: none;
        border-top: 1px solid #e9ecef;
    }

    .promo-card {
        min-height: auto;
    }

    .crypto-carousel {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-main-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-shape {
        display: none;
    }

    .newsletter-bar {
        padding: 1rem;
    }

    .carousel-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .carousel-prev {
        left: -10px;
    }

    .carousel-next {
        right: -10px;
    }
}

/* City Search Dropdown */
.city-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    z-index: 1060;
    max-height: 340px;
    overflow-y: auto;
    margin-top: 4px;
}

.city-search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.city-search-empty {
    padding: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

.city-search-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    cursor: pointer;
    transition: background 0.15s;
}

.city-search-item:hover {
    background: #f1f5f9;
}

.city-search-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    background: #f0f2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.city-search-item-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1e293b;
}

.city-search-item-meta {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Hotel Listing Cards */
.hotel-listing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.15s;
}

.hotel-listing-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.hotel-listing-img {
    position: relative;
    height: 100%;
    min-height: 200px;
}

.hotel-listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-listing-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-listing-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hotel-listing-stars i {
    font-size: 0.8rem;
}

.hotel-listing-rating {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 6px;
    min-width: 36px;
    text-align: center;
}

.hotel-listing-remark {
    line-height: 1.45;
    color: #64748b !important;
}

/* ============================
   Mobile Responsive Fixes
   ============================ */

@media (max-width: 767px) {
    /* Promo top banner */
    .promo-banner .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem !important;
        text-align: center;
    }

    .promo-banner .small.fw-medium {
        font-size: 0.7rem;
        width: 100%;
    }

    /* Hero heading on mobile */
    .hero-section h1 {
        font-size: 1.4rem !important;
        line-height: 1.3;
    }

    .hero-section p {
        font-size: 0.9rem !important;
    }

    /* Hero search bar stacking */
    .hero-search-bar .row {
        flex-direction: column;
    }

    .hero-search-bar .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .search-field-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    /* Feature cards 2 columns on mobile */
    .feature-card {
        padding: 1rem 0.75rem;
    }

    .feature-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    /* Promo bar full width stack */
    .promo-bar .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .promo-bar-cell-high {
        border-radius: 0;
        padding: 1.5rem;
    }

    .promo-bar-cell {
        padding: 1.25rem;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    /* Newsletter bar responsive */
    .newsletter-bar {
        padding: 1rem;
        text-align: center;
    }

    .newsletter-bar .d-flex {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Destination grid and tabs */
    .destination-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.5rem;
    }

    .destination-tabs::-webkit-scrollbar {
        display: none;
    }

    .destination-tabs .nav-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
        white-space: nowrap;
    }

    /* Region cards */
    .region-card {
        margin-bottom: 1rem;
    }

    /* Continent tabs scroll */
    .continent-tab {
        font-size: 0.7rem;
        padding: 0.4rem 0.85rem;
        white-space: nowrap;
    }

    /* FAQ layout stack */
    .faq-tabs-sidebar .nav {
        flex-direction: row !important;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .faq-tabs-sidebar .nav-link {
        white-space: nowrap;
        font-size: 0.78rem;
        padding: 0.5rem 0.85rem;
    }

    /* Review cards */
    .review-card-v2 {
        min-width: 260px;
        max-width: 260px;
    }

    /* Crypto section */
    .crypto-section {
        padding: 2rem 0 !important;
    }

    .crypto-section h2 {
        font-size: 1.3rem !important;
    }
}
