   :root {
      --primary: #c62828;
      --primary-dark: #8e0000;
      --primary-light: #ff5f52;
      --secondary: #1565c0;
      --muted: #f1f4f6;
      --card-bg: #eef0f3;
      --dark-text: #333;
      --light-text: #666;
      --white: #fff;
      --shadow: 0 4px 12px rgba(0,0,0,0.08);
      --transition: all 0.3s ease;
    }
    
    body {
      font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; 
      background:#fff;
      color: var(--dark-text);
      padding-bottom: 70px;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }
    
    a{
        all: unset;
        cursor: pointer;
    }
    
    /* Header Styles */
    .site-header {
      background: var(--white);
      border-bottom: 1px solid #eee;
      padding: 12px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .brand {
      font-family: 'Montserrat';
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 1px;
      font-size: 1.4rem;
    }
    
    .nav-icon {
      font-size: 1.2rem;
      color: #444;
      position: relative;
    }
    
    .nav-badge {
      position: absolute;
      top: -5px;
      right: 5px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      font-size: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* Post Property Button */
    .btn-post-property {
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 30px;
      padding: 8px 16px;
      font-weight: 700;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
    }
    
    .btn-post-property:hover {
      background: var(--primary-dark);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(198, 40, 40, 0.3);
    }
    
    /* Search Bar */
    .search-container {
      padding: 12px 20px;
      background: var(--muted);
      border-bottom: 1px solid #e5e5e5;
    }
    
    .search-bar {
      background: white;
      border-radius: 50px;
      padding: 8px 20px;
      box-shadow: var(--shadow);
      border: 1px solid #e0e0e0;
      display: flex;
      align-items: center;
    }
    
    .search-input {
      border: none;
      outline: none;
      flex: 1;
      padding: 6px 0;
    }
    
    .search-input::placeholder {
      color: #999;
    }
    
    .location-filter {
      display: flex;
      align-items: center;
      background: var(--primary-light);
      color: white;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-left: 10px;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .location-filter:hover {
      background: var(--primary);
    }
    
    .location-filter i {
      margin-right: 5px;
      font-size: 0.8rem;
    }
    
    /* Filter Section */
    .filter-section {
      padding: 15px 20px;
      background: var(--muted);
      border-bottom: 1px solid #e5e5e5;
    }
    
    .filter-title {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 1rem;
    }
    
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    
    .filter-pill {
      padding: 8px 16px;
      background: white;
      border-radius: 20px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: var(--transition);
      border: 1px solid #ddd;
    }
    
    .filter-pill.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }
    
    .filter-pill:hover:not(.active) {
      background: #f9f9f9;
    }
    
    /* Property Card */
    .property-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: white;
      transition: var(--transition);
      margin-bottom: 20px;
      cursor: pointer;
    }
    
    .property-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
    .property-image {
      height: 200px;
      position: relative;
    }
    
    .property-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       display: block;
    }
    
    .property-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--primary);
      color: white;
      padding: 5px 12px;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 700;
    }
    
    .property-content {
      padding: 15px;
    }
    
    .property-price {
      font-weight: 800;
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: 5px;
    }
    
    .property-title {
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 1rem;
      line-height: 1.3;
    }
    
    .property-address {
      color: var(--light-text);
      font-size: 0.9rem;
      margin-bottom: 10px;
    }
    
    .property-features {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 10px;
    }
    
    .feature-tag {
      background: var(--muted);
      padding: 5px 10px;
      border-radius: 15px;
      font-size: 0.8rem;
      color: var(--light-text);
    }
    
    .property-details {
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #eee;
      padding-top: 12px;
      margin-top: 10px;
      color: var(--light-text);
      font-size: 0.85rem;
    }
    
    .property-actions {
      display: flex;
      justify-content: space-between;
      margin-top: 15px;
    }
    
    .btn-action {
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      
    }
    
    .btn-call {
      background: var(--primary);
      color: white;
      border: none;
    }
    
    .btn-call:hover {
      background: var(--primary-dark);
    }
    
    .btn-whatsapp {
      background: #25D366;
      color: white;
      border: none;
    }
    
    .btn-whatsapp:hover {
      background: #128C7E;
    }
    
    /* Section headers */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 25px 15px 15px;
    }
    
    .section-title {
      font-weight: 800;
      color: var(--dark-text);
      margin: 0;
    }
    
    .view-all {
      color: var(--primary);
      font-weight: 700;
      font-size: 0.9rem;
    }
    
    /* Footer */
    .site-footer {
      background: #2c3e50;
      color: white;
      padding: 40px 20px 20px;
      margin-top: 40px;
    }
    
    .footer-title {
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 1.2rem;
      color: #ecf0f1;
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #bdc3c7;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .footer-links a:hover {
      color: var(--white);
      padding-left: 5px;
    }
    
    .footer-contact {
      color: #bdc3c7;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .footer-social a {
      color: white;
      background: rgba(255,255,255,0.1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    
    .footer-social a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      margin-top: 30px;
      text-align: center;
      color: #95a5a6;
      font-size: 0.9rem;
    }
    
    .footer-subscribe {
      display: flex;
      margin-top: 15px;
    }
    
    .footer-subscribe input {
      flex: 1;
      border: none;
      padding: 12px 15px;
      border-radius: 4px 0 0 4px;
      outline: none;
    }
    
    .footer-subscribe button {
      background: var(--primary);
      color: white;
      border: none;
      padding: 0 20px;
      border-radius: 0 4px 4px 0;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .footer-subscribe button:hover {
      background: var(--primary-dark);
    }
    
    /* Bottom Navigation */
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: white;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      z-index: 1000;
      padding: 10px 0;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .nav-item {
      text-align: center;
      color: #888;
      font-size: 0.8rem;
      transition: var(--transition);
    }
    
    .nav-item.active {
      color: var(--primary);
    }
    
    .bottom-nav-icon {
      font-size: 1.3rem;
      margin-bottom: 3px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 576px) {
      body {
        box-shadow: none;
      }
      
      .brand {
        font-size: 1.4rem;
      }
      
      .btn-post-property {
        padding: 8px 15px;
        font-size: 0.8rem;
      }
      
      .filter-options {
        overflow-x: auto;
        padding-bottom: 5px;
      }
      
      .property-image {
        height: 180px;
      }
    }
    
    @media (min-width: 768px) {
      .property-image {
        height: 220px;
      }
    }
