/* --- extracted style block 1 from Pages/Office/index.php --- */
    :root {
      --primary: #c62828;
      --secondary: #64748b;
      --success: #10b981;
      --warning: #f59e0b;
      --danger: #ef4444;
      --whatsapp: #25D366;
      --call: #34C759;
      --office: #8B5CF6;
    }
    
    body {
      font-family: 'Nunito', sans-serif;
      background-color: #f8fafc;
      padding-bottom: 80px;
    }
    
    .site-header {
      background: white;
      padding: 1rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    .brand h6 {
      font-weight: 800;
      color: #1e293b;
      font-size: 18px;
    }
    
    .btn-post-property {
      background: linear-gradient(135deg, var(--primary), #1d4ed8);
      color: white;
      border: none;
      border-radius: 25px;
      padding: 8px 16px;
      font-weight: 600;
      font-size: 14px;
    }
    
    .header-icon-btn {
      background: none;
      border: none;
      font-size: 18px;
      color: #64748b;
      margin-left: 12px;
    }
    
    .search-container {
      padding: 1rem;
      background: white;
      border-bottom: 1px solid #e2e8f0;
    }
    
    .search-bar {
      display: flex;
      align-items: center;
      background: #f8fafc;
      border-radius: 12px;
      padding: 10px 16px;
      border: 1px solid #e2e8f0;
    }
    
    .search-input {
      flex: 1;
      border: none;
      background: none;
      outline: none;
      font-size: 14px;
    }
    
    .location-filter {
      display: flex;
      align-items: center;
      gap: 4px;
      background: white;
      padding: 4px 8px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
      border: 1px solid #e2e8f0;
    }
    
    .property-list-page {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    .property-filters {
      padding: 1.5rem 0;
    }
    
    .filter-title {
      font-weight: 700;
      color: #475569;
      margin-bottom: 12px;
      font-size: 14px;
    }
    
    .filter-options {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 8px;
    }
    
    .filter-pill {
      background: white;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 8px 16px;
      font-size: 14px;
      color: #64748b;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.2s;
    }
    
    .filter-pill.active,
    .filter-pill:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }
    
    .property-listings {
      display: grid;
      gap: 1.5rem;
    }
    
    .property-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
      color: inherit;
      display: block;
      position: relative;
    }
    
    .property-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      color: inherit;
      text-decoration: none;
    }
    
    .property-image {
      height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    
    .property-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--office);
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
    }
    
    .property-content {
      padding: 1.25rem;
    }
    
    .property-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 0.5rem;
      gap: 0.5rem;
    }
    
    .property-price {
      flex-grow: 1;
      margin: 0;
      font-weight: 700;
      color: #1f2937;
      font-size: 1.25rem;
    }
    
    .property-title {
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #111827;
      font-size: 1.1rem;
    }
    
    .property-address {
      color: #6b7280;
      font-size: 0.9rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .property-actions {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    
    .action-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      transition: all 0.2s ease;
      color: #64748b;
      font-size: 14px;
    }
    
    .action-btn:hover {
      transform: scale(1.1);
      background: #f8f9fa;
    }
    
    .action-btn.bookmark.active {
      color: var(--danger);
    }
    
    .action-btn.whatsapp {
      color: var(--whatsapp);
    }
    
    .action-btn.whatsapp:hover {
      background: var(--whatsapp);
      color: white;
    }
    
    .action-btn.call {
      color: var(--call);
    }
    
    .action-btn.call:hover {
      background: var(--call);
      color: white;
    }
    
    .action-btn.share:hover {
      color: var(--primary);
    }
    
    /* Property Features - Flex Layout */
    .property-features-flex {
      display: flex;
      gap: 12px;
      margin: 12px 0;
      flex-wrap: wrap;
    }
    
    .feature-item-flex {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      background: #f8f9fa;
      border-radius: 8px;
      font-size: 0.8rem;
    }
    
    .feature-icon-flex {
      color: #6b7280;
      font-size: 0.9rem;
    }
    
    .feature-text-flex {
      font-weight: 500;
      color: #374151;
    }
    
    /* Contact Section - Side by Side with Posted By */
    .property-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid #e5e7eb;
    }
    
    .posted-by-compact {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1;
    }
    
    .user-avatar-compact {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 14px;
      font-weight: 600;
      flex-shrink: 0;
    }
    
    .user-info-compact {
      flex: 1;
      min-width: 0;
    }
    
    .user-name-compact {
      font-size: 0.8rem;
      font-weight: 500;
      color: #374151;
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .user-type-compact {
      font-size: 0.7rem;
      color: #6b7280;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .contact-actions-compact {
      display: flex;
      gap: 6px;
      flex-shrink: 0;
    }
    
    .contact-btn-compact {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      transition: all 0.2s ease;
      text-decoration: none;
    }
    
    .contact-btn-compact.whatsapp {
      background: var(--whatsapp);
      color: white;
    }
    
    .contact-btn-compact.whatsapp:hover {
      background: #128C7E;
      transform: scale(1.05);
    }
    
    .contact-btn-compact.call {
      background: var(--call);
      color: white;
    }
    
    .contact-btn-compact.call:hover {
      background: #30A64A;
      transform: scale(1.05);
    }
    
    .verified-badge {
      color: var(--success);
      font-size: 0.7rem;
    }
    
    .listing-date {
      font-size: 0.7rem;
      color: #9ca3af;
    }
    
    .furnishing-badge {
      font-size: 0.7rem;
      padding: 0.2rem 0.5rem;
      border-radius: 0.25rem;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      white-space: nowrap;
    }
    
    .furnishing-success {
      background-color: #d1fae5;
      color: #065f46;
      border: 1px solid #a7f3d0;
    }
    
    .furnishing-warning {
      background-color: #fef3c7;
      color: #92400e;
      border: 1px solid #fcd34d;
    }
    
    .furnishing-secondary {
      background-color: #f3f4f6;
      color: #374151;
      border: 1px solid #d1d5db;
    }
    
    .floor-badge {
      background: #e0f2fe;
      color: #0369a1;
      border: 1px solid #bae6fd;
      font-size: 0.7rem;
      padding: 0.2rem 0.5rem;
    }
    
    .area-badge {
      background: #f3e8ff;
      color: #7c3aed;
      border: 1px solid #ddd6fe;
      font-size: 0.7rem;
      padding: 0.2rem 0.5rem;
    }
    
    @media (min-width: 768px) {
      .property-listings {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .property-listings {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    /* Empty state styling */
    .empty-state {
      text-align: center;
      padding: 3rem 1rem;
      grid-column: 1 / -1;
    }
    
    .empty-state i {
      font-size: 4rem;
      color: #cbd5e1;
      margin-bottom: 1rem;
    }
    
    .empty-state h4 {
      color: #475569;
      margin-bottom: 0.5rem;
    }
    
    .empty-state p {
      color: #94a3b8;
      max-width: 300px;
      margin: 0 auto;
    }
  
