/* --- extracted style block 1 from Pages/Building/index.php --- */
    :root {
      --primary: #c62828;
      --secondary: #c62828;
      --accent: #e74c3c;
      --success: #27ae60;
      --warning: #f39c12;
      --light: #ecf0f1;
      --dark: #2c3e50;
    }
    
    .property-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      margin-bottom: 20px;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }
    
    .property-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }
    
    .property-image {
      position: relative;
      height: 200px;
      overflow: hidden;
      border-radius: 12px 12px 0 0;
    }
    
    .property-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .property-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--accent);
      color: white;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    
    .property-content {
      padding: 15px;
    }
    
    .property-price {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 8px;
    }
    
    .property-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    
    .property-address {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 12px;
    }
    
    .property-features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }
    
    .feature-tag {
      background: #f8f9fa;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.8rem;
      color: #666;
    }
    
    .property-details {
      display: flex;
      justify-content: space-between;
      font-size: 0.8rem;
      color: #666;
      margin-bottom: 15px;
    }
    
    .property-actions {
      display: flex;
      gap: 10px;
    }
    
    .btn-action {
      flex: 1;
      padding: 8px 12px;
      border: none;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .btn-call {
      background: var(--success);
      color: white;
    }
    
    .btn-whatsapp {
      background: #25D366;
      color: white;
    }
    
    .btn-action:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    .search-container {
      padding: 15px;
      background: white;
      border-bottom: 1px solid #eee;
    }
    
    .search-bar {
      display: flex;
      align-items: center;
      background: #f8f9fa;
      border-radius: 25px;
      padding: 8px 15px;
    }
    
    .search-input {
      flex: 1;
      border: none;
      background: transparent;
      padding: 5px 10px;
      outline: none;
    }
    
    .location-filter {
      display: flex;
      align-items: center;
      gap: 5px;
      background: var(--secondary);
      color: white;
      padding: 5px 12px;
      border-radius: 15px;
      font-size: 0.9rem;
      font-weight: 600;
    }
    
    .filter-section {
      padding: 15px;
      background: white;
      border-bottom: 1px solid #eee;
      overflow-x: auto;
    }
    
    .filter-title {
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
      font-size: 0.9rem;
    }
    
    .filter-options {
      display: flex;
      gap: 10px;
      flex-wrap: nowrap;
    }
    
    .filter-pill {
      padding: 6px 15px;
      background: #f8f9fa;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #666;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.3s;
    }
    
    .filter-pill.active {
      background: var(--secondary);
      color: white;
    }
    
    .filter-pill:hover {
      background: var(--secondary);
      color: white;
    }
    
    .site-footer {
      background: var(--primary);
      color: white;
      padding: 40px 20px 20px;
      margin-top: 40px;
    }
    
    .footer-title {
      font-weight: 700;
      margin-bottom: 15px;
      color: white;
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 8px;
    }
    
    .footer-links a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: white;
    }
    
    .footer-contact {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      color: #bdc3c7;
    }
    
    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }
    
    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      color: white;
      text-decoration: none;
      transition: background 0.3s;
    }
    
    .footer-social a:hover {
      background: var(--secondary);
    }
    
    .footer-subscribe {
      display: flex;
      margin-top: 10px;
    }
    
    .footer-subscribe input {
      flex: 1;
      padding: 8px 12px;
      border: none;
      border-radius: 4px 0 0 4px;
      outline: none;
    }
    
    .footer-subscribe button {
      background: var(--secondary);
      color: white;
      border: none;
      padding: 8px 15px;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      margin-top: 30px;
      text-align: center;
      color: #bdc3c7;
    }
    
    
    .redevelopment-badge {
      background: #9b59b6;
    }
    
    .site-header {
      background-color: white;
      padding: 12px 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    .brand h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 1px;
    }
    
    .brand p {
      color: var(--dark);
      font-weight: 400;
    }
    
    .btn-post-property {
      background-color: var(--secondary);
      color: white;
      border-radius: 20px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 5px;
      text-decoration: none;
    }
    
    .btn-post-property:hover {
      background-color: #2980b9;
      color: white;
    }
    
    .nav-icon {
      font-size: 18px;
    }
  
