 :root {
            /* Lighter, More Positive Color Palette */
            --real-estate-primary: #F8FAFC;
            --real-estate-primary-dark: #E2E8F0;
            --real-estate-accent-blue: #3B82F6;
            --real-estate-accent-light: #60A5FA;
            --real-estate-accent-lighter: #DBEAFE;
            --real-estate-success: #10B981;
            --real-estate-success-light: #D1FAE5;
            --real-estate-highlight: #F59E0B;
            --real-estate-highlight-light: #FEF3C7;
            --real-estate-text: #1E293B;
            --real-estate-text-secondary: #475569;
            --real-estate-text-muted: #64748B;
            --real-estate-surface: #FFFFFF;
            --real-estate-surface-elevated: #F1F5F9;
            --real-estate-border: #E2E8F0;
            
            /* Gradients */
            --real-estate-gradient-primary: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
            --real-estate-gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
            --real-estate-gradient-light: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
            --real-estate-gradient-mesh: radial-gradient(at 20% 20%, rgba(59, 130, 246, 0.08) 0px, transparent 50%),
                             radial-gradient(at 80% 30%, rgba(16, 185, 129, 0.05) 0px, transparent 50%),
                             radial-gradient(at 60% 80%, rgba(245, 158, 11, 0.05) 0px, transparent 50%);
        }
 html { font-size: 100%; } 
        body {
            
            background: var(--real-estate-primary);
            color: var(--real-estate-text);
           
        }

        /* Background Effects */
        .real-estate-bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--real-estate-gradient-mesh);
            z-index: 0;
        }

        .real-estate-bg-circles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .real-estate-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .real-estate-circle-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .real-estate-circle-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent);
            bottom: -80px;
            left: -80px;
            animation-delay: 3s;
        }

        .real-estate-circle-3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent);
            top: 50%;
            left: 50%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        

        /* Hero Section */
        .real-estate-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 4rem 5% 5rem;
            z-index: 1;
        }

        .real-estate-hero-content {
            max-width: 1170px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: start;
        }

        .real-estate-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.6rem 1.5rem;
            background: var(--real-estate-success-light);
            border: 2px solid var(--real-estate-success);
            border-radius: 50px;
            color: var(--real-estate-success);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out;
            
        }

        .real-estate-hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.04em;
            animation: fadeInUp 0.8s ease-out 0.1s backwards;
            color: var(--text);
        }

        .real-estate-hero .real-estate-gradient-text {
            background: var(--real-estate-gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .real-estate-hero-subtitle {
            font-size: 18px;
            color: var(--real-estate-text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
            font-weight: 400;
        }

        .real-estate-hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-bottom: 3rem;
            animation: fadeInUp 0.8s ease-out 0.3s backwards;
        }

        .real-estate-stat-card {
            background: var(--real-estate-surface);
            border: 2px solid var(--real-estate-accent-lighter);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .real-estate-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
            border-color: var(--real-estate-accent-blue);
        }

        .real-estate-stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--real-estate-gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Manrope', monospace;
            display: block;
            margin-bottom: 0.5rem;
        }

        .real-estate-stat-label {
            font-size: 0.9rem;
            color: var(--real-estate-text-secondary);
            font-weight: 600;
        }

        .real-estate-cta-group {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
            flex-wrap: wrap;
        }

        .real-estate-btn-primary {
            padding: 1rem 2rem;
            background: var(--real-estate-gradient-primary);
            border: none;
            border-radius: 14px;
            color: white;
            font-weight: 800;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
        }

        .real-estate-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 45px rgba(59, 130, 246, 0.4);
            color: #fff;
        }

        .real-estate-btn-secondary {
            padding: 1rem 2rem;
            background: var(--real-estate-surface);
            border: 2px solid var(--real-estate-accent-blue);
            border-radius: 14px;
            color: var(--accent-blue);
            font-weight: 800;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .real-estate-btn-secondary:hover {
            background: var(--accent-lighter);
            transform: translateY(-3px);
        }

        .real-estate-hero-visual {
            position: relative;
            animation: fadeInRight 0.8s ease-out 0.3s backwards;
        }

        .real-estate-visual-stack {
            position: relative;
        }

        .real-estate-visual-item {
            background: var(--real-estate-surface);
            border: 2px solid var(--real-estate-accent-lighter);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .real-estate-visual-item:hover {
            transform: translateX(10px);
            border-color: var(--real-estate-accent-blue);
            box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
        }

        .real-estate-visual-header {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-bottom: 1rem;
        }

        .real-estate-visual-icon {
            width: 60px;
            height: 60px;
            background: var(--real-estate-gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
        }

        .real-estate-visual-item h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--real-estate-accent-blue);
                width: calc(100% - 60px);
        }

        .real-estate-visual-item p {
            color: var(--real-estate-text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Value Proposition Section */
        .real-estate-value-section {
            position: relative;
            padding: 8rem 5%;
            z-index: 1;
            background: var(--real-estate-surface);
        }

        .real-estate-section-header {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 5rem;
        }

        .real-estate-section-badge {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: var(--real-estate-accent-lighter);
            border: 2px solid var(--real-estate-accent-blue);
            border-radius: 50px;
            color: var(--real-estate-accent-blue);
            font-size: 0.9rem;
            font-weight: 800;
            margin-bottom: 2rem;
            
            letter-spacing: 0.05em;
        }

        .real-estate-section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            line-height: 1.2;
            color: var(--real-estate-text);
        }

        .real-estate-section-header p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .real-estate-value-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
        }

        .real-estate-value-card {
            background: var(--real-estate-surface);
            border: 2px solid var(--real-estate-accent-lighter);
            border-radius: 24px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .real-estate-value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--real-estate-gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .real-estate-value-card:hover::before {
            transform: scaleX(1);
        }

        .real-estate-value-card:hover {
            transform: translateY(-10px);
            border-color: var(--real-estate-accent-blue);
            box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
        }

        .real-estate-value-emoji {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .real-estate-value-card h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 1.2rem;
            color: var(--real-estate-accent-blue);
            line-height: 1.2;
        }

        .real-estate-value-card p {
            color: var(--real-estate-text-secondary);
            line-height: 1.9;
            margin-bottom: 1.5rem;
            font-size: 16px;
        }

        .real-estate-value-result {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.8rem 1.5rem;
            background: var(--real-estate-success-light);
            border-radius: 12px;
            color: var(--real-estate-success);
            font-weight: 800;
            font-family: 'Manrope', monospace;
            font-size: 0.95rem;
        }

        /* Solution Section */
        .real-estate-solution-section {
            position: relative;
            padding: 8rem 5%;
            z-index: 1;
            background: var(--real-estate-gradient-light);
        }

        .real-estate-solution-intro {
            max-width: 1100px;
            margin: 0 auto 5rem;
            text-align: center;
        }

        .real-estate-solution-intro h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 2rem;
            letter-spacing: -0.04em;
            line-height: 1.1;
            color: var(--real-estate-text);
        }

        .real-estate-process-showcase {
            max-width: 1300px;
            margin: 0 auto;
            background: var(--real-estate-surface);
            border: 2px solid var(--real-estate-accent-lighter);
            border-radius: 30px;
            padding: 4rem;
            box-shadow: 0 30px 80px rgba(59, 130, 246, 0.1);
        }

        .real-estate-process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .real-estate-process-step {
            text-align: center;
            position: relative;
        }

        .real-estate-process-step::after {
            content: '→';
            position: absolute;
            right: -1.5rem;
            top: 3rem;
            font-size: 2.5rem;
            color: var(--real-estate-accent-light);
            font-weight: 900;
        }

        .real-estate-process-step:last-child::after {
            display: none;
        }

        .real-estate-step-number {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: var(--real-estate-gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.8rem;
            font-family: 'Manrope', monospace;
            box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
            color: white;
        }

        .real-estate-step-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .real-estate-process-step h4 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
            color: var(--text);
        }

        .real-estate-process-step p {
            color: var(--real-estate-text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Features Section */
        .real-estate-features-section {
            position: relative;
            padding: 8rem 5%;
            z-index: 1;
            background: var(--surface);
        }

        .real-estate-features-grid {
            max-width: 1400px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
        }

        .real-estate-feature-box {
            background: var(--real-estate-surface);
            border: 2px solid var(--real-estate-accent-lighter);
            border-radius: 28px;
            padding: 3.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        }

        .real-estate-feature-box::before {
            /* content: ''; */
            position: absolute;
            top: -60%;
            right: -60%;
            width: 250%;
            height: 250%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 65%);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .real-estate-feature-box:hover::before {
            opacity: 1;
        }

        .real-estate-feature-box:hover {
            transform: translateY(-12px);
            border-color: var(--real-estate-accent-blue);
            box-shadow: 0 30px 70px rgba(59, 130, 246, 0.15);
        }

        .real-estate-feature-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 2.5rem;
        }

        .real-estate-feature-icon-box {
            width: 85px;
            height: 85px;
            background: var(--real-estate-gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
            flex-shrink: 0;
        }

        .real-estate-feature-label {
            padding: 0.5rem 1rem;
            background: var(--real-estate-success-light);
            border-radius: 10px;
            color: var(--success);
            font-size: 0.8rem;
            font-weight: 800;
            font-family: 'Manrope', monospace;
        }

        .real-estate-feature-box h3 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--real-estate-accent-blue);
            line-height: 1.2;
        }

        .real-estate-feature-desc {
            color: var(--real-estate-text-secondary);
            margin-bottom: 2rem;
            font-size: 16px;
            line-height: 1.8;
        }

        .real-estate-feature-list {
            list-style: none;
            padding: 0;
        }

        .real-estate-feature-list li {
            padding: 1rem 0;
            padding-left: 2.5rem;
            position: relative;
            color: var(--real-estate-text);
            font-size: 16px;
            border-bottom: 1px solid var(--real-estate-border);
            line-height: 1.7;
        }

        .real-estate-feature-list li:last-child {
            border-bottom: none;
        }

        .real-estate-feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--real-estate-success);
            font-weight: 900;
            font-size: 1.5rem;
        }

        .real-estate-feature-impact {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--real-estate-highlight-light);
            border-left: 5px solid var(--real-estate-highlight);
            border-radius: 12px;
        }

        .real-estate-feature-impact strong {
            color: var(--real-estate-highlight);
            font-weight: 800;
        }

        /* Benefits Section */
        .real-estate-benefits-section {
            position: relative;
            padding: 8rem 5%;
            z-index: 1;
            background: var(--real-estate-gradient-light);
        }

        .real-estate-benefits-grid {
            max-width: 1400px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .real-estate-benefit-box {
            background: var(--real-estate-surface);
            border: 2px solid var(--real-estate-accent-lighter);
            border-radius: 24px;
            padding: 3rem;
            text-align: center;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .real-estate-benefit-box:hover {
            transform: scale(1.05);
            border-color: var(--real-estate-accent-blue);
            box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
        }

        .real-estate-benefit-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 2rem;
            background: var(--real-estate-gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
        }

        .real-estate-benefit-box h4 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--real-estate-accent-blue);
        }

        .real-estate-benefit-box p {
            color: var(--real-estate-text-secondary);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Why Choose Section */
        .real-estate-why-section {
            position: relative;
            padding: 8rem 5%;
            z-index: 1;
            background: var(--real-estate-surface);
        }

        .real-estate-why-grid {
            max-width: 1300px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .real-estate-why-box {
            background: var(--real-estate-surface);
            border: 2px solid var(--real-estate-accent-lighter);
            border-radius: 24px;
            padding: 2rem;
            position: relative;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .real-estate-why-box:hover {
            transform: translateY(-8px);
            border-color: var(--real-estate-accent-blue);
            box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
        }

        .real-estate-why-number {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 6rem;
            font-weight: 900;
            color: rgba(59, 130, 246, 0.08);
            font-family: 'Manrope', monospace;
            line-height: 1;
        }

        .real-estate-why-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .real-estate-why-box h4 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 1.2rem;
            color: var(--accent-blue);
        }

        .real-estate-why-box p {
            color: var(--text-secondary);
            line-height: 1.9;
            font-size: 16px;
        }

        /* Industries Section */
        .real-estate-industries-section {
            position: relative;
            padding: 8rem 5%;
            z-index: 1;
            background: var(--real-estate-gradient-light);
        }

        .real-estate-industries-grid {
            max-width: 1200px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .real-estate-industry-box {
            background: var(--real-estate-surface);
            border: 2px solid var(--real-estate-accent-lighter);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .real-estate-industry-box:hover {
            border-color: var(--real-estate-accent-blue);
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(59, 130, 246, 0.12);
        }

        .real-estate-industry-emoji {
            font-size: 3.5rem;
            margin-bottom: 1.2rem;
            display: block;
        }

        .real-estate-industry-box h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--text);
        }

        /* CTA Section */
        .real-estate-cta-section {
            position: relative;
            padding: 10rem 5%;
            z-index: 1;
            background: var(--real-estate-surface);
            text-align: center;
        }

        .real-estate-cta-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .real-estate-cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 2.5rem;
            background: var(--real-estate-gradient-success);
            border-radius: 14px;
            color: white;
            font-weight: 900;
            margin-bottom: 3rem;
            font-size: 1.15rem;
            animation: ctaPulse 2.5s ease-in-out infinite;
            box-shadow: 0 20px 50px rgba(16, 185, 129, 0.3);
        }

        @keyframes ctaPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .real-estate-cta-content h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 2rem;
            letter-spacing: -0.04em;
            line-height: 1.2;
            color: var(--real-estate-text);
        }

        .real-estate-cta-content p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 3.5rem;
            line-height: 1.8;
        }

        .real-estate-cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .real-estate-cta-phone {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 2rem;
            background: var(--real-estate-gradient-success);
            border: none;
            border-radius: 16px;
            color: white;
            font-weight: 900;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 20px 50px rgba(16, 185, 129, 0.3);
            font-family: 'Manrope', monospace;
        }

        .real-estate-cta-phone:hover {
            transform: translateY(-3px);
            box-shadow: 0 25px 60px rgba(16, 185, 129, 0.4);
        }

       
        /* Responsive */
        @media (max-width: 1024px) {
            .real-estate-hero-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .real-estate-hero-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .real-estate-nav-links {
                display: none;
            }

            .real-estate-process-grid {
                grid-template-columns: 1fr;
            }

            .real-estate-process-step::after {
                content: '↓';
                right: auto;
                left: 50%;
                top: auto;
                bottom: -2.5rem;
                transform: translateX(-50%);
            }

            .real-estate-value-grid,
            .real-estate-features-grid,
            .real-estate-benefits-grid,
            .real-estate-why-grid,
            .real-estate-industries-grid {
                grid-template-columns: 1fr;
            }

            .real-estate-cta-buttons {
                flex-direction: column;
            }
        }

       
         /* Scroll reveal */
        .real-estate-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s, transform 0.8s;
        }

        .real-estate-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .real-estate-hero .real-estate-visual-item {
    transform: translateX(10px);
    border-color: var(--real-estate-accent-blue);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

form.enquiry-form.frm-bg .real-estate-btn-primary {
    font-size: 16px;
    height: 50px;
    padding: 6px 24px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 10px;
}

header.masterhead {
    position: relative;
    z-index: 999;
}

.assets-hero-visual {
    background: var(--real-estate-surface);
    border: 2px solid var(--real-estate-accent-lighter);
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}