@import "tailwindcss";
:root {
            --primary-color: #d4af37;
            --primary-dark: #b5952f;
            --secondary-color: #f5e6d3;
            --dark-color: #1a1a1a;
            --light-color: #faf8f5;
            --cream-text: #5a5a5a;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--cream-text);
            background-color: var(--light-color);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        .btn-royal {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn-royal:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
            color: white;
        }
        
        .btn-outline {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
        }
        
        .card-gold {
            transition: all 0.5s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .card-gold:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
            border-color: var(--primary-color);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
        }
        
        .hero-pattern {
            background-image: repeating-linear-gradient(
                45deg,
                var(--light-color),
                var(--light-color) 10px,
                #f3ebe3 10px,
                #f3ebe3 20px
            );
        }
        
        .footer-royal {
            background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
        }
        
        .property-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary-dark);
            font-weight: 700;
        }
        
        .testimonials::before {
            content: "“";
            position: absolute;
            top: -30px;
            left: 30px;
            font-size: 6rem;
            color: var(--primary-color);
            opacity: 0.2;
            font-family: serif;
        }
        
        .fancy-border {
            position: relative;
            overflow: hidden;
        }
        
        .fancy-border::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
        }
        
        .sticky-header {
            position: sticky;
            top: -100px;
            z-index: 1000;
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .sticky-header.scrolled {
            top: 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .search-input {
            background: rgba(255,255,255,0.9);
            border: 1px solid rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        
        .feature-icon {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .feature-icon:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }
        
        @media (max-width: 768px) {
            .hero-text {
                font-size: 2.5rem !important;
            }
        }
        
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--light-color);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease;
        }
        
        .loader-container {
            position: relative;
            text-align: center;
        }
        
        .loader-ring {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(212, 175, 55, 0.2);
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .property-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 8px 16px;
            background: rgba(0,0,0,0.7);
            color: white;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 20px;
            text-transform: uppercase;
        }
        
        .rented::before {
            background: #dc2626;
        }
        
        .sold::before {
            background: #059669;
        }
        
        .feature-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 4px 12px;
            background: white;
            color: var(--primary-color);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 4px;
        }
