
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #D4AF37;
            --dark-navy: #1a1a2e;
            --charcoal: #2a2a2a;
            --off-white: #fafafa;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--primary-gold);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .menu-toggle {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-line {
            width: 25px;
            height: 2px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        .menu-toggle.active .menu-line:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active .menu-line:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active .menu-line:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--charcoal) 100%);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .fullscreen-menu.active {
            transform: translateX(0);
        }

        .menu-content {
            text-align: center;
        }

        .menu-content ul {
            list-style: none;
        }

        .menu-content li {
            margin: 30px 0;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.5s ease;
        }

        .fullscreen-menu.active .menu-content li {
            opacity: 1;
            transform: translateY(0);
        }

        .menu-content a {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: white;
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .menu-content a:hover {
            color: var(--primary-gold);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--charcoal) 100%);
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(42, 42, 42, 0.5) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 40px;
            animation: fadeInUp 1.5s ease-out;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--primary-gold);
            color: var(--dark-navy);
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        /* Section Styling */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark-navy);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-gold);
        }

        /* Featured Listings */
        .featured-listings {
            background: var(--off-white);
        }

        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .property-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            cursor: pointer;
            position: relative;
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .property-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--dark-navy), var(--charcoal));
            position: relative;
            overflow: hidden;
        }

        .property-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--primary-gold);
            border-radius: 50%;
            opacity: 0.3;
        }

        .property-image::after {
            content: 'Luxury Property';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-family: 'Playfair Display', serif;
            font-size: 18px;
        }

        .property-card:hover .property-image::before {
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0.5;
        }

        .property-info {
            padding: 30px;
        }

        .property-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        .property-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-navy);
        }

        .property-location {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .property-details {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #888;
        }

        /* Why Choose Section */
        .why-choose {
            background: var(--dark-navy);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
            background-size: 50px 50px;
            opacity: 0.3;
        }

        .why-choose .section-title {
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .feature-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-gold);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--dark-navy);
        }

        .feature-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        /* Team Section */
        .team {
            background: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .team-member {
            text-align: center;
            background: var(--off-white);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .member-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--dark-navy);
            font-weight: 600;
        }

        .member-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-navy);
        }

        .member-role {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Testimonials */
        .testimonials {
            background: var(--off-white);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 80px auto 0;
            text-align: center;
        }

        .testimonial {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 30px;
            color: #555;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--dark-navy);
        }

        .testimonial-company {
            color: var(--primary-gold);
            font-size: 0.9rem;
        }

        /* Floating Contact Button */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-gold);
            color: var(--dark-navy);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .floating-contact:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .container {
                padding: 0 20px;
            }

            .section-title {
                font-size: 2rem;
            }

            .properties-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .features-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .menu-content a {
                font-size: 24px;
            }

            /* Mobile Bottom Navigation */
            .mobile-nav {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: var(--dark-navy);
                display: flex;
                justify-content: space-around;
                padding: 15px;
                z-index: 100;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-nav a {
                color: white;
                text-decoration: none;
                font-size: 12px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 5px;
            }

            .mobile-nav a:hover {
                color: var(--primary-gold);
            }

            .floating-contact {
                bottom: 80px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Parallax Effect */
        .parallax-section {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }