/* HIGH-END SHOWCASE AESTHETIC */
:root {
    --bg-color: #0b162c;
    /* Royal Indigo */
    --text-primary: #ffffff;
    --text-secondary: #a0aab5;
    --accent: #d4af37;
    /* Subtle gold */
    --accent-hover: #f3e5ab;
    --glass-bg: rgba(255, 255, 255, 0.03);
    /* Slightly more visible on Indigo */
    --glass-border: rgba(212, 175, 55, 0.2);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.page-wrapper {
    width: 100%;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 1. FLOATING PILL NAVIGATION (Ultra-Premium) */
.showcase-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Perfect horizontal center line alignment across all 3 nav items */
    z-index: 1000;
    pointer-events: none;
    /* Let clicks pass through empty space */
    min-height: 110px;
}

.nav-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 0.85rem 2.2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    /* Re-enable clicks on the pills */
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pill-left {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex;
    align-items: center;
}

.pill-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    pointer-events: auto;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-itm {
    height: 150px !important;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.7)) !important;
    /* Pure white floating logo */
}

.pill-right {
    pointer-events: auto !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    gap: 1.1rem !important;
    /* Narrowed gap between partner columns */
    align-items: center !important;
    display: flex !important;
}

.partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.partner span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #ffffff !important;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.partner img {
    height: 90px !important;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.7)) !important;
}

.partner img.logo-partner-white {
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8)) !important;
}

.partner img.logo-partner-motac {
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8)) !important;
}

.partner-divider {
    display: none !important;
}

.btn-auth {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    background: #380c14;
    /* Deep Maroon matching the theme */
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    align-self: center;
    box-shadow: 0 6px 20px rgba(56, 12, 20, 0.5), 0 0 12px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-auth:hover {
    background: #59111c;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 12, 20, 0.7), 0 0 16px rgba(212, 175, 55, 0.5);
}

.btn-auth.logout {
    background: transparent;
    border: 1px solid #380c14;
    color: #380c14;
}

.btn-auth.logout:hover {
    background: rgba(56, 12, 20, 0.1);
}

.btn-hero-auth {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #ffffff;
    background: #380c14;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(56, 12, 20, 0.5), 0 0 15px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: var(--transition-fast);
    display: inline-block;
}

.btn-hero-auth:hover {
    background: #59111c;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(56, 12, 20, 0.7), 0 0 20px rgba(212, 175, 55, 0.5);
}

/* 2. CINEMATIC HERO */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    background-color: rgba(30, 30, 30, 0.4);
    /* Dark grey overlay at around 30-40% opacity */
}

.fade-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* Smoothly blends the bottom half of the video into the body background */
    background: linear-gradient(to top, var(--bg-color) 0%, rgba(5, 5, 5, 0) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
    margin-top: 4.5rem;
}

.title-card {
    opacity: 0;
    transform: translateY(40px);
    /* Buttery slow appearance */
    animation: smoothReveal 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes smoothReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 7.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 3rem;

    /* Shimmering Metallic Soul */
    background: linear-gradient(45deg,
            #ffffff 0%,
            var(--accent) 30%,
            #ffffff 50%,
            var(--accent) 70%,
            #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Entry and continuous breathing */
    animation:
        soulReveal 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        shimmerSoul 6s linear infinite,
        breathGlow 4s ease-in-out infinite alternate;
}

@keyframes soulReveal {
    0% {
        letter-spacing: 20px;
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        letter-spacing: 0px;
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes shimmerSoul {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes breathGlow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.02);
    }
}

.scroll-arrow-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.scroll-arrow {
    display: inline-block;
    font-size: 3rem;
    color: var(--accent);
    text-decoration: none;
    animation: bounce 2s infinite ease-in-out;
    transition: transform 0.3s;
}

.scroll-arrow:hover {
    color: #fff;
    transform: scale(1.1);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.collection {
    position: relative;
    background-color: var(--bg-color);
    padding: 6rem 5%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* BATIK BACKGROUND */
.batik-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    max-width: 1800px;
    max-height: 1800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    /* Softly blended into the indigo */
}

.batik-svg {
    width: 100%;
    height: 100%;
    animation: rotateBatik 180s linear infinite;
    /* Extremely slow, majestic rotation */
}

@keyframes rotateBatik {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.deals-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header & Filter Top Bar */
.deals-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.badge-exclusive {
    background-color: #8b0000;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.deals-header-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deals-header-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.4;
}

/* Floating Filter Modal */
.filter-wrapper {
    position: relative;
}

.btn-filter {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--accent);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.btn-filter:hover {
    background: var(--accent);
    color: #000;
}

.filter-panel {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 320px;
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    background: rgba(10, 20, 45, 0.95);
    /* Deep indigo solid */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 100;
    transition: var(--transition-fast);
}

.filter-panel.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

/* Infinite Marquee Conveyor */
.marquee-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 2rem 0 4rem 0;
    /* Huge padding to prevent hover shadow clipping */
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
    /* Gap between the two tracks */
    animation: scrollMarquee 40s linear infinite;
    /* Ensure the track doesn't shrink */
    flex-shrink: 0;
}

/* Pause on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.deal-card {
    flex: 0 0 300px;
    /* Fixed width */
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    transition: var(--transition-slow);
}

.deal-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
}

.deal-card:hover::before {
    left: 150%;
}

.deal-image {
    width: 100%;
    aspect-ratio: 1/1;
    /* Instagram post square */
    margin-bottom: 1.2rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.deal-card:hover .deal-image img {
    transform: scale(1.08);
}

.deal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(255, 255, 255, 0.02);
}

.deal-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.deal-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bg-color);
    /* Dark indigo text */
    background-color: var(--accent);
    /* Gold background */
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    /* Pill shape */
    display: inline-block;
}

.deal-icon {
    font-size: 1.2rem;
    color: var(--accent);
}

.deal-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.deal-subtitle {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.deal-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-buy {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent);
    border: 1px solid var(--glass-border);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.btn-buy::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: 0.5s;
}

.deal-card:hover .btn-buy {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.deal-card:hover .btn-buy::after {
    left: 100%;
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.filter-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.filter-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.filter-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 20, 45, 0.95);
    /* Deep indigo */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: var(--font-heading);
    /* Elegant serif font */
    font-size: 1.1rem;
    appearance: none;
    cursor: pointer;
}

.filter-group select option {
    font-family: var(--font-heading);
    background: #0b162c;
    /* Ensure dropdown list has solid background */
    color: #fff;
    padding: 10px;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-apply {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-apply:hover {
    background: #fff;
    color: #000;
}

/* ==========================================================================
   MERCHANT HIGHLIGHT SECTION (Maroon Geometric Theme)
   ========================================================================== */
.merchant-highlights,
.merchant-highlight,
#merchants {
    position: relative;
    background-color: var(--bg-color);
    /* Deep Burgundy / Maroon */
    min-height: 100vh;
    width: 100%;
    padding: 0 0 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Base geometric pattern */
.merchant-batik-bg {
    position: absolute;
    top: 50%;
    left: 80%;
    /* Shifted to right side */
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    max-width: 1800px;
    max-height: 1800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.merchant-batik-svg {
    width: 100%;
    height: 100%;
    animation: rotateBatik 180s linear infinite reverse;
    /* Reverse rotation for variety */
}

.merchant-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1600px;
    z-index: 2;
}

/* Merchant Split Header */
.merchant-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding: 0 5%;
}

.merchant-header-left h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.merchant-header-right {
    max-width: 500px;
}

.merchant-header-right p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.5;
    text-align: right;
}

.merchant-marquee-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    z-index: 2;
    padding: 2rem 0;
    gap: 4rem;
}

/* Hide scrollbar for cleaner look */
.merchant-marquee-container::-webkit-scrollbar {
    display: none;
}

.merchant-marquee-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.merchant-card {
    display: flex;
    flex-direction: row-reverse;
    /* Image on left, text on right to match screenshot */
    align-items: center;
    gap: 4rem;
    width: 900px;
    /* Wider card */
    flex-shrink: 0;
    scroll-snap-align: center;
    background: rgba(0, 0, 0, 0.4);
    /* Dark glassmorphism backing */
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(15px);
}

.merchant-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.merchant-badge {
    background-color: var(--accent);
    /* Gold theme badge */
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.merchant-name {
    font-family: var(--font-body);
    font-size: 2.68rem;
    /* Decreased by 15% */
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    /* White text for contrast on maroon */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.merchant-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #d8d8d8;
    /* Light grey */
    margin-bottom: 2.5rem;
}

.btn-explore {
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.btn-explore:hover {
    background: var(--accent);
}

.merchant-image-wrapper {
    flex: 1;
    position: relative;
    height: 450px;
    background: #000;
}

.merchant-image-wrapper::after {
    display: none;
    /* Removed offset red frame */
}

.merchant-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid #fff;
    /* Inner white border */
}

.merchant-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border: 5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: bold;
    letter-spacing: 2px;
}

/* 4. FOOTER */
.showcase-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-color);
    /* Indigo background */
    padding: 6rem 5% 2rem;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 2fr;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto 4rem auto;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    /* Ensure logo is white if it was dark */
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--accent);
    color: #000;
}

/* Links */
.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 1rem;
}

.footer-links-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--accent);
}

/* Newsletter */
.footer-newsletter-col p {
    margin-bottom: 2rem;
}

.btn-signup {
    padding: 0.8rem 2.5rem;
    background: #3341c2;
    /* Deep modern blue/indigo */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-signup:hover {
    background: #4a59f0;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .showcase-item {
        flex-direction: column !important;
        gap: 4rem;
        margin-bottom: 8rem;
    }

    .item-visual {
        width: 100%;
        max-height: 60vh;
    }

    .item-content {
        max-width: 100%;
        text-align: center;
    }

    .item-purchase {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .main-title {
        font-size: 4rem;
    }

    .showcase-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .pill-right {
        display: none;
        /* Hide partners on mobile to save space */
    }
}

/* Voucher Details Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 2rem 0;
}

.modal-content {
    background-color: #101e3b;
    color: var(--text-primary);
    margin: 2% auto;
    padding: 0;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    position: relative;
    display: flex;
    overflow: hidden;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close:hover {
    color: #fff;
}

.view-left {
    flex: 1;
    background: #0b162c;
    position: relative;
}

.view-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-right: 1px solid var(--glass-border);
}

.view-right {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.view-category {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    align-self: flex-start;
    border: 1px solid var(--accent);
    border-radius: 4px;
}

.view-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
}

.view-subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 1.5rem 0;
    border-bottom: 2px solid var(--accent);
    align-self: flex-start;
    padding-bottom: 2px;
}

.view-desc {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.view-code-box {
    border: 1px dashed var(--accent);
    padding: 1.5rem;
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    margin-bottom: 2rem;
    border-radius: 8px;
}

.view-code-label {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.view-code {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
}

.view-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
}

/* Voucher Page Styles */
.voucher-page {
    background-color: var(--bg-color);
    overflow-y: auto;
}

/* Jewel Box Voucher Page Styles */
.voucher-page {
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.jewel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.jewel-nav .logo-itm {
    height: 70px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.7)) !important;
}

.btn-jewel-back {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    color: var(--accent);
    border: 1px solid var(--accent);
    background: transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-jewel-back:hover {
    background: var(--accent);
    color: #000;
}

.nav-pill-logo,
.jewel-nav a:first-child {
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    border: none !important;
    text-decoration: none !important;
    transition: var(--transition-fast) !important;
}

.nav-pill-logo:hover,
.jewel-nav a:first-child:hover {
    transform: translateY(-2px) !important;
    box-shadow: none !important;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6)) !important;
}

.btn-manual-pay-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 1rem;
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(212, 175, 55, 0.5);
    color: var(--accent);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-manual-pay-toggle:hover {
    background: rgba(212, 175, 55, 0.15);
    border-style: solid;
    transform: translateY(-1px);
}

.jewel-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.jewel-card {
    background: rgba(11, 22, 44, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    gap: 3rem;
    padding: 3rem;
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
}

.jewel-left {
    width: 440px;
    max-width: 100%;
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.jewel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jewel-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 18px;
}

.jewel-right {
    flex-grow: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.jewel-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.jewel-company {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.jewel-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.jewel-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.jewel-price-box {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.jewel-original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1.5rem;
}

.jewel-current-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.jewel-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.jewel-code-container {
    max-width: 100%;
    margin: 0;
}

.code-lock-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.locked-code {
    padding: 2rem;
    font-size: 2rem;
    font-family: monospace;
    letter-spacing: 8px;
    color: #fff;
    text-align: center;
    filter: blur(12px);
    transition: filter 0.8s ease;
    user-select: none;
}

.locked-code.revealed {
    filter: blur(0px);
    user-select: auto;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 22, 44, 0.5);
    transition: opacity 0.3s ease;
}

.btn-pay-reveal {
    background: var(--accent) !important;
    color: #000 !important;
    border: none !important;
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    border-radius: 4px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 80% !important;
}

.btn-pay-reveal:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4) !important;
}

/* Responsive Jewel Box */
@media (max-width: 900px) {
    .jewel-card {
        flex-direction: column;
        padding: 1.75rem;
        gap: 2rem;
    }

    .jewel-left,
    .jewel-right {
        width: 100%;
    }

    .jewel-left {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
    }
}

.related-section {
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto 4rem auto;
}

.related-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.carousel-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(0, 0, 0, 0.3);
}

.carousel-container::-webkit-scrollbar {
    height: 8px;
}

.carousel-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 4px;
}

.related-card {
    min-width: 300px;
    max-width: 300px;
    scroll-snap-align: start;
}

/* ==========================================================================
   Directory Section (Matches Deals of the Day Aesthetic Exactly)
   ========================================================================== */
.directory-collection {
    position: relative;
    background-color: var(--bg-color);
    padding: 6rem 5%;
    min-height: 100vh;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.directory-collection .deals-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.directory-tabs-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.directory-tab-pill {
    padding: 0.75rem 1.8rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.directory-tab-pill:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.directory-tab-pill.active {
    background: var(--accent) !important;
    color: var(--bg-color) !important;
    border-color: var(--accent) !important;
    font-weight: 700 !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.directory-tab-content {
    display: none;
}

.directory-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.directory-filter-panel {
    background: var(--panel-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.directory-filter-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.directory-filter-row .filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 170px;
}

.directory-filter-row .filter-group label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   Directory Header & Gaps
   ========================================================================== */
.directory-header-top {
    margin-bottom: 1.5rem;
}

.directory-header-text .badge-exclusive {
    display: inline-block;
    margin-bottom: 0.8rem;
}

.directory-header-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0.5rem 0 1.2rem 0 !important;
    line-height: 1.25;
}

.directory-header-text p {
    font-size: 1.05rem;
    color: var(--text-secondary, #a0aab5);
    margin: 0 0 2rem 0 !important;
    line-height: 1.6;
}

.directory-tab-nav {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.directory-tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    font-family: var(--font-body), 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    background: var(--glass-bg, rgba(255, 255, 255, 0.03));
    border: 1px solid var(--glass-border, rgba(212, 175, 55, 0.2));
    color: var(--text-secondary, #a0aab5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.directory-tab-btn:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--accent, #d4af37);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.directory-tab-btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #b59021 100%);
    border-color: #d4af37;
    color: #0b162c;
    font-weight: 800;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4), 0 0 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
}

.directory-tab-btn.active:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
    color: #0b162c;
}

select,
option,
.directory-select-input,
.directory-text-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-body), 'Outfit', sans-serif !important;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    outline: none;
    transition: var(--transition-fast);
}

.directory-select-input option,
select option {
    background: #0b132b !important;
    color: #ffffff !important;
    font-family: var(--font-body), 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 10px !important;
}

.directory-select-input:focus,
.directory-text-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.filter-search-group {
    flex: 1.5 !important;
    min-width: 220px;
}

.directory-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.directory-cards-grid .deal-card {
    flex: initial !important;
    width: 100% !important;
}

/* Directory Pagination Styling (Gold Luxury Aesthetic) */
.directory-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.directory-pagination-bar {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--panel-bg);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.pagination-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 0.8rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: var(--accent) !important;
    color: var(--bg-color) !important;
    border-color: var(--accent) !important;
    font-weight: 700 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.pagination-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ==========================================================================
   Comprehensive Mobile & Responsive Styles (Ultra-Mobile Friendly)
   ========================================================================== */

@media (max-width: 900px) {
    .showcase-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        position: relative;
    }

    .nav-pill {
        padding: 0.75rem 1.5rem;
        max-width: 100%;
        justify-content: center;
    }

    .logo-itm {
        height: 52px;
    }

    .pill-right {
        gap: 1.2rem;
        flex-wrap: wrap;
    }

    .partner img {
        height: 38px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {

    /* Hero */
    .hero {
        min-height: 85vh;
        padding: 5rem 1.2rem 3rem 1.2rem;
        text-align: center;
    }

    /* Deals of the Day */
    .collection {
        padding: 4rem 1.2rem;
    }

    .deals-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .deal-card {
        flex: 0 0 85vw;
        max-width: 320px;
    }

    /* Merchant Highlights */
    .merchant-highlights,
.merchant-highlight,
#merchants {
        padding: 0 1.2rem 4rem 1.2rem;
        min-height: auto;
    }

    .merchant-card {
        flex-direction: column-reverse;
        padding: 1.5rem;
        text-align: center;
    }

    .merchant-image-wrapper {
        width: 100%;
        height: 220px;
        margin-bottom: 1.2rem;
    }

    .merchant-content {
        padding: 0;
        align-items: center;
    }

    .btn-explore {
        width: 100%;
        text-align: center;
    }

    /* Directory */
    .directory-collection {
        padding: 4rem 1.2rem;
    }

    .directory-tabs-wrapper {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }

    .directory-tab-pill {
        flex: 1;
        text-align: center;
        padding: 0.75rem 0.8rem;
        font-size: 0.78rem;
    }

    .directory-filter-panel {
        padding: 1.25rem 1rem;
    }

    .directory-filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .directory-filter-row .filter-group {
        width: 100%;
        min-width: 100%;
    }

    .directory-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Modal */
    .modal-content {
        flex-direction: column;
        width: 92%;
        padding: 1.5rem;
        margin: 8% auto;
    }

    .view-left,
    .view-right {
        width: 100%;
    }

    .view-left img {
        max-height: 220px;
        object-fit: cover;
    }
}

@media (max-width: 500px) {
    .nav-pill {
        padding: 0.6rem 1rem;
        border-radius: 20px;
    }

    .logo-itm {
        height: 42px;
    }

    .partner img {
        height: 32px;
    }

    .partner span {
        font-size: 0.52rem;
    }

    .partner-divider {
        height: 25px;
    }

    .btn-auth {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
    }

    .directory-pagination-bar {
        padding: 0.5rem 0.8rem;
        gap: 0.3rem;
    }

    .pagination-btn {
        min-width: 32px;
        height: 32px;
        font-size: 0.78rem;
        padding: 0 0.4rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo-col,
    .footer-col {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .btn-signup {
        width: 100%;
    }
}

.itm-plus-section {
    position: relative;
    background: rgb(132, 131, 172) !important;
    padding: 10rem 6%;
    color: #000000 !important;
    overflow: hidden;
    border-top: 1px solid #c2dec5;
    border-bottom: 1px solid #c2dec5;
}

/* Islamic Geometric Arabesque Background Animation */
.itm-plus-islamic-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140vw;
    height: 140vw;
    max-width: 1600px;
    max-height: 1600px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
    /* Dimmed for soft, elegant blend */
}

.itm-plus-islamic-svg {
    width: 100%;
    height: 100%;
    animation: rotateIslamicBatik 75s ease-in-out infinite alternate;
}

@keyframes rotateIslamicBatik {
    0% {
        transform: rotate(0deg) scale(1);
        filter: brightness(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
        filter: brightness(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
        filter: brightness(1);
    }
}

.itm-plus-banner-container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    /* Allows mid and right columns to align bottom elements on exact same horizontal line */
    justify-content: space-between;
    gap: 3rem;
}

.itm-banner-col-left h2 {
    font-family: var(--font-body);
    font-size: 2.75rem;
    /* Increased by 10% */
    font-weight: 800;
    color: #000000 !important;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.itm-banner-divider {
    width: 2px;
    height: auto;
    align-self: stretch;
    /* Spans vertical line from Introducing down to Click for more button */
    background-color: #000000;
    opacity: 0.85;
    flex-shrink: 0;
    margin: 0.2rem 0;
}

.itm-banner-col-mid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 160px;
}

.itm-intro-label {
    font-size: 1.38rem;
    /* Increased by 10% */
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.2px;
}

.itm-plus-badge-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: 5px;
    margin-left: -20px;
    /* Aligns star icon flush left with 'Introducing' */
}

.itm-plus-badge-logo {
    height: 150px !important;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) !important;
    clip-path: inset(0 0 32% 0);
    /* Crops out "Islamic Tourism Month" subtext at bottom */
    margin-bottom: -45px;
}

.itm-plus-square-box {
    width: 56px;
    height: 56px;
    background-color: #000000;
    color: #ffffff;
    font-family: var(--font-body), sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 4px;
    flex-shrink: 0;
    margin-bottom: 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.itm-banner-col-right {
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 160px;
}

.itm-collab-heading {
    font-family: var(--font-body);
    font-size: 2rem;
    /* Increased by 10% */
    font-weight: 800;
    color: #000000 !important;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.itm-banner-col-right p {
    font-size: 1.15rem;
    /* Increased by 10% */
    color: #000000 !important;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.btn-itm-more {
    background: #000000;
    color: #ffffff !important;
    padding: 0.75rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.2px;
}

.btn-itm-more:hover {
    background: #222222;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .itm-plus-banner-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .itm-banner-divider {
        width: 100%;
        height: 2px;
    }

    .itm-banner-col-right {
        max-width: 100%;
    }
}

/* ==========================================================================
   Event Highlights Section (Dark Luxury Canvas - Alternating Rhythm)
   ========================================================================== */
.event-highlights-section {
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #050a14 0%, #091224 50%, #050a14 100%) !important;
    padding: 5rem 6%;
    color: #ffffff !important;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.event-spec-tag {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffd700 !important;
    /* Gold tag */
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.event-spec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.event-spec-header-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #ffffff !important;
    /* Crisp pure white title */
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.event-spec-header-text p {
    font-size: 0.95rem;
    color: #cbd5e1 !important;
    /* Bright silver subtext */
    margin: 0;
    max-width: 600px;
}

.event-filter-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.event-pill {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.event-pill:hover,
.event-pill.active {
    background: #ffd700 !important;
    color: #000000 !important;
    border-color: #ffd700 !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Event Cards (Sleek Dark contrast cards on cream canvas) */
.event-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.event-card-item {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.event-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    border-color: #ffd700;
}

.event-card-image-box {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid #ffd700;
    border-radius: 12px;
    padding: 0.4rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.event-day {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffd700;
}

.event-month {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.event-cat-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.event-venue-line {
    font-size: 0.8rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.event-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #ffffff !important;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.event-card-desc {
    font-size: 0.88rem;
    color: #cbd5e1 !important;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-price-free {
    font-size: 0.72rem;
    font-weight: 800;
    color: #4ade80;
    letter-spacing: 1px;
}

.event-action-link {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffd700;
    letter-spacing: 1px;
}

.event-card-item:hover .event-action-link {
    color: #ffffff;
}

@media (max-width: 768px) {
    .event-highlights-section {
        padding: 4rem 1.2rem;
    }

    .event-spec-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.itm-card-more-btn {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: inline-block;
    transition: var(--transition-fast);
}

.itm-plus-side-card:hover .itm-card-more-btn {
    color: #fff;
    transform: translateX(3px);
}

/* ITM+ Modal Styling (Gold/Yellow Glass Theme) */
.itm-plus-modal-content {
    background: linear-gradient(135deg, #091224 0%, #050a14 100%) !important;
    border: 2px solid #ffd700 !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 215, 0, 0.3) !important;
    color: #fff !important;
    max-width: 650px;
    border-radius: 20px;
    padding: 2.5rem;
}

.itm-modal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    margin-bottom: 1.5rem;
}

.itm-modal-icon {
    font-size: 3.2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    width: 75px;
    height: 75px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.itm-modal-badge {
    background: #ffd700;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.itm-modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
}

.itm-modal-subtitle {
    font-size: 0.95rem;
    color: #ffd700;
    margin: 0.2rem 0 0 0;
}

.itm-modal-section h4 {
    color: #ffd700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.itm-modal-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.itm-modal-benefits-list li {
    font-size: 0.92rem;
    color: #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.4;
}

.itm-modal-benefits-list li span.check {
    color: #ffd700;
    font-weight: 800;
}

.itm-modal-claim-box {
    background: rgba(255, 215, 0, 0.08);
    border: 1px dashed rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.itm-modal-claim-box label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #ffd700;
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.itm-claim-input-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.itm-claim-input-group input {
    flex: 1;
    min-width: 200px;
}

.itm-claim-result {
    animation: fadeIn 0.4s ease forwards;
}

/* ==========================================================================
   ITM 2026 MAJOR EVENTS SECTION
   ========================================================================== */
.itm-events-section {
    background-color: #0b1120;
    padding: 5rem 3rem;
    position: relative;
    z-index: 10;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.itm-events-container {
    max-width: 1400px;
    margin: 0 auto;
}

.itm-events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.itm-events-header-left {
    max-width: 680px;
}

.itm-events-title {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.itm-events-subtitle {
    font-family: var(--font-body), 'Outfit', sans-serif;
    color: #a0aab5;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Category Filter Pills */
.itm-events-filter-pills {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.event-pill {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.65rem 1.4rem;
    font-family: var(--font-body), 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
}

.event-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.event-pill.active {
    background: #facc15;
    color: #0b1120;
    border-color: #facc15;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
}

/* Event Cards Grid */
.itm-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.event-card-item {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.event-card-item:hover {
    transform: translateY(-6px);
    border-color: rgba(250, 204, 21, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Image Wrap & Badges */
.event-card-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    background: #1e293b;
    overflow: hidden;
}

.event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card-item:hover .event-card-img {
    transform: scale(1.05);
}

/* Top-Left Oval Date Badge */
.event-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11, 17, 32, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid #facc15;
    border-radius: 50px;
    padding: 6px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.event-date-badge .date-num {
    color: #facc15;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.event-date-badge .date-month {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Top-Right Pill Tag Badge */
.event-tag-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 6px 14px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

/* Card Body */
.event-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-location {
    color: #facc15;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.event-location .pin-icon {
    font-size: 0.85rem;
}

.event-title {
    font-family: var(--font-heading), 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.event-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 1.75rem;
    flex: 1;
}

/* Card Footer */
.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.5rem;
}

.event-pass-badge {
    color: #34d399;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.btn-explore-event {
    color: #facc15;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.btn-explore-event:hover {
    color: #ffffff;
    transform: translateX(2px);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .itm-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .itm-events-section {
        padding: 3rem 1.5rem;
    }
    .itm-events-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .itm-events-grid {
        grid-template-columns: 1fr;
    }
    .itm-events-title {
        font-size: 2rem;
    }
}


/* ==========================================================================
   ALTERNATING ANIMATED BATIK & ISLAMIC GEOMETRIC BACKGROUNDS
   ========================================================================== */

/* Section 1: Deals of the Day (Left Aligned, Clockwise) */
.batik-bg-left {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    max-width: 1800px;
    max-height: 1800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

.batik-bg-left .batik-svg {
    width: 100%;
    height: 100%;
    animation: rotateBatik 180s linear infinite;
}

/* Section 2: Merchant Highlights (Right Aligned, Counter-Clockwise) */
.merchant-batik-bg {
    position: absolute;
    top: 50%;
    left: 80% !important;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    max-width: 1800px;
    max-height: 1800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

/* Section 3: Official Directory (Left Aligned, Clockwise) */
.directory-batik-bg {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    max-width: 1800px;
    max-height: 1800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

.directory-batik-bg .batik-svg {
    width: 100%;
    height: 100%;
    animation: rotateBatik 180s linear infinite;
}

/* Section 4: ITC x Incentiv5 (Right Aligned, Counter-Clockwise Pulse) */
.itm-plus-islamic-bg {
    position: absolute;
    top: 50%;
    left: 75% !important;
    transform: translate(-50%, -50%);
    width: 140vw;
    height: 140vw;
    max-width: 1600px;
    max-height: 1600px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

/* Section 5: Major Events (Left Aligned, Clockwise) */
.events-batik-bg {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    max-width: 1800px;
    max-height: 1800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

.events-batik-svg {
    width: 100%;
    height: 100%;
    animation: rotateBatik 180s linear infinite;
}


/* ==========================================================================
   UPDATED BATIK BACKGROUND POSITIONING
   - Deals of the Day (#collection): CENTERED
   - Merchant Highlights (#merchants): RIGHT ALIGNED
   - ITM 2026 Directory (#directory): CENTERED
   - ITC x Incentiv5 (#itm-plus): RIGHT ALIGNED
   - ITM 2026 Major Events (#events): RIGHT ALIGNED
   ========================================================================== */

/* Section 1: Deals of the Day (CENTERED) */
.batik-bg, .batik-bg-left {
    position: absolute;
    top: 50%;
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    max-width: 1800px;
    max-height: 1800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Section 2: Merchant Highlights (RIGHT ALIGNED) */
.merchant-batik-bg {
    position: absolute;
    top: 50%;
    left: 80% !important;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    max-width: 1800px;
    max-height: 1800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Section 3: Official Directory (CENTERED) */
.directory-batik-bg {
    position: absolute;
    top: 50%;
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    max-width: 1800px;
    max-height: 1800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Section 5: Major Events (RIGHT ALIGNED) */
.events-batik-bg {
    position: absolute;
    top: 50%;
    left: 80% !important;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    max-width: 1800px;
    max-height: 1800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.events-batik-bg { display: none !important; }


/* ==========================================================================
   VENDOR CARD SPACING & GAP IMPROVEMENTS
   ========================================================================== */
.vendor-card-item {
    display: flex;
    flex-direction: column;
}

.vendor-card-item .deal-card-header {
    margin-bottom: 1.2rem !important;
}

.vendor-card-item .deal-title {
    margin-bottom: 1rem !important;
    font-size: 1.35rem !important;
    line-height: 1.35 !important;
    color: #ffffff !important;
    font-family: var(--font-heading), 'Playfair Display', serif !important;
}

.vendor-card-item .deal-subtitle {
    margin-bottom: 1.15rem !important;
    font-size: 0.82rem !important;
    color: #facc15 !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

.vendor-card-item .deal-desc {
    margin-bottom: 1.75rem !important;
    font-size: 0.83rem !important;
    color: #94a3b8 !important;
    line-height: 1.6 !important;
    word-break: break-word !important;
}

.vendor-card-item .deal-bottom {
    margin-top: auto;
}


/* ==========================================================================
   MERCHANT HIGHLIGHTS CAROUSEL ADJUSTMENTS
   - Removed description
   - Smaller premise name font size
   - Decreased image size in half
   ========================================================================== */
.merchant-card {
    width: 580px !important;
    padding: 2rem !important;
    gap: 2rem !important;
    align-items: center !important;
}

.merchant-name {
    font-size: 1.45rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.3 !important;
}

.merchant-desc {
    display: none !important;
}

.merchant-image-wrapper {
    flex: 0 0 220px !important;
    width: 220px !important;
    height: 220px !important;
    max-height: 220px !important;
    border-radius: 8px;
    overflow: hidden;
}

.merchant-image-wrapper img {
    border: 3px solid #fff !important;
    object-fit: cover !important;
}


/* Stacked Phone & Email Contact Info */
.vendor-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.75rem !important;
}

.vendor-contact-info .contact-line {
    font-size: 0.83rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    word-break: break-all;
}


/* ==========================================================================
   ENLARGED MERCHANT HIGHLIGHTS CARD CONTAINER (SPACIOUS LUXURY BOX)
   ========================================================================== */
.merchant-card {
    width: 720px !important;
    padding: 2.5rem 3rem !important;
    gap: 3rem !important;
    align-items: center !important;
    border-radius: 16px !important;
    background: rgba(15, 23, 42, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
}

.merchant-name {
    font-size: 1.55rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0.5px !important;
}

.merchant-image-wrapper {
    flex: 0 0 230px !important;
    width: 230px !important;
    height: 230px !important;
    max-height: 230px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}


/* ==========================================================================
   ENLARGED ITM 2026 EVENT CARDS CONTAINER HEIGHT
   ========================================================================== */
.event-card-item {
    min-height: 540px !important;
}

.event-card-img-wrap {
    height: 260px !important;
}

.event-card-body {
    padding: 1.85rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.event-desc {
    margin-bottom: 2.2rem !important;
    line-height: 1.65 !important;
    font-size: 0.88rem !important;
}


/* ==========================================================================
   INCREASE MERCHANT CARD OUTER BOX CONTAINER SIZE ONLY
   ========================================================================== */
.merchant-card {
    width: 920px !important;
    min-height: 340px !important;
    padding: 3.5rem 4.5rem !important;
    gap: 4rem !important;
    align-items: center !important;
    border-radius: 20px !important;
}


/* ==========================================================================
   ENLARGE MERCHANT HIGHLIGHTS LOGO & PREMISE TITLE BY 10%
   ========================================================================== */
.merchant-name {
    font-size: 1.7rem !important;
    margin-bottom: 1.35rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0.5px !important;
}

.merchant-image-wrapper {
    flex: 0 0 255px !important;
    width: 255px !important;
    height: 255px !important;
    max-height: 255px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}


/* ==========================================================================
   MERCHANT CARD BOX 1:3 ASPECT RATIO (HEIGHT : WIDTH)
   ========================================================================== */
.merchant-card {
    width: 900px !important;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    padding: 1.5rem 3rem !important;
    gap: 3.5rem !important;
    align-items: center !important;
    box-sizing: border-box !important;
    border-radius: 18px !important;
}

.merchant-image-wrapper {
    flex: 0 0 230px !important;
    width: 230px !important;
    height: 230px !important;
    max-height: 230px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.merchant-name {
    font-size: 1.6rem !important;
    margin-bottom: 1.2rem !important;
    line-height: 1.25 !important;
}


/* ==========================================================================
   MERCHANT CARD BOX: WIDTH 300PX x HEIGHT 900PX
   ========================================================================== */
.merchant-card {
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    height: 900px !important;
    min-height: 900px !important;
    max-height: 900px !important;
    flex-direction: column !important;
    padding: 2rem 1.5rem !important;
    gap: 1.5rem !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    border-radius: 18px !important;
    justify-content: space-between !important;
}

.merchant-content {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 !important;
    justify-content: space-between !important;
}

.merchant-name {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

.merchant-image-wrapper {
    flex: 0 0 260px !important;
    width: 100% !important;
    height: 260px !important;
    max-height: 260px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.merchant-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.btn-explore {
    width: 100% !important;
    text-align: center !important;
}


/* ==========================================================================
   MERCHANT CARD BOX: WIDTH 500PX x HEIGHT 900PX
   ========================================================================== */
.merchant-card {
    width: 500px !important;
    min-width: 500px !important;
    max-width: 500px !important;
    height: 900px !important;
    min-height: 900px !important;
    max-height: 900px !important;
    flex-direction: column !important;
    padding: 2.5rem 2rem !important;
    gap: 2rem !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    border-radius: 20px !important;
    justify-content: space-between !important;
}

.merchant-content {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 !important;
    justify-content: space-between !important;
}

.merchant-name {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

.merchant-image-wrapper {
    flex: 0 0 380px !important;
    width: 100% !important;
    height: 380px !important;
    max-height: 380px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}

.merchant-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.btn-explore {
    width: 100% !important;
    text-align: center !important;
    padding: 1.1rem 2rem !important;
    font-size: 1rem !important;
}


/* ==========================================================================
   MERCHANT CARD BOX: WIDTH 500PX x HEIGHT 500PX (SQUARE 1:1)
   ========================================================================== */
.merchant-card {
    width: 500px !important;
    min-width: 500px !important;
    max-width: 500px !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    flex-direction: column !important;
    padding: 2.2rem 2rem !important;
    gap: 1.5rem !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    border-radius: 20px !important;
    justify-content: space-between !important;
}

.merchant-content {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 !important;
    justify-content: space-between !important;
}

.merchant-name {
    font-size: 1.45rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

.merchant-image-wrapper {
    flex: 0 0 220px !important;
    width: 220px !important;
    height: 220px !important;
    max-height: 220px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}

.merchant-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.btn-explore {
    width: 100% !important;
    text-align: center !important;
    padding: 0.9rem 1.8rem !important;
    font-size: 0.9rem !important;
}


/* ==========================================================================
   MERCHANT CARD BOX: WIDTH 500PX x HEIGHT 900PX (FINAL)
   ========================================================================== */
.merchant-card {
    width: 500px !important;
    min-width: 500px !important;
    max-width: 500px !important;
    height: 900px !important;
    min-height: 900px !important;
    max-height: 900px !important;
    flex-direction: column !important;
    padding: 2.5rem 2rem !important;
    gap: 2rem !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    border-radius: 20px !important;
    justify-content: space-between !important;
}

.merchant-content {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 !important;
    justify-content: space-between !important;
}

.merchant-name {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

.merchant-image-wrapper {
    flex: 0 0 380px !important;
    width: 100% !important;
    height: 380px !important;
    max-height: 380px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}

.merchant-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.btn-explore {
    width: 100% !important;
    text-align: center !important;
    padding: 1.1rem 2rem !important;
    font-size: 1rem !important;
}


/* ==========================================================================
   EXACT MATCH: MERCHANT HIGHLIGHT CARD (HORIZONTAL SIDE-BY-SIDE)
   ========================================================================== */
.merchant-card {
    display: flex !important;
    flex-direction: row-reverse !important;
    width: 940px !important;
    min-width: 940px !important;
    max-width: 940px !important;
    height: 480px !important;
    min-height: 480px !important;
    max-height: 480px !important;
    padding: 2.5rem 3rem !important;
    gap: 3.5rem !important;
    align-items: center !important;
    background: rgba(11, 17, 32, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
}

.merchant-image-wrapper {
    flex: 0 0 340px !important;
    width: 340px !important;
    height: 400px !important;
    max-height: 400px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

.merchant-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border: 5px solid #ffffff !important;
}

.merchant-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    justify-content: center !important;
}

.merchant-badge {
    background-color: #d4af37 !important;
    color: #000000 !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    padding: 0.45rem 1.2rem !important;
    border-radius: 50px !important;
    margin-bottom: 1.25rem !important;
}

.merchant-name {
    font-family: var(--font-body), 'Outfit', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    color: #ffffff !important;
    margin-bottom: 0.8rem !important;
    text-transform: uppercase !important;
    text-align: left !important;
}

.merchant-category {
    font-size: 0.88rem !important;
    letter-spacing: 1.5px !important;
    color: #a0aab5 !important;
    text-transform: uppercase !important;
    margin-bottom: 2rem !important;
    font-weight: 500 !important;
}

.btn-explore {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 0.95rem 2.2rem !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    display: inline-block !important;
    border-radius: 2px !important;
}


/* ==========================================================================
   DECREASE MERCHANT PICTURE SIZE BY 10%
   ========================================================================== */
.merchant-image-wrapper {
    flex: 0 0 306px !important;
    width: 306px !important;
    height: 360px !important;
    max-height: 360px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}


/* ==========================================================================
   FURTHER DECREASE MERCHANT PICTURE SIZE BY ANOTHER 10%
   ========================================================================== */
.merchant-card {
    width: 880px !important;
    min-width: 880px !important;
    max-width: 880px !important;
    height: 420px !important;
    min-height: 420px !important;
    max-height: 420px !important;
    padding: 2.2rem 2.5rem !important;
    gap: 3rem !important;
}

.merchant-image-wrapper {
    flex: 0 0 275px !important;
    width: 275px !important;
    height: 324px !important;
    max-height: 324px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}


/* ==========================================================================
   MOBILE & TABLET RESPONSIVE SYSTEM (MAX-WIDTH: 768PX)
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* 1. Body & Container Adjustments */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* 2. Top Navbar Header on Mobile */
    .showcase-nav {
        flex-direction: column !important;
        padding: 1.25rem 1rem !important;
        position: relative !important;
        gap: 1.2rem !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .pill-left, .pill-center, .pill-right {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 0.75rem !important;
    }

    .logo-itm {
        height: 80px !important;
        max-width: 85% !important;
        margin: 0 auto !important;
    }

    .logo-partner-white {
        height: 45px !important;
        max-width: 80% !important;
    }

    .btn-auth {
        padding: 0.6rem 1.4rem !important;
        font-size: 0.85rem !important;
    }

    /* 3. Hero Section Title on Mobile */
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        padding: 0 1rem !important;
        text-align: center !important;
        word-break: break-word !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 1rem !important;
        text-align: center !important;
    }

    /* 4. Merchant Highlight Cards on Mobile */
    .merchant-card {
        width: 90vw !important;
        min-width: 90vw !important;
        max-width: 90vw !important;
        height: auto !important;
        min-height: initial !important;
        max-height: initial !important;
        flex-direction: column-reverse !important;
        padding: 1.5rem !important;
        gap: 1.5rem !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        border-radius: 16px !important;
    }

    .merchant-image-wrapper {
        flex: 0 0 220px !important;
        width: 100% !important;
        height: 220px !important;
        max-height: 220px !important;
        border-radius: 8px !important;
    }

    .merchant-content {
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }

    .merchant-name {
        font-size: 1.55rem !important;
        text-align: center !important;
        margin-bottom: 0.6rem !important;
    }

    .merchant-category {
        margin-bottom: 1.25rem !important;
    }

    .btn-explore {
        width: 100% !important;
        text-align: center !important;
        padding: 0.85rem 1.5rem !important;
        box-sizing: border-box !important;
    }

    /* 5. Section Grids (Deals, Directory, Events, Incentiv5) on Mobile */
    .deals-grid, .directory-grid, .events-grid, .itm-plus-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }

    .vendor-card-item, .deal-card, .event-card-item {
        width: 100% !important;
        max-width: 100% !important;
        min-height: initial !important;
        box-sizing: border-box !important;
    }

    .event-card-img-wrap {
        height: 200px !important;
    }

    /* 6. Section Headers & Titles on Mobile */
    .section-title {
        font-size: 1.8rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
    }

    /* 7. Category Filter Pills on Mobile */
    .directory-filters, .event-filters {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        padding: 0 1rem !important;
    }

    .filter-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
}

/* Form Select Inputs - Dark Navy matching all other form fields */
select,
.form-group select,
.directory-select-input {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

/* Expanded Dropdown Options - Black Text on White Background */
select option,
.form-group select option,
.directory-select-input option,
.filter-group select option,
option {
    background: #ffffff !important;
    color: #000000 !important;
    font-family: "Outfit", sans-serif !important;
    font-weight: 600 !important;
    padding: 10px !important;
}

.deal-category {
    color: #000000 !important;
    font-weight: 700 !important;
}

.view-category {
    background: var(--accent) !important;
    color: #000000 !important;
    font-weight: 700 !important;
}

/* 2.1 HERO VIDEO CAROUSEL & CONTROLS */
.hero-video-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-video.hero-video-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.bg-video.hero-video-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-carousel-controls {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.4rem 0.8rem;
}



.hero-carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Minimalist Clean Dash Lines */
.hero-dot {
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background: var(--accent, #d4af37);
    width: 42px;
    height: 3px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

.main-title {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.main-title.fade-out {
    opacity: 0;
    transform: translateY(-15px);
}

/* Watermark Hiding Crop for Video 2 */
.bg-video.hero-video-slide.hide-watermark {
    transform: translate(-32%, -50%) scale(1.50) !important;
    object-position: 0% 50% !important;
}

/* ==========================================================================
   AirAsia MOVE (AAM) x ITM Website Color Synergy Banner
   ========================================================================== */
.airasiamove-section {
    position: relative;
    /* Harmonious blend of ITM Slate/Indigo (#6b6a9c / #8483ac / #0b162c) with AirAsia Red (#e60000) & ITM Gold (#d4af37) */
    background: linear-gradient(135deg, #0d1527 0%, #1e2842 30%, #5c1827 75%, #a80015 100%) !important;
    padding: 6rem 6% !important;
    color: #ffffff !important;
    overflow: hidden;
    border-top: 2px solid var(--accent, #d4af37);
    border-bottom: 2px solid var(--accent, #d4af37);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
}

.airasiamove-section .itm-plus-islamic-bg {
    opacity: 0.55;
}

.airasiamove-banner-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.airasiamove-section .airasia-collab-badge {
    display: inline-block;
    background: rgba(230, 0, 0, 0.25);
    border: 1px solid #e60000;
    color: #ffb3b3;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 10px rgba(230, 0, 0, 0.2);
}

.airasiamove-section .itm-banner-col-left h2 {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 0.6rem 0;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.airasiamove-section .itm-banner-col-left p {
    color: #e2e8f0 !important;
    font-size: 0.98rem;
    max-width: 360px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.airasiamove-section .itm-banner-divider {
    background: linear-gradient(to bottom, transparent, var(--accent, #d4af37), transparent);
    width: 2px;
    height: 150px;
    margin: 0;
    opacity: 0.8;
}

.airasiamove-section .itm-banner-col-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.8rem;
}

.airasiamove-section .collab-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent, #d4af37);
    text-transform: uppercase;
}

.airasiamove-lockup {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(11, 22, 44, 0.75);
    padding: 1.1rem 1.6rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.airasiamove-lockup .collab-itc-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.airasiamove-lockup .collab-x-badge {
    color: #e60000;
    font-size: 1.3rem;
    font-weight: 900;
}

.airasiamove-logo-pill {
    background: #e60000;
    color: #ffffff;
    padding: 0.65rem 1.4rem;
    border-radius: 14px;
    font-family: var(--font-body), 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(230, 0, 0, 0.6);
    text-align: center;
    line-height: 1.1;
    min-width: 140px;
}

.airasiamove-logo-pill .air-brand {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.3px;
    color: #ffffff !important;
}

.airasiamove-logo-pill .move-brand {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff !important;
    margin-top: 2px;
    text-transform: uppercase;
}

.airasiamove-section .itm-banner-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    max-width: 360px;
}

.airasiamove-section .collab-right-title {
    font-family: var(--font-body);
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0;
    letter-spacing: -0.5px;
}

.airasiamove-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.airasiamove-perks span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    font-size: 0.82rem;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-weight: 600;
}

.collab-sub-desc {
    color: #cbd5e1;
    font-size: 0.92rem;
    margin: 0.3rem 0;
    line-height: 1.4;
}

.btn-airasia-move {
    background: #e60000;
    color: #ffffff !important;
    padding: 0.85rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.4rem;
}

.btn-airasia-move:hover {
    background: #ff1a1a;
    border-color: var(--accent, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 0, 0, 0.7);
}


/* AirAsia MOVE 3-Column Centered Layout & Removed Divider */
.airasiamove-banner-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    align-items: center !important;
    justify-items: center !important;
    gap: 2.5rem !important;
    text-align: center !important;
}

.airasiamove-section .itm-banner-col-left {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
}

.airasiamove-section .itm-banner-col-left p {
    text-align: center !important;
    max-width: 320px;
}

.airasiamove-section .itm-banner-col-mid {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.airasiamove-section .itm-banner-col-right {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    max-width: 320px;
}

.airasiamove-section .airasiamove-perks {
    justify-content: center !important;
}

.airasiamove-section .collab-sub-desc {
    text-align: center !important;
}


/* AirAsia MOVE Column 1 Left Alignment */
.airasiamove-section .itm-banner-col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
    justify-self: start;
}

.airasiamove-section .itm-banner-col-left h2 {
    text-align: left !important;
}

.airasiamove-section .itm-banner-col-left p {
    text-align: left !important;
    max-width: 360px;
}

.airasiamove-section .airasia-collab-badge {
    align-self: flex-start !important;
}


/* AirAsia MOVE Column 3 Left Alignment */
.airasiamove-section .itm-banner-col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
    justify-self: start;
}

.airasiamove-section .collab-right-title {
    text-align: left !important;
}

.airasiamove-section .airasiamove-perks {
    justify-content: flex-start !important;
}

.airasiamove-section .collab-sub-desc {
    text-align: left !important;
}

.airasiamove-section .btn-airasia-move {
    align-self: flex-start !important;
}


.collab-sub-desc,
.airasiamove-section .collab-sub-desc {
    color: #ffffff !important;
    text-align: left !important;
}

/* AirAsia MOVE 3-Column Equal Top Baseline & Consistent Vertical Gaps */
.airasiamove-banner-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1.1fr 1fr 1fr !important;
    align-items: start !important;
    justify-items: stretch !important;
    gap: 2.5rem !important;
}

.airasiamove-section .itm-banner-col-left,
.airasiamove-section .itm-banner-col-mid,
.airasiamove-section .itm-banner-col-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 1rem !important;
}

.airasiamove-section .airasia-collab-badge,
.airasiamove-section .collab-label {
    margin: 0 !important;
    line-height: 1.2 !important;
    min-height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.airasiamove-section .collab-right-title {
    margin: 0 !important;
    line-height: 1.2 !important;
    min-height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    font-size: 1.6rem !important;
}

.airasiamove-section .itm-banner-col-left h2 {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 2.3rem !important;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.15 !important;
}

.airasiamove-section .itm-banner-col-left p {
    color: #e2e8f0 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.airasiamove-section .airasiamove-lockup {
    margin: 0 !important;
}

.airasiamove-section .airasiamove-perks {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin: 0 !important;
}

.airasiamove-section .collab-sub-desc {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.airasiamove-section .btn-airasia-move {
    margin-top: 0.2rem !important;
}


/* Vibrant ITM Lavender to AirAsia MOVE Red Synergy Gradient */
.airasiamove-section {
    position: relative;
    /* Seamless blend from ITM Lavender (#6f6ca8 / #8582c7) to Vibrant AirAsia Red (#c40e2b / #f50029) */
    background: linear-gradient(135deg, #57548a 0%, #7d7abf 32%, #b51c3e 68%, #e60021 100%) !important;
    padding: 6rem 6% !important;
    color: #ffffff !important;
    overflow: hidden;
    border-top: 2px solid rgba(255, 255, 255, 0.25);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.35);
}

.airasiamove-section .itm-plus-islamic-bg {
    opacity: 0.65;
}

.airasiamove-section .airasia-collab-badge {
    display: inline-block;
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.airasiamove-section .itm-banner-col-left h2 {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 2.5rem !important;
    font-weight: 800;
    color: #000000 !important;
    margin: 0 !important;
    line-height: 1.15 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.airasiamove-section .itm-banner-col-left p {
    color: #000000 !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.airasiamove-section .collab-label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #000000 !important;
    text-transform: uppercase;
}

.airasiamove-lockup {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #000000 !important;
    padding: 1.1rem 1.6rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.airasiamove-section .collab-right-title {
    font-family: var(--font-body);
    font-size: 1.85rem !important;
    font-weight: 800;
    color: #000000 !important;
    margin: 0 !important;
    letter-spacing: -0.5px;
}

.airasiamove-section .airasiamove-perks span {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-size: 0.85rem;
    padding: 0.4rem 0.95rem;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.airasiamove-section .collab-sub-desc {
    color: #000000 !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.airasiamove-section .btn-airasia-move {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.airasiamove-section .btn-airasia-move:hover {
    background: #e60000 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 0, 0, 0.5);
}


.airasiamove-lockup .collab-itc-logo {
    height: 58px !important;
    width: auto;
    object-fit: contain;
}

/* Lockup Box & AAM Pill fixed dimensions with ITC Logo 20% scale */
.airasiamove-lockup {
    height: 78px !important;
    max-height: 78px !important;
    box-sizing: border-box !important;
    align-items: center !important;
    padding: 0.8rem 1.4rem !important;
}

.airasiamove-lockup .collab-itc-logo {
    height: 48px !important;
    width: auto !important;
    object-fit: contain !important;
    transform: scale(1.2) !important;
    transform-origin: center !important;
}


/* AirAsia MOVE Logo Pill 10% Size Reduction */
.airasiamove-logo-pill {
    background: #e60000 !important;
    color: #ffffff !important;
    padding: 0.48rem 1.05rem !important;
    border-radius: 10px !important;
    font-family: var(--font-body), 'Outfit', sans-serif !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(230, 0, 0, 0.5) !important;
    text-align: center !important;
    line-height: 1.05 !important;
    min-width: 118px !important;
}

.airasiamove-logo-pill .air-brand {
    font-size: 1.1rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.3px !important;
    color: #ffffff !important;
}

.airasiamove-logo-pill .move-brand {
    font-size: 1.22rem !important;
    font-weight: 900 !important;
    letter-spacing: 1.8px !important;
    color: #ffffff !important;
    margin-top: 1px !important;
    text-transform: uppercase !important;
}


/* Vendor Names Capitalize Each Word */
.vendor-card-item .deal-title,
.merchant-name {
    text-transform: capitalize !important;
}


/* Vendor Address Capitalize Each Word */
.deal-subtitle,
.contact-line {
    text-transform: capitalize;
}


/* Remove blank line gap between address and contact info */
.vendor-card-item .deal-subtitle {
    margin-bottom: 0.4rem !important;
}
