
        :root {
            --primary-gold: #FFD700;
            --secondary-gold: #FFC107;
            --dark-gold: #B8860B;
            --primary-black: #000000;
            --secondary-black: #1a1a1a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none !important;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none !important;
        }
        
        /* Navbar */
        .navbar-premium {
            background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(26,26,26,0.95) 100%);
            backdrop-filter: blur(10px);
            padding: 0.5rem 0;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 9999;
            border-bottom: 2px solid var(--primary-gold);
        }
        
        .navbar-premium .container-fluid {
            padding: 0 3rem;
        }
        
        .navbar-brand-premium {
            padding: 0.5rem 0;
        }
        
        .navbar-brand-premium img {
            height: 75px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
            border-radius: 15px;
        }
        
        .navbar-brand-premium:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 0 20px var(--primary-gold));
        }
        
        .navbar-brand-premium:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 0 20px var(--primary-gold));
        }
        
        .nav-link-premium {
            color: #fff !important;
            font-weight: 500;
            font-size: 0.85rem;
            padding: 0.8rem 0.85rem !important;
            position: relative;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        
        .nav-link-premium::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link-premium:hover::before {
            width: 80%;
        }
        
        .nav-link-premium:hover {
            color: var(--primary-gold) !important;
        }
        
        .dropdown-menu-premium {
            background: linear-gradient(135deg, rgba(0,0,0,0.98) 0%, rgba(26,26,26,0.98) 100%);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 0.8rem 0;
            margin-top: 0.5rem !important;
            box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
            min-width: 200px;
            animation: dropdownSlide 0.3s ease;
        }
        
        @keyframes dropdownSlide {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dropdown-item-premium {
            color: #fff;
            padding: 0.8rem 1.5rem;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.85rem;
            position: relative;
            overflow: hidden;
        }
        
        .dropdown-item-premium::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-gold);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .dropdown-item-premium:hover {
            background: linear-gradient(90deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
            color: var(--primary-gold);
            padding-left: 2rem;
        }
        
        .dropdown-item-premium:hover::before {
            transform: scaleY(1);
        }
        
        .btn-list-property {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            position: relative;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-left: 1rem;
            display: inline-block;
            border: 2px solid var(--primary-gold);
        }
        
        .btn-list-property::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50px;
            padding: 3px;
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold), var(--primary-gold), var(--secondary-gold));
            background-size: 300% 300%;
            opacity: 0;
            z-index: -1;
            animation: borderRotate 3s linear infinite;
        }
        
        @keyframes borderRotate {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .btn-list-property:hover::before {
            opacity: 1;
            filter: blur(10px);
        }
        
        .btn-list-property:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
            color: var(--primary-black) !important;
        }
        
        /* Dark Mode Toggle */
        .dark-mode-toggle {
            background: transparent;
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 1rem;
            font-size: 1.2rem;
        }
        
        .dark-mode-toggle:hover {
            background: var(--primary-gold);
            color: var(--primary-black);
            transform: rotate(180deg);
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 9998;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
        }
        
        /* Dark Mode Styles */
        body.dark-mode {
            background: #0a0a0a;
            color: #fff;
        }
        
        /* All Sections Dark Background */
        body.dark-mode section {
            background: #1a1a1a !important;
        }
        
        /* Section Titles */
        body.dark-mode .section-title-premium h2 {
            color: var(--primary-gold);
        }
        
        body.dark-mode .section-title-premium p {
            color: #ccc;
        }
        
        /* Stats Section */
        body.dark-mode .stat-label-premium {
            color: #fff !important;
        }
        
        /* Feature Cards */
        body.dark-mode .feature-card-3d {
            background: #2a2a2a;
            border-color: #3a3a3a;
        }
        
        body.dark-mode .feature-card-3d h3 {
            color: var(--primary-gold);
        }
        
        body.dark-mode .feature-card-3d p {
            color: #ccc;
        }
        
        body.dark-mode .feature-card-3d:hover {
            background: #1a1a1a;
            border-color: var(--primary-gold);
        }
        
        body.dark-mode .feature-card-3d:hover h3,
        body.dark-mode .feature-card-3d:hover p {
            color: #fff;
        }
        
        /* Work Section - Tabs */
        body.dark-mode .work-tab-btn {
            background: #2a2a2a;
            color: #fff;
            border-color: var(--primary-gold);
        }
        
        body.dark-mode .work-tab-btn:hover {
            background: #1a1a1a;
        }
        
        body.dark-mode .work-tab-btn.active {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
        }
        
        /* Work Section - Content */
        body.dark-mode .work-content-right {
            background: #2a2a2a;
        }
        
        body.dark-mode .work-content-item h3 {
            color: var(--primary-gold);
        }
        
        body.dark-mode .work-content-item p {
            color: #ccc;
        }
        
        /* Location Cards */
        body.dark-mode .location-overlay-3d h3 {
            color: #fff;
        }
        
        body.dark-mode .location-card-3d:hover .location-overlay-3d h3 {
            color: var(--primary-black);
        }
        
        /* Slider Section */
        body.dark-mode .portfolio-slider-section {
            background: #0a0a0a !important;
        }
        
        body.dark-mode .slider-card-content {
            background: #2a2a2a;
        }
        
        body.dark-mode .slider-card-content h3 {
            color: var(--primary-gold);
        }
        
        body.dark-mode .slider-card-content p {
            color: #ccc;
        }
        
        /* Hero Section - already has dark background, ensure text is visible */
        body.dark-mode .hero-title {
            color: #fff;
        }
        
        body.dark-mode .hero-description {
            color: rgba(255,255,255,0.9);
        }
        
        body.dark-mode .hero-floating-stats {
            background: rgba(0, 0, 0, 0.95);
            border-color: var(--primary-gold);
        }
        
        body.dark-mode .hero-floating-stats p {
            color: #fff;
        }
        
        /* CTA Section - Dark background in dark mode */
        body.dark-mode .cta-premium {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            border-top: 2px solid var(--primary-gold);
            border-bottom: 2px solid var(--primary-gold);
        }
        
        body.dark-mode .cta-premium h2 {
            color: var(--primary-gold);
        }
        
        body.dark-mode .cta-premium p {
            color: #fff;
        }
        
        body.dark-mode .btn-cta-premium {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            border-color: var(--primary-gold);
        }
        
        body.dark-mode .btn-cta-premium:hover {
            background: transparent;
            color: var(--primary-gold);
            border-color: var(--primary-gold);
        }
        
        /* Enhanced Hero Section */
        .modern-hero {
            margin-top: 64px;
            padding: 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        /* Animated Background Shapes */
        .hero-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.08));
            border-radius: 50%;
            animation: float 25s infinite ease-in-out;
        }
        
        .shape1 {
            width: 400px;
            height: 400px;
            top: -100px;
            left: -50px;
            animation-delay: 0s;
        }
        
        .shape2 {
            width: 300px;
            height: 300px;
            top: 50%;
            right: -80px;
            animation-delay: 5s;
        }
        
        .shape3 {
            width: 250px;
            height: 250px;
            bottom: 10%;
            left: 40%;
            animation-delay: 10s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            33% {
                transform: translate(50px, -50px) rotate(120deg) scale(1.1);
            }
            66% {
                transform: translate(-30px, 30px) rotate(240deg) scale(0.9);
            }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        
        .hero-text {
            animation: slideInLeft 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-120px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }
        
        .hero-title span {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 50%, var(--primary-gold) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            animation: shimmer 3s ease-in-out infinite;
        }
        
        @keyframes shimmer {
            0%, 100% {
                background-position: 0% center;
            }
            50% {
                background-position: 100% center;
            }
        }
        
        .hero-description {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-buttons {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.7s both;
        }
        
        .btn-hero-premium {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            padding: 14px 35px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }
        
        .btn-hero-premium::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.15);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn-hero-premium:hover::before {
            width: 400px;
            height: 400px;
        }
        
        .btn-hero-premium:hover {
            transform: translateY(-8px) scale(1.08);
            box-shadow: 0 25px 60px rgba(255, 215, 0, 0.7);
            color: var(--primary-black);
        }
        
        .btn-hero-secondary {
            background: transparent;
            color: var(--primary-gold);
            padding: 14px 35px;
            border: 2px solid var(--primary-gold);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }
        
        .btn-hero-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            transition: left 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: -1;
        }
        
        .btn-hero-secondary:hover::before {
            left: 0;
        }
        
        .btn-hero-secondary:hover {
            color: var(--primary-black);
            transform: translateY(-8px) scale(1.08);
            box-shadow: 0 25px 60px rgba(255, 215, 0, 0.7);
        }
        
        .hero-image-wrapper {
            position: relative;
            animation: slideInRight 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(120px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-image {
            border-radius: 30px;
            width: 100%;
            box-shadow: 0 50px 120px rgba(255, 215, 0, 0.5);
            transform: perspective(1500px) rotateY(-8deg) rotateX(3deg);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .hero-image:hover {
            transform: perspective(1500px) rotateY(0deg) rotateX(0deg) scale(1.03);
            box-shadow: 0 60px 150px rgba(255, 215, 0, 0.8);
        }
        
        .hero-badge {
            position: absolute;
            top: -25px;
            right: -25px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            padding: 25px 40px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.3rem;
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.8);
            animation: bounce 2.5s ease-in-out infinite;
            z-index: 10;
            border: 3px solid #fff;
        }
        
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0) rotate(-5deg);
            }
            50% {
                transform: translateY(-15px) rotate(5deg);
            }
        }
        
        /* Floating Stats Badge */
        .hero-floating-stats {
            position: absolute;
            bottom: -30px;
            left: -40px;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(15px);
            padding: 30px 45px;
            border-radius: 25px;
            border: 3px solid var(--primary-gold);
            animation: float 4s ease-in-out infinite;
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
        }
        
        .hero-floating-stats h4 {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 0;
            font-family: 'Playfair Display', serif;
        }
        
        .hero-floating-stats p {
            color: #fff;
            margin: 5px 0 0 0;
            font-size: 1rem;
            font-weight: 700;
        }
        
        .hero-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }
        
        .hero-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }
        
        .hero-wave .wave-shape-fill {
            fill: #000000;
        }
        
        /* Dark mode wave */
        body.dark-mode .hero-wave .wave-shape-fill {
            fill: #1a1a1a;
        }
        
        /* Stats Section */
        .stats-premium {
            background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
            padding: 80px 0;
        }
        
        .stat-card-3d {
            text-align: center;
            padding: 40px 20px;
            transition: all 0.5s ease;
            transform-style: preserve-3d;
        }
        
        .stat-card-3d:hover {
            transform: translateY(-15px) rotateX(10deg);
        }
        
        .stat-number-premium {
            font-size: 4.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }
        
        .stat-label-premium {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        /* Section Styles */
        section {
            padding: 120px 0;
        }
        
        .section-title-premium {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title-premium h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title-premium h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
            border-radius: 10px;
        }
        
        .section-title-premium p {
            font-size: 1.3rem;
            color: #666;
            margin-top: 30px;
        }
        
        /* 3D Feature Cards */
        .feature-card-3d {
            background: #fff;
            border-radius: 25px;
            padding: 50px 35px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transform-style: preserve-3d;
            margin-bottom: 30px;
            border: 2px solid transparent;
            position: relative;
        }
        
        .feature-card-3d::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
            z-index: -1;
            border-radius: 25px;
        }
        
        .feature-card-3d:hover::before {
            transform: scaleX(1);
        }
        
        .feature-card-3d:hover {
            transform: translateY(-20px) rotateY(5deg) rotateX(5deg);
            box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
        }
        
        .feature-icon-3d {
            font-size: 5rem;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
            transition: all 0.6s ease;
            display: inline-block;
        }
        
        .feature-card-3d:hover .feature-icon-3d {
            transform: rotateY(360deg) scale(1.2);
            background: var(--primary-black);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .feature-card-3d h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-black);
            transition: all 0.3s ease;
        }
        
        .feature-card-3d p {
            color: #666;
            line-height: 1.9;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        
        .feature-card-3d:hover h3,
        .feature-card-3d:hover p {
            color: var(--primary-black);
        }
        
        /* How It Works */
        .work-tabs-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .work-tab-btn {
            background: #fff;
            border: 3px solid var(--primary-gold);
            color: var(--primary-black);
            padding: 25px 30px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.4s ease;
            text-align: left;
            cursor: pointer;
        }
        
        .work-tab-btn:hover {
            background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
            transform: translateX(10px);
        }
        
        .work-tab-btn.active {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
            transform: translateX(10px);
        }
        
        .work-tab-btn i {
            margin-right: 15px;
            font-size: 1.5rem;
        }
        
        .work-content-right {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            min-height: 400px;
        }
        
        .work-content-item {
            display: none;
            animation: slideInRight 0.6s ease;
        }
        
        .work-content-item.active {
            display: block;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .work-content-item h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--primary-black);
        }
        
        .work-content-item p {
            font-size: 1.15rem;
            line-height: 2;
            color: #555;
        }
        
        /* Location Cards */
        .location-card-3d {
            position: relative;
            height: 400px;
            border-radius: 25px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 30px;
            transform-style: preserve-3d;
            transition: all 0.6s ease;
        }
        
        .location-card-3d img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .location-card-3d:hover {
            transform: translateY(-15px) rotateY(5deg) rotateX(5deg);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }
        
        .location-card-3d:hover img {
            transform: scale(1.3) rotate(3deg);
        }
        
        .location-overlay-3d {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
            padding: 40px;
            transition: all 0.6s ease;
            z-index: 2;
        }
        
        .location-card-3d:hover .location-overlay-3d {
            background: linear-gradient(to top, rgba(255, 215, 0, 0.98), rgba(255, 193, 7, 0.8));
        }
        
        .location-overlay-3d h3 {
            color: #fff;
            font-size: 2.5rem;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            margin: 0;
            transition: all 0.6s ease;
        }
        
        .location-card-3d:hover .location-overlay-3d h3 {
            color: var(--primary-black);
            transform: translateY(-10px);
        }
        
        /* CTA Section */
        .cta-premium {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            padding: 100px 0;
            text-align: center;
        }
        
        .cta-premium h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 25px;
        }
        
        .cta-premium p {
            font-size: 1.4rem;
            color: var(--primary-black);
            margin-bottom: 40px;
        }
        
        .btn-cta-premium {
            background: var(--primary-black);
            color: var(--primary-gold);
            padding: 20px 60px;
            border: 3px solid var(--primary-black);
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.4s ease;
            text-transform: uppercase;
            display: inline-block;
        }
        
        .btn-cta-premium:hover {
            background: transparent;
            color: var(--primary-black);
            transform: translateY(-5px) scale(1.05);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
            color: #fff;
            padding: 80px 0 30px;
        }
        .fot-menu{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .footer-title-premium {
            color: var(--primary-gold);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            font-family: 'Playfair Display', serif;
        }
        
        .footer-logo-premium img {
            height: 125px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
        }
        
        .footer-links-premium {
            list-style: none;
            padding: 0;
        }
        
        .footer-links-premium li {
            margin-bottom: 12px;
        }
                .footer-links-premium li::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            left: 0;
            color: var(--primary-gold);
            margin-right: 5px;
        }
        .footer-links-premium a {
            color: #ccc;
            transition: all 0.3s ease;
        }
        
        .footer-links-premium a:hover {
            color: var(--primary-gold);
            padding-left: 10px;
        }
        
        .footer-bottom-premium {
            border-top: 2px solid rgba(255, 215, 0, 0.2);
            margin-top: 60px;
            padding-top: 30px;
            text-align: center;
            color: #999;
        }
        
        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Modern 3D Portfolio Slider */
        .portfolio-slider-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-slider-section .section-title-premium h2 {
            color: var(--primary-gold);
        }
        
        .portfolio-slider-section .section-title-premium p {
            color: #ccc;
        }
        
        .slider-3d-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            height: 600px;
            perspective: 2000px;
        }
        
        .slider-3d-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
        }
        
        .slider-3d-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transform: rotateY(-90deg) translateZ(-300px) scale(0.7);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-style: preserve-3d;
            pointer-events: none;
        }
        
        .slider-3d-item.active {
            opacity: 1;
            visibility: visible;
            transform: rotateY(0deg) translateZ(0) scale(1);
            z-index: 10;
            pointer-events: auto;
        }
        
        .slider-3d-item.prev {
            opacity: 0;
            visibility: hidden;
            transform: rotateY(90deg) translateZ(-300px) scale(0.7);
        }
        
        .slider-3d-card {
            background: #fff;
            border-radius: 30px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3);
            display: flex;
            align-items: center;
            transition: all 0.6s ease;
        }
        
        .slider-3d-item.active .slider-3d-card:hover {
            transform: translateY(-10px) rotateY(5deg);
            box-shadow: 0 40px 100px rgba(255, 215, 0, 0.5);
        }
        
        .slider-card-image {
            flex: 1;
            height: 100%;
            overflow: hidden;
        }
        
        .slider-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .slider-3d-item.active .slider-card-image img:hover {
            transform: scale(1.1);
        }
        
        .slider-card-content {
            flex: 1;
            padding: 60px;
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        }
        
        .slider-card-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-black);
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .slider-card-content p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #555;
        }
        
        /* Slider Navigation Arrows */
        .slider-3d-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slider-3d-nav:hover {
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
        }
        
        .slider-3d-nav.prev {
            left: -80px;
        }
        
        .slider-3d-nav.next {
            right: -80px;
        }
        
        /* Modern Slider Dots */
        .slider-3d-dots {
            position: absolute;
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 20;
        }
        
        .slider-3d-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid rgba(255, 215, 0, 0.5);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .slider-3d-dot:hover {
            background: rgba(255, 215, 0, 0.6);
            transform: scale(1.3);
        }
        
        .slider-3d-dot.active {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            width: 45px;
            border-radius: 10px;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
        }
        
        /* FAQ Section */
        .faq-section {
            background: #f8f9fa;
        }
        
        .faq-item {
            background: #fff;
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }
        
        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }
        
        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(90deg, #fff 0%, #f8f9fa 100%);
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-black);
            margin: 0;
            flex: 1;
        }
        
        .faq-icon {
            color: var(--primary-gold);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 30px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 25px 30px;
        }
        
        .faq-answer p {
            color: #555;
            line-height: 1.8;
            margin: 0;
        }
        
        /* Dark Mode FAQ */
        body.dark-mode .faq-section {
            background: #1a1a1a;
        }
        
        body.dark-mode .faq-item {
            background: #2a2a2a;
        }
        
        body.dark-mode .faq-question {
            background: linear-gradient(90deg, #2a2a2a 0%, #1a1a1a 100%);
        }
        
        body.dark-mode .faq-question:hover {
            background: linear-gradient(90deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
        }
        
        body.dark-mode .faq-question h3 {
            color: var(--primary-gold);
        }
        
        body.dark-mode .faq-answer p {
            color: #ccc;
        }
        
        /* Video Section */
        .video-section {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        }
        
        .video-slider-wrapper {
            position: relative;
        }
        
        .video-slider-container {
            position: relative;
            width: 100%;
        }
        
        .video-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.6s ease;
        }
        
        .video-slide.active {
            display: block;
            opacity: 1;
        }
        
        .video-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            background: #000;
        }
        
        .video-container video {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
        }
        
        /* Video Slider Dots */
        .video-slider-dots {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        
        .video-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 215, 0, 0.4);
            cursor: pointer;
            transition: all 0.4s ease;
        }
        
        .video-dot:hover {
            background: rgba(255, 215, 0, 0.5);
            transform: scale(1.2);
        }
        
        .video-dot.active {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            width: 35px;
            border-radius: 8px;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            border-radius: 20px;
            opacity: 1;
            z-index: 10;
        }
        
        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .video-overlay:hover {
            background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
        }
        
        .play-button {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
        }
        
        .play-button i {
            font-size: 2.5rem;
            color: var(--primary-black);
            margin-left: 5px;
        }
        
        .video-overlay:hover .play-button {
            transform: scale(1.2);
            box-shadow: 0 15px 50px rgba(255, 215, 0, 0.8);
        }
        
        .video-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            padding-left: 30px;
        }
        
        .video-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-black);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .video-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .video-benefits {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }
        
        .video-benefits li {
            padding: 8px 0;
            color: #555;
            font-size: 0.95rem;
        }
        
        .video-benefits i {
            color: var(--primary-gold);
            margin-right: 12px;
            font-size: 1rem;
        }
        
        .btn-video-cta {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-block;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
            font-size: 0.9rem;
        }
        
        .btn-video-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
            color: var(--primary-black);
        }
        
        /* Dark Mode Video */
        body.dark-mode .video-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }
        
        body.dark-mode .video-content h3 {
            color: var(--primary-gold);
        }
        
        body.dark-mode .video-content p,
        body.dark-mode .video-benefits li {
            color: #ccc;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .navbar-premium .container-fluid {
                padding: 0 1.5rem;
            }
            
            /* Navbar spacing fix for mobile */
            .navbar-collapse {
                margin-top: 1rem;
            }
            
            .nav-link-premium {
                padding: 1rem 0.5rem !important;
                /* border-bottom: 1px solid rgba(255, 215, 0, 0.1); */
                margin-bottom: 0.5rem;
                position: relative;
            }
            
            /* Keep animated underline on mobile */
            .nav-link-premium::before {
                display: block;
                bottom: 0.5rem;
            }
            
            .nav-link-premium:hover::before {
                width: 80%;
            }
            
            .btn-list-property {
                margin: 1rem 0;
                display: block;
                text-align: center;
            }
            
            .dark-mode-toggle {
                margin: 1rem 0 0 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-hero-premium,
            .btn-hero-secondary {
                width: 100%;
                text-align: center;
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .hero-badge {
                position: static;
                margin: 20px auto;
                display: inline-block;
                padding: 15px 25px;
                font-size: 1rem;
            }
            
            .hero-floating-stats {
                position: static;
                margin: 20px auto;
                display: inline-block;
                padding: 20px 30px;
            }
            
            .hero-floating-stats h4 {
                font-size: 2rem;
            }
            
            .hero-image {
                margin-top: 30px;
                transform: none !important;
            }
            
            .section-title-premium h2 {
                font-size: 2.2rem;
            }
            
            .section-title-premium p {
                font-size: 1.1rem;
            }
            
            .stat-number-premium {
                font-size: 3rem;
            }
            
            .stat-label-premium {
                font-size: 0.95rem;
            }
            
            .feature-card-3d {
                padding: 35px 25px;
            }
            
            .feature-icon-3d {
                font-size: 3.5rem;
            }
            
            .feature-card-3d h3 {
                font-size: 1.4rem;
            }
            
            .work-tab-btn {
                padding: 18px 20px;
                font-size: 1rem;
            }
            
            .work-content-right {
                padding: 35px 25px;
                margin-top: 20px;
            }
            
            .work-content-item h3 {
                font-size: 2rem;
            }
            
            /* 3D Slider tablet/mobile fix */
            .slider-3d-container {
                height: auto;
                min-height: 550px;
                padding: 0 60px;
                perspective: 1500px;
            }
            
            .slider-3d-card {
                flex-direction: column;
                height: auto;
                min-height: 500px;
            }
            
            .slider-card-image {
                height: 280px;
                min-height: 280px;
                width: 100%;
            }
            
            .slider-card-content {
                padding: 30px 25px;
                width: 100%;
            }
            
            .slider-card-content h3 {
                font-size: 1.8rem;
            }
            
            .slider-card-content p {
                font-size: 1rem;
            }
            
            .slider-3d-nav {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .slider-3d-nav.prev {
                left: 10px;
            }
            
            .slider-3d-nav.next {
                right: 10px;
            }
            
            .slider-3d-dots {
                bottom: -50px;
            }
            
            .faq-question h3 {
                font-size: 1.05rem;
            }
            
            /* Video section fix - keep video on top, text below */
            .video-section .row {
                flex-direction: column-reverse;
            }
            
            .video-content {
                padding-left: 0;
                margin-bottom: 30px;
            }
            
            .video-content h3 {
                font-size: 1.5rem;
                margin-top: 0;
            }
            
            .cta-premium h2 {
                font-size: 2.5rem;
            }
            
            .cta-premium p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .modern-hero {
                padding: 80px 0 60px;
                min-height: auto;
            }
            
            .hero-title {
                font-size: 2rem;
                text-align: center;
                width: 100%;
            }
            
            .hero-description {
                font-size: 0.95rem;
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .page-hero p {
                font-size: 1rem;
            }
            
            .section-title-premium h2 {
                font-size: 1.8rem;
            }
            
            .stat-card-3d {
                padding: 25px 15px;
            }
            
            .stat-number-premium {
                font-size: 2.5rem;
            }
            
            .feature-card-3d {
                padding: 30px 20px;
            }
            
            .feature-icon-3d {
                font-size: 3rem;
            }
            
            .work-content-item h3 {
                font-size: 1.6rem;
            }
            
            .location-overlay-3d h3 {
                font-size: 2rem;
            }
            
            .slider-card-content h3 {
                font-size: 1.4rem;
            }
            
            .slider-card-content p {
                font-size: 1rem;
            }
            
            .cta-premium h2 {
                font-size: 2rem;
            }
            
            .cta-premium p {
                font-size: 1rem;
            }
            
            .btn-cta-premium {
                padding: 15px 40px;
                font-size: 1rem;
            }
            
            .video-slider-dots {
                bottom: -40px;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-premium .container-fluid {
                padding: 0 1rem;
            }
            
            .navbar-brand-premium img {
                height: 40px;
            }
            
            .btn-list-property {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
                margin-left: 0.5rem;
            }
            
            .modern-hero {
                padding: 60px 0 40px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-description {
                font-size: 0.9rem;
            }
            
            .btn-hero-premium,
            .btn-hero-secondary {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            
            .hero-badge {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            
            .hero-floating-stats {
                padding: 20px 25px;
            }
            
            .hero-floating-stats h4 {
                font-size: 1.8rem;
            }
            
            .hero-floating-stats p {
                font-size: 0.9rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .section-title-premium h2 {
                font-size: 1.6rem;
            }
            
            .section-title-premium p {
                font-size: 1rem;
            }
            
            .stat-number-premium {
                font-size: 2rem;
            }
            
            .stat-label-premium {
                font-size: 0.85rem;
            }
            
            .feature-card-3d h3 {
                font-size: 1.2rem;
            }
            
            .feature-card-3d p {
                font-size: 0.95rem;
            }
            
            .work-tab-btn {
                font-size: 0.9rem;
                padding: 15px 18px;
            }
            
            .work-tab-btn i {
                font-size: 1.2rem;
            }
            
            .work-content-item h3 {
                font-size: 1.4rem;
            }
            
            .work-content-item p {
                font-size: 1rem;
            }
            
            .slider-card-content h3 {
                font-size: 1.2rem;
            }
            
            .faq-question h3 {
                font-size: 0.95rem;
            }
            
            .video-content h3 {
                font-size: 1.3rem;
            }
            
            .cta-premium {
                padding: 60px 0;
            }
            
            .cta-premium h2 {
                font-size: 1.6rem;
            }
            
            .btn-cta-premium {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
            
            .scroll-to-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }
        }

        /********* Contact Page ***********/

         /* Page Hero */
        .page-hero {
            padding-top: 75px;
            padding-bottom: 100px;
            background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,26,0.9) 100%), 
                        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600') center/cover no-repeat;
            background-attachment: fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15), transparent 70%);
            pointer-events: none;
        }
        
        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            animation: fadeInDown 0.8s ease;
        }
        
        .page-hero p {
            color: rgba(255,255,255,0.9);
            font-size: 1.3rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
            border-radius: 10px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #666;
            margin-top: 30px;
        }
        
        /* Contact Info Cards */
        .contact-info-card {
            background: #fff;
            border-radius: 25px;
            padding: 50px 35px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transform-style: preserve-3d;
            margin-bottom: 30px;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
            z-index: -1;
            border-radius: 25px;
        }
        
        .contact-info-card:hover::before {
            transform: scaleX(1);
        }
        
        .contact-info-card:hover {
            transform: translateY(-15px) rotateY(5deg) rotateX(5deg);
            box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
        }
        
        .contact-info-card i {
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
            display: inline-block;
            width: 100%;
            text-align: center;
            transition: all 0.6s ease;
        }
        
        .contact-info-card:hover i {
            transform: rotateY(360deg) scale(1.2);
            background: var(--primary-black);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .contact-info-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-black);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-info-card p,
        .contact-info-card a {
            font-size: 1.05rem;
            color: #666;
            transition: all 0.3s ease;
        }
        
        .contact-info-card a {
            display: block;
            margin-top: 10px;
        }
        
        .contact-info-card:hover h3,
        .contact-info-card:hover p,
        .contact-info-card:hover a {
            color: var(--primary-black);
        }
        
        /* Contact Form */
        .contact-form-wrapper {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 25px;
            padding: 60px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 30px;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-black);
            margin-bottom: 10px;
            font-size: 1rem;
        }
        
        .form-control,
        .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-gold);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            padding: 15px 50px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            transition: all 0.4s ease;
            width: 100%;
            cursor: pointer;
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
        }
        
        /* Map Section */
        .map-section {
            background: #f8f9fa;
        }
        
        .map-wrapper {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            height: 500px;
        }
        
        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /********* List Property Page ***********/

           /* Hero Section with Integrated Form */
        .hero-with-form {
            padding-top: 115px;
            padding-bottom: 100px;
            background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.95) 100%), 
                        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600') center/cover no-repeat;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-with-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.1), transparent 60%);
            pointer-events: none;
        }
        
        .hero-content-left {
            position: relative;
            z-index: 2;
        }
        
        .hero-content-left h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-content-left h1 span {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-content-left p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .hero-benefits {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .hero-benefits li {
            color: rgba(255,255,255,0.9);
            padding: 10px 0;
            font-size: 1rem;
        }
        
        .hero-benefits i {
            color: var(--primary-gold);
            margin-right: 12px;
            font-size: 1.1rem;
        }
        
        /* Premium Form */
        .premium-form-container {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(255, 215, 0, 0.3);
            position: relative;
            z-index: 2;
        }
        
        .form-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 10px;
            text-align: center;
        }
        
        .form-subtitle {
            color: #666;
            text-align: center;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-black);
            margin-bottom: 8px;
            font-size: 0.9rem;
            display: block;
        }
        
        .form-control,
        .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
            outline: none;
        }
        
        .btn-submit-form {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            padding: 14px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            transition: all 0.4s ease;
            width: 100%;
            cursor: pointer;
            margin-top: 10px;
        }
        
        .btn-submit-form:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
        }
        
        /* Multi-Step Form Styles */
        .step-indicators {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .step-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #e0e0e0;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            transition: all 0.4s ease;
        }
        
        .step-indicator.active .step-number {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
        }
        
        .step-label {
            font-size: 0.85rem;
            color: #666;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .step-indicator.active .step-label {
            color: var(--primary-gold);
        }
        
        .step-line {
            flex: 1;
            height: 2px;
            background: #e0e0e0;
            margin: 0 15px;
            position: relative;
            top: -25px;
        }
        
        .form-step {
            display: none;
        }
        
        .form-step.active {
            display: block;
            animation: fadeInStep 0.5s ease;
        }
        
        @keyframes fadeInStep {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .btn-next-step,
        .btn-prev-step {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            color: var(--primary-black);
            padding: 12px 35px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        
        .btn-prev-step {
            background: transparent;
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
        }
        
        .btn-next-step:hover,
        .btn-prev-step:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
        }
        
        .form-nav-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .form-nav-buttons .btn-next-step,
        .form-nav-buttons .btn-prev-step {
            flex: 1;
        }
        
        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
            margin: 15px auto 0;
            border-radius: 10px;
        }
        
        .benefit-card {
            background: #fff;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            margin-bottom: 30px;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
        }
        
        .benefit-card i {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: block;
        }
        
        .benefit-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-black);
            margin-bottom: 12px;
        }
        
        .benefit-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
/* Chat Button & Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 10000;
    font-family: 'Montserrat', sans-serif;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.chat-button i {
    font-size: 28px;
    color: #000;
    transition: transform 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.7);
}

.chat-button.active i.fa-comments {
    transform: scale(0);
}

.chat-button.active i.fa-times {
    transform: scale(1);
}

.chat-button i.fa-times {
    position: absolute;
    transform: scale(0);
}

/* Notification Badge */
.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Chat Box */
.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

.chat-box.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-header-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 20px;
}

.chat-header-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.chat-header-info p {
    margin: 0;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
}

/* Chat Body */
.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 400px;
    background: #f8f9fa;
}

.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chat-body::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 10px;
}

/* User Details Form */
.user-details-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Chat Messages */
.chat-message {
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-bot {
    background: white;
    padding: 12px 16px;
    border-radius: 15px 15px 15px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 85%;
}

.message-user {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    padding: 12px 16px;
    border-radius: 15px 15px 5px 15px;
    margin-left: auto;
    max-width: 85%;
    color: #000;
}

.message-bot p,
.message-user p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

/* Question Buttons */
.question-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.question-btn {
    padding: 12px 16px;
    background: white;
    border: 2px solid #FFD700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.question-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #000;
    transform: translateX(5px);
}

.question-btn i {
    margin-right: 8px;
    color: #FFD700;
}

.question-btn:hover i {
    color: #000;
}

/* Loading Animation */
.typing-indicator {
    display: none;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    background: white;
    border-radius: 15px;
    max-width: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.typing-indicator.active {
    display: flex;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Success Message */
.success-message {
    background: #4caf50;
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    display: none;
}

.success-message.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Error Message */
.error-message {
    background: #f44336;
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    display: none;
}

.error-message.active {
    display: block;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Back Button */
.back-btn {
    padding: 8px 16px;
    background: transparent;
    border: 2px solid #FFD700;
    border-radius: 8px;
    color: #FFD700;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.back-btn:hover {
    background: #FFD700;
    color: #000;
}

.back-btn i {
    margin-right: 5px;
}

/* Dark Mode Support */
body.dark-mode .chat-box {
    background: #2a2a2a;
}

body.dark-mode .chat-body {
    background: #1a1a1a;
}

body.dark-mode .message-bot {
    background: #333;
    color: #fff;
}

body.dark-mode .form-group label {
    color: #fff;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: #333;
    border-color: #444;
    color: #fff;
}

body.dark-mode .question-btn {
    background: #333;
    border-color: #FFD700;
    color: #fff;
}

body.dark-mode .typing-indicator {
    background: #333;
}

/* Responsive */
@media (max-width: 480px) {
    .chat-box {
        width: calc(100vw - 30px);
        right: 15px;
        bottom: 80px;
    }
    
    .chat-widget {
        right: 15px;
        bottom: 80px;
    }
}