 :root {
            --gold: #D4AF37;
            --dark-gold: #B8941F;
        }

        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        .gold-gradient {
            background: linear-gradient(135deg, #D4AF37 0%, #F7EF8A 100%);
        }

        .gold-text-gradient {
            background: linear-gradient(135deg, #D4AF37 0%, #F7EF8A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gold-border {
            border-color: #D4AF37;
        }

        .gold-shadow {
            box-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.39);
        }

        .property-card:hover {
            transform: translateY(-10px);
            transition: transform 0.3s ease;
        }

        .category-icon:hover {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        .hero-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        @media (max-width: 768px) {
            .hero-bg {
                background-attachment: scroll;
            }
        }

        input:focus,
        textarea:focus {
            border-color: #D4AF37 !important;
            box-shadow: 0 0 0 1px #D4AF37;
        }

        .gold-hover:hover {
            background-color: #D4AF37;
            color: black;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            color: #D4AF37;
            transform: scale(1.2);
            transition: all 0.3s ease;
        }

        body,
        html {
            overflow-x: hidden;
        }