/* Lenis Smooth Scroll Support */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fdfcfb;
}

::-webkit-scrollbar-thumb {
    background: var(--vl-orange);
    border-radius: 10px;
    border: 2px solid #fdfcfb;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--vl-orange-dark);
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--vl-orange) #fdfcfb;
    scroll-margin-top: 100px; /* Offset for floating header */
}

#hero {
    scroll-margin-top: 0 !important;
}

:root {
    --vl-orange: #f16b24;
    --vl-orange-dark: #d85a1a;
    --vl-black: #0a0a0a;
    --vl-muted: #60646f;
    --vl-soft: #f6f7f8;
    --vl-border: #eceef2;
    --vl-white: #ffffff;
}

.vl-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(236, 238, 242, 0.8);
}

.vl-nav {
    width: min(1180px, calc(100% - 40px));
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 768px) {
    .vl-nav {
        width: 100%;
        padding: 0 16px;
        min-height: 64px;
        gap: 12px;
    }
}

.vl-logo img {
    width: 178px;
    max-height: 58px;
    object-fit: contain;
}

.vl-nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-left: auto;
}

.vl-nav-links a {
    font-size: 15px;
    font-weight: 800;
    color: var(--vl-black);
    transition: color .2s ease;
}

.vl-nav-links a:hover,
.vl-nav-links a.is-active {
    color: var(--vl-orange);
}

.vl-whatsapp-btn,
.vl-menu-btn,
.vl-cta-primary,
.vl-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vl-whatsapp-btn,
.vl-cta-primary {
    background: var(--vl-orange);
    color: var(--vl-white);
    box-shadow: 0 18px 32px rgba(241, 107, 36, 0.24);
}

.vl-whatsapp-btn {
    gap: 10px;
    padding: 14px 22px;
    font-size: 14px;
    white-space: nowrap;
}

.vl-whatsapp-btn:hover,
.vl-cta-primary:hover {
    background: var(--vl-orange-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 24px 40px rgba(241, 107, 36, 0.3);
}

.vl-menu-btn {
    display: none;
    /* Hide on desktop by default */
    width: 48px;
    height: 48px;
    color: var(--vl-black);
    border: 1px solid transparent;
}

.vl-menu-btn:hover {
    border-color: var(--vl-border);
    background: var(--vl-soft);
}

.vl-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 70;
    transform: translateX(100%);
    transition: transform .35s ease;
    background: var(--vl-white);
    padding: 120px 28px 40px;
}

.vl-mobile-menu.is-open {
    transform: translateX(0);
}

.vl-mobile-menu a {
    display: block;
    padding: 18px 0;
    font-size: 34px;
    font-weight: 800;
    color: var(--vl-black);
    transition: color .2s ease;
}

.vl-mobile-menu a.is-active {
    color: var(--vl-orange);
}

.vl-main {
    padding-top: 86px;
}

.vl-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 86px);
    padding: 42px 0 34px;
    background: var(--vl-white);
}

.vl-hero::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 450px;
    height: 450px;
    background: repeating-radial-gradient(circle at 0% 100%,
            transparent,
            transparent 30px,
            rgba(241, 107, 36, 0.08) 31px,
            rgba(241, 107, 36, 0.08) 32px);
    z-index: 0;
    pointer-events: none;
}

.vl-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 550px;
    height: 550px;
    background: repeating-radial-gradient(circle at 100% 100%,
            transparent,
            transparent 35px,
            rgba(241, 107, 36, 0.06) 36px,
            rgba(241, 107, 36, 0.06) 37px);
    z-index: 0;
    pointer-events: none;
}

.vl-hero-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 52px;
    position: relative;
    z-index: 1;
}

.vl-hero-copy {
    position: relative;
    z-index: 2;
    animation: vlFadeUp .6s ease both;
}

.vl-agent-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.vl-agent-photo {
    position: relative;
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
}

.vl-agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--vl-white);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.vl-agent-photo span {
    position: absolute;
    right: 2px;
    bottom: 4px;
    width: 17px;
    height: 17px;
    border-radius: 999px;
    border: 3px solid var(--vl-white);
    background: #19c463;
}

.vl-agent-name {
    display: block;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: var(--vl-black);
}

.vl-agent-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--vl-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vl-agent-meta strong {
    color: var(--vl-orange);
}

.vl-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c8ccd3;
}

.vl-headline {
    max-width: 560px;
    font-size: clamp(45px, 4.8vw, 89px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: 0;
    color: #030303;
}

.vl-headline span {
    color: var(--vl-orange);
    font-style: italic;
}

.vl-subcopy {
    max-width: 480px;
    margin-top: 24px;
    color: var(--vl-muted);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
}

.vl-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.vl-cta-primary,
.vl-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 32px;
    gap: 12px;
    font-size: 15px;
    min-width: 220px; /* Standardize size */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vl-btn-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.vl-cta-primary:hover .vl-btn-icon,
.vl-cta-secondary:hover .vl-btn-icon {
    transform: scale(1.1);
}

.vl-cta-secondary {
    color: var(--vl-black);
    background: var(--vl-white);
    border: 1px solid #d9dde5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.vl-cta-secondary:hover {
    background: #f8f9fa;
    border-color: var(--vl-black);
    color: var(--vl-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.vl-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
    max-width: 580px;
}

.vl-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vl-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid !important;
    place-items: center !important;
    color: #ffffff !important;
    background: var(--vl-orange);
    box-shadow: 0 10px 20px rgba(241, 107, 36, 0.2);
    flex: 0 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vl-feature-item:hover .vl-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--vl-orange-dark);
}

.vl-feature-icon svg {
    display: block;
    margin: 0 !important;
    width: 22px;
    height: 22px;
}

.vl-feature-item strong {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    color: var(--vl-black);
}

.vl-feature-item span {
    display: block;
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.35;
    color: var(--vl-muted);
    font-weight: 700;
}

.vl-hero-visual {
    position: relative;
    min-height: 590px;
    animation: vlFadeUp .7s .08s ease both;
}

.vl-orange-shape {
    position: absolute;
    right: 40px;
    top: 30px;
    width: min(78%, 500px);
    height: 62%;
    border-radius: 48px 100px 54px 120px;
    background: var(--vl-orange);
    transform: rotate(-6deg);
}

.vl-dots {
    position: absolute;
    right: 5px;
    top: 25px;
    width: 110px;
    height: 110px;
    transform: rotate(5deg);
    background-image: radial-gradient(var(--vl-orange) 2.5px, transparent 3px);
    background-size: 16px 16px;
    opacity: .6;
    z-index: 0;
}

.vl-dots.is-bottom {
    right: 310px;
    top: auto;
    bottom: 70px;
}

.vl-dots.is-middle {
    right: auto;
    left: -20px;
    top: 70%;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    opacity: 0.5;
    z-index: 1;
}

.vl-image-border {
    position: absolute;
    inset: 58px 25px auto auto;
    width: min(92%, 630px);
    aspect-ratio: 1.22;
    border: 2px solid var(--vl-orange);
    border-radius: 44px 88px 50px 96px;
    transform: rotate(-3deg);
    z-index: 1;
    pointer-events: none;
}

.vl-image-card {
    position: absolute;
    inset: 45px 12px auto auto;
    width: min(92%, 630px);
    aspect-ratio: 1.22;
    overflow: hidden;
    border-radius: 44px 88px 50px 96px;
    border: 2.5px solid rgba(241, 107, 36, 0.4);
    box-shadow: 0 36px 70px rgba(0, 0, 0, 0.16);
    transform: rotate(-3deg);
    background: var(--vl-soft);
    z-index: 2;
}

.vl-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(3deg) scale(1.08);
}

.vl-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
}

.vl-hero-slide.is-active {
    opacity: 1;
}

.vl-hero-slide img {
    animation: ken-burns 12s ease-in-out infinite alternate;
}

@keyframes ken-burns {
    0% {
        transform: rotate(3deg) scale(1.08);
    }

    100% {
        transform: rotate(3deg) scale(1.18);
    }
}

.vl-testimonial {
    position: absolute;
    right: -15px;
    bottom: 10px;
    width: 285px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.14);
    z-index: 2;
}

.vl-avatar-stack {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vl-avatar-stack img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--vl-white);
    margin-right: -16px;
}

.vl-trust-meta {
    margin-left: 20px;
}

.vl-trust-meta span {
    display: block;
    font-size: 8px;
    letter-spacing: 0.12em;
    color: var(--vl-muted);
    font-weight: 800;
}

.vl-trust-meta strong {
    display: block;
    font-size: 11px;
    color: var(--vl-orange);
    font-weight: 900;
    margin-top: -1px;
}

.vl-testimonial blockquote {
    font-size: 13px;
    line-height: 1.55;
    color: var(--vl-black);
    font-weight: 800;
}

.vl-stars {
    margin-top: 10px;
    color: var(--vl-orange);
    font-size: 15px;
    letter-spacing: 2px;
}

.vl-social-rail {
    position: fixed;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 45;
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 14px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
}

.vl-social-rail a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--vl-white);
    font-size: 13px;
    font-weight: 900;
    transition: transform .2s ease;
}

.vl-social-rail a:hover {
    transform: translateY(-2px);
}

.vl-social-instagram {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}

.vl-social-facebook {
    background: #1877f2;
}

.vl-social-tiktok {
    background: #090909;
}

.vl-social-whatsapp {
    background: #25d366;
}

.vl-social-chat {
    background: var(--vl-orange);
}

.vl-bottom-bar {
    width: min(1060px, calc(100% - 64px));
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.18fr;
    overflow: hidden;
    border-radius: 22px;
    background: #121212;
    box-shadow: none;
}

.vl-bottom-item,
.vl-bottom-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 88px;
    padding: 16px 22px;
    color: var(--vl-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vl-bottom-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--vl-white);
}

.vl-bottom-item:hover .vl-bottom-icon,
.vl-bottom-item:hover > span:last-child {
    transform: translateY(-3px);
}

.vl-bottom-item+.vl-bottom-item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.vl-bottom-icon {
    width: 44px;
    height: 44px;
    display: grid !important;
    place-items: center !important;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    flex: 0 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vl-bottom-icon svg {
    display: block;
    margin: 0 !important;
    width: 22px;
    height: 22px;
}

.vl-bottom-cta .vl-bottom-icon {
    background: rgba(255, 255, 255, 0.25);
}

.vl-bottom-item strong,
.vl-bottom-cta strong {
    display: block;
    font-size: 14px;
}

.vl-bottom-item span,
.vl-bottom-cta span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.vl-bottom-cta {
    background: var(--vl-orange);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vl-bottom-cta:hover {
    background: var(--vl-orange-dark);
}

.vl-bottom-cta:hover .vl-bottom-icon,
.vl-bottom-cta:hover > span:last-child {
    transform: translateY(-3px);
}

.vl-bottom-cta:hover .vl-bottom-icon {
    background: rgba(255, 255, 255, 0.35);
}

@keyframes vlFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.vl-nav,
.vl-hero-inner {
    width: min(100% - 48px, 1280px);
    margin-left: auto;
    margin-right: auto;
}

.vl-hero {
    min-height: 700px;
    /* Kurangkan sikit, tak perlu 100vh penuh */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    /* Padding lebih kecil */
    overflow: hidden;
    gap: 30px;
}

@media (max-width: 1180px) {

    .vl-nav,
    .vl-hero-inner {
        width: min(100% - 32px, 1080px);
    }

    .vl-headline {
        font-size: clamp(52px, 6vw, 86px);
    }
}

/* Infinite Marquee Styles */
.vl-marquee-wrapper {
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.vl-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 80px;
}

.vl-marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 80px;
    min-width: 100%;
    animation: marquee-scroll 50s linear infinite;
}

.vl-marquee-item {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.1em; /* Increased for premium look */
    color: #71717a;
    opacity: 0.4;
    filter: grayscale(1);
    white-space: nowrap;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 80px));
    }
}

/* Hide CTA Arrow on Desktop by default */
.vl-cta-arrow {
    display: none;
}

@media (max-width: 900px) {
    .vl-nav {
        min-height: 74px;
        width: min(100% - 24px, 1080px);
        gap: 12px;
        justify-content: space-between;
    }

    .vl-logo img {
        width: 135px;
    }

    .vl-nav-links {
        display: none !important;
    }

    .vl-whatsapp-btn {
        width: auto !important;
        height: 40px !important;
        padding: 0 14px !important;
        border-radius: 99px !important;
        gap: 6px;
        margin-left: auto;
    }

    .vl-whatsapp-btn span {
        display: inline !important;
        font-size: 11px;
        font-weight: 800;
        white-space: nowrap;
    }

    .vl-whatsapp-btn svg {
        width: 14px;
        height: 14px;
    }

    .vl-menu-btn {
        display: flex;
    }

    .vl-main {
        padding-top: 74px;
    }

    .vl-hero {
        min-height: auto;
        padding: 22px 0 26px;
    }

    .vl-hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 10px;
        text-align: left;
    }

    .vl-agent-row {
        display: flex;
        gap: 16px;
        margin-bottom: 32px;
        align-items: center;
        justify-content: flex-start;
    }

    .vl-agent-photo {
        width: 72px;
        height: 72px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.04);
        padding: 5px;
        box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08);
    }

    .vl-agent-photo img {
        border-radius: 16px;
    }

    .vl-agent-name {
        font-size: 22px;
        font-weight: 900;
        letter-spacing: -0.04em;
        margin-bottom: 1px;
        color: #000;
    }

    .vl-agent-meta {
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.12em;
        /* Luxury Spacing */
        color: #a1a1aa;
        text-transform: uppercase;
    }

    .vl-headline {
        font-size: 48px;
        line-height: 1.15;
        /* Ultra-tight editorial */
        letter-spacing: -0.02em;
        font-weight: 900;
        margin-bottom: 24px;
        color: #000;
    }

    .vl-headline span {
        display: inline;
        color: var(--vl-orange);
        font-style: italic;
    }

    .vl-subcopy {
        font-size: 16px;
        line-height: 1.625;
        color: #52525b;
        margin-bottom: 42px;
        font-weight: 500;
        max-width: 100%;
        letter-spacing: -0.01em;
    }

    .vl-hero-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100%;
    }

    .vl-cta-primary {
        width: 100% !important;
        min-width: 0 !important;
        height: 64px !important;
        font-size: 18px;
        font-weight: 900;
        border-radius: 20px;
        justify-content: center;
        gap: 12px !important;
        box-shadow: 0 20px 25px -5px rgba(254, 110, 0, 0.2),
            0 8px 10px -6px rgba(254, 110, 0, 0.2);
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .vl-btn-icon {
        opacity: 0.8;
    }

    .vl-cta-arrow {
        display: block;
        margin-left: 0;
        opacity: 0.9;
        transition: transform 0.3s ease;
    }

    .vl-cta-secondary {
        width: 100% !important;
        min-width: 0 !important;
        height: 64px !important;
        font-size: 18px;
        font-weight: 900;
        border-radius: 20px;
        justify-content: center;
        background: var(--vl-white);
        color: var(--vl-black);
        border: 1px solid #e4e4e7;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    }

    .vl-hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        margin-top: 24px;
        width: 100%;
    }

    .vl-hero::before,
    .vl-hero::after {
        width: 300px;
        height: 300px;
        opacity: 0.6;
    }

    .vl-feature-row {
        display: none;
    }

    .vl-feature-item {
        padding: 12px;
        border: 1px solid var(--vl-border);
        border-radius: 16px;
        background: var(--vl-white);
    }

    .vl-feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .vl-orange-shape,
    .vl-dots,
    .vl-image-border {
        display: none;
    }

    .vl-image-card {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        inset: auto;
        width: 100%;
        margin: 0 auto;
        border-radius: 24px;
        border: none;
        transform: rotate(0);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    .vl-hero-slide img {
        animation: ken-burns-mobile 12s ease-in-out infinite alternate !important;
    }

    .vl-image-card img {
        transform: rotate(0deg) scale(1) !important;
        border-radius: 24px;
    }

    @keyframes ken-burns-mobile {
        0% { transform: scale(1.08); }
        100% { transform: scale(1.18); }
    }

    .vl-testimonial {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        inset: auto;
        width: 100%;
        margin: 24px auto 0;
        z-index: 10;
        transform: none;
        padding: 24px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid #f4f4f5;
        box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    }

    .vl-testimonial blockquote {
        font-size: 14px;
    }

    /* Dots hidden above */

    .vl-social-rail {
        left: auto;
        right: 10px;
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: column;
        padding: 8px 5px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(0, 0, 0, 0.04);
        border-radius: 99px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        z-index: 100;
    }

    .vl-social-rail a {
        width: 40px;
        height: 40px;
    }

    .vl-bottom-bar {
        width: min(100% - 28px, 620px);
        margin: 24px auto 0;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        border-radius: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .vl-bottom-item,
    .vl-bottom-cta {
        min-width: 235px;
        scroll-snap-align: start;
    }
}

@media (max-width: 380px) {
    .vl-hero-actions {
        grid-template-columns: 1fr;
    }

    .vl-headline {
        font-size: 43px;
    }
}

/* Feature Section - Isometric Layout */
.vl-feature-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.vl-feature-visual img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.vl-feature-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vl-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #a1a1aa;
    text-transform: uppercase;
}

.vl-feature-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--vl-black);
    margin-bottom: 24px;
}

.vl-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.vl-feature-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vl-check-circle {
    width: 20px;
    height: 20px;
    background: #f1f1f1;
    color: var(--vl-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    margin-top: 4px;
    flex-shrink: 0;
}

.vl-feature-list-content strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--vl-black);
}

.vl-feature-list-content p {
    display: none;
}

.vl-feature-footer {
    display: flex;
    align-items: center;
    gap: 32px;
}

.vl-btn-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--vl-orange);
    color: #fff;
    padding: 18px 34px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(254, 110, 0, 0.25);
}

.vl-btn-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(254, 110, 0, 0.35);
}

.vl-feature-contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vl-contact-icon {
    width: 48px;
    height: 48px;
    background: #f8f9f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18181b;
}

.vl-contact-text span {
    display: block;
    font-size: 12px;
    color: #71717a;
    font-weight: 500;
}

.vl-contact-text strong {
    font-size: 16px;
    color: var(--vl-black);
    font-weight: 700;
}

@media (max-width: 900px) {
    .vl-feature-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vl-feature-title {
        font-size: 38px;
    }

    .vl-feature-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .vl-btn-feature {
        width: 100%;
        text-align: center;
    }
}

/* --- UTILITY OVERRIDES --- */
.section-spacing {
    padding-block: 60px; /* Reduced from 80px */
}

@media (min-width: 768px) {
    .section-spacing {
        padding-block: 90px; /* Reduced from 128px */
    }
}


/* WhatsApp CTA Bubble Enhanced Transitions */
.wa-bubble-init {
    opacity: 0;
    visibility: hidden;
    transform: translate(20px, -50%) scale(0.85); /* Slightly right and smaller */
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.wa-bubble-active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%) scale(1); /* Reset translate and scale */
    pointer-events: auto;
}

.animate-bounce-horizontal {
    animation: bounce-horizontal 2s infinite 0.6s; /* Wait for entry transition */
}

@keyframes bounce-horizontal {
    0%, 100% {
        /* We use margin-right for the bounce to avoid fighting with the absolute transform */
        margin-right: 0;
    }
    50% {
        margin-right: 8px;
    }
}

#wa-bubble {
    display: flex !important;
}

/* Adjust for mobile to be bigger and readable */
@media (max-width: 768px) {
    #wa-bubble {
        font-size: 13px !important;
        padding: 10px 16px !important;
        right: calc(100% + 12px);
    }
}

/* Form Transition Animations */
.form-fade-in {
    animation: formFadeIn 0.4s ease-out forwards;
}

@keyframes formFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Inquiry Form - lighter premium treatment */
#enquiry .glass-card {
    padding: clamp(1.5rem, 2.2vw, 2.25rem);
    border-color: rgba(229, 231, 235, 0.78);
    background-color: rgba(255, 255, 255, 0.88);
    --tw-shadow: 0 22px 48px -36px rgba(15, 23, 42, 0.22);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    --tw-backdrop-blur: blur(14px);
    backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
}

#enquiry .glass-card > .absolute.top-0.right-0 {
    width: 6rem;
    height: 6rem;
    opacity: 0.55;
}

#enquiry .glass-card > .mb-12 {
    margin-bottom: 1.5rem;
}

#enquiry .glass-card > .flex.p-1\.5.bg-gray-100\/80.rounded-2xl.mb-10 {
    margin-bottom: 1.5rem;
    padding: 0.35rem;
    border: 1px solid rgba(226, 232, 240, 0.85);
    background-color: rgba(248, 250, 252, 0.92);
    border-radius: 1.25rem;
}

#enquiry #tab-indicator {
    top: 0.25rem;
    left: 0.25rem;
    width: calc(33.33% - 0.33rem);
    height: calc(100% - 0.5rem);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.95);
    --tw-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.35);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

#enquiry #btn-buy,
#enquiry #btn-sell,
#enquiry #btn-value {
    padding-block: 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
}

#enquiry form {
    gap: 1.25rem;
}

#enquiry form.space-y-8 > :not(:last-child),
#enquiry #dynamic-fields.space-y-8 > :not(:last-child) {
    margin-bottom: 1.25rem;
}

#enquiry form label {
    font-size: 0.63rem;
    letter-spacing: 0.24em;
    color: #94a3b8;
}

#enquiry form input,
#enquiry form select {
    border-radius: 0.95rem;
    border-color: rgba(226, 232, 240, 0.88);
    background-color: rgba(255, 255, 255, 0.96);
    --tw-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    padding-block: 1rem;
}

#enquiry form input:focus,
#enquiry form select:focus {
    --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    --tw-ring-color: rgba(241, 107, 36, 0.09);
}

#enquiry .btn-primary {
    height: 4.25rem;
    border-radius: 1.15rem;
    font-size: 1rem;
    --tw-shadow: 0 18px 36px -24px rgba(241, 107, 36, 0.72);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

#enquiry .btn-primary + p {
    margin-top: 0.75rem;
}

.cta-whatsapp-bounce {
    will-change: transform;
    animation: cta-float 3.2s ease-in-out infinite;
}

.cta-whatsapp-bounce:hover {
    animation-play-state: paused;
    transform: translateY(-2px) scale(1.02);
}

@keyframes cta-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-whatsapp-bounce {
        animation: none;
    }
}

#listings-scroll .listing-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937 !important;
    border: 1px solid rgba(209, 213, 219, 0.75);
    border-radius: 0.7rem;
    text-transform: none;
    letter-spacing: 0.01em;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 10px 22px -18px rgba(15, 23, 42, 0.38);
}

#airbnb-scroll [data-preview-count] {
    z-index: 20;
}

@media (max-width: 767px) {
    #airbnb-scroll > a {
        min-width: 11rem;
    }

    #airbnb-scroll [data-preview-count] {
        top: auto !important;
        right: 0.65rem !important;
        bottom: 0.65rem !important;
        left: auto !important;
        padding: 0.28rem 0.58rem;
        font-size: 0.66rem;
        line-height: 1;
        border-radius: 0.72rem;
        box-shadow: 0 8px 16px -12px rgba(15, 23, 42, 0.28);
    }

    #listings-scroll .listing-pricing {
        margin-top: 0.85rem;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(243, 244, 246, 0.9);
    }

    #listings-scroll .listing-specs {
        gap: 0.45rem;
    }

    #listings-scroll .listing-badge {
        top: 0.75rem;
        left: 0.75rem;
        padding: 0.31rem 0.64rem;
        border-radius: 0.72rem;
        font-size: 0.68rem;
        letter-spacing: 0.01em;
        line-height: 1;
        box-shadow: 0 8px 16px -12px rgba(15, 23, 42, 0.25);
    }
}

/* Listings View Toggle */
.listing-view-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: transparent;
    color: #71717a;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    line-height: 1;
    transition: all 0.25s ease;
}

.listing-view-toggle:hover {
    background: #fafafa;
    color: #18181b;
}

.listing-view-toggle.is-active {
    background: #f16b24;
    border-color: #f16b24;
    color: #ffffff;
    box-shadow: 0 18px 30px -18px rgba(241, 107, 36, 0.75);
}

/* Desktop Listings List Mode */
@media (min-width: 768px) {
    #listings-scroll:not(.listing-view-list) .listing-content {
        display: flex;
        flex: 1 1 0%;
        flex-direction: column;
        justify-content: flex-start;
        min-width: 0;
        padding: 1.35rem 1.35rem 1.5rem;
    }

    #listings-scroll:not(.listing-view-list) .listing-category {
        font-size: 0.7rem;
        letter-spacing: 0.18em;
    }

    #listings-scroll:not(.listing-view-list) .listing-title {
        font-size: clamp(1.35rem, 1.7vw, 1.65rem);
        line-height: 1.12;
        min-height: calc(1.12em * 2);
        -webkit-line-clamp: 2;
    }

    #listings-scroll:not(.listing-view-list) .listing-pricing {
        margin-top: 1.1rem;
        padding-top: 1rem;
        align-items: flex-end;
        gap: 1rem;
        border-top: 1px solid rgba(243, 244, 246, 0.95);
    }

    #listings-scroll:not(.listing-view-list) .listing-price {
        font-size: clamp(1.55rem, 2vw, 2rem);
        line-height: 1;
        white-space: nowrap;
        font-variant-numeric: tabular-nums;
    }

    #listings-scroll:not(.listing-view-list) .listing-specs {
        gap: 0.7rem;
        font-size: 0.78rem;
        line-height: 1.1;
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    #listings-scroll:not(.listing-view-list) .listing-specs span {
        white-space: nowrap;
    }

    #listings-scroll:not(.listing-view-list) .listing-badge {
        top: 0.9rem;
        left: 0.9rem;
        padding: 0.36rem 0.76rem;
        border-radius: 0.78rem;
        font-size: 0.82rem;
        letter-spacing: 0.01em;
        line-height: 1;
        box-shadow: 0 12px 24px -18px rgba(15, 23, 42, 0.3);
    }

    #listings-scroll.listing-view-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    #listings-scroll.listing-view-list .listing-card {
        flex-direction: row;
        height: 170px;
        border-radius: 1.75rem;
    }

    #listings-scroll.listing-view-list .listing-media {
        width: 170px;
        height: 100%;
        aspect-ratio: auto;
        flex-shrink: 0;
    }

    #listings-scroll.listing-view-list .listing-badge {
        top: 0.9rem;
        left: 0.9rem;
        padding: 0.34rem 0.72rem;
        border-radius: 0.78rem;
        font-size: 0.75rem;
        letter-spacing: 0.01em;
        box-shadow: 0 12px 22px -18px rgba(15, 23, 42, 0.28);
    }

    #listings-scroll.listing-view-list .listing-content {
        display: flex;
        flex: 1 1 0%;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
        padding: 1.5rem 1.5rem 1.25rem;
    }

    #listings-scroll.listing-view-list .listing-category {
        font-size: 0.7rem;
        letter-spacing: 0.18em;
    }

    #listings-scroll.listing-view-list .listing-title {
        font-size: 1.25rem;
        line-height: 1.15;
        -webkit-line-clamp: 2;
    }

    #listings-scroll.listing-view-list .listing-pricing {
        margin-top: 0.95rem;
        padding-top: 0.95rem;
        border-top: 1px solid rgba(243, 244, 246, 0.95);
    }

    #listings-scroll.listing-view-list .listing-price {
        font-size: 2rem;
    }

    #listings-scroll.listing-view-list .listing-specs {
        gap: 0.85rem;
        font-size: 0.85rem;
    }
}

@media (min-width: 1280px) {
    #listings-scroll:not(.listing-view-list) {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

/* Listing Modal */
html.listing-modal-open,
body.listing-modal-open {
    overflow: hidden !important;
}

body.listing-modal-open {
    overscroll-behavior: none;
    touch-action: none;
}

.listing-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    overscroll-behavior: contain;
}

.listing-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.listing-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 12, 20, 0.64);
    backdrop-filter: blur(7px);
}

.listing-modal-panel {
    position: relative;
    width: min(1240px, calc(100% - 2rem));
    height: min(920px, calc(100dvh - 2rem));
    margin: 1rem auto;
    border-radius: 1.75rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    box-shadow: 0 40px 110px rgba(2, 6, 23, 0.28);
    overflow: hidden;
    overscroll-behavior: contain;
}

.listing-modal-close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 1);
    color: #475569;
    background: rgba(255, 255, 255, 0.96);
    transition: all 0.22s ease;
}

.listing-modal-close-btn:hover {
    background: #ffffff;
    color: #111827;
    transform: scale(1.03);
}

.listing-modal-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.1rem;
    height: 100%;
    padding: 1.2rem;
}

.listing-modal-gallery-col {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 0.9rem;
    min-height: 0;
}

.listing-modal-main-image-wrap {
    position: relative;
    border-radius: 1.35rem;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.85);
    min-height: 0;
    touch-action: pan-y;
}

.listing-modal-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateX(0) scale(1);
}

.listing-modal-main-image.is-dragging {
    transition: none !important;
    cursor: grabbing;
}

.listing-modal-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: rgba(255, 255, 255, 0.94);
    color: #111827;
    box-shadow: 0 14px 30px -20px rgba(15, 23, 42, 0.45);
    transform: translateY(-50%);
    transition: all 0.22s ease;
}

.listing-modal-gallery-nav:hover {
    background: #ffffff;
    border-color: rgba(241, 107, 36, 0.28);
    color: #f16b24;
    transform: translateY(-50%) scale(1.04);
}

.listing-modal-gallery-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: translateY(-50%);
    color: #94a3b8;
}

.listing-modal-gallery-prev {
    left: 0.9rem;
}

.listing-modal-gallery-next {
    right: 0.9rem;
}

.listing-modal-thumbs {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding: 0.1rem 0.15rem 0.45rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(203, 213, 225, 0.5) rgba(226, 232, 240, 0.9);
    overscroll-behavior-x: contain;
}

.listing-modal-thumbs::-webkit-scrollbar {
    height: 8px;
}

.listing-modal-thumbs::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.75);
    border-radius: 999px;
}

.listing-modal-thumbs::-webkit-scrollbar-thumb {
    background: rgba(203, 213, 225, 0.6);
    border-radius: 999px;
    border: 2px solid rgba(226, 232, 240, 0.75);
}

.listing-modal-thumbs::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.8);
}

.listing-modal-thumb {
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 0.95rem;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.85);
    transition: all 0.2s ease;
    flex: 0 0 auto;
}

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

.listing-modal-thumb.is-active {
    border-color: rgba(241, 107, 36, 0.9);
    box-shadow: 0 14px 28px -24px rgba(241, 107, 36, 0.95);
}

.listing-modal-details-col {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
    overflow: hidden;
    border-radius: 1.35rem;
    border: 1px solid rgba(226, 232, 240, 0.88);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
}

.listing-modal-scroll {
    min-height: 0;
    overflow-y: auto;
    padding: 1.5rem 1.45rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    scrollbar-width: thin;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.listing-modal-pill {
    align-self: flex-start;
    padding: 0.42rem 0.86rem;
    border-radius: 999px;
    background: rgba(241, 107, 36, 0.11);
    color: #f16b24;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.listing-modal-type {
    margin: 0;
    color: #f16b24;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.listing-modal-title {
    margin: 0;
    color: #020617;
    font-size: clamp(1.38rem, 1.35vw, 1.72rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    font-weight: 900;
}

.listing-modal-location {
    margin: 0;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.55;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.listing-modal-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.listing-modal-price-label {
    display: block;
    margin-bottom: 0.35rem;
    color: #94a3b8;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.listing-modal-price,
.listing-modal-market-value {
    color: #020617;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.listing-modal-market-value {
    color: #0f172a;
    opacity: 0.8;
}

.listing-modal-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.listing-modal-fact-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.66rem;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #f8fafc;
    color: #334155;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.listing-modal-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.listing-modal-detail-item {
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 0.86rem;
    padding: 0.7rem 0.74rem;
    background: #ffffff;
}

.listing-modal-detail-item span {
    display: block;
    color: #94a3b8;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.listing-modal-detail-item strong {
    display: block;
    margin-top: 0.22rem;
    color: #0f172a;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.45;
}

.listing-modal-highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.listing-modal-highlights li {
    position: relative;
    padding-left: 1.15rem;
    color: #334155;
    font-size: 0.84rem;
    line-height: 1.55;
    font-weight: 600;
}

.listing-modal-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.46rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: rgba(241, 107, 36, 0.82);
}

.listing-modal-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.9rem;
    padding: 0.9rem 1.05rem;
    border-radius: 1rem;
    background: linear-gradient(130deg, #f16b24 0%, #f97316 100%);
    color: #ffffff;
    box-shadow: 0 20px 36px -24px rgba(241, 107, 36, 0.88);
    transition: transform 0.2s ease;
}

.listing-modal-whatsapp:hover {
    transform: translateY(-1px);
}

.listing-modal-whatsapp span {
    display: block;
}

.listing-modal-whatsapp strong {
    display: block;
    font-size: 0.96rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.listing-modal-whatsapp small {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    margin-top: 0.2rem;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .listing-modal-panel {
        width: min(920px, calc(100% - 1.2rem));
        height: calc(100dvh - 1.2rem);
        margin: 0.6rem auto;
        border-radius: 1.25rem;
    }

    .listing-modal-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        gap: 0.8rem;
        padding: 0.85rem;
        height: 100%;
    }

    .listing-modal-gallery-col {
        grid-template-rows: minmax(0, 1fr) auto;
    }

    .listing-modal-main-image-wrap {
        aspect-ratio: 1.18;
    }

    .listing-modal-main-image {
        touch-action: pan-y;
    }

    .listing-modal-thumbs {
        padding: 0.1rem 0.1rem 0.4rem;
        gap: 0.5rem;
    }

    .listing-modal-thumb {
        width: 4.7rem;
        height: 4.7rem;
        border-radius: 0.8rem;
    }

    .listing-modal-gallery-nav {
        width: 2.6rem;
        height: 2.6rem;
    }

    .listing-modal-gallery-prev {
        left: 0.65rem;
    }

    .listing-modal-gallery-next {
        right: 0.65rem;
    }

    .listing-modal-details-col {
        grid-template-rows: minmax(0, 1fr) auto;
    }

    .listing-modal-scroll {
        padding: 1rem 1rem 0.8rem;
        gap: 0.75rem;
    }

    .listing-modal-title {
        font-size: 1.25rem;
    }

    .listing-modal-price,
    .listing-modal-market-value {
        font-size: 1.28rem;
    }

    .listing-modal-detail-grid {
        grid-template-columns: 1fr;
    }

    .listing-modal-whatsapp {
        margin: 0.7rem;
    }
}

/* Security Protections for Public Users */
body.is-protected {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.is-protected img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Dev Toast Notification */
#dev-bypass-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    background: #0a0a0a;
    color: #00ff73;
    border: 1px solid rgba(0, 255, 115, 0.4);
    font-family: monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#dev-bypass-toast:hover {
    background: #00ff73;
    color: #000;
    box-shadow: 0 12px 30px rgba(0, 255, 115, 0.3);
}

/* Anti-Screenshot Overlay (Netflix Style) */
#screenshot-protection-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-in-out;
}

#screenshot-protection-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

body.is-screenshot-blur main,
body.is-screenshot-blur header,
body.is-screenshot-blur footer {
    filter: blur(40px) brightness(0.2);
    transition: filter 0.15s ease-in-out;
}

/* Watermark Grid */
.watermark-overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='160' viewBox='0 0 320 160'%3E%3Ctext x='50%25' y='50%25' fill='%23ffffff' font-family='monospace' font-size='12' font-weight='bold' text-anchor='middle' transform='rotate(-25 160 80)'%3Efaizhadif.me - CONFIDENTIAL%3C/text%3E%3C/svg%3E");
}

/* Luxury Footer Styles */
.vl-footer-link {
    color: #a1a1aa; /* zinc-400 */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vl-footer-link:hover {
    color: var(--vl-orange);
    transform: translateX(4px);
}

.vl-social-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
}

.vl-social-btn:hover {
    background: var(--vl-orange);
    border-color: var(--vl-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(241, 107, 36, 0.35);
    color: #ffffff;
}

.vl-footer-title {
    font-size: 10px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
    display: block;
}

/* Luxury Section Styles - Compact Refinement */
.vl-luxury-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    padding: 1.5rem; /* Base padding for mobile */
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .vl-luxury-card {
        padding: 2rem; /* Reduced from 3rem */
    }
}

.vl-luxury-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 107, 36, 0.15);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.06);
}

.vl-luxury-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--vl-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vl-luxury-card:hover::after {
    opacity: 1;
}

.vl-icon-box {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfcfb;
    border-radius: 0.75rem;
    color: var(--vl-orange);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.vl-list-item-luxury {
    display: flex;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.vl-list-item-luxury:last-child {
    border-bottom: none;
}

.vl-list-icon-small {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--vl-orange);
}

