/* --- extracted style block 1 from Pages/Pg/index.php --- */
    :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: 30px;
      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: 1001;
      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;
    }
    
    /* Header Action Buttons */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .header-icon-btn {
      background: transparent;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #555;
      transition: var(--transition);
      position: relative;
    }
    
    .header-icon-btn:hover {
      background: #f5f5f5;
      color: var(--primary);
    }
    
    /* 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);
      border: none;
    }
    
    .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;
    }
    
    /* Page Header */
    .page-header {
      padding: 20px;
      background: linear-gradient(90deg, #f8f9fa, #e9ecef);
      border-radius: 12px;
      margin: 20px;
    }
    
    .page-title {
      font-weight: 800;
      color: var(--dark-text);
      margin-bottom: 10px;
    }
    
    .page-subtitle {
      color: var(--light-text);
      font-size: 1rem;
    }
    
    /* Filter Section */
    .filter-section {
      padding: 15px 20px;
      background: var(--muted);
      margin: 0 20px 20px;
      border-radius: 12px;
    }
    
    .filter-title {
      font-weight: 700;
      margin-bottom: 15px;
      font-size: 1rem;
    }
    
    .filter-option {
      display: inline-block;
      background: white;
      padding: 8px 15px;
      border-radius: 20px;
      margin-right: 10px;
      margin-bottom: 10px;
      font-size: 0.9rem;
      box-shadow: var(--shadow);
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      color: inherit;
    }
    
    .filter-option:hover, .filter-option.active {
      background: var(--primary);
      color: white;
    }
    
    /* Share Requirement Button - Fixed at bottom */
    
    .share-btn{
      position: sticky;
      bottom: 20px;
      z-index: 1000;
      display: flex;
      align-items: center;
    }
    .btn-share-requirement {
      background: var(--secondary);
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 30px;
      font-weight: 700;
      margin: auto;
      box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
      transition: var(--transition);
    }
    
    .btn-share-requirement:hover {
      background: #0d47a1;
      transform: translateX(0%) translateY(50px);
      box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
    }
    
    /* PG Listings */
    .pg-listings {
      padding: 0 20px;
      margin-bottom: 80px;
    }
    
    .pg-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-bottom: 20px;
      transition: var(--transition);
    }
    
    .pg-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
    .pg-image {
      height: 200px;
      position: relative;
    }
    
    .pg-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .pg-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;
    }
    
    .verified-badge {
      position: absolute;
      top: 50px;
      right: 15px;
      background: var(--secondary);
      color: white;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.7rem;
      font-weight: 600;
    }
    
    .featured-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #ffd700;
      color: #fff;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.7rem;
      font-weight: 600;
    }
    
    .pg-content {
      padding: 20px;
    }
    
    .pg-price {
      font-weight: 800;
      color: var(--primary);
      font-size: 1.4rem;
      margin-bottom: 5px;
    }
    
    .pg-title {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 1.2rem;
    }
    
    .pg-address {
      color: var(--light-text);
      font-size: 0.9rem;
      margin-bottom: 15px;
    }
    
    .pg-features {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 15px;
    }
    
    .pg-feature {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.85rem;
      color: var(--light-text);
    }
    
    .pg-description {
      color: var(--light-text);
      font-size: 0.9rem;
      margin-bottom: 15px;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .pg-actions {
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #eee;
      padding-top: 15px;
    }
    
    .btn-contact {
      background: var(--primary);
      color: white;
      border: none;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 0.9rem;
      transition: var(--transition);
    }
    
    .btn-contact:hover {
      background: var(--primary-dark);
    }
    
    .btn-save {
      background: transparent;
      border: 1px solid #ddd;
      color: var(--light-text);
      padding: 8px 15px;
      border-radius: 30px;
      font-size: 0.9rem;
      transition: var(--transition);
    }
    
    .btn-save:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    
    /* Load More Button */
    .load-more {
      text-align: center;
      margin: 30px 0;
    }
    
    .btn-load-more {
      background: white;
      color: var(--primary);
      border: 2px solid var(--primary);
      padding: 10px 30px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 1rem;
      transition: var(--transition);
    }
    
    .btn-load-more:hover {
      background: var(--primary);
      color: white;
    }
    
    /* Requirement Modal */
    .modal-content {
      border-radius: 16px;
      overflow: hidden;
    }
    
    .modal-header {
      background: var(--primary);
      color: white;
    }
    
    .modal-title {
      font-weight: 800;
    }
    
    .form-label {
      font-weight: 600;
      margin-bottom: 5px;
    }
    
    .form-control, .form-select {
      border-radius: 8px;
      padding: 10px 15px;
      border: 1px solid #ddd;
      transition: var(--transition);
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(198, 40, 40, 0.25);
    }
    
    .btn-submit {
      background: var(--primary);
      color: white;
      border: none;
      padding: 12px;
      border-radius: 30px;
      font-weight: 700;
      width: 100%;
      transition: var(--transition);
    }
    
    .btn-submit:hover {
      background: var(--primary-dark);
    }
    
    /* 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);
    }
    
    /* No Results Message */
    .no-results {
      text-align: center;
      padding: 60px 20px;
      color: var(--light-text);
    }
    
    .no-results i {
      font-size: 4rem;
      margin-bottom: 20px;
      color: #ddd;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-header {
        margin: 15px;
        padding: 15px;
      }
      
      .filter-section {
        margin: 0 15px 15px;
        padding: 15px;
      }
      
      .pg-listings {
        padding: 0 15px;
      }
      
      .pg-image {
        height: 180px;
      }
      
      .btn-share-requirement {
        width: 75%;
        text-align: center;
        justify-content: center;
      }
      
      .header-icon-btn {
        width: 36px;
        height: 36px;
      }
      
      .header-actions {
        gap: 8px;
      }
      
      .pg-features {
        gap: 8px;
      }
      
      .pg-feature {
        font-size: 0.9rem;
      }
    }
  
