
    /* --- RE/MAX COLOR VARIABLES --- */
    :root {
        --remax-blue: #003DA5;
        --remax-red: #E11B22;
        --remax-white: #ffffff;
        --remax-border: #E1E0E4;
    }

    /* --- MAIN HEADER STYLES --- */
    .site-header {
        background: var(--remax-white);
        border-bottom: 1px solid var(--remax-border);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .mh-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1450px;
        width: 100%;
        margin: 0 auto;
        padding: 0.75rem 2rem;
        gap: 2rem;
    }

    /* Logo */
    .mh-logo img {
        height: 45px;
        width: auto;
        display: block;
    }

    /* Center Section (Contact + Nav) */
    .mh-center {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        align-items: center;
        gap: 0.5rem;
    }

    /* Contact Info Row */
    .mh-contact {
        display: flex;
        align-items: center;
        gap: 1.5rem; /* Increased slightly for multiple offices */
        font-size: 0.85rem;
        color: var(--remax-blue);
    }
    
    /* NEW: Office Grouping Styles */
    .mh-office-group {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .mh-office-label {
        font-weight: 800;
        text-transform: uppercase;
        font-size: 0.75rem;
        color: var(--remax-red);
        letter-spacing: 0.5px;
    }

    .mh-contact-item {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        text-decoration: none; 
        color: inherit;        
        transition: color 0.2s;
        /* NEW: Forces email and phone numbers to stay on one line */
        white-space: nowrap; 
    }

    .mh-contact-item:hover {
        color: var(--remax-red);
    }
    
    .mh-contact-item svg {
        width: 16px;
        height: 16px;
        color: var(--remax-red);
    }

    .mh-divider {
        color: #ccc;
    }

    /* Main Navigation Row */
    .mh-nav {
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }

    .mh-nav a {
        text-decoration: none;
        color: var(--remax-blue);
        font-weight: 600;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

    .mh-nav a:hover {
        color: var(--remax-red);
    }

    /* --- DROPDOWN MENU STYLES --- */
    .mh-dropdown {
        position: relative;
        display: inline-block;
    }

    .mh-dropbtn {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .mh-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--remax-white);
        min-width: 250px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border: 1px solid var(--remax-border);
        border-radius: 4px;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.2s ease;
        z-index: 1100;
        display: flex;
        flex-direction: column;
    }

    /* Desktop Hover Action */
    .mh-dropdown:hover .mh-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mh-dropdown-menu a {
        padding: 12px 16px;
        font-size: 0.9rem !important;
        font-weight: 400; /* Match the lighter text in your screenshot */
        color: #555; 
        border-bottom: 1px solid var(--remax-border);
    }

    .mh-dropdown-menu a:last-child {
        border-bottom: none;
    }

    .mh-dropdown-menu a:hover {
        background-color: #f9f9f9;
        color: var(--remax-blue);
    }

    /* Right Section */
    .mh-right {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .mh-lang {
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.2rem;
        color: var(--remax-blue);
    }

    .mh-icon-btn {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--remax-blue);
        padding: 0;
        display: flex;
        transition: color 0.2s;
    }
    
    .mh-icon-btn:hover {
        color: var(--remax-red);
    }

    .mh-mobile-only {
        display: none;
    }

    .mh-mobile-overlay {
        display: none;
    }

    /* --- MOBILE RESPONSIVE --- */
    @media (max-width: 1100px) {
        .mh-container {
            padding: 1rem;
            gap: 1rem;
        }

        .mh-lang, .mh-divider {
            display: none;
        }

        .mh-mobile-only {
            display: flex;
        }

        .mh-right {
            gap: 1rem;
        }

        /* Drawer */
        .mh-center {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px; /* Slightly wider for the dropdown indents */
            height: 100dvh;
            background: var(--remax-white);
            flex-direction: column;
            align-items: flex-start;
            padding: 5rem 2rem 120px 2rem;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            transition: right 0.3s ease-in-out;
            z-index: 1001;
            gap: 2rem;
            overflow-y: auto;
        }

        .mh-center.open {
            right: 0;
        }

        .mh-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            border-bottom: 1px solid var(--remax-border);
            padding-bottom: 2rem;
            width: 100%;
        }

        .mh-nav a {
            font-size: 1.2rem;
        }

        /* Mobile Dropdown Behavior */
        .mh-dropdown {
            width: 100%;
        }

        .mh-dropdown-menu {
            position: static; /* Flows down the page instead of floating */
            box-shadow: none;
            border: none;
            opacity: 1;
            visibility: visible;
            transform: none;
            display: none; /* Hidden until clicked */
            padding-left: 1rem;
            margin-top: 10px;
            border-left: 2px solid var(--remax-border);
            border-radius: 0;
        }

        .mh-dropdown.active .mh-dropdown-menu {
            display: flex; /* Expands when parent has .active class */
        }

        .mh-dropdown-menu a {
            font-size: 1.05rem !important;
            padding: 10px 0;
            border-bottom: none;
        }

        /* Adjusted Mobile Contact Styling */
        .mh-contact {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.2rem;
            font-size: 1rem;
        }

        .mh-office-group {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .mh-mobile-overlay {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .mh-mobile-overlay.open {
            opacity: 1;
            visibility: visible;
        }
    }
    
/* When a button has the 'is-favorited' class, fill the heart with red */
.fav-btn.is-favorited svg {
    fill: var(--remax-red);
    stroke: var(--remax-red);
    transition: all 0.2s ease;
}

/* Optional: Add a little pop animation when clicked */
.fav-btn.is-favorited svg {
    transform: scale(1.1);
}    

/* --- SHARE MODAL ICONS --- */
        .share-icon-btn {
            width: 45px; height: 45px; border-radius: 50%; border: 1px solid var(--border);
            background: var(--bg); color: var(--primary); cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s ease; padding: 0;
        }
        .share-icon-btn svg { width: 20px; height: 20px; }
        .share-icon-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        
        /* Brand Colors on Hover */
        .share-icon-btn.fb-btn:hover { background: #1877F2; color: white; border-color: #1877F2; }
        .share-icon-btn.x-btn:hover { background: #000000; color: white; border-color: #000000; }
        .share-icon-btn.in-btn:hover { background: #0077B5; color: white; border-color: #0077B5; }
        .share-icon-btn.wa-btn:hover { background: #25D366; color: white; border-color: #25D366; }
        
        /* --- BASE MODAL STYLES --- */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 3000; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal-content { background: white; padding: 24px; border-radius: 8px; width: 90%; max-width: 450px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #999; line-height: 1; transition: 0.2s; }
.modal-close:hover { color: var(--remax-red); }

/* --- GLOBAL FORM INPUTS & BUTTONS --- */
.input-full { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid var(--border, #E1E0E4); 
    border-radius: 6px; 
    margin-bottom: 15px; 
    font-size: 0.95rem; 
    outline: none; 
    font-family: inherit;
    box-sizing: border-box;
}

textarea.input-full { 
    resize: vertical; 
    min-height: 100px; 
}

.btn-submit { 
    width: 100%; 
    background: var(--remax-red, #E11B22); 
    color: white; 
    border: none; 
    padding: 14px; 
    border-radius: 6px; 
    font-weight: bold; 
    font-size: 1.1rem; 
    cursor: pointer; 
    transition: 0.2s; 
    box-sizing: border-box;
}

.btn-submit:hover { 
    background: #b3151b; 
}