 /* Floor Plan Features Section */
        .floor-plan-section {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        /* Left Side - Blurred Floor Plan */
        .floor-plan-container {
            position: relative;
            background: linear-gradient(135deg, #f0f4f8 0%, #e8f2f0 100%);
          
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .floor-plan.map, .floor-plan.map img{height:100%;width:100%;position: relative;}
      

        .floor-plan-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(8px);
            transform: scale(1.1);
            opacity: 0.7;
        }

        /* Overlay on floor plan */
        .floor-plan-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg, 
                rgba(240, 244, 248, 0.8) 0%, 
                rgba(232, 242, 240, 0.6) 100%
            );
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Demo floor plan for when no image is provided */
        .demo-floor-plan {
           
            background: linear-gradient(45deg, #e0e0e0 25%, transparent 25%), 
                        linear-gradient(-45deg, #e0e0e0 25%, transparent 25%), 
                        linear-gradient(45deg, transparent 75%, #e0e0e0 75%), 
                        linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            border: 3px solid #ccc;
            border-radius: 10px;
            filter: blur(6px);
            opacity: 0.5;
           
            align-items: center;
            justify-content: center;
        }

        /* .floor-plan-text {
            color: #666;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            filter: blur(2px);
        } */

        /* Right Side - Features */
        .features-container {
            background-color: #f8f4f1;
            padding: 3rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        /* Decorative Element */
        .decorative-element {
            position: absolute;
            top: 2rem;
            right: 2rem;
            width: 80px;
            height: 80px;
            opacity: 0.6;
        }

        .decorative-element svg {
            width: 100%;
            height: 100%;
            fill: #d4a574;
        }

        /* Features List */
        .features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: #a8a8a8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #ffffff;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            background-color: #d4a574;
            transform: scale(1.1);
        }

        .feature-text {
            color: #333;
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1.4;
        }

        /* Individual feature icon colors */
        .feature-item:nth-child(1) .feature-icon {
            background-color:#182e2c;
        }

        .feature-item:nth-child(2) .feature-icon {
            background-color:#182e2c;
        }

        .feature-item:nth-child(3) .feature-icon {
            background-color:#182e2c;
        }

        .feature-item:nth-child(4) .feature-icon {
            background-color:#182e2c;
        }

        .feature-item:nth-child(5) .feature-icon {
            background-color:#182e2c;
        }

        .feature-item:nth-child(6) .feature-icon {
            background-color: #182e2c;
        }

        .feature-item:nth-child(7) .feature-icon {
            background-color:#182e2c;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .floor-plan-section {
                grid-template-columns: 1fr;
                max-width: 600px;
            }

            .floor-plan-container {
                min-height: 400px;
                order: 2;
            }

            .features-container {
                order: 1;
                padding: 2.5rem 2rem;
            }

            .decorative-element {
                top: 1.5rem;
                right: 1.5rem;
                width: 60px;
                height: 60px;
            }

            .features-list {
                gap: 1.5rem;
            }

            .feature-icon {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .feature-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .floor-plan-section {
                margin: 0 1rem;
                border-radius: 10px;
            }

            .features-container {
                padding: 2rem 1.5rem;
            }

            .floor-plan-container {
                min-height: 300px;
            }

            .decorative-element {
                width: 50px;
                height: 50px;
                top: 1rem;
                right: 1rem;
            }

            .features-list {
                gap: 1.2rem;
            }

            .feature-item {
                gap: 1rem;
            }

            .feature-icon {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .feature-text {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 1rem 0;
            }

            .floor-plan-section {
                margin: 0 0.5rem;
            }

            .features-container {
                padding: 1.5rem 1rem;
            }

            .floor-plan-container {
                min-height: 250px;
            }

            .decorative-element {
                display: none;
            }

            .feature-item:hover {
                transform: none;
            }

            .feature-item:hover .feature-icon {
                transform: none;
            }
        }

        /* Animation for features */
        .feature-item {
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.6s ease forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.1s; }
        .feature-item:nth-child(2) { animation-delay: 0.2s; }
        .feature-item:nth-child(3) { animation-delay: 0.3s; }
        .feature-item:nth-child(4) { animation-delay: 0.4s; }
        .feature-item:nth-child(5) { animation-delay: 0.5s; }
        .feature-item:nth-child(6) { animation-delay: 0.6s; }
        .feature-item:nth-child(7) { animation-delay: 0.7s; }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }