:root {
            --primary: #7f3ebd;
            --primary-dark: #6a2fa3;
            --primary-light: #9b5dd4;
            --primary-glow: rgba(127, 62, 189, 0.3);
            --white: #ffffff;
            --off-white: #f8f6fa;
            --gray-100: #f3f0f7;
            --gray-200: #e8e4ed;
            --gray-300: #d1cad9;
            --gray-600: #6b6175;
            --gray-800: #2d2633;
            --black: #1a1520;
            
            --font-heading: 'Sora', sans-serif;
            --font-body: 'Montserrat', sans-serif;
            
            --shadow-sm: 0 2px 8px rgba(127, 62, 189, 0.08);
            --shadow-md: 0 8px 30px rgba(127, 62, 189, 0.12);
            --shadow-lg: 0 20px 60px rgba(127, 62, 189, 0.15);
            --shadow-glow: 0 0 40px rgba(127, 62, 189, 0.2);
            
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 28px;
            --radius-xl: 40px;
            
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--white);
            color: var(--gray-800);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Background Decoration */
        .bg-decoration {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .bg-decoration::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80vw;
            height: 80vw;
            background: radial-gradient(circle, rgba(127, 62, 189, 0.03) 0%, transparent 70%);
            animation: floatBg 20s ease-in-out infinite;
        }

        .bg-decoration::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, rgba(127, 62, 189, 0.04) 0%, transparent 60%);
            animation: floatBg 25s ease-in-out infinite reverse;
        }

        @keyframes floatBg {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 40px);
            max-width: 1400px;
            z-index: 1000;
            animation: headerSlide 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes headerSlide {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px 12px 24px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(127, 62, 189, 0.1);
            border-radius: 100px;
            box-shadow: var(--shadow-md);
            transition: var(--transition-smooth);
        }

        .header-inner:hover {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-lg);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            width: auto;
            transition: var(--transition-smooth);
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-800);
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition-fast);
            position: relative;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--primary);
            border-radius: 50px;
            opacity: 0;
            transform: scale(0.8);
            transition: var(--transition-smooth);
        }

        .nav-links a:hover::before {
            opacity: 0.08;
            transform: scale(1);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a span {
            position: relative;
            z-index: 1;
        }

        .nav-links .material-symbols-outlined {
            font-size: 18px;
            position: relative;
            z-index: 1;
        }

        /* Sidebar Toggle */
        .sidebar-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(127, 62, 189, 0.3);
        }

        .sidebar-toggle:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 30px rgba(127, 62, 189, 0.4);
        }

        .sidebar-toggle .material-symbols-outlined {
            color: var(--white);
            font-size: 22px;
        }

        /* Sidebar */
        .sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 380px;
            height: 100vh;
            background: var(--white);
            box-shadow: -10px 0 60px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: var(--transition-smooth);
            overflow-y: auto;
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar-overlay {
            position: fixed;
            inset: 0;
            background: rgba(26, 21, 32, 0.5);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            transition: var(--transition-smooth);
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 28px;
            border-bottom: 1px solid var(--gray-200);
        }

        .sidebar-close {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--gray-100);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .sidebar-close:hover {
            background: var(--primary);
            color: var(--white);
        }

        .sidebar-content {
            padding: 28px;
        }

        .sidebar-nav {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 8px;
        }

        .sidebar-nav a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 500;
            color: var(--gray-800);
            text-decoration: none;
            border-radius: var(--radius-md);
            transition: var(--transition-fast);
        }

        .sidebar-nav a:hover {
            background: linear-gradient(135deg, rgba(127, 62, 189, 0.08) 0%, rgba(127, 62, 189, 0.04) 100%);
            color: var(--primary);
            transform: translateX(6px);
        }

        .sidebar-nav .material-symbols-outlined {
            font-size: 22px;
            color: var(--primary);
        }

        .sidebar-cta {
            margin-top: 32px;
            padding: 28px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-lg);
            text-align: center;
        }

        .sidebar-cta h4 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 10px;
        }

        .sidebar-cta p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .sidebar-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--white);
            color: var(--primary);
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition-fast);
        }

        .sidebar-cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        /* Hero Section */
        .hero {
            padding: 120px 20px 60px;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-video-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            max-height: 75vh;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            animation: heroReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
            opacity: 0;
            transform: translateY(40px) scale(0.98);
        }

        @keyframes heroReveal {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-video-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(26, 21, 32, 0.1) 0%,
                rgba(26, 21, 32, 0.2) 40%,
                rgba(26, 21, 32, 0.6) 100%
            );
            z-index: 1;
            pointer-events: none;
        }

        .hero-video-wrapper::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: var(--radius-xl);
            padding: 2px;
            background: linear-gradient(135deg, rgba(127, 62, 189, 0.3), transparent, rgba(127, 62, 189, 0.2));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Hero Content Overlay */
        .hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: 0;
            padding: 60px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            text-align: center;
        }

        .hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-tagline .material-symbols-outlined {
            font-size: 18px;
            color: var(--white);
        }

        .hero-tagline span {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 500;
            color: var(--white);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 6vw, 72px);
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .hero-title .highlight {
            /* background: linear-gradient(135deg, var(--primary-light) 0%, #c89deb 100%); */
             background: var(--white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: clamp(14px, 2vw, 18px);
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            margin-bottom: 36px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition-smooth);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            box-shadow: 0 8px 30px rgba(127, 62, 189, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(127, 62, 189, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }

        .btn .material-symbols-outlined {
            font-size: 20px;
        }

        /* Play Button */
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
        }

        .play-btn.show {
            opacity: 1;
            visibility: visible;
        }

        .play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .play-btn .material-symbols-outlined {
            font-size: 36px;
            color: var(--primary);
            margin-left: 4px;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
            opacity: 0;
        }

        .scroll-indicator span {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .scroll-mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 20px;
            position: relative;
        }

        .scroll-mouse::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: var(--white);
            border-radius: 4px;
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            50% {
                opacity: 0.3;
                transform: translateX(-50%) translateY(10px);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }

            .header-inner {
                padding: 10px 12px 10px 20px;
            }

            .logo img {
                height: 36px;
            }

            .hero {
                padding: 90px 16px 40px;
            }

            .hero-content {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .header {
                top: 12px;
                width: calc(100% - 24px);
            }

            .sidebar {
                width: 100%;
                right: -100%;
            }

            .hero {
                padding: 80px 12px 30px;
            }

            .hero-video-wrapper {
                border-radius: var(--radius-lg);
                aspect-ratio: 16 / 9;
                max-height: none;
            }

            .hero-content {
                padding: 20px;
                justify-content: center;
            }

            .hero-tagline {
                display: none;
            }

            .hero-title {
                margin-bottom: 0;
            }

            .hero-subtitle {
                display: none;
            }

            .hero-buttons {
                display: none;
            }

            .play-btn {
                display: none;
            }

            .scroll-indicator {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding: 8px 10px 8px 16px;
            }

            .logo img {
                height: 32px;
            }

            .sidebar-toggle {
                width: 42px;
                height: 42px;
            }

            .hero {
                padding: 90px 10px 24px;
            }

            .hero-video-wrapper {
                border-radius: var(--radius-md);
            }

            .hero-content {
                padding: 16px;
            }

            .hero-title {
                font-size: clamp(24px, 7vw, 32px);
            }
        }

        /* new css from here */
        /* Featured Properties Section */
.featured-properties {
    padding: 100px 20px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.featured-properties::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.featured-properties::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.1) 0%, rgba(127, 62, 189, 0.05) 100%);
    border: 1px solid rgba(127, 62, 189, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.section-badge span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Property Card */
.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.property-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    left: -35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8px 40px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(-45deg);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(127, 62, 189, 0.4);
}

.featured-ribbon .material-symbols-outlined {
    font-size: 14px;
}

/* Property Image */
.property-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-badge.plot {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.property-badge.villa {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.property-badge .material-symbols-outlined {
    font-size: 16px;
}

.property-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(46, 204, 113, 0.95);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-favorite {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.property-favorite:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.property-favorite .material-symbols-outlined {
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition-fast);
}

.property-favorite:hover .material-symbols-outlined {
    color: var(--white);
}

/* Property Content */
.property-content {
    padding: 24px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.property-location .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.property-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.4;
    margin-bottom: 16px;
}

/* Property Highlights */
.property-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
}

.highlight-item .material-symbols-outlined {
    font-size: 16px;
    color: var(--primary);
}

/* Property Footer */
.property-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.property-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.property-actions {
    display: flex;
    gap: 10px;
}

.btn-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: var(--gray-800);
    border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(127, 62, 189, 0.05);
}

.btn-outline .material-symbols-outlined {
    font-size: 18px;
}

.btn-filled {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(127, 62, 189, 0.3);
}

.btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(127, 62, 189, 0.4);
}

.btn-filled .material-symbols-outlined {
    font-size: 18px;
}

/* Urgency Banner */
.urgency-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.08) 0%, rgba(127, 62, 189, 0.03) 100%);
    border: 1px solid rgba(127, 62, 189, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 50px;
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.urgency-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(127, 62, 189, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(127, 62, 189, 0);
    }
}

.urgency-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--white);
}

.urgency-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.urgency-text p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-600);
}

.urgency-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* Section CTA */
.section-cta {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--gray-800);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-view-all:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-view-all .material-symbols-outlined {
    font-size: 20px;
    transition: var(--transition-fast);
}

.btn-view-all:hover .material-symbols-outlined {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .featured-properties {
        padding: 80px 20px;
    }

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .urgency-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .urgency-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .featured-properties {
        padding: 60px 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .property-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .property-image {
        height: 220px;
    }

    .property-content {
        padding: 20px;
    }

    .property-actions {
        flex-direction: column;
    }

    .btn-card {
        padding: 14px 20px;
    }

    .urgency-banner {
        padding: 20px;
        gap: 20px;
    }

    .urgency-icon {
        width: 48px;
        height: 48px;
    }

    .urgency-icon .material-symbols-outlined {
        font-size: 22px;
    }

    .urgency-text h4 {
        font-size: 16px;
    }

    .urgency-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .featured-properties {
        padding: 50px 12px;
    }

    .section-badge {
        padding: 8px 16px;
    }

    .section-badge span {
        font-size: 11px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .property-image {
        height: 200px;
    }

    .featured-ribbon {
        font-size: 10px;
        padding: 6px 35px;
        left: -38px;
    }

    .property-title {
        font-size: 16px;
    }

    .price-value {
        font-size: 22px;
    }

    .btn-view-all {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* developers */
/* Trusted Developers Section */
.trusted-developers {
    padding: 80px 20px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.developers-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Developers Header */
.developers-header {
    text-align: center;
    margin-bottom: 50px;
}

.developers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.1) 0%, rgba(127, 62, 189, 0.05) 100%);
    border: 1px solid rgba(127, 62, 189, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
}

.developers-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.developers-badge span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.developers-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 14px;
}

.developers-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.developers-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 400;
    color: var(--gray-600);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Logo Slider */
.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Gradient Fade Edges */
.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}

/* Logo Track */
.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollLogos 60s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Logo Item */
.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.logo-item:hover {
    transform: scale(1.08);
}

.logo-item img {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: var(--transition-smooth);
}

/* .logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
} */

/* Responsive Styles */
@media (max-width: 1024px) {
    .trusted-developers {
        padding: 70px 20px;
    }

    .developers-header {
        margin-bottom: 40px;
    }

    .logo-slider::before,
    .logo-slider::after {
        width: 100px;
    }

    .logo-track {
        gap: 50px;
        animation-duration: 50s;
    }

    .logo-item {
        height: 60px;
        padding: 8px 16px;
    }

    .logo-item img {
        max-height: 45px;
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .trusted-developers {
        padding: 60px 16px;
    }

    .developers-header {
        margin-bottom: 30px;
    }

    .logo-slider::before,
    .logo-slider::after {
        width: 60px;
    }

    .logo-track {
        gap: 40px;
        animation-duration: 45s;
    }

    .logo-item {
        height: 55px;
        padding: 8px 14px;
    }

    .logo-item img {
        max-height: 40px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .trusted-developers {
        padding: 50px 12px;
    }

    .developers-badge {
        padding: 8px 16px;
    }

    .developers-badge span {
        font-size: 11px;
    }

    .developers-title {
        font-size: 24px;
    }

    .developers-subtitle {
        font-size: 14px;
    }

    .logo-slider {
        padding: 15px 0;
    }

    .logo-slider::before,
    .logo-slider::after {
        width: 40px;
    }

    .logo-track {
        gap: 30px;
        animation-duration: 40s;
    }

    .logo-item {
        height: 50px;
        padding: 6px 12px;
    }

    .logo-item img {
        max-height: 35px;
        max-width: 80px;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
}

/* why choose us */
/* Why Buy With Us Section */
.why-buy-section {
    padding: 100px 20px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.why-buy-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-buy-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.why-buy-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.why-buy-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-buy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.1) 0%, rgba(127, 62, 189, 0.05) 100%);
    border: 1px solid rgba(127, 62, 189, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
}

.why-buy-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.why-buy-badge span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.why-buy-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 16px;
}

.why-buy-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-buy-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Trust Card */
.trust-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
    border: 1px solid transparent;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: var(--transition-smooth);
    border-radius: 0 0 4px 0;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(127, 62, 189, 0.1);
}

.trust-card:hover::before {
    height: 100%;
}

/* Trust Card Icon */
.trust-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.1) 0%, rgba(127, 62, 189, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.trust-card:hover .trust-card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scale(1.05);
}

.trust-card-icon .material-symbols-outlined {
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.trust-card:hover .trust-card-icon .material-symbols-outlined {
    color: var(--white);
}

/* Trust Card Content */
.trust-card-content {
    position: relative;
    z-index: 1;
}

.trust-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
    line-height: 1.3;
}

.trust-card-description {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Trust Card Number */
.trust-card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(127, 62, 189, 0.06);
    line-height: 1;
    transition: var(--transition-smooth);
}

.trust-card:hover .trust-card-number {
    color: rgba(127, 62, 189, 0.12);
}

/* CTA Card */
.trust-card.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
}

.trust-card.cta-card::before {
    display: none;
}

.trust-card.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(127, 62, 189, 0.4);
}

.cta-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cta-card-icon .material-symbols-outlined {
    font-size: 30px;
    color: var(--white);
}

.cta-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-card-description {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-card-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-card-btn .material-symbols-outlined {
    font-size: 20px;
}

.cta-card-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px 50px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(127, 62, 189, 0.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.1) 0%, rgba(127, 62, 189, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, var(--gray-200) 50%, transparent 100%);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar {
        padding: 32px 30px;
        gap: 0;
    }

    .stat-item {
        padding: 0 25px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .why-buy-section {
        padding: 80px 20px;
    }

    .why-buy-header {
        margin-bottom: 50px;
    }

    .trust-card {
        padding: 30px 26px;
    }

    .trust-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .trust-card-icon .material-symbols-outlined {
        font-size: 26px;
    }

    .trust-card-title {
        font-size: 18px;
    }

    .trust-card-description {
        font-size: 14px;
    }

    .trust-card-number {
        font-size: 40px;
    }

    .stats-bar {
        flex-wrap: wrap;
        padding: 30px 20px;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 45%;
        justify-content: center;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .why-buy-section {
        padding: 60px 16px;
    }

    .why-buy-header {
        margin-bottom: 40px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .trust-card {
        padding: 28px 24px;
    }

    .trust-card-number {
        font-size: 36px;
        top: 16px;
        right: 20px;
    }

    .cta-card-title {
        font-size: 20px;
    }

    .cta-card-description {
        font-size: 14px;
    }

    .stats-bar {
        border-radius: var(--radius-lg);
        padding: 24px 16px;
    }

    .stat-item {
        flex: 1 1 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        border-bottom: 1px solid var(--gray-100);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
    }

    .stat-icon .material-symbols-outlined {
        font-size: 22px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .why-buy-section {
        padding: 50px 12px;
    }

    .why-buy-badge {
        padding: 8px 16px;
    }

    .why-buy-badge span {
        font-size: 11px;
    }

    .why-buy-title {
        font-size: 24px;
    }

    .why-buy-subtitle {
        font-size: 14px;
    }

    .trust-card {
        padding: 24px 20px;
    }

    .trust-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .trust-card-icon .material-symbols-outlined {
        font-size: 24px;
    }

    .trust-card-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .trust-card-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .trust-card-number {
        font-size: 32px;
    }

    .cta-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .cta-card-icon .material-symbols-outlined {
        font-size: 26px;
    }

    .cta-card-title {
        font-size: 18px;
    }

    .cta-card-btn {
        padding: 12px 26px;
        font-size: 14px;
    }

    .stats-bar {
        padding: 20px 12px;
    }

    .stat-item {
        padding: 10px 12px;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
    }

    .stat-icon .material-symbols-outlined {
        font-size: 20px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* cta */
/* CTA Lead Conversion Section */
.cta-lead-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.cta-shape-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.15) 0%, transparent 70%);
    animation: floatShape 20s ease-in-out infinite;
}

.cta-shape-2 {
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.1) 0%, transparent 60%);
    animation: floatShape 25s ease-in-out infinite reverse;
}

.cta-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.05) 0%, transparent 50%);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.cta-lead-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-lead-wrapper {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
}

/* Left Content Styles */
.cta-lead-content {
    color: var(--white);
}

.cta-lead-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(127, 62, 189, 0.2);
    border: 1px solid rgba(127, 62, 189, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
}

.cta-lead-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary-light);
}

.cta-lead-badge span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-lead-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-lead-title .highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, #c89deb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-lead-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

/* Benefits List */
.cta-benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon .material-symbols-outlined {
    font-size: 24px;
    color: #4ade80;
}

.cta-benefit-item span {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Trust Row */
.cta-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    padding-top: 8px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
}

.cta-trust-item .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary-light);
}

.cta-trust-item span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* WhatsApp Button */
.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    background: #20bd5a;
}

.whatsapp-btn-large svg {
    width: 24px;
    height: 24px;
}

/* Form Wrapper */
.cta-lead-form-wrapper {
    position: relative;
}

.cta-lead-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-lead-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 200% 0;
    }
    50% {
        background-position: -200% 0;
    }
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

/* Form Styles */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-300);
    font-weight: 400;
}

.form-input:focus,
.form-select:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(127, 62, 189, 0.1);
}

/* Phone Input */
.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.phone-input-wrapper:focus-within {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(127, 62, 189, 0.1);
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: rgba(127, 62, 189, 0.1);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    border-right: 1px solid var(--gray-200);
}

.phone-input {
    background: transparent;
    border: none;
    border-radius: 0;
}

.phone-input:focus {
    box-shadow: none;
}

/* Select Styles */
.form-group:has(.form-select) {
    position: relative;
}

.form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 48px;
}

.select-arrow {
    position: absolute;
    right: 16px;
    bottom: 14px;
    font-size: 22px;
    color: var(--gray-600);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-select:focus + .select-arrow {
    color: var(--primary);
    transform: rotate(180deg);
}

/* Quick Action Buttons */
.form-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-action-btn:hover {
    background: rgba(127, 62, 189, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}

.quick-action-btn.active {
    background: rgba(127, 62, 189, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.quick-action-btn .material-symbols-outlined {
    font-size: 20px;
}

/* Submit Button */
.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(127, 62, 189, 0.4);
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(127, 62, 189, 0.5);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.form-submit-btn .btn-icon {
    font-size: 20px;
    transition: var(--transition-fast);
}

.form-submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-submit-btn .btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-submit-btn.loading .btn-text,
.form-submit-btn.loading .btn-icon {
    display: none;
}

.form-submit-btn.loading .btn-loader {
    display: block;
}

/* Privacy Note */
.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    text-align: center;
}

.form-privacy .material-symbols-outlined {
    font-size: 16px;
    color: #4ade80;
}

/* Urgency Banner */
.form-urgency-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    position: relative;
}

.urgency-pulse {
    position: absolute;
    left: 20px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-urgency 2s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

.form-urgency-banner .material-symbols-outlined {
    font-size: 22px;
    color: #ef4444;
    margin-left: 16px;
}

.form-urgency-banner p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.5;
}

.form-urgency-banner strong {
    color: #ef4444;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .cta-lead-wrapper {
        grid-template-columns: 1fr 440px;
        gap: 50px;
    }

    .cta-lead-form-card {
        padding: 36px 30px;
    }
}

@media (max-width: 1024px) {
    .cta-lead-section {
        padding: 80px 20px;
    }

    .cta-lead-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-lead-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-lead-subtitle {
        max-width: none;
    }

    .cta-benefits-list {
        max-width: 400px;
        margin: 0 auto 32px;
    }

    .cta-benefit-item {
        justify-content: flex-start;
        text-align: left;
    }

    .cta-trust-row {
        justify-content: center;
    }

    .whatsapp-btn-large {
        display: none;
    }

    .cta-lead-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-lead-section {
        padding: 60px 16px;
    }

    .cta-lead-badge {
        padding: 8px 16px;
    }

    .cta-lead-title {
        font-size: 28px;
    }

    .cta-lead-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .cta-benefit-item {
        padding: 10px 0;
    }

    .cta-benefit-item span {
        font-size: 15px;
    }

    .cta-trust-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-trust-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-lead-form-card {
        padding: 30px 24px;
        border-radius: var(--radius-lg);
    }

    .form-title {
        font-size: 22px;
    }

    .form-quick-actions {
        grid-template-columns: 1fr;
    }

    .form-submit-btn {
        padding: 16px 28px;
        font-size: 15px;
    }

    .form-urgency-banner {
        flex-direction: column;
        text-align: center;
        padding: 14px 16px;
    }

    .urgency-pulse {
        position: static;
        margin-bottom: 4px;
    }

    .form-urgency-banner .material-symbols-outlined {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .cta-lead-section {
        padding: 50px 12px;
    }

    .cta-lead-badge span {
        font-size: 11px;
    }

    .cta-lead-title {
        font-size: 24px;
    }

    .cta-lead-subtitle {
        font-size: 14px;
    }

    .cta-benefits-list {
        padding: 0 8px;
    }

    .benefit-icon {
        width: 24px;
        height: 24px;
    }

    .benefit-icon .material-symbols-outlined {
        font-size: 20px;
    }

    .cta-benefit-item span {
        font-size: 14px;
    }

    .cta-lead-form-card {
        padding: 24px 18px;
    }

    .form-header {
        margin-bottom: 24px;
    }

    .form-title {
        font-size: 20px;
    }

    .form-subtitle {
        font-size: 13px;
    }

    .form-label {
        font-size: 12px;
    }

    .form-input,
    .form-select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .country-code {
        padding: 0 12px;
        font-size: 14px;
    }

    .quick-action-btn {
        padding: 10px 14px;
        font-size: 12px;
    }

    .quick-action-btn .material-symbols-outlined {
        font-size: 18px;
    }

    .form-submit-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .form-privacy {
        font-size: 11px;
    }

    .form-urgency-banner p {
        font-size: 12px;
    }
}
/* advantages */
/* Prime Locations Section */
.prime-locations-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.prime-locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.prime-locations-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.prime-header {
    text-align: center;
    margin-bottom: 60px;
}

.prime-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.1) 0%, rgba(127, 62, 189, 0.05) 100%);
    border: 1px solid rgba(127, 62, 189, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
}

.prime-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.prime-badge span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.prime-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 16px;
}

.prime-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prime-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Main Content Grid */
.prime-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

/* Left - Visual Section */
.prime-visual {
    position: sticky;
    top: 120px;
}

.location-map-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(127, 62, 189, 0.1);
}

.map-visual {
    position: relative;
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #e8e4f0 0%, #f3f0f7 100%);
    overflow: hidden;
}

.map-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(127, 62, 189, 0.05) 100%);
    pointer-events: none;
}

/* Location Pins */
.location-pin {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(127, 62, 189, 0.2);
    border-radius: 50%;
    animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.pin-dot {
    position: relative;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(127, 62, 189, 0.4);
    transition: var(--transition-fast);
}

.location-pin:hover .pin-dot {
    transform: scale(1.3);
}

.pin-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 20;
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--white);
}

.location-pin:hover .pin-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pin-tooltip strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.pin-tooltip span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
}

/* Map Legend */
.map-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 24px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.hot {
    background: #ef4444;
}

.legend-dot.growth {
    background: #f59e0b;
}

.legend-dot.premium {
    background: var(--primary);
}

.legend-item span:last-child {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
}

/* Appreciation Stats */
.appreciation-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.appreciation-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.08) 0%, rgba(127, 62, 189, 0.03) 100%);
    border: 1px solid rgba(127, 62, 189, 0.12);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.appreciation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.appreciation-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.appreciation-icon .material-symbols-outlined {
    font-size: 24px;
    color: var(--white);
}

.appreciation-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.appreciation-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.appreciation-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.3;
}

/* Right - Advantages Section */
.prime-advantages {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Advantage Card */
.advantage-card {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    position: relative;
}

.advantage-card:first-child {
    padding-top: 0;
}

.advantage-card:last-child {
    padding-bottom: 0;
}

.advantage-card:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.advantage-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(127, 62, 189, 0.25);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(127, 62, 189, 0.35);
}

.advantage-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--white);
}

.advantage-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(127, 62, 189, 0.1) 100%);
    margin-top: 12px;
    border-radius: 2px;
}

.advantage-content {
    flex: 1;
    padding-top: 4px;
}

.advantage-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
    line-height: 1.3;
}

.advantage-description {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 14px;
}

.advantage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.adv-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.advantage-card:hover .adv-tag {
    background: rgba(127, 62, 189, 0.1);
    color: var(--primary);
}

/* Highlights Banner */
.highlights-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--black) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.highlights-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(127, 62, 189, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.highlight-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(127, 62, 189, 0.4);
}

.highlight-icon-circle .material-symbols-outlined {
    font-size: 28px;
    color: var(--white);
}

.highlight-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.highlight-text p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.highlight-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

/* Investment CTA */
.investment-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.08) 0%, rgba(127, 62, 189, 0.03) 100%);
    border: 1px solid rgba(127, 62, 189, 0.15);
    border-radius: var(--radius-lg);
}

.investment-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.investment-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
}

.investment-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--white);
}

.investment-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.investment-text p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-600);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .prime-content-grid {
        gap: 40px;
    }

    .highlights-banner {
        padding: 32px 40px;
    }

    .highlight-icon-circle {
        width: 52px;
        height: 52px;
    }

    .highlight-icon-circle .material-symbols-outlined {
        font-size: 24px;
    }

    .highlight-text h4 {
        font-size: 16px;
    }

    .highlight-text p {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .prime-locations-section {
        padding: 80px 20px;
    }

    .prime-header {
        margin-bottom: 50px;
    }

    .prime-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .prime-visual {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }

    .map-visual {
        height: 320px;
    }

    .highlights-banner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 32px;
    }

    .highlight-divider {
        display: none;
    }

    .highlight-point {
        flex: 1 1 calc(50% - 30px);
        min-width: 200px;
        justify-content: center;
    }

    .investment-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .investment-cta-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .prime-locations-section {
        padding: 60px 16px;
    }

    .prime-header {
        margin-bottom: 40px;
    }

    .map-visual {
        height: 280px;
    }

    .map-legend {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 16px;
    }

    .appreciation-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .appreciation-card {
        padding: 16px;
    }

    .appreciation-value {
        font-size: 20px;
    }

    .advantage-card {
        padding: 24px 0;
    }

    .advantage-icon {
        width: 48px;
        height: 48px;
    }

    .advantage-icon .material-symbols-outlined {
        font-size: 22px;
    }

    .advantage-title {
        font-size: 18px;
    }

    .advantage-description {
        font-size: 14px;
    }

    .highlights-banner {
        padding: 24px 20px;
        gap: 24px;
        border-radius: var(--radius-lg);
    }

    .highlight-point {
        flex: 1 1 100%;
        justify-content: flex-start;
    }

    .highlight-icon-circle {
        width: 48px;
        height: 48px;
    }

    .highlight-icon-circle .material-symbols-outlined {
        font-size: 22px;
    }

    .investment-cta {
        padding: 24px 20px;
        gap: 20px;
    }

    .investment-icon {
        width: 48px;
        height: 48px;
    }

    .investment-icon .material-symbols-outlined {
        font-size: 24px;
    }

    .investment-text h4 {
        font-size: 16px;
    }

    .investment-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .prime-locations-section {
        padding: 50px 12px;
    }

    .prime-badge {
        padding: 8px 16px;
    }

    .prime-badge span {
        font-size: 11px;
    }

    .prime-title {
        font-size: 24px;
    }

    .prime-subtitle {
        font-size: 14px;
    }

    .location-map-card {
        border-radius: var(--radius-lg);
    }

    .map-visual {
        height: 240px;
    }

    .pin-tooltip {
        padding: 10px 12px;
    }

    .pin-tooltip strong {
        font-size: 13px;
    }

    .pin-tooltip span {
        font-size: 11px;
    }

    .map-legend {
        gap: 10px;
        padding: 12px;
    }

    .legend-item span:last-child {
        font-size: 11px;
    }

    .appreciation-card {
        padding: 14px;
        gap: 12px;
    }

    .appreciation-icon {
        width: 42px;
        height: 42px;
    }

    .appreciation-icon .material-symbols-outlined {
        font-size: 20px;
    }

    .appreciation-value {
        font-size: 18px;
    }

    .appreciation-label {
        font-size: 11px;
    }

    .advantage-card {
        gap: 14px;
        padding: 20px 0;
    }

    .advantage-icon {
        width: 44px;
        height: 44px;
    }

    .advantage-icon .material-symbols-outlined {
        font-size: 20px;
    }

    .advantage-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .advantage-description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .adv-tag {
        padding: 5px 12px;
        font-size: 11px;
    }

    .highlights-banner {
        padding: 20px 16px;
        gap: 20px;
    }

    .highlight-icon-circle {
        width: 44px;
        height: 44px;
    }

    .highlight-icon-circle .material-symbols-outlined {
        font-size: 20px;
    }

    .highlight-text h4 {
        font-size: 15px;
    }

    .highlight-text p {
        font-size: 12px;
    }

    .investment-cta {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }

    .investment-icon {
        width: 44px;
        height: 44px;
    }

    .investment-icon .material-symbols-outlined {
        font-size: 22px;
    }

    .investment-text h4 {
        font-size: 15px;
    }

    .investment-text p {
        font-size: 13px;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 14px;
    }
}
/* plots section */
/* Explore Property Types Section */
.property-types-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.property-types-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.property-types-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.property-types-header {
    text-align: center;
    margin-bottom: 60px;
}

.property-types-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.1) 0%, rgba(127, 62, 189, 0.05) 100%);
    border: 1px solid rgba(127, 62, 189, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
}

.property-types-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.property-types-badge span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.property-types-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 16px;
}

.property-types-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-types-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Property Type Cards Grid */
.property-type-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Property Type Card */
.property-type-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(127, 62, 189, 0.08);
}

.property-type-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(127, 62, 189, 0.2);
}

/* Card Background Image */
.type-card-bg {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.type-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.type-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 21, 32, 0.1) 0%, rgba(26, 21, 32, 0.6) 100%);
}

/* Card Content */
.type-card-content {
    padding: 28px;
    position: relative;
}

/* Card Header */
.type-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.type-icon-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(127, 62, 189, 0.35);
    border: 3px solid var(--white);
}

.type-icon-badge.plots {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.35);
}

.type-icon-badge.villas {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.35);
}

.type-icon-badge .material-symbols-outlined {
    font-size: 30px;
    color: var(--white);
}

.type-tag {
    padding: 6px 14px;
    background: rgba(127, 62, 189, 0.1);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.type-tag.investment {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.type-tag.premium {
    background: rgba(230, 126, 34, 0.1);
    color: #d35400;
}

/* Card Title */
.type-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.type-card-description {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Features List */
.type-features {
    list-style: none;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.type-features li:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.type-features li .material-symbols-outlined {
    font-size: 20px;
    color: #2ecc71;
}

/* Type Stats */
.type-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.type-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.type-stat .stat-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
}

.type-stat .stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Best For Section */
.type-best-for {
    margin-bottom: 24px;
}

.best-for-label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.best-for-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bf-tag {
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.property-type-card:hover .bf-tag {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(127, 62, 189, 0.05);
}

.plots-card:hover .bf-tag {
    border-color: #27ae60;
    color: #27ae60;
    background: rgba(46, 204, 113, 0.05);
}

.villas-card:hover .bf-tag {
    border-color: #d35400;
    color: #d35400;
    background: rgba(230, 126, 34, 0.05);
}

/* CTA Button */
.type-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(127, 62, 189, 0.3);
}

.type-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(127, 62, 189, 0.4);
}

.type-cta-btn.plots {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.type-cta-btn.plots:hover {
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

.type-cta-btn.villas {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.type-cta-btn.villas:hover {
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.4);
}

.type-cta-btn .material-symbols-outlined {
    font-size: 20px;
    transition: var(--transition-fast);
}

.type-cta-btn:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* Hover Glow Effect */
.type-card-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(127, 62, 189, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.type-card-glow.plots {
    background: linear-gradient(180deg, transparent 0%, rgba(46, 204, 113, 0.05) 100%);
}

.type-card-glow.villas {
    background: linear-gradient(180deg, transparent 0%, rgba(230, 126, 34, 0.05) 100%);
}

.property-type-card:hover .type-card-glow {
    opacity: 1;
}

/* Quick Finder */
.quick-finder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 36px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--black) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.quick-finder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(127, 62, 189, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.quick-finder-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.quick-finder-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-finder-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--white);
}

.quick-finder-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.quick-finder-text p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.quick-finder-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.quick-finder-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.quick-finder-btn .material-symbols-outlined {
    font-size: 20px;
}

/* Comparison Table */
.type-comparison {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(127, 62, 189, 0.08);
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 24px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: var(--gray-100);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.comparison-table th:first-child {
    text-align: left;
    border-radius: var(--radius-sm) 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

.comparison-table th .material-symbols-outlined {
    font-size: 20px;
    display: block;
    margin: 0 auto 6px;
    color: var(--primary);
}

.comparison-table th:nth-child(3) .material-symbols-outlined {
    color: #27ae60;
}

.comparison-table th:nth-child(4) .material-symbols-outlined {
    color: #d35400;
}

.comparison-table td {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--gray-800);
}

.comparison-table tbody tr:hover {
    background: rgba(127, 62, 189, 0.03);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .rating {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.comparison-table .rating.low {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.comparison-table .rating.high {
    background: rgba(230, 126, 34, 0.1);
    color: #d35400;
}

.comparison-table .check-icon,
.comparison-table .cross-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.comparison-table .check-icon {
    background: rgba(46, 204, 113, 0.1);
}

.comparison-table .check-icon .material-symbols-outlined {
    font-size: 18px;
    color: #27ae60;
}

.comparison-table .cross-icon {
    background: rgba(239, 68, 68, 0.1);
}

.comparison-table .cross-icon .material-symbols-outlined {
    font-size: 18px;
    color: #ef4444;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .property-type-cards {
        gap: 24px;
    }

    .type-card-content {
        padding: 24px;
    }

    .type-card-title {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .property-types-section {
        padding: 80px 20px;
    }

    .property-type-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
    }

    .type-card-bg {
        height: 180px;
    }

    .quick-finder {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .quick-finder-content {
        flex-direction: column;
    }

    .type-comparison {
        padding: 28px 20px;
    }
}

@media (max-width: 768px) {
    .property-types-section {
        padding: 60px 16px;
    }

    .property-types-header {
        margin-bottom: 40px;
    }

    .property-type-cards {
        max-width: none;
    }

    .type-card-bg {
        height: 160px;
    }

    .type-icon-badge {
        width: 56px;
        height: 56px;
    }

    .type-icon-badge .material-symbols-outlined {
        font-size: 26px;
    }

    .type-card-title {
        font-size: 20px;
    }

    .type-card-description {
        font-size: 14px;
    }

    .type-features {
        padding: 16px;
    }

    .type-features li {
        font-size: 13px;
    }

    .type-stat .stat-value {
        font-size: 18px;
    }

    .quick-finder {
        padding: 24px 20px;
        gap: 20px;
    }

    .quick-finder-icon {
        width: 48px;
        height: 48px;
    }

    .quick-finder-icon .material-symbols-outlined {
        font-size: 24px;
    }

    .quick-finder-text h4 {
        font-size: 16px;
    }

    .quick-finder-text p {
        font-size: 13px;
    }

    .quick-finder-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .type-comparison {
        padding: 24px 16px;
    }

    .comparison-title {
        font-size: 18px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .property-types-section {
        padding: 50px 12px;
    }

    .property-types-badge {
        padding: 8px 16px;
    }

    .property-types-badge span {
        font-size: 11px;
    }

    .property-types-title {
        font-size: 24px;
    }

    .property-types-subtitle {
        font-size: 14px;
    }

    .type-card-content {
        padding: 20px;
    }

    .type-card-header {
        margin-top: -55px;
    }

    .type-icon-badge {
        width: 50px;
        height: 50px;
    }

    .type-icon-badge .material-symbols-outlined {
        font-size: 24px;
    }

    .type-tag {
        padding: 5px 10px;
        font-size: 10px;
    }

    .type-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .type-card-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .type-features {
        padding: 14px;
        margin-bottom: 20px;
    }

    .type-features li {
        font-size: 12px;
        padding: 6px 0;
    }

    .type-features li .material-symbols-outlined {
        font-size: 18px;
    }

    .type-stats {
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .type-stat .stat-value {
        font-size: 16px;
    }

    .type-stat .stat-label {
        font-size: 11px;
    }

    .best-for-label {
        font-size: 11px;
    }

    .bf-tag {
        padding: 5px 12px;
        font-size: 11px;
    }

    .type-cta-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .quick-finder {
        padding: 20px 16px;
    }

    .quick-finder-icon {
        width: 44px;
        height: 44px;
    }

    .quick-finder-icon .material-symbols-outlined {
        font-size: 22px;
    }

    .quick-finder-text h4 {
        font-size: 15px;
    }

    .quick-finder-text p {
        font-size: 12px;
    }

    .quick-finder-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .type-comparison {
        padding: 20px 12px;
        border-radius: var(--radius-lg);
    }

    .comparison-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .comparison-table th .material-symbols-outlined {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .comparison-table .rating {
        padding: 3px 10px;
        font-size: 11px;
    }

    .comparison-table .check-icon,
    .comparison-table .cross-icon {
        width: 24px;
        height: 24px;
    }

    .comparison-table .check-icon .material-symbols-outlined,
    .comparison-table .cross-icon .material-symbols-outlined {
        font-size: 16px;
    }
}
/* testimonial section */
/* Client Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.1) 0%, rgba(127, 62, 189, 0.05) 100%);
    border: 1px solid rgba(127, 62, 189, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
}

.testimonials-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.testimonials-badge span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 16px;
}

.testimonials-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Testimonials Grid - 3 Cards in 1 Row */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Testimonial Card */
.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(127, 62, 189, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(127, 62, 189, 0.15);
}

/* Featured Card */
.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 20px 60px rgba(127, 62, 189, 0.3);
}

.testimonial-card.featured:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(127, 62, 189, 0.4);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.featured-tag .material-symbols-outlined {
    font-size: 16px;
}

/* Quote Icon */
.testimonial-quote-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.1) 0%, rgba(127, 62, 189, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-quote-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--primary);
    transform: rotate(180deg);
}

.testimonial-card.featured .testimonial-quote-icon {
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-card.featured .testimonial-quote-icon .material-symbols-outlined {
    color: var(--white);
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonial-rating .material-symbols-outlined {
    font-size: 20px;
    color: #f59e0b;
}

.testimonial-card.featured .testimonial-rating .material-symbols-outlined {
    color: #fbbf24;
}

/* Testimonial Text */
.testimonial-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Property Tag */
.testimonial-property {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gray-100);
    border-radius: 50px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.testimonial-property .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.testimonial-property span:last-child {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}

.testimonial-card.featured .testimonial-property {
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-card.featured .testimonial-property .material-symbols-outlined {
    color: var(--white);
}

.testimonial-card.featured .testimonial-property span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-card.featured .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.testimonial-card.featured .author-name {
    color: var(--white);
}

.author-role {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}

.testimonial-card.featured .author-role {
    color: rgba(255, 255, 255, 0.75);
}

.verified-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.verified-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--white);
}

/* Trust Stats */
.testimonials-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 36px 50px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(127, 62, 189, 0.08);
}

.testi-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 40px;
}

.testi-stat-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(127, 62, 189, 0.1) 0%, rgba(127, 62, 189, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-stat-icon .material-symbols-outlined {
    font-size: 24px;
    color: var(--primary);
}

.testi-stat-icon.google {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.testi-stat-icon.google svg {
    width: 26px;
    height: 26px;
}

.testi-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testi-stat-number {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1;
}

.testi-stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}

.testi-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, var(--gray-200) 50%, transparent 100%);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonials-grid {
        gap: 24px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonials-stats {
        padding: 32px 30px;
    }

    .testi-stat {
        padding: 0 25px;
    }

    .testi-stat-number {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 80px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 50px;
    }

    .testimonial-card.featured {
        order: -1;
    }

    .testimonials-stats {
        flex-wrap: wrap;
        padding: 28px 20px;
        gap: 20px;
    }

    .testi-stat-divider {
        display: none;
    }

    .testi-stat {
        flex: 1 1 45%;
        justify-content: center;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 16px;
    }

    .testimonials-header {
        margin-bottom: 50px;
    }

    .testimonials-grid {
        max-width: none;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-quote-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 16px;
    }

    .testimonial-quote-icon .material-symbols-outlined {
        font-size: 22px;
    }

    .testimonial-rating .material-symbols-outlined {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .testimonial-property {
        padding: 8px 14px;
        margin-bottom: 20px;
    }

    .testimonial-property .material-symbols-outlined {
        font-size: 16px;
    }

    .testimonial-property span:last-child {
        font-size: 12px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-role {
        font-size: 12px;
    }

    .verified-badge {
        width: 28px;
        height: 28px;
    }

    .verified-badge .material-symbols-outlined {
        font-size: 16px;
    }

    .testimonials-stats {
        border-radius: var(--radius-lg);
    }

    .testi-stat {
        flex: 1 1 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        border-bottom: 1px solid var(--gray-100);
    }

    .testi-stat:last-child {
        border-bottom: none;
    }

    .testi-stat-icon {
        width: 46px;
        height: 46px;
    }

    .testi-stat-icon .material-symbols-outlined {
        font-size: 22px;
    }

    .testi-stat-number {
        font-size: 22px;
    }

    .testi-stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 12px;
    }

    .testimonials-badge {
        padding: 8px 16px;
    }

    .testimonials-badge span {
        font-size: 11px;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 20px;
        border-radius: var(--radius-lg);
    }

    .featured-tag {
        padding: 6px 14px;
        font-size: 11px;
        top: -10px;
    }

    .featured-tag .material-symbols-outlined {
        font-size: 14px;
    }

    .testimonial-quote-icon {
        width: 38px;
        height: 38px;
    }

    .testimonial-quote-icon .material-symbols-outlined {
        font-size: 20px;
    }

    .testimonial-rating {
        margin-bottom: 14px;
    }

    .testimonial-rating .material-symbols-outlined {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonial-property {
        padding: 7px 12px;
    }

    .testimonial-property .material-symbols-outlined {
        font-size: 15px;
    }

    .testimonial-property span:last-child {
        font-size: 11px;
    }

    .testimonial-author {
        gap: 12px;
        padding-top: 16px;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-role {
        font-size: 11px;
    }

    .verified-badge {
        width: 26px;
        height: 26px;
    }

    .verified-badge .material-symbols-outlined {
        font-size: 14px;
    }

    .testimonials-stats {
        padding: 16px 12px;
    }

    .testi-stat {
        padding: 10px 12px;
    }

    .testi-stat-icon {
        width: 42px;
        height: 42px;
    }

    .testi-stat-icon .material-symbols-outlined {
        font-size: 20px;
    }

    .testi-stat-icon.google svg {
        width: 22px;
        height: 22px;
    }

    .testi-stat-number {
        font-size: 20px;
    }

    .testi-stat-label {
        font-size: 11px;
    }
}
/* footer */
/* Footer Section */
.footer {
    background: linear-gradient(180deg, var(--gray-800) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Main */
.footer-main {
    padding: 80px 0 60px;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 100px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 62, 189, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Brand Column */
.footer-brand-col {
    padding-right: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-about {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

a.contact-item:hover {
    color: var(--primary-light);
}

.contact-item .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary-light);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.social-link:hover svg {
    fill: var(--white);
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

/* Footer Links Columns */
.footer-links-col {
    padding-top: 8px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 12px;
}

/* Newsletter Column */
.footer-newsletter-col {
    padding-top: 8px;
}

.newsletter-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.newsletter-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.newsletter-input-wrap:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-input-wrap .material-symbols-outlined {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(127, 62, 189, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(127, 62, 189, 0.4);
}

.newsletter-btn .material-symbols-outlined {
    font-size: 18px;
}

/* App Download */
.app-download {
    padding-top: 4px;
}

.app-download-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.app-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-text span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
}

.app-btn-text strong {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.copyright {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

.link-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.rera-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 50px;
}

.rera-badge .material-symbols-outlined {
    font-size: 16px;
    color: #2ecc71;
}

.rera-badge span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #2ecc71;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 14px;
    background: var(--gray-800);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--gray-800);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(127, 62, 189, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(127, 62, 189, 0.5);
}

.back-to-top .material-symbols-outlined {
    font-size: 26px;
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-newsletter-col {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding-top: 30px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-newsletter-col .footer-col-title {
        grid-column: 1 / 2;
    }

    .newsletter-text {
        grid-column: 1 / 2;
        margin-bottom: 0;
    }

    .newsletter-form {
        grid-column: 1 / 2;
    }

    .app-download {
        grid-column: 2 / 3;
        grid-row: 1 / 4;
        padding-top: 40px;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        padding: 60px 0 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-newsletter-col {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-newsletter-col .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .app-download {
        grid-column: 1 / -1;
        grid-row: auto;
        padding-top: 0;
    }

    .app-buttons {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand-col {
        text-align: left;
    }

    .footer-contact-info {
        align-items: flex-start;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-links-col {
        padding-top: 0;
    }

    .footer-col-title {
        margin-bottom: 18px;
    }

    .footer-col-title::after {
        left: 0;
        transform: none;
    }

    .footer-newsletter-col {
        text-align: left;
    }

    .footer-newsletter-col .footer-col-title::after {
        left: 0;
        transform: none;
    }

    .app-buttons {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-bottom-content {
        align-items: flex-start;
        text-align: left;
    }

    .floating-whatsapp {
        bottom: 90px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        right: 16px;
        width: 46px;
        height: 46px;
    }

    .back-to-top .material-symbols-outlined {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-about {
        font-size: 13px;
    }

    .contact-item {
        font-size: 13px;
    }

    .contact-item .material-symbols-outlined {
        font-size: 18px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    .footer-col-title {
        font-size: 15px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .newsletter-text {
        font-size: 13px;
    }

    .newsletter-input-wrap {
        padding: 12px 14px;
    }

    .newsletter-input {
        font-size: 13px;
    }

    .newsletter-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .app-download-label {
        font-size: 12px;
    }

    .app-btn {
        padding: 8px 12px;
    }

    .app-btn svg {
        width: 20px;
        height: 20px;
    }

    .app-btn-text span {
        font-size: 9px;
    }

    .app-btn-text strong {
        font-size: 12px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .copyright {
        font-size: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    .rera-badge {
        padding: 6px 12px;
    }

    .rera-badge .material-symbols-outlined {
        font-size: 14px;
    }

    .rera-badge span {
        font-size: 11px;
    }

    .floating-whatsapp {
        bottom: 80px;
        right: 12px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }

    .back-to-top {
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .back-to-top .material-symbols-outlined {
        font-size: 22px;
    }
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
    gap: 48px;
}
/* new footer css */

