        /* ==========================================================================
           CSS VARIABLES & THEME (Day/Night Mode)
           ========================================================================== */
        :root {
            /* Light Theme (Default) */
            --bg-color: #F5F5F5;
            --text-color: #303030;
            --text-muted: #777777;
            --card-bg: #FFFFFF;
            --border-color: #E0E0E0;

            /* Brand Colors */
            --accent: #F47D30;
            --accent-hover: #d66a26;
            --nav-bg: #303030;
            --nav-text: #FFFFFF;
            --footer-bg: #1a1a1a;

            /* Utilities */
            --radius: 8px;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;

            --banner-gap: 80px;
        }

        [data-theme="dark"] {
            /* Dark Theme */
            --bg-color: #121212;
            --text-color: #F5F5F5;
            --text-muted: #AAAAAA;
            --card-bg: #1E1E1E;
            --border-color: #333333;
        }

        /* ==========================================================================
           RESET & TYPOGRAPHY
           ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /*outline: 1px solid blue;*/
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            transition: background-color var(--transition), color var(--transition);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Arial', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }

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

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ==========================================================================
           COMPONENTS
           ========================================================================== */
        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: #FFFFFF;
            padding: 10px 24px;
            border-radius: var(--radius);
            border: none;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            transition: var(--transition);
        }

        .btn:hover {
            background-color: var(--accent-hover);
            color: #FFFFFF;
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--text-color);
        }

        .btn-outline:hover {
            background-color: var(--accent);
            color: #FFFFFF;
        }

        .back-btn {
            position: sticky;
            top: 80px;
            border-radius: 5px;
            padding: 4px;
            color: var(--nav-text);
            background-color: var(--text-color);
            margin-bottom: 20px;
            z-index: 100;
        }

        /* ==========================================================================
           NAVIGATION
           ========================================================================== */
        header {
            background-color: var(--nav-bg);
            color: var(--nav-text);
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            width: 250px;
            height: 30px;
        }

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

        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--nav-text);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent);
        }

        .theme-toggle {
            background: none;
            border: none;
            color: var(--nav-text);
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--nav-text);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ==========================================================================
           MAIN LAYOUT & VIEWS
           ========================================================================== */
        main {
            min-height: calc(100vh - 70px - 200px);
            /* Adjust based on header/footer */
        }

        .view-section {
            padding: 60px 0;
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==========================================================================
           HERO SECTION (HOME)
           ========================================================================== */
        .hero {
            position: relative;
            height: 600px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Assets/Pictures/megamall.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: #FFFFFF;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero span {
            color: var(--accent);
            font-weight: 600;
        }

        .hero-pic {
            height: 150px;
            width: 200px;
        }

        .search-bar {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px;
            border-radius: var(--radius);
            display: flex;
            gap: 10px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .search-bar input,
        .search-bar select {
            flex: 1;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-size: 1rem;
            min-width: 200px;
            background-color: #fff;
            color: #333;
        }

        /* ==========================================================================
           CEO PREVIEW SECTION
           ========================================================================== */
        /* --- 3. Layout Structure --- */
        .ceo-preview-section {
            background-color: var(--card-bg);
            padding: 80px 20px;
        }

        .ceo-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        /* --- 4. Left Column: Image & Badge --- */
        .ceo-image-col {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .ceo-figure {
            position: relative;
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .ceo-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background-color: var(--accent);
            color: var(--nav-text);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(244, 125, 48, 0.3);
        }

        .ceo-image {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 4/5;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        /* Image Hover Zoom Effect */
        .ceo-figure:hover .ceo-image {
            transform: scale(1.05);
        }

        /* --- 5. Right Column: Content --- */
        .ceo-content-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-label {
            color: var(--accent);
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            display: block;
        }

        .main-heading {
            color: var(--text-color);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            position: relative;
        }

        /* Decorative Accent Line */
        .main-heading::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--accent);
            margin-top: 16px;
            border-radius: 2px;
        }

        .ceo-name {
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 20px;
            margin-bottom: 4px;
        }

        .ceo-position {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 24px;
        }

        .ceo-intro {
            font-size: 0.95rem;
            margin-bottom: 24px;
            color: var(--text-muted);
        }

        /* Blockquote Styling */
        .ceo-quote {
            background-color: var(--border-color);
            border-left: 5px solid var(--accent);
            padding: 24px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 32px;
            font-style: italic;
            font-size: 1.05rem;
            color: var(--dark-bg);
            position: relative;
        }

        /* --- 6. Button Styling --- */
        .btn-read-more {
            display: inline-block;
            background-color: var(--accent);
            color: var(--nav-text);
            padding: 14px 32px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            border: 2px solid var(--accent);
            align-self: flex-start;
            transition: background-color 0.3s ease,
                color 0.3 ease,
                box-shadow 0.3s ease;
        }

        /* Button Hover Inversion Effect */
        .btn-read-more:hover {
            background-color: transparent;
            color: var(--primary-accent);
            box-shadow: 0 8px 15px rgba(244, 125, 48, 0.15);
        }

        /*STATS*/
        .about-stats {
            display: flex;
            gap: 5px;
            margin-bottom: 2.5rem
        }

        .ab-stat-n {
            font-size: 0.95rem;
            color: var(--accent)
        }

        .ab-stat-l {
            font-size: 0.67rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-muted)
        }

        .divider-v {
            border-left: 1px solid var(--accent);
            padding-left: 2.5rem
        }

        /* --- 7. Responsive Breakpoints --- */

        /* Tablet Devices (992px and below) */
        @media (max-width: 992px) {
            .ceo-container {
                gap: 40px;
            }

            .main-heading {
                font-size: 2rem;
            }

            .ceo-content-col {
                padding-right: 15px;
            }
        }

        /* Mobile Devices (768px and below) */
        @media (max-width: 768px) {
            .ceo-preview-section {
                padding: 50px 15px;
            }

            .ceo-container {
                flex-direction: column;
                text-align: center;
                gap: 32px;
            }

            .ceo-image-col {
                width: 100%;
            }

            .ceo-badge {
                top: 0;
                left: 0;
            }

            .ceo-figure {
                max-width: 400px;
                margin: 0 auto;
            }

            /* Center alignment overrides for mobile */
            .main-heading::after {
                margin: 16px auto 0;
                /* Center the decorative line */
            }

            .btn-read-more {
                align-self: center;
                /* Center the button */
            }

            .ceo-quote {
                text-align: left;
                /* Keep quote readable but within centered flow */
            }

            .stats {
                grid-template-columns: 1fr;
            }
        }

        /* ==========================================================================
           STATS BANNER BELOW ABOUT SECTION
           ========================================================================== */
        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--bg-color);
        }

        .stat {
            padding: 1rem 1.5rem;
            border-right: 1px solid var(--accent);
            margin: 10px;
        }

        .stat:last-child {
            border-right: none
        }

        .stat-n {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--accent);
            line-height: 1
        }

        .stat-header {
            color: var(--accent);
        }

        .stat-l {
            font-size: 0.875rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-color);
            margin-top: 4px
        }

        /* ==========================================================================
           PARTNERSHIP WITH BAOSEN CHINA TOWN
           ========================================================================== */
        /* --- 3. Layout Structure --- */
        .partnership-section {
            background-color: var(--card-bg);
            padding: 80px 20px;
        }

        .partnership-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* --- 4. Top Header: Partnership Logos --- */
        .partnership-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin-bottom: 80px;
            margin-top: 50px;
            text-align: center;
            flex-wrap: wrap;
            /* Allows wrapping on very small screens */
        }

        .company-logo {
            width: 180px;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.7);
            transition: filter 0.3s ease;
        }

        .company-logo:hover {
            filter: grayscale(0%) opacity(1);
        }

        .partnership-divider {
            color: var(--accent);
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Decorative lines around the word 'Partnership' */
        .partnership-divider::before,
        .partnership-divider::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
            opacity: 0.5;
        }

        /* --- 5. Bottom Grid: Real Estate Pillars --- */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        /* Pillar Card Styling */
        .pillar-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            transition: transform var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease;
            border: 1px solid var(--light-gray);
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        /* Pillar Image */
        .pillar-figure {
            width: 100%;
            aspect-ratio: 4/3;
            overflow: hidden;
            position: relative;
        }

        .pillar-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .pillar-card:hover .pillar-image {
            transform: scale(1.08);
        }

        /* Pillar Content */
        .pillar-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            /* Pushes button to bottom if descriptions vary in length */
        }

        .pillar-title {
            color: var(--text-color);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .pillar-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 24px;
            flex-grow: 1;
        }

        /* --- 6. Button Styling (Matching CEO Section) --- */
        .btn-action {
            display: inline-block;
            background-color: var(--accent);
            color: var(--nav-text);
            padding: 12px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            border-radius: 6px;
            border: 2px solid var(--primary-accent);
            transition: background-color var(--transition-speed) ease,
                color var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease;
        }

        /* Button Hover Inversion Effect */
        .btn-action:hover {
            background-color: transparent;
            color: var(--primary-accent);
            box-shadow: 0 8px 15px rgba(244, 125, 48, 0.15);
        }

        /* --- ENQUIRY FORM --- */
        .enquiry-section {
            padding: 80px 20px;
            background-color: var(--white);
            max-width: 1000px;
            /* Slightly narrower than full width for form focus */
            margin: 0 auto;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        }

        .container {
            width: 100%;
        }

        /* --- 4. Section Heading Styles --- */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-label {
            color: var(--accent);
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            display: block;
        }

        .main-heading {
            color: var(--text-color);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            position: relative;
        }

        /* Centered Decorative Accent Line */
        .main-heading::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(accent);
            margin: 16px auto 0;
            border-radius: 2px;
        }

        .section-intro {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- 5. Form Styling --- */
        .property-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-color);
        }

        .form-control {
            width: 100%;
            padding: 14px 16px;
            font-size: 1rem;
            font-family: var(--font-main);
            color: #303030;
            background-color: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        #propertyselect {
            background-color: var(--bg-color);
        }

        /* Focus State for Accessibility and Aesthetics */
        .form-control:focus {
            outline: none;
            border-color: var(--primary-accent);
            background-color: var(--white);
            box-shadow: 0 0 0 4px rgba(244, 125, 48, 0.1);
        }

        /* Select Dropdown specific styling */
        select.form-control {
            cursor: pointer;
            appearance: none;
            /* Removes default OS styling */
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23303030%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 16px top 50%;
            background-size: 12px auto;
            padding-right: 40px;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        /* --- 6. Button Styling --- */
        .btn-submit {
            display: inline-block;
            background-color: var(--accent);
            color: var(--nav-text);
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            text-align: center;
            border: 2px solid var(--accent);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            align-self: center;
            /* Center the button */
        }

        .btn-submit:hover {
            background-color: transparent;
            color: var(--primary-accent);
            box-shadow: 0 8px 20px rgba(244, 125, 48, 0.2);
            transform: translateY(-2px);
        }

        /* --- 7. Responsive Breakpoints --- */

        /* Desktop/Tablet (1024px and below) */
        @media (max-width: 1024px) {
            .pillars-grid {
                grid-template-columns: repeat(2, 1fr);
                /* 2x2 grid on medium screens */
            }
        }

        /* Mobile Devices (768px and below) */
        @media (max-width: 768px) {
            .partnership-section {
                padding: 60px 15px;
            }

            .partnership-header {
                gap: 20px;
                flex-direction: column;
                /* Stack logos vertically on small phones */
            }

            .partnership-divider::before,
            .partnership-divider::after {
                width: 30px;
                /* Shorter lines on mobile */
            }

            .pillars-grid {
                grid-template-columns: 1fr;
                /* Single column on mobile */
                gap: 24px;
            }

            .enquiry-section {
                padding: 60px 20px;
                margin: 20px;
            }

            .main-heading {
                font-size: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                /* Stack inputs on mobile */
                gap: 20px;
            }

            .btn-submit {
                width: 100%;
                /* Full width button on mobile */
            }
        }


        /* ==========================================================================
           PROPERTY GRID & CARDS
           ========================================================================== */
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .property-card {
            background-color: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
        }

        .property-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        .property-img-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .property-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .property-card:hover .property-img-wrapper img {
            transform: scale(1.05);
        }

        .badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--accent);
            color: #FFF;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .property-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .property-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .property-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .property-location {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .property-location i {
            color: var(--accent);
        }

        .property-features {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .property-features i {
            color: var(--accent);
        }

        .card-footer {
            margin-top: auto;
        }



        /* ==========================================================================
           PROPERTY DETAILS (SINGLE VIEW)
           ========================================================================== */
        .property-details-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .slider {
            position: relative;
            border-radius: var(--radius);
            margin-top: 30px;
            overflow: hidden;
            background-color: #000;
            height: 500px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            object-fit: cover;
        }

        .slide.active {
            opacity: 1;
        }

        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            z-index: 10;
        }

        .slider-btn {
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
        }

        .slider-btn:hover {
            background: var(--accent);
        }

        .property-meta {
            margin-top: 30px;
        }

        .agent-card {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            text-align: center;
            position: sticky;
            top: 90px;
        }

        .agent-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 3px solid var(--border-color);
        }

        .agent-contacts {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 20px;
        }

        .amenities-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 15px;
        }

        .amenities-list li::before {
            content: '✓';
            color: var(--accent);
            margin-right: 8px;
            font-weight: bold;
        }

        .property-map {
            margin-top: 30px;
            border-radius: var(--radius);
            overflow: hidden;
            height: 300px;
        }

        .property-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ==========================================================================
           FORMS & MISC
           ========================================================================== */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            background-color: var(--card-bg);
            color: var(--text-color);
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* --- PARTNERSHIP SECTION --- */
        .partnership-network-section {
            padding: 100px 20px;
            background-color: var(--bg-color);
        }

        .partner-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- 4. Section Heading Styles (Matching previous sections) --- */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-label {
            color: var(--accent);
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            display: block;
        }

        .main-heading {
            color: var(--text-color);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            position: relative;
        }

        .main-heading::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--accent);
            margin: 16px auto 0;
            border-radius: 2px;
        }

        .section-intro {
            font-size: 1.1rem;
            color: var(--text-gray);
        }

        /* --- 5. Infinite Scroll Banner --- */

        /* The main wrapper creates the fade edges */
        .scroller-wrapper {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            /* White gradients on the edges to blend with the background */
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        /* The moving track */
        .scroller-track {
            display: flex;
            width: max-content;
            gap: var(--banner-gap);
            /* Animation shifts left infinitely */
            animation: scroll 15s linear infinite;
        }

        /* Pause animation on hover for user accessibility */
        .scroller-wrapper:hover .scroller-track {
            animation-play-state: paused;
        }

        /* Group container for the 3 logos to allow easy duplication */
        .logo-group {
            display: flex;
            gap: var(--banner-gap);
            align-items: center;
            list-style: none;
        }

        /* Logo Link Interactivity */
        .partner-link {
            display: block;
            outline: none;
        }

        .partner-logo {
            height: 60px;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.5);
            /* Dimmed out state */
            transition: filter 0.3s ease,
                transform 0.3s ease;
        }

        /* Logo hover: Full color and slight scale */
        .partner-link:focus .partner-logo,
        .partner-link:hover .partner-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.08);
        }

        /* 
           MATH FOR SEAMLESS LOOP:
           We move the track left by exactly HALF its full width, minus HALF the gap.
           Because the track contains exactly 2 identical groups + 1 gap between them,
           shifting by this exact amount perfectly aligns the start of Group 2 with 
           where Group 1 started, causing a zero-jump infinite loop.
        */
        @keyframes scroll {
            to {
                transform: translateX(calc(-50% - (var(--banner-gap) / 2)));
            }
        }

        /* --- 6. Responsive Adjustments --- */
        @media (max-width: 768px) {
            .partnership-network-section {
                padding: 60px 15px;
            }

            .main-heading {
                font-size: 2rem;
            }

            .partner-logo {
                height: 45px;
                /* Smaller logos on mobile */
            }

            :root {
                --banner-gap: 50px;
                /* Tighter gap on mobile */
            }
        }

        /* BUY PAGE */

        .buy-hero {
            position: relative;
            height: 80vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background-image: url('Assets/Pictures/Residential4.webp');
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 0 20px;
            overflow: hidden;
        }

        .buy-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            /*background: linear-gradient(to top,
                    rgba(48, 48, 48, 0.95) 10%,
                    rgba(48, 48, 48, 0.7) 40%,
                    rgba(48, 48, 48, 0.2) 70%);*/
        }

        .buy-hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
            text-align: center;
            animation: fadeIn 1s ease-out forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .buy-heading {
            color: var(--nav-text);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            position: relative;
        }

        .buy-heading::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--accent);
            margin: 16px auto 0;
            border-radius: 2px;
        }

        .buy-hero p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .buy-hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ==================== SELLHERO ==================== */
        .sell-hero {
            position: relative;
            height: 90vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            background: url('Assets/Pictures/officespace.webp') center/cover no-repeat;
        }

        .sell-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        .sell-hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            color: var(--nav-text);
        }

        .sell-hero h1 {
            font-size: 3.5rem;
            font-weight: 500;
            font-family: var(--serif);
            line-height: 1.2;
            margin-bottom: 20px;
            animation: slideUp 1s ease forwards;
        }

        .sell-hero p {
            font-size: 0.99rem;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: slideUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        /* ==================== Sell Page - BENEFITS SECTION ==================== */
        #benefits {
            background: var(--bg-color);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            border: 1px solid var(--bg-gray);
        }

        .benefit-card:hover {
            transform: translateY(-10px);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--nav-text);
            transition: 0.2s ease;
        }


        .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--card-bg);
        }

        .benefit-card p {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* MISSION AND VISION */

        .mission-vision {
            background: var(--bg-color);
            padding-top: 0;
            /* Flows directly from overview */
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .mv-card {
            margin: 30px 20px;
            background: var(--card-bg);
            /*border: 1px solid var(--color-grey-light);*/
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .mv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .mv-icon {
            width: 64px;
            height: 64px;
            background-color: rgba(85, 85, 85, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--accent);
            margin-bottom: 24px;
        }

        .mv-card h3 {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--accent);
            font-size: 1.75rem;
        }

        .mv-card p {
            color: var(--text-muted);
            margin-bottom: 0;
            font-size: 0.92rem;
        }

        /* ==========================================================================
           SECTION 6: COMPANY VALUES
           ========================================================================== */
        .values {
            background: var(--bg-color);
            padding: 80px 20px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 30px;
            margin-top: 50px;
        }

        .value-box {
            text-align: center;
            padding: 30px 20px;
            background: var(--card-bg);
            border-radius: var(--radius);
            margin: 15px;
        }

        .value-box h3 {
            color: var(--text-color);
            margin-bottom: 15px;
        }

        .value-box p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: var(--accent);
            border: 2px solid var(--accent);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--color-white);
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon {
            background-color: var(--accent);
            border-color: var(--accent);
            color: var(--text-color);
            transform: rotate(5deg) scale(1.05);
        }

        /* ==========================================================================
           SECTION 5: CEO PROFILE
           ========================================================================== */
        .ceo-profile {
            background: var(--bg-color);
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .ceo-card {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--card-bg);
            border-radius: var(--radius);
            padding: clamp(40px, 6vw, 60px);
            box-shadow: var(--shadow-subtle);
            text-align: center;
            transition: box-shadow 0.3s ease;
            /*border: 1px solid var(--color-grey-light);*/
        }

        .ceo-card:hover {
            box-shadow: var(--accent) 0px 10px 30px -5px;
        }

        .ceo-img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 24px;
            /*border: 4px solid var(--color-white);*/
            box-shadow: 0 0 0 4px var(--accent);
        }

        .ceo-name {
            font-size: 2rem;
            margin-bottom: 5px;
            color: var(--accent);
        }

        .ceo-title {
            color: var(--text-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.875rem;
            margin-bottom: 24px;
        }

        .ceo-bio {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 30px;
        }

        .ceo-values {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 50px;
            justify-content: center;
        }

        .value-card {
            height: auto;
            width: 250px;
            text-align: center;
            padding: 20px 10px;
            border: 2px solid var(--border-color);
            border-radius: 15px;
        }

        .value-card h4 {
            color: var(--color-primary);
        }

        .value-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .ceo-quote {
            position: relative;
            font-size: clamp(1.25rem, 2vw, 1.5rem);
            font-style: italic;
            color: var(--text-muted);
            line-height: 1.8;
            margin: 30px auto 0;
            max-width: 700px;
        }

        .ceo-quote::before {
            content: '\201C';
            font-size: 60px;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: -30px;
            font-family: serif;
        }

        /* ==========================================================================
           FOOTER
           ========================================================================== */
        footer {
            background-color: var(--footer-bg);
            color: #fff;
            padding: 60px 0 20px;
        }

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

        .footer-img {
            position: relative;
            width: 300px;
            height: 200px;
            margin-right: 15px;
        }

        .footer-img img {
            width: 100%;
            height: 100%;
            padding: 30px;
            object-fit: cover;
        }

        .footer-logo h3 {
            position: relative;
            color: var(--nav-text);
            margin-bottom: 10px;
            top: -25px;
        }

        .footer-logo {
            justify-content: center;
            text-align: center;
        }

        .footer-logo p {
            padding-top: 20px;
            color: #ccc;
            font-size: 0.875rem;
        }

        .footer-links-col h4 {
            font-size: 1rem;
            margin-bottom: 10px;
            padding-bottom: 5px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 5px;
            font-size: 0.875rem;
        }

        .footer-links a,
        p {
            color: #ccc;
        }

        .footer-socials a {
            list-style: none;
            font-size: 1.5rem;
            padding: 5px;
        }

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

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.875rem;
        }

        .copyright p {
            margin-top: 5px;
            font-size: 0.875rem;
        }

        /* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
        @media (max-width: 900px) {
            .property-details-container {
                grid-template-columns: 1fr;
            }

            .agent-card {
                position: static;
                margin-top: 30px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--nav-bg);
                flex-direction: column;
                justify-content: center;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                height: auto;
                padding: 100px 0;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: left;
            }


        }