:root {
    --color-primary-blue: #2b52a5;
    --color-primary-red: #e63946;
    --color-primary-yellow: #ffd23f;
    --color-neutral-dark: #1c1917;
    --color-neutral-light: #fafaf9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--color-neutral-light);
    color: var(--color-neutral-dark);
}

.font-serif {
    font-family: "Cormorant Garamond", serif;
}

.hero-gradient {
    background: linear-gradient(
        135deg,
        rgba(74, 124, 184, 0.85) 0%,
        rgba(230, 57, 70, 0.75) 100%
    );
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-effect2 {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.35)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-radius: 16px;
}

.location-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 124, 184, 0.2);
}

.location-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover img {
    transform: scale(1.08);
}

.btn-primary {
    background: #2b52a5;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-primary-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 124, 184, 0.3);
}

.btn-primary:active {
    background: var(--color-primary-red);
    transform: translateY(0);
    box-shadow: none;
}

.btn-primary-active {
    background: var(--color-primary-red);
    color: white;
}

.btn-secondary {
    border: 2px solid var(--color-primary-blue);
    color: white;
    background: var(--color-primary-blue);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-primary-red);
    color: white;
}

select,
input {
    transition: all 0.3s ease;
}

select:focus,
input:focus {
    outline: none;
    border-color: var(--color-primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 124, 184, 0.15);
}

.company-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accent-line {
    border-top: 3px solid var(--color-primary-yellow);
}

/* AboutUs - Tab Navigation Styles */
.aboutus-tab-button {
    position: relative;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.aboutus-tab-button.active {
    color: #4a7cb8;
    border-bottom-color: #ffd23f;
}

/* AboutUs - Tab Content Styles */
.aboutus-tab-content {
    display: none;
    animation: aboutusFadeIn 0.5s ease;
}

.aboutus-tab-content.active {
    display: block;
}
@keyframes aboutusFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AboutUs - Office Card Styles */
.aboutus-office-card {
    transition: all 0.3s ease;
}

.aboutus-office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* AboutUs - Image Gallery Styles */
.aboutus-image-gallery img {
    transition: all 0.3s ease;
    cursor: pointer;
}

.aboutus-image-gallery img:hover {
    transform: scale(1.05);
}

/* AboutUs - Service Card Styles */
.aboutus-service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.aboutus-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* AboutUs - Hero Section */
.aboutus-hero {
    padding-top: 8rem;
    padding-bottom: 1rem;
    background: linear-gradient(135deg, #fafaf9 0%, #ffffff 100%);
}

/* Properties Top filter bar with horizontal layout */
.properties_top-filters {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.properties_filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

/* Left sidebar with keyword tags */
.properties_sidebar {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.properties_sidebar-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1c1917;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffd23f;
}

.properties_keyword-section {
    margin-bottom: 24px;
}

.properties_keyword-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
    display: block;
}

.properties_keyword-link {
    display: block;
    padding: 6px 0;
    font-size: 0.875rem;
    color: #57534e;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    padding-left: 12px;
}

.properties_keyword-link:hover {
    color: #4a7cb8;
    border-left-color: #ffd23f;
    padding-left: 16px;
}

/* Horizontal listing card layout */
.properties_card-horizontal {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.properties_card-horizontal:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.properties_card-image-horizontal {
    position: relative;
    width: 320px;
    min-width: 320px;
    height: 290px;
    overflow: hidden;
}

.properties_card-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.properties_card-horizontal:hover .properties_card-image-horizontal img {
    transform: scale(1.08);
}

.properties_card-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.properties_badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #94a3b8; /* default neutral */
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.properties_badge.properties-sale {
    background: #2563eb; /* blue for For Sale */
    color: white;
}

.properties_badge.properties-rent {
    background: #dc2626; /* red for For Rent */
    color: white;
}

.properties_featured-badge {
    background: #ffd23f;
    color: #1c1917;
}

.properties_price {
    /* font-family: "Cormorant Garamond", serif; */
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0px;
}

.properties_title {
    /* font-family: "Cormorant Garamond", serif; */
    font-size: 1.3rem;
    font-weight: 100;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.properties_type {
    font-size: 0.875rem;
    color: #011f67;
    margin-bottom: 8px;
    font-style: italic;
}

.properties_location {
    font-size: 0.875rem;
    color: #57534e;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.properties_description {
    font-size: 0.875rem;
    color: #78716c;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.properties_meta {
    display: flex;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid #f5f5f4;
    margin-bottom: 12px;
}

.properties_meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #78716c;
    font-weight: 500;
}

.properties_bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.properties_agent-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.properties_agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd23f;
}

.properties_agent-details {
    display: flex;
    flex-direction: column;
}

.properties_agent-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1c1917;
}

.properties_agent-role {
    font-size: 0.75rem;
    color: #78716c;
}

.properties_actions {
    display: flex;
    gap: 8px;
}

.properties_action-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1.5px solid #e7e5e4;
    background: white;
    color: #57534e;
}

.properties_action-btn:hover {
    background: #4a7cb8;
    color: white;
    border-color: #4a7cb8;
}

.properties_action-btn-primary {
    background: #4a7cb8;
    color: white;
    border-color: #4a7cb8;
}

.properties_action-btn-primary:hover {
    background: #3a66a0;
}

.properties_sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.properties_result-count {
    font-size: 0.875rem;
    color: #57534e;
}

.properties_result-count strong {
    color: #1c1917;
    font-weight: 600;
    font-size: 1.125rem;
}

.properties_filter-input,
.properties_filter-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e7e5e4;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: #fafaf9;
}

.properties_filter-input:focus,
.properties_filter-select:focus {
    outline: none;
    border-color: #4a7cb8;
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 124, 184, 0.1);
}

.properties_filter-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #57534e;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .properties_card-horizontal {
        flex-direction: column;
    }

    .properties_card-image-horizontal {
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .properties_sidebar {
        position: static;
        margin-bottom: 24px;
    }

    .properties_filter-row {
        grid-template-columns: 1fr;
    }
}
/* Property Details Specific Styles */
.properties_detail_gallery-main {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 1rem;
}

.properties_detail_gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.properties_detail_thumbnail {
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

.properties_detail_thumbnail:hover,
.properties_detail_thumbnail.active {
    border-color: var(--color-primary-blue);
    transform: scale(1.05);
}

.properties_detail_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.properties_detail_feature-box {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.properties_detail_feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(74, 124, 184, 0.15);
}

.properties_detail_contact-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
}

.properties_detail_price-tag {
    background: linear-gradient(
        135deg,
        var(--color-primary-blue),
        var(--color-primary-red)
    );
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.properties_detail_agent-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--color-primary-yellow);
    object-fit: cover;
}

input,
textarea {
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 124, 184, 0.15);
}

.properties_detail_map {
    border-radius: 1rem;
    overflow: hidden;
    height: 400px;
    background: #e5e5e5;
}
/* Blog specific styles */
.blog_featured-article {
    transition: all 0.4s ease;
}

.blog_featured-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(74, 124, 184, 0.15);
}

.blog_article-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog_article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.blog_article-card img {
    transition: transform 0.5s ease;
}

.blog_article-card:hover img {
    transform: scale(1.05);
}

.blog_category-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

.blog_category-market {
    background: rgba(74, 124, 184, 0.1);
    color: var(--color-primary-blue);
}

.blog_category-lifestyle {
    background: rgba(230, 57, 70, 0.1);
    color: var(--color-primary-red);
}

.blog_category-investment {
    background: rgba(255, 210, 63, 0.2);
    color: #c49b1e;
}

.blog_category-guide {
    background: rgba(74, 124, 184, 0.15);
    color: #2d5278;
}

.blog_side-story {
    transition: all 0.2s ease;
    padding: 16px;
    border-left: 3px solid transparent;
}

.blog_side-story:hover {
    background: rgba(74, 124, 184, 0.05);
    border-left-color: var(--color-primary-blue);
}

.blog_video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(230, 57, 70, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog_accent-line {
    border-top: 3px solid var(--color-primary-yellow);
}
/* Login specific styles */
.login_container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(
        135deg,
        rgba(74, 124, 184, 0.05) 0%,
        rgba(230, 57, 70, 0.05) 100%
    );
}

.login_card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 768px) {
    .login_card {
        grid-template-columns: 1fr;
    }

    .login_info-section {
        display: none;
    }
}

.login_form-section {
    padding: 3rem;
}

.login_info-section {
    background: linear-gradient(
            135deg,
            rgba(43, 82, 165, 0.9) 0%,
            rgba(230, 57, 70, 0.9) 100%
        ),
        url("/images/default-thumb.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login_tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.login_tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.login_tab-btn.active {
    color: var(--color-primary-blue);
    border-bottom-color: var(--color-primary-yellow);
}

.login_tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.login_tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login_input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.login_input:focus {
    outline: none;
    border-color: var(--color-primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 124, 184, 0.1);
}

.login_radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.login_radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.login_radio-label input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--color-primary-blue);
}

.login_submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--color-primary-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login_submit-btn:hover {
    background: #3a6ba0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 124, 184, 0.3);
}

.login_captcha {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 12px;
    font-family: monospace;
    font-size: 1.25rem;
    letter-spacing: 0.5rem;
    text-align: center;
    font-weight: bold;
    color: var(--color-primary-blue);
}

/* Dashboard Styles */
.dashboard_container {
    max-width: 1400px;
    margin: 100px auto 0;
    padding: 2rem;
}

.dashboard_profile-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: center;
}

.dashboard_profile-photo-section {
    text-align: center;
}

.dashboard_profile-photo {
    width: 240px;
    height: 240px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #4a7cb8;
}

.dashboard_change-photo-btn {
    background: #e63946;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.dashboard_change-photo-btn:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.dashboard_profile-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard_profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e63946;
    margin: 0;
}

.dashboard_profile-title {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.dashboard_profile-email {
    color: #4a7cb8;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.dashboard_profile-website {
    color: #e63946;
    text-decoration: none;
    font-weight: 500;
}

.dashboard_edit-profile-btn {
    background: #4a7cb8;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.dashboard_edit-profile-btn:hover {
    background: #3a6298;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 184, 0.3);
}

.dashboard_stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-left: auto;
    max-width: 600px;
}

.dashboard_stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dashboard_stat-card:hover {
    border-color: #ffd23f;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.dashboard_stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a7cb8;
    margin-bottom: 0.5rem;
}

.dashboard_stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard_main-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.dashboard_sidebar {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.dashboard_post-property-btn {
    background: #4a7cb8;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard_post-property-btn:hover {
    background: #3a6298;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 124, 184, 0.4);
}

.dashboard_sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard_sidebar-menu li {
    margin-bottom: 0.75rem;
}

.dashboard_sidebar-link {
    color: #1c1c1c;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dashboard_sidebar-link:hover {
    background: #f8f9fa;
    color: #4a7cb8;
    transform: translateX(4px);
}

.dashboard_sidebar-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1.5rem 0 1rem;
}

.dashboard_badge {
    background: #ffd23f;
    color: #1c1c1c;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: auto;
}

.dashboard_properties-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dashboard_tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.dashboard_tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.dashboard_tab-btn.active {
    color: #e63946;
}

.dashboard_tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e63946;
}

.dashboard_tab-btn:hover {
    color: #4a7cb8;
}

.dashboard_empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.dashboard_empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.dashboard_empty-text {
    font-size: 1.125rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .dashboard_profile-card {
        grid-template-columns: 1fr;
    }

    .dashboard_stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .dashboard_main-content {
        grid-template-columns: 1fr;
    }

    .dashboard_sidebar {
        position: static;
    }
}
