        /* Hero Banner Slider - Theme Consistent */
        .banner-slider {
            position: relative;
            overflow: hidden;
            /* margin-top: 80px; */
        }

        .banner-slider .slick-list {
            height: 550px !important;
        }

        .slide-item {
            position: relative;
            height: 550px;
            width: 100%;
            overflow: hidden;
        }

        .slide-item .slide-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide-item.overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
            opacity: 0.11;
        }

        .slide-info {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
        }



        .slide-info .container-fluid {
            width: 100%;
        }

        .slide-content {
            padding: 60px 40px;
            /* Match 40px left/right padding of action card */
        }

        .slide-item h1,
        .slide-item h2 {
            font-size: 50px;
            font-weight: 700;
            line-height: 1.2;
        }

        .slide-item h3 {
            font-size: 1.4rem;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 30px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .slide-item .btn-slider {
            background: var(--theme-primary) !important;
            color: #fff !important;
            padding: 15px 40px !important;
            font-size: 1rem;
            font-weight: 700;
            border-radius: var(--btn-radius) !important;
            border: none !important;
            transition: all 0.3s ease;
            /* text-transform: uppercase; */
            letter-spacing: 0.5px;
            display: inline-block;
            /* Changed to inline-block for better text handling */
            text-align: center;
            line-height: 1.5;
            /* Normal line height */
            height: auto !important;
            /* Ensure height fits content */
            width: auto !important;
            /* Ensure width fits content */
            white-space: normal;
            /* Allow wrapping if necessary */
        }

        .slide-item .btn-slider:hover {
            background: var(--theme-secondary) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Slick Dots */
        .banner-slider .slick-dots {
            bottom: 30px;
            z-index: 10;
        }

        .banner-slider .slick-dots li button:before {
            font-size: 12px;
            color: #fff;
            opacity: 0.5;
        }

        .banner-slider .slick-dots li.slick-active button:before {
            color: var(--theme-primary);
            opacity: 1;
        }

        /* Scroll Prompt */
        .scroll-prompt {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            color: #fff;
            animation: bounce 2s infinite;
        }

        .scroll-prompt i {
            font-size: 2rem;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Two Column Action Cards - Haart Style */
        .action-cards-section {
            background: #dfdfe1;
            padding: 0;
        }

        .action-card {
            background: #dfdfe1;
            padding: 80px 40px;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        /* Removed hover effects for flat design */

        .action-card h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--theme-secondary) !important;
            margin-bottom: 20px;
        }

        .action-card p {
            font-size: 1.05rem;
            color: var(--theme-secondary) !important;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .action-card-left {
            border-right: 1px solid #d0c5e0;
        }

        .btn-haart {
            background: var(--theme-primary) !important;
            color: #fff !important;
            padding: 15px 35px !important;
            font-size: 1rem;
            font-weight: 700;
            border-radius: var(--btn-radius) !important;
            border: none !important;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            line-height: 1.5;
            /* Fix for multiline text */
            white-space: normal;
            /* Allow text wrapping */
            text-align: center;
            /* Center text */
            height: auto !important;
            /* Ensure height fits */
            width: auto;
        }

        .btn-haart:hover {
            background: var(--theme-secondary) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* Search Box */
        .search-box-haart {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .search-box-haart .form-control {
            height: 50px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            padding: 0 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-box-haart .form-control:focus {
            border-color: var(--theme-primary);
            box-shadow: 0 0 0 3px rgba(236, 0, 140, 0.1);
            outline: none;
        }

        .search-box-haart .btn-search {
            background: var(--theme-secondary) !important;
            color: #fff !important;
            height: 50px;
            border: none;
            border-radius: 5px;
            font-weight: 700;
            width: 100%;
            transition: all 0.3s ease;
        }

        .search-box-haart .btn-search:hover {
            background: var(--theme-primary) !important;
        }

        /* Properties Section */
        .properties-section {
            padding: 80px 0;
            background: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--theme-secondary) !important;
            margin-bottom: 10px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
        }

        .property-card-haart {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }

        .property-card-haart:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .property-img-haart {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .property-img-haart img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .property-card-haart:hover .property-img-haart img {
            transform: scale(1.1);
        }

        .property-status-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--theme-primary);
            color: #fff;
            padding: 6px 18px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .property-details-haart {
            padding: 25px;
        }

        .property-price-haart {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--theme-primary) !important;
            margin-bottom: 10px;
        }

        .property-name-haart {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--theme-secondary) !important;
            margin-bottom: 8px;
        }

        .property-location-haart {
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.95rem;
        }

        .property-specs-haart {
            display: flex;
            gap: 20px;
            padding-top: 15px;
            border-top: 1px solid #e0e0e0;
        }

        .property-spec-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #666;
            font-size: 0.9rem;
        }

        /* Benefits Section */
        .benefits-haart {
            background: #f8f8f8;
            padding: 80px 0;
        }

        .benefit-item {
            text-align: center;
            padding: 40px 20px;
            background: #fff;
            border-radius: 8px;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        }

        .benefit-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon-haart {
            width: 80px;
            height: 80px;
            background: var(--theme-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.2rem;
            color: #fff;
        }

        .benefit-item h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--theme-secondary) !important;
            margin-bottom: 12px;
        }

        .benefit-item p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-haart {
            background: var(--theme-gradient);
            padding: 80px 0;
            text-align: center;
        }

        .cta-haart h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fff !important;
            margin-bottom: 30px;
        }

        .btn-cta-white {
            background: #fff !important;
            color: var(--theme-secondary) !important;
            padding: 18px 45px !important;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: var(--btn-radius) !important;
            border: none !important;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-cta-white:hover {
            background: var(--theme-secondary) !important;
            color: #fff !important;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 991px) {

            .slide-item h1,
            .slide-item h2 {
                font-size: 2.2rem;
            }

            .slide-item h3 {
                font-size: 1.1rem;
            }

            .action-card-left {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
            }

            .action-card {
                min-height: 300px;
            }
        }

        @media (max-width: 768px) {

            .slide-item h1,
            .slide-item h2 {
                font-size: 1.8rem;
            }

            .banner-slider .slick-list {
                height: 450px !important;
            }

            .slide-item {
                height: 450px;
            }

            .banner-slider {
                margin-top: 70px;
            }
        }
