/*
 * Premium motion layer - Grupo Inmobiliario Nicza.
 * Solo agrega interaccion/animacion; no cambia paleta, textos ni logica.
 */

:root {
    --premium-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --premium-slow: 1200ms;
    --premium-medium: 900ms;
}

body.premium-motion-enabled {
    overscroll-behavior-y: none;
}

body.premium-motion-enabled:has(.hero) {
    background:
        linear-gradient(90deg, transparent 98%, rgba(247, 201, 78, 0.11) 98%) 0 0 / 118px 118px,
        linear-gradient(0deg, transparent 98%, rgba(255, 255, 255, 0.055) 98%) 0 0 / 118px 118px,
        radial-gradient(circle at 12% 24%, rgba(241, 184, 19, 0.18), transparent 18%),
        radial-gradient(circle at 82% 28%, rgba(0, 86, 179, 0.42), transparent 30%),
        radial-gradient(circle at 28% 82%, rgba(247, 201, 78, 0.12), transparent 24%),
        linear-gradient(180deg, #0b1a30 0%, #123675 42%, #0b1a30 100%);
    background-attachment: fixed;
}

body.premium-motion-enabled:has(.hero)::before,
body.premium-motion-enabled:has(.hero)::after {
    content: "";
    position: fixed;
    inset: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.62;
}

body.premium-motion-enabled:has(.hero)::before {
    top: 31vh;
    right: 9vw;
    width: 8px;
    height: 8px;
    border-radius: 1px;
    background: rgba(247, 201, 78, 0.72);
    box-shadow:
        -42vw 12vh 0 rgba(247, 201, 78, 0.48),
        -18vw 34vh 0 rgba(255, 255, 255, 0.22),
        -4vw 58vh 0 rgba(247, 201, 78, 0.34),
        7vw 76vh 0 rgba(247, 201, 78, 0.5);
    transform: rotate(8deg);
}

body.premium-motion-enabled:has(.hero)::after {
    top: 48vh;
    left: 8vw;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(247, 201, 78, 0.38);
    background: rgba(247, 201, 78, 0.14);
    box-shadow:
        26vw 14vh 0 rgba(247, 201, 78, 0.2),
        52vw 33vh 0 rgba(255, 255, 255, 0.12),
        74vw 7vh 0 rgba(247, 201, 78, 0.28);
    transform: rotate(22deg);
}

body.premium-motion-enabled:has(.hero) :where(.section, .tenant-pay, .cta, .owners) {
    position: relative;
    background-color: rgba(6, 27, 58, 0.48);
    backdrop-filter: blur(14px) saturate(1.08);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

/*
 * Navbar glassmorphism inspirado en Agentix.
 * Mantiene la navegacion actual, pero la vuelve cristalina y liviana.
 */
.site-header {
    background: rgba(6, 27, 58, 0.08) !important;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(22px) saturate(1.28);
    -webkit-backdrop-filter: blur(22px) saturate(1.28);
    box-shadow: 0 18px 55px rgba(2, 8, 22, 0.08);
    transition:
        background 900ms var(--premium-ease),
        border-color 900ms var(--premium-ease),
        box-shadow 900ms var(--premium-ease),
        backdrop-filter 900ms var(--premium-ease),
        -webkit-backdrop-filter 900ms var(--premium-ease);
    justify-content: center;
    padding-inline: clamp(64px, 8vw, 172px);
}

.brand {
    position: absolute;
    left: clamp(58px, 7.4vw, 150px);
    flex: 0 0 auto;
}

.brand img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.site-header nav {
    flex: 0 1 auto;
    justify-content: center;
    gap: clamp(18px, 1.7vw, 28px);
    color: #fff;
    font-size: 15px;
}

.site-header nav a {
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.16);
    transition:
        color 620ms cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 620ms cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 620ms cubic-bezier(0.34, 1.56, 0.64, 1),
        background 360ms ease,
        box-shadow 360ms ease;
}

.site-header nav a:not(.nav-login),
.site-header nav a:not(.nav-login):hover,
.site-header nav a.is-active,
body.header-scrolled .site-header nav a:not(.nav-login):hover,
body.header-scrolled .site-header nav a.is-active,
body:has(.hero):not(.header-scrolled) .site-header nav a:not(.nav-login):hover,
body:has(.hero):not(.header-scrolled) .site-header nav a.is-active {
    background: transparent;
    box-shadow: none;
}

.site-header nav a:not(.nav-login):hover,
body.header-scrolled .site-header nav a:not(.nav-login):hover,
body:has(.hero):not(.header-scrolled) .site-header nav a:not(.nav-login):hover {
    color: #f1b813;
    transform: translateY(-2px);
}

.site-header nav a.is-active,
body.header-scrolled .site-header nav a.is-active,
body:has(.hero):not(.header-scrolled) .site-header nav a.is-active {
    color: #fff;
}

body.header-scrolled .site-header nav a:not(.nav-login),
body.header-scrolled .site-header nav a.is-active {
    color: #0f172a;
    text-shadow: none;
}

body.header-scrolled .site-header nav a:not(.nav-login):hover {
    color: #0056b3;
}

.nav-login {
    position: absolute;
    right: clamp(58px, 7.4vw, 150px);
    margin-left: 0;
    color: #0f172a !important;
    text-shadow: none;
}

.nav-login:hover {
    color: #0f172a !important;
}

body.header-scrolled .site-header {
    background: rgba(6, 27, 58, 0.18) !important;
    border-bottom-color: transparent;
    backdrop-filter: blur(24px) saturate(1.34);
    -webkit-backdrop-filter: blur(24px) saturate(1.34);
    box-shadow: 0 18px 55px rgba(2, 8, 22, 0.14);
}

/*
 * Hero azul Agentix/Nicza.
 * Se aplica sin esperar JS para evitar el flash del hero anterior.
 * Conserva la foto de Bogota, luz central y grid tecnico.
 */
.hero {
    position: sticky;
    top: 0;
    z-index: 1;
    isolation: isolate;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: center;
    justify-items: start;
    height: 100vh;
    padding: 0 clamp(40px, 7vw, 104px);
    overflow: hidden;
    color: #fff;
    background: #0b1a30;
}

.hero + .section {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 98px;
    background-color: rgba(6, 27, 58, 0.48);
    backdrop-filter: blur(14px) saturate(1.08);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.hero + .section::before {
    display: none;
}

body:has(.hero):not(.header-scrolled) .site-header {
    background: transparent !important;
    border-bottom-color: transparent;
    backdrop-filter: blur(0px) saturate(1);
    -webkit-backdrop-filter: blur(0px) saturate(1);
    box-shadow: 0 0 0 rgba(2, 8, 22, 0);
}

body.header-scrolled .brand,
body.header-scrolled .site-header nav {
    color: #fff;
}

body.header-scrolled .site-header nav a:not(.nav-login):hover,
body.header-scrolled .site-header nav a.is-active {
    background: transparent;
    color: #f1b813;
    box-shadow: none;
}

body:has(.hero):not(.header-scrolled) .brand,
body:has(.hero):not(.header-scrolled) .site-header nav {
    color: #fff;
}

body:has(.hero):not(.header-scrolled) .site-header nav a:not(.nav-login):hover,
body:has(.hero):not(.header-scrolled) .site-header nav a.is-active {
    background: transparent;
    color: #f1b813;
    box-shadow: none;
}

body.premium-motion-enabled .hero-copy,
body.premium-motion-enabled .hero-panel {
    position: relative;
    z-index: 2;
    transform-origin: left center;
    will-change: scale;
}

.site-header nav a.is-active,
body.header-scrolled .site-header nav a.is-active,
body:has(.hero):not(.header-scrolled) .site-header nav a.is-active {
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.site-header nav a.is-active:hover,
body.header-scrolled .site-header nav a.is-active:hover,
body:has(.hero):not(.header-scrolled) .site-header nav a.is-active:hover {
    color: #f1b813;
}

body.premium-motion-enabled .hero .eyebrow {
    color: #f1b813;
    font-family: Georgia, "Times New Roman", Times, serif;
    letter-spacing: 0.06em;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

body.premium-motion-enabled .hero h1,
.hero h1 {
    color: #fff;
    font-family: Georgia, "Times New Roman", Times, serif;
    letter-spacing: -0.025em;
    text-shadow: none;
}

body.premium-motion-enabled .hero p,
.hero p {
    color: rgba(255, 255, 255, 0.88);
}

/* Fix for process title color */
.section.process h2 {
    color: #ffffff !important;
    font-size: clamp(36px, 4.5vw, 52px) !important;
}

.hero-services {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 18, 44, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-services article,
.hero-services article:hover {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 18, 44, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-services article:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(5, 18, 44, 0.72);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.16);
}

.hero-services p {
    color: rgba(255, 255, 255, 0.85);
}

/* 1. Reveal asimetrico para imagenes de propiedades. */
body.premium-motion-enabled .property-card .premium-image-mask {
    overflow: hidden;
    transform: translate3d(0, 10px, 0);
    transition:
        opacity var(--premium-medium) ease,
        transform var(--premium-slow) var(--premium-ease);
    will-change: opacity, transform;
}

body.premium-motion-enabled .property-card .premium-image-mask img {
    opacity: 0.94;
    transform: scale(1.08);
    transform-origin: center bottom;
    transition:
        opacity var(--premium-medium) ease,
        transform 1400ms var(--premium-ease),
        filter 700ms ease;
    will-change: opacity, transform;
}

body.premium-motion-enabled .property-card .premium-image-mask.premium-in-view {
    transform: translate3d(0, 0, 0);
}

body.premium-motion-enabled .property-card .premium-image-mask.premium-in-view img {
    opacity: 1;
    transform: scale(1);
}

body.premium-motion-enabled .property-card:hover .premium-image-mask.premium-in-view img {
    transform: scale(1.035);
}

/* 2. Split text: cada palabra emerge desde una mascara inferior. */
body.premium-motion-enabled .premium-split {
    --split-stagger: 42ms;
}

body.premium-motion-enabled .premium-split-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
}

body.premium-motion-enabled .premium-split-inner {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 115%, 0);
    transition:
        opacity var(--premium-medium) var(--premium-ease),
        filter var(--premium-medium) var(--premium-ease),
        transform var(--premium-slow) var(--premium-ease);
    transition-delay: calc(var(--word-index, 0) * var(--split-stagger));
    will-change: opacity, filter, transform;
}

body.premium-motion-enabled .premium-split.premium-in-view .premium-split-inner {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

/* 4. Profundidad suave en bloques informativos. */
/* Parallax removed to ensure uniform section behavior during scroll */


/*
 * Hover premium para tarjetas fuera del hero.
 * El hero conserva su brillo plateado original; aqui se neutraliza el shimmer
 * mecanico previo y se usa un destello azul que desaparece al salir.
 */
body.premium-motion-enabled :where(
    .property-card,
    .trust-grid article,
    .service-grid article
) {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition:
        transform 760ms var(--premium-ease),
        box-shadow 900ms var(--premium-ease),
        border-color 900ms var(--premium-ease);
    will-change: transform, box-shadow;
}

body.premium-motion-enabled :where(
    .property-card,
    .trust-grid article,
    .service-grid article
)::before {
    opacity: 0 !important;
    transform: rotate(18deg) translateX(-160%) !important;
}

body.premium-motion-enabled :where(
    .property-card,
    .trust-grid article,
    .service-grid article
)::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -55%;
    left: -42%;
    width: 28%;
    height: 210%;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(
            105deg,
            transparent 0%,
            rgba(0, 86, 179, 0.035) 36%,
            rgba(255, 255, 255, 0.22) 50%,
            rgba(0, 86, 179, 0.045) 64%,
            transparent 100%
        );
    filter: blur(1px);
    transform: translate3d(-180%, 0, 0) rotate(17deg);
    transition:
        opacity 110ms ease-out,
        transform 0ms linear 120ms;
    will-change: opacity, transform;
}

body.premium-motion-enabled :where(
    .property-card,
    .trust-grid article,
    .service-grid article
):hover {
    border-color: rgba(241, 184, 19, 0.28);
    box-shadow:
        0 34px 90px rgba(51, 65, 85, 0.13),
        0 12px 34px rgba(0, 86, 179, 0.06),
        inset 0 0 0 1px rgba(241, 184, 19, 0.14);
    transform: translate3d(0, -4px, 0);
    transition:
        transform 520ms var(--ease-premium),
        box-shadow 520ms var(--ease-premium),
        border-color 520ms var(--ease-premium);
}


body.premium-motion-enabled :where(
    .property-card,
    .trust-grid article,
    .service-grid article,
    .owner-access,
    .owner-lead,
    .tenant-pay,
    .detail-sections article,
    .lead-form,
    .faq details,
    .process
):hover::after {
    opacity: 1;
    transform: translate3d(560%, 0, 0) rotate(17deg);
    transition:
        transform 820ms var(--premium-ease),
        opacity 180ms ease-out;
}

body.premium-motion-enabled :where(
    .property-card h3,
    .trust-grid h3,
    .service-grid h3,
    .owner-access h3,
    .owner-lead h3,
    .tenant-pay h2,
    .detail-sections h2,
    .lead-form h2,
    .faq summary,
    .process h2
) {
    position: relative;
    z-index: 2;
    transition: transform 760ms var(--premium-ease), color 760ms var(--premium-ease);
}

body.premium-motion-enabled :where(
    .property-card,
    .trust-grid article,
    .service-grid article,
    .owner-access,
    .owner-lead,
    .tenant-pay,
    .detail-sections article,
    .lead-form,
    .faq details,
    .process
):hover :where(h2, h3, summary) {
    transform: translate3d(0, -2px, 0);
    transition-duration: 520ms;
}

/* Ajustes de respeto a accesibilidad. */
@media (prefers-reduced-motion: reduce) {
    body.premium-motion-enabled {
        overscroll-behavior-y: auto;
    }

    body.premium-motion-enabled .property-card .premium-image-mask,
    body.premium-motion-enabled .property-card .premium-image-mask img,
    body.premium-motion-enabled .premium-split-inner,
    body.premium-motion-enabled .premium-parallax,
    body.premium-motion-enabled :where(
        .property-card,
        .trust-grid article,
        .service-grid article,
        .owner-access,
        .owner-lead,
        .tenant-pay,
        .detail-sections article,
        .lead-form,
        .faq details,
        .process
    ),
    body.premium-motion-enabled :where(
        .property-card,
        .trust-grid article,
        .service-grid article,
        .owner-access,
        .owner-lead,
        .tenant-pay,
        .detail-sections article,
        .lead-form,
        .faq details,
        .process
    )::after {
        clip-path: none !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
    }

    body.premium-motion-enabled :where(
        .property-card,
        .trust-grid article,
        .service-grid article,
        .owner-access,
        .owner-lead,
        .tenant-pay,
        .detail-sections article,
        .lead-form,
        .faq details,
        .process
    )::after {
        display: none !important;
        opacity: 0 !important;
    }
}

@media (max-width: 920px) {
    .site-header {
        justify-content: space-between;
        padding-inline: 18px;
    }

    .brand,
    .nav-login {
        position: static;
    }

    .brand img {
        width: 68px;
        height: 50px;
    }

    .site-header nav {
        flex: 1 1 auto;
        justify-content: flex-start;
        gap: 8px;
    }

    .nav-login {
        margin-left: 0;
    }
}

/* 3D Tilt Effect for Property Cards */
body.premium-motion-enabled .property-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

body.premium-motion-enabled .property-card .property-image,
body.premium-motion-enabled .property-card .property-body {
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

body.premium-motion-enabled .property-card .property-image img {
    transform: translateZ(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.premium-motion-enabled .property-card .property-body > * {
    transform: translateZ(10px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.premium-motion-enabled .property-card:hover .property-image {
    transform: rotateX(5deg) rotateY(-5deg) translateZ(0);
}

body.premium-motion-enabled .property-card:hover .property-body {
    transform: rotateX(-3deg) rotateY(3deg) translateZ(20px);
}

body.premium-motion-enabled .property-card:hover .property-image img {
    transform: translateZ(40px) scale(1.05);
}

body.premium-motion-enabled .property-card:hover .property-body > * {
    transform: translateZ(30px);
}

/* 3D Tilt for trust grid, service grid, owner cards */
body.premium-motion-enabled .trust-grid article,
body.premium-motion-enabled .service-grid article,
body.premium-motion-enabled .owner-access,
body.premium-motion-enabled .owner-lead,
body.premium-motion-enabled .tenant-pay-card,
body.premium-motion-enabled .detail-sections article,
body.premium-motion-enabled .lead-form,
body.premium-motion-enabled .faq details,
body.premium-motion-enabled .process li {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.premium-motion-enabled .trust-grid article:hover,
body.premium-motion-enabled .service-grid article:hover,
body.premium-motion-enabled .owner-access:hover,
body.premium-motion-enabled .owner-lead:hover,
body.premium-motion-enabled .tenant-pay-card:hover,
body.premium-motion-enabled .detail-sections article:hover,
body.premium-motion-enabled .lead-form:hover,
body.premium-motion-enabled .faq details:hover,
body.premium-motion-enabled .process li:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-8px) scale(1.01);
    box-shadow: 
        0 40px 80px rgba(15, 23, 42, 0.15),
        0 20px 40px rgba(0, 86, 179, 0.08),
        inset 0 0 0 1px rgba(241, 184, 19, 0.15);
}

/* Three.js Canvas styling */
#nicza-three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

body:has(.hero) #nicza-three-canvas {
    z-index: -1;
}

body.premium-motion-enabled .hero::before,
body.premium-motion-enabled .hero::after {
    content: none;
}

body.premium-motion-enabled .hero {
    background: #0b1a30 !important;
    isolation: isolate;
}

body.premium-motion-enabled .hero .nicza-3d-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

body.premium-motion-enabled .hero .hero-copy,
body.premium-motion-enabled .hero .hero-panel {
    position: relative;
    z-index: 2;
}

.hero {
    position: relative;
    z-index: 1;
}

/* Floating particles CSS fallback */
.css-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.css-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7c94e, #0056b3);
    opacity: 0.4;
    animation: float-particle 20s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
        transform: translateY(80vh) translateX(50px) scale(1);
    }
    90% {
        opacity: 0.4;
        transform: translateY(-20vh) translateX(-50px) scale(1);
    }
    100% {
        transform: translateY(-30vh) translateX(0) scale(0);
        opacity: 0;
    }
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #0056b3, #f7c94e);
    z-index: 1000;
    transform-origin: left;
    transform: scaleX(0);
    pointer-events: none;
}

/* Parallax layers for sections */
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.parallax-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Magnetic button effect */
.magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Text reveal with 3D rotation */
.text-3d-reveal {
    overflow: hidden;
    display: inline-block;
    perspective: 400px;
}

.text-3d-reveal span {
    display: inline-block;
    transform-origin: bottom center;
    transform: rotateX(-90deg);
    opacity: 0;
    animation: text-3d-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes text-3d-reveal {
    to {
        transform: rotateX(0);
        opacity: 1;
    }
}

/* Floating animation for hero elements */
@keyframes float-3d {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    25% {
        transform: translateY(-20px) rotateX(5deg) rotateY(-3deg);
    }
    75% {
        transform: translateY(10px) rotateX(-3deg) rotateY(2deg);
    }
}

.float-3d {
    animation: float-3d 8s ease-in-out infinite;
}

/* Glow pulse for CTAs */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 10px 24px rgba(241, 184, 19, 0.18);
    }
    50% {
        box-shadow: 0 20px 60px rgba(241, 184, 19, 0.35), 0 0 80px rgba(241, 184, 19, 0.2);
    }
}

.glow-pulse {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* 3D Card Flip for property detail */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-3d-inner {
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(180deg);
}

.card-3d-front,
.card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
}

.card-3d-back {
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b1a30, #0056b3);
    color: white;
    padding: 2rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    body.premium-motion-enabled .property-card .property-image,
    body.premium-motion-enabled .property-card .property-body,
    body.premium-motion-enabled .property-card .property-image img,
    body.premium-motion-enabled .property-card .property-body > *,
    body.premium-motion-enabled .trust-grid article,
    body.premium-motion-enabled .service-grid article,
    body.premium-motion-enabled .owner-access,
    body.premium-motion-enabled .owner-lead,
    body.premium-motion-enabled .tenant-pay-card,
    body.premium-motion-enabled .detail-sections article,
    body.premium-motion-enabled .lead-form,
    body.premium-motion-enabled .faq details,
    body.premium-motion-enabled .process li {
        transition: none !important;
        transform: none !important;
    }

    .css-particle {
        animation: none !important;
    }

    .float-3d {
        animation: none !important;
    }

    .glow-pulse {
        animation: none !important;
    }

    .text-3d-reveal span {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
