/* ============================================
   OFFICE PROFILE PAGE CSS - Redesigned
   Modern, clean, user-friendly design
============================================ */

:root {
    --hc-navy: #001f49;
    --hc-sky: #00aeef;
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --radius: 4px;
}

.office-profile-page {
    background: var(--bg);
    min-height: 100vh;
}

/* ============================================
   HERO SECTION
============================================ */
.office-hero {
    position: relative;
    background: linear-gradient(135deg, var(--hc-navy) 0%, #003366 100%);
    padding: 60px 0 80px;
    overflow: hidden;
}

.office-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 174, 239, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.office-hero .hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .office-hero .hero-content {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }
}

/* Office Logo */
.office-logo-wrapper {
    position: relative;
    flex-shrink: 0;
}

.office-logo {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    background: #fff;
}

@media (min-width: 768px) {
    .office-logo {
        width: 140px;
        height: 140px;
    }
}

/* Office Info */
.office-info {
    flex: 1;
    color: #fff;
}

.office-header {
    margin-bottom: 12px;
}

.office-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: #fff;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .office-name {
        font-size: 2.25rem;
    }
}

/* Meta Info */
.office-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .office-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.meta-item i {
    color: var(--hc-sky);
    font-size: 14px;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

@media (min-width: 768px) {
    .contact-actions {
        justify-content: flex-start;
    }
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-email {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-email:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-listing {
    background: #fff;
    color: var(--hc-navy);
}

.btn-listing:hover {
    background: var(--hc-sky);
    color: #fff;
    transform: translateY(-2px);
}

/* Service Area Tags */
.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

@media (min-width: 768px) {
    .service-areas {
        justify-content: flex-start;
    }
}

.area-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 174, 239, 0.2);
    border: 1px solid rgba(0, 174, 239, 0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.area-tag.area-more {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   STATS SECTION - Matching Agent Profile Style
============================================ */
.stats-section {
    margin-top: -30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: #fff;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    position: relative;
    transition: all 0.25s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--hc-sky);
    transition: width 0.3s ease;
}

.stat-card:hover {
    background: #fafcff;
}

.stat-card:hover::before {
    width: 100%;
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 16px;
    color: #fff;
}

.stat-members .stat-icon { background: var(--hc-navy); }
.stat-active .stat-icon { background: var(--hc-sky); }
.stat-sold .stat-icon { background: #10b981; }
.stat-year .stat-icon { background: #f59e0b; }

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 575.98px) {
    .stat-card {
        padding: 18px 12px;
        gap: 8px;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .stat-icon i {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

/* ============================================
   MAIN CONTENT
============================================ */
.main-content {
    padding: 20px 0 100px;
}

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

@media (min-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr 380px;
    }
}

/* Content Cards */
.content-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.content-card + .content-card {
    margin-top: 24px;
}

.content-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.content-card .card-header i {
    font-size: 20px;
    color: var(--hc-sky);
}

.content-card .card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    flex: 1;
}

.content-card .card-body {
    padding: 20px 24px;
}

/* Bio Card */
.bio-content {
    color: var(--text-muted);
    line-height: 1.7;
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bio-content.expanded {
    max-height: none;
}

.bio-content p {
    margin-bottom: 12px;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

.btn-toggle-bio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 0;
    border: none;
    background: none;
    color: var(--hc-sky);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-toggle-bio:hover {
    color: var(--hc-navy);
}

/* Area Chips */
.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bae6fd;
    border-radius: 4px;
    color: #0369a1;
    font-size: 14px;
    font-weight: 600;
}

.area-chip i {
    font-size: 12px;
    color: var(--hc-sky);
}

/* Type Grid */
.type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 576px) {
    .type-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.type-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
    transition: all 0.2s ease;
}

.type-item:hover {
    border-color: var(--hc-sky);
    transform: translateY(-2px);
}

.type-item.top-type {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #93c5fd;
}

.type-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.type-icon i {
    font-size: 22px;
    color: var(--hc-navy);
}

.type-item.top-type .type-icon {
    background: var(--hc-navy);
}

.type-item.top-type .type-icon i {
    color: #fff;
}

.type-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.type-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.type-count {
    font-size: 12px;
    color: var(--text-muted);
}

.top-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--hc-sky);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(0, 174, 239, 0.4);
}

/* ============================================
   TEAM SECTION
============================================ */
.team-total-badge {
    background: var(--hc-navy);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.team-body {
    padding: 16px 24px !important;
}

.team-group {
    margin-bottom: 12px;
}

.team-group:last-child {
    margin-bottom: 0;
}

.team-role-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.team-role-btn:hover {
    background: #f1f5f9;
    border-color: var(--hc-sky);
}

.team-role-btn[aria-expanded="true"] {
    border-color: var(--hc-sky);
    background: #f0f9ff;
}

.team-role-btn i {
    transition: transform 0.2s ease;
    color: var(--text-muted);
}

.team-role-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.role-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.role-name {
    font-weight: 700;
    color: var(--text);
    font-size: 15px;
}

.role-count {
    background: var(--hc-sky);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.team-panel {
    max-height: 500px;
    overflow-y: auto;
}

.team-panel::-webkit-scrollbar {
    width: 6px;
}

.team-panel::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 0;
}

@media (min-width: 576px) {
    .team-members {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .team-members {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.team-card:hover {
    border-color: var(--hc-sky);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--hc-navy);
    margin-bottom: 10px;
}

.team-card-info {
    text-align: center;
}

.member-name {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 2px;
    line-height: 1.3;
}

.member-role {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

/* ============================================
   LISTINGS SIDEBAR
============================================ */
.listings-card .card-header {
    flex-wrap: wrap;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--hc-navy);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-view-all:hover {
    background: var(--hc-sky);
    transform: translateX(4px);
}

.listings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.listing-item {
    display: flex;
    gap: 14px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.listing-item:hover {
    background: #f0f9ff;
    transform: translateX(4px);
}

.listing-image {
    position: relative;
    flex-shrink: 0;
}

.listing-image img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
}

.listing-status {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 3px 8px;
    background: var(--hc-sky);
    color: #fff;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.listing-status.status-disewa {
    background: #8b5cf6;
}

.listing-status.status-terjual,
.listing-status.status-tersewa {
    background: #10b981;
}

.listing-info {
    flex: 1;
    min-width: 0;
}

.listing-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-price {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 800;
    color: var(--hc-sky);
}

.listing-location {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.listing-location i {
    font-size: 11px;
}

.empty-listings {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-listings i {
    font-size: 48px;
    opacity: 0.3;
    margin-bottom: 12px;
    display: block;
}

.empty-listings p {
    margin: 0;
    font-size: 14px;
}

/* ============================================
   MOBILE CTA
============================================ */
.mobile-cta {
    position: fixed;
    bottom: 82px;
    left: 0;
    right: 0;
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

@media (min-width: 992px) {
    .mobile-cta {
        display: none;
    }
}

.cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-call {
    background: #f1f5f9;
    color: var(--text);
}

.cta-call:hover {
    background: #e2e8f0;
    color: var(--text);
}

.cta-wa {
    background: #25d366;
    color: #fff;
}

.cta-wa:hover {
    background: #1fb855;
    color: #fff;
}

/* ============================================
   OFFCANVAS (ALL LISTINGS)
============================================ */
#officeAllListings {
    width: 100% !important;
    max-width: 100% !important;
}

@media (min-width: 768px) {
    #officeAllListings {
        width: 90vw !important;
        max-width: 1400px !important;
    }
}

#officeAllListings .offcanvas-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

#officeAllListings .offcanvas-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

#officeAllListings .offcanvas-body {
    padding: 20px;
    background: var(--bg);
}

/* Filter Panel */
.filter-panel {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 576px) {
    .filter-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .filter-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter-item label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.filter-item label i {
    color: var(--hc-sky);
}

.filter-panel .form-control,
.filter-panel .form-select {
    border: 2px solid var(--border);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.filter-panel .form-control:focus,
.filter-panel .form-select:focus {
    border-color: var(--hc-sky);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.filter-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-filter-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--hc-navy);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-filter-apply:hover {
    background: var(--hc-sky);
}

.btn-filter-reset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f1f5f9;
    color: var(--text-muted);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-filter-reset:hover {
    background: #e2e8f0;
    color: var(--text);
}

/* Listings Info */
.listings-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 56px;
    opacity: 0.3;
    display: block;
    margin-bottom: 16px;
}

.empty-state h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.empty-state p {
    margin-bottom: 0;
}

/* Listings Grid */
.listings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .listings-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Property Card - Matching Homepage Style */
.property-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 31, 73, 0.15);
}

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

.property-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.property-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    pointer-events: none;
}

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

.property-status {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--hc-sky) 0%, #0099cc 100%);
    color: white;
}

.property-type {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 31, 73, 0.95) 0%, rgba(0, 61, 122, 0.95) 100%);
    color: #fff;
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.property-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.property-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--hc-navy);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-price {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--hc-sky);
    letter-spacing: -0.02em;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}

.property-location i {
    color: var(--hc-sky);
    font-size: 12px;
}

.property-specs {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.property-specs::-webkit-scrollbar {
    display: none;
}

.property-specs span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.property-specs i {
    color: var(--hc-sky);
    font-size: 10px;
}

/* Mobile Property Card */
@media (max-width: 768px) {
    .property-image {
        height: 180px;
    }
    
    .property-status {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .property-type {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .property-content {
        padding: 12px;
    }
    
    .property-title {
        font-size: 0.9rem;
    }
    
    .property-price {
        font-size: 1rem;
    }
    
    .property-location {
        font-size: 12px;
    }
    
    .property-specs span {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* Pagination */
.pagination-wrapper {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 6px;
}

.pagination .page-link {
    border-radius: 4px !important;
    border: 1px solid var(--border);
    padding: 10px 16px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background: var(--hc-sky);
    border-color: var(--hc-sky);
    color: #fff;
}

.pagination .page-item.active .page-link {
    background: var(--hc-navy);
    border-color: var(--hc-navy);
    color: #fff;
}

/* Content Sidebar Sticky */
@media (min-width: 992px) {
    .content-sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .office-hero {
        padding: 40px 0 60px;
    }
    
    .content-card .card-header,
    .content-card .card-body {
        padding: 16px 18px;
    }
    
    .main-content {
        padding-bottom: 160px;
    }
    
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-card img {
        width: 60px;
        height: 60px;
    }
    
    .member-name {
        font-size: 12px;
    }
}
