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

        :root {
            --primary-color: #1a1a1a;
            --secondary-color: #f5f5f5;
            --accent-color: #d4835e;
            --text-dark: #2c2c2c;
            --text-light: #666;
            --border-color: #e0e0e0;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #ffffff;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* ========== HEADER ========== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: white;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -1px;
        }

        .logo span {
            color: var(--accent-color);
        }

        nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 14px;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--accent-color);
        }

        nav a:hover::after {
            width: 100%;
        }

        .call-btn {
            background: var(--accent-color);
            color: white;
            padding: 10px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .call-btn:hover {
            background: #c26c4d;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(212, 131, 94, 0.2);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .hamburger span {
            width: 25px;
            height: 2.5px;
            background: var(--text-dark);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ========== HERO SECTION ========== */
        .hero {
            padding: 100px 20px;
            background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #f5f1ed 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 131, 94, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: -2px;
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--accent-color);
        }

        .hero p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ========== MAIN CONTENT ========== */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 48px;
        }

        /* ========== PROPERTY GRID ========== */
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .property-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }

        .property-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--accent-color);
        }

        .property-image-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 66.67%;
            overflow: hidden;
            background: #f0f0f0;
        }

        .property-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .property-content {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .property-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .property-builder {
            font-size: 13px;
            color: var(--accent-color);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .property-specs {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-color);
            font-size: 14px;
        }

        .spec {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-light);
        }

        .spec i {
            color: var(--accent-color);
            width: 16px;
        }

        .property-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 16px;
        }

        .property-location {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 20px;
            flex-grow: 1;
            display: flex;
            align-items: flex-start;
            gap: 6px;
        }

        .property-location i {
            color: var(--accent-color);
            margin-top: 2px;
            flex-shrink: 0;
        }

        /* ========== FOOTER ========== */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 40px 20px;
            margin-top: 80px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 16px;
            margin-bottom: 16px;
            font-weight: 700;
            color: white;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-color);
        }

        .footer-section p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .header-container {
                height: 60px;
            }

            .logo {
                font-size: 20px;
            }

            nav {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: white;
                padding: 20px;
                gap: 0;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
                z-index: 999;
            }

            nav.active {
                display: flex;
            }

            nav a {
                padding: 12px 0;
                border-bottom: 1px solid var(--border-color);
            }

            nav a::after {
                display: none;
            }

            .call-btn {
                width: 100%;
                justify-content: center;
                margin-top: 12px;
                border-bottom: none;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

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

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

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 40px 16px;
            }

            .hero {
                padding: 40px 16px;
            }

            .hero h1 {
                font-size: 24px;
            }

            .hero p {
                font-size: 14px;
            }

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

            .property-name {
                font-size: 18px;
            }

            .property-specs {
                flex-direction: column;
                gap: 8px;
            }
        }