        :root {
            --gradient-primary: linear-gradient(135deg, #667eea, #764ba2);
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            background: #f8f9fa;
            margin: 0;
            padding: 0;
        }

        /* Mini Features Section */
        .features-mini {
            margin-top: 40px;
        }

        .feature-mini-card {
            color: #fff;
            border-radius: 20px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 6px 25px rgba(238, 234, 234, 0.08);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }

        .feature-mini-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
        }

        .feature-mini-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 4px;
            border-radius: 20px 20px 0 0;
            background: linear-gradient(90deg, #8b5cf6, #764ba2);
            transition: width 0.4s ease;
        }

        .feature-mini-card:hover::before {
            width: 100%;
        }

        .feature-mini-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 15px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .feature-mini-card:hover .feature-mini-icon {
            transform: rotate(360deg);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
        }

        .icon-gradient-blue {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
        }

        .icon-gradient-purple {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }

        .icon-gradient-green {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .feature-mini-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .feature-mini-card:hover .feature-mini-title {
            color: #8b5cf6;
        }

        .feature-mini-desc {
            font-size: 0.95rem;
            color: #64748b;
        }


        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: url("https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?cs=srgb&dl=pexels-expect-best-79873-323780.jpg&fm=jpg") center/cover no-repeat;
            display: flex;
            align-items: center;
            padding-top: 100px;
            overflow: hidden;
            padding: 2rem 1rem;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
                linear-gradient(135deg, #667eeabb, #764ba2cc);
            z-index: 1;
        }

        /* Floating Circles */
        .animated-bg {
            position: absolute;
            inset: 0;
            z-index: 2;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            animation: float 20s infinite ease-in-out;
        }

        .circle:nth-child(1) {
            width: 400px;
            height: 400px;
            top: -100px;
            left: -80px;
        }

        .circle:nth-child(2) {
            width: 300px;
            height: 300px;
            right: -50px;
            top: 40%;
            animation-delay: 3s;
        }

        .circle:nth-child(3) {
            width: 200px;
            height: 200px;
            left: 30%;
            bottom: 10%;
            animation-delay: 6s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(25px, -25px) scale(1.1);
            }
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: white;
        }

        .badge-premium {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 10px 20px;
            border-radius: 50px;
            display: inline-flex;
            gap: 10px;
            animation: fadeInDown 1s ease-out;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            margin-top: 20px;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        .highlight {
            background: linear-gradient(to right, #fff, #f6f6f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            animation: fadeInUp 1s ease-out 0.5s backwards;
            font-size: 1.1rem;
            margin-top: 1rem;
        }

        .btn-hero-primary,
        .btn-hero-secondary {
            width: 100%;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-hero-primary {
            background: white;
            color: #667eea;
            border: none;
            animation: fadeInLeft 1s ease-out 0.7s backwards;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .btn-hero-secondary {
            background: transparent;
            color: #fff;
            border: 3px solid #fff;
            animation: fadeInRight 1s ease-out 0.7s backwards;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Feature Cards */
        .feature-card {
            background: rgba(255, 255, 255, 0.15);
            padding: 25px 15px;
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            color: #fff;
            transition: all 0.3s ease;
            animation: scaleIn 0.6s ease-out backwards;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .feature-card .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 20px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: auto;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Showcase Services */
        .showcase-card {
            background: rgba(255, 255, 255, 0.15);
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            animation: fadeInRight 1s ease-out 0.5s backwards;
            backdrop-filter: blur(10px);
        }

        .showcase-card h3 {
            animation: fadeInUp 0.6s ease-out 0.7s backwards;
            text-align: center;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(8px);
        }

        .showcase-card .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1) rotate(360deg);
        }

        /* Property Search */
        .property-search {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .search-box {
            width: 100%;
            max-width: 500px;
            background: #fff;
            padding: 10px 15px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 2px solid #b76df5;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .search-box i {
            font-size: 18px;
            color: #7e3cff;
        }

        .search-box input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .btn-search {
            background: linear-gradient(45deg, #7e3cff, #764ba2cc);
            color: white;
            border: none;
            padding: 8px 18px;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-search:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .hero-section {
                padding-top: 120px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding-top: 140px;
            }

            .feature-card {
                padding: 20px 10px;
            }

            .showcase-card {
                padding: 20px 15px;
            }
        }

        /* Default desktop padding */


        /* Tablet */
        @media (max-width: 991px) {
            .hero-section {
                padding-top: 60px;
                /* less top space */
                padding-bottom: 40px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .hero-section {
                padding-top: 20px;
                /* almost no top space */
                padding-bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .feature-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .feature-item:hover {
                transform: translateX(0) translateY(-5px);
            }

            .row.g-3.mt-4 .col-md-4,
            .row.g-3.mt-4 .col-sm-6,
            .row.g-3.mt-4 .col-sm-12 {
                margin-bottom: 20px;
            }
        }


        /* Property show */
        /* Section Title */
        .premium-label {
            font-size: 14px;
            color: #764ba2cc;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .premium-title {
            font-size: 42px;
            font-weight: 800;
            color: #222;
        }

        .premium-subtitle {
            color: #777;
            font-size: 16px;
            margin-top: 5px;
        }

        /* Card */
        .property-card-premium {
            background: #ffffff;
            border-radius: 18px;
            overflow: hidden;
            transition: all .35s ease;
            border: 1px solid #eee;
            position: relative;
        }

        /* Image */
        .prop-img-wrap {
            position: relative;
            height: 260px;
            overflow: hidden;
        }

        .prop-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.4s ease;
        }

        .property-card-premium:hover .prop-img {
            transform: scale(1.08);
        }

        /* Type Badge */
        .prop-type {
            position: absolute;
            top: 18px;
            left: 18px;
            background: #764ba2cc;
            color: #fff;
            padding: 6px 15px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
        }

        /* Heart */
        .prop-wishlist {
            position: absolute;
            top: 18px;
            right: 18px;
            background: #fff;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: 0.25s ease;
        }

        .prop-wishlist:hover {
            transform: scale(1.1);
        }

        /* Info */
        .prop-info {
            padding: 22px;
        }

        .prop-title {
            font-size: 20px;
            font-weight: 700;
            color: #222;
        }

        .prop-location {
            font-size: 14px;
            color: #666;
            margin: 8px 0 14px;
        }

        .prop-location i {
            color: #764ba2cc;
            margin-right: 6px;
        }

        .prop-price {
            font-size: 22px;
            font-weight: 800;
            color: #764ba2cc;
            margin-bottom: 15px;
        }

        /* Features */
        /* Features Section */
        .features {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(50px, 50px);
            }
        }

        .features-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .features-label {
            display: inline-block;
            padding: 8px 24px;
            background: linear-gradient(135deg, #8b5cf6 0%, #764ba2 100%);
            color: white;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            animation: labelFloat 3s ease-in-out infinite;
        }

        @keyframes labelFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .features-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .features-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            cursor: pointer;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8b5cf6, #764ba2);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.4s ease;
        }

        .icon-blue {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }

        .icon-purple {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        }

        .icon-green {
            background: linear-gradient(135deg, #10b981, #059669);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        .icon-orange {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            transition: color 0.3s;
        }

        .feature-card:hover h3 {
            color: #8b5cf6;
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.7;
            margin: 0;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta {
            padding: 120px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .cta .cta-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            animation: titlePulse 2s ease-in-out infinite;
        }

        @keyframes titlePulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.02);
            }
        }

        .cta .cta-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
        }

        .btn {
            padding: 15px 35px;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8b5cf6, #764ba2);
            color: #fff;
            box-shadow: 0 5px 25px rgba(139, 92, 246, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(236, 72, 153, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.35);
            color: #764ba2;
            backdrop-filter: blur(5px);
        }

        .btn-secondary:hover {
            background: #fff;
            color: #764ba2;
            transform: translateY(-3px);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Responsive */
        @media (max-width:768px) {

            .features-title,
            .cta .cta-title {
                font-size: 2rem;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-buttons button {
                width: 100%;
            }
        }