:root {
    --brand-primary: #1B1656;
    --brand-accent: #F5A623;
    --brand-text-on-primary: #000000;
}

#top-header.fixed_top_header {
    background-color: var(--brand-primary);
    color: #000000;
}

#top-header .property_expert,
#top-header .contact_number span,
#top-header .contact_number a {
    color: #000000;
}

#top-header svg {
    color: #000000;
    fill: #000000;
}

.theme-btn,
.btn-primary {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.theme-btn:hover,
.btn-primary:hover,
.theme-btn:focus,
.btn-primary:focus {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--brand-text-on-primary);
}

.theme-bg-primary {
    background-color: var(--brand-primary) !important;
    color: var(--brand-text-on-primary) !important;
}

.theme-text-primary {
    color: var(--brand-primary) !important;
}



.theme-border-primary {
    border-color: var(--brand-primary) !important;
}

.theme-link-primary {
    color: var(--brand-primary);
}

.theme-link-primary:hover {
    color: var(--brand-accent);
}

