 .payment-plan-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 3rem;
            text-align: left;
          
        }

        /* Payment Plan Table Container */
        .payment-table-container {
            position: relative;
            margin-bottom: 2rem;
        }

        /* Payment Plan Table */
        .payment-table {
            width: 100%;
            border-collapse: collapse;
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            filter: blur(3px);
            pointer-events: none;
            user-select: none;
        }

        .payment-table th {
            background: linear-gradient(135deg, #0C3F32 0%, #1a5c4a 100%);
            color: #ffffff;
            padding: 1.5rem 1rem;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        .payment-table td {
            padding: 1.5rem 1rem;
            border-bottom: 1px solid #e0e0e0;
            color: #333;
            font-size: 1rem;
            background-color: #ffffff;
        }

        .payment-table tr:last-child td {
            border-bottom: none;
        }

        .payment-table tr:nth-child(even) td {
            background-color: #f8f9fa;
        }

        .payment-table tr:hover td {
            background-color: #f0f9ff;
        }

        /* Percentage column styling */
        .percentage-cell {
            font-weight: 600;
            color: #0C3F32;
        }

        .highlight-row td {
            background-color: #fff8e1 !important;
            font-weight: 600;
        }

        /* Blur Overlay */
        .blur-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(1px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            z-index: 10;
        }

        .unlock-message {
            text-align: center;
            color: #333;
            margin-bottom: 2rem;
            padding: 0 2rem;
        }

        .unlock-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #0C3F32;
        }

        .unlock-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.5;
        }

        /* Enquire Button */
        .enquire-btn {
            background: linear-gradient(135deg, #0C3F32 0%, #1a5c4a 100%);
            color: #ffffff;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(12, 63, 50, 0.2);
            opacity: 0;
            transform: translateY(20px);
        }

        .enquire-btn:hover {
            background: linear-gradient(135deg, #1a5c4a 0%, #0C3F32 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(12, 63, 50, 0.3);
        }

        /* Desktop hover behavior */
        @media (min-width: 769px) {
            .payment-table-container:hover .enquire-btn, .floor-plan-container:hover .enquire-btn  {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile - always show button */
        @media (max-width: 768px) {
            .enquire-btn {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .enquire-btn i {
            margin-left: 8px;
        }

        /* Modal/Popup Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: absolute;
            top: 58%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #ffffff;
            border-radius: 15px;
            width: 90%;
            max-width: 450px;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-header {
            background: linear-gradient(135deg, #0C3F32 0%, #1a5c4a 100%);
            color: #ffffff;
            padding: 1.5rem 2rem;
            text-align: center;
            position: relative;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.3rem;
        }

        .modal-subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .close-btn {
            position: absolute;
            top: 0.8rem;
            right: 1rem;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.3rem;
            cursor: pointer;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .close-btn:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .modal-body {
            padding: 1.5rem 2rem 2rem;
        }

        .lead-form {
            width: 100%;
        }

        .form-group {
            margin-bottom: 1.2rem;
            position: relative;
        }

        .form-label {
            display: block;
            color: #0C3F32;
            font-weight: 600;
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
        }

        .form-input {
            width: 100%;
            padding: 0.9rem 0.9rem 0.9rem 2.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background-color: #ffffff;
            color: #333;
        }

        .form-input:focus {
            outline: none;
            border-color: #0C3F32;
            box-shadow: 0 0 0 3px rgba(12, 63, 50, 0.1);
        }

        .input-icon {
            position: absolute;
            top: 50%;
            left: 0.9rem;
            transform: translateY(-50%);
            color: #0C3F32;
            font-size: 1rem;
            margin-top: 10px;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #0C3F32 0%, #1a5c4a 100%);
            color: #ffffff;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #1a5c4a 0%, #0C3F32 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(12, 63, 50, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .payment-plan-section {
                padding: 2rem 1rem;
            }

            .section-title {
                font-size: 2rem;
                text-align: center;
                margin-bottom: 2rem;
            }

            .payment-table th,
            .payment-table td {
                padding: 1rem 0.5rem;
                font-size: 0.9rem;
            }

            .payment-table th {
                font-size: 1rem;
            }

            .unlock-title {
                font-size: 1.5rem;
            }

            .unlock-subtitle {
                font-size: 1rem;
            }

            .enquire-btn {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .modal-content {
                width: 95%;
                margin: 1rem;
            }

            .modal-header,
            .modal-body {
                padding: 1.5rem;
            }

            .modal-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .payment-table {
                font-size: 0.8rem;
                filter: blur(4px);
            }

            .payment-table th,
            .payment-table td {
                padding: 0.8rem 0.3rem;
            }

            .unlock-message {
                padding: 0 1rem;
            }

            .unlock-title {
                font-size: 1.3rem;
            }

            .unlock-subtitle {
                font-size: 0.9rem;
            }

            .form-input {
                padding: 0.9rem 0.9rem 0.9rem 2.8rem;
            }

            .input-icon {
                left: 0.8rem;
            }
        }

        /* Animation for modal */
        .modal-overlay.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .modal-content.show {
            animation: slideIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from {
                transform: translate(-50%, -60%);
                opacity: 0;
            }
            to {
                transform: translate(-50%, -50%);
                opacity: 1;
            }
        }