/* --- extracted style block 1 from Post.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;
    }
    
    * {
    margin: 0;
    padding: 0;
    border: none;
    cursor: ;
    box-sizing: border-box;
    text-decoration: none;
    
}
    
    body {
      font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; 
      background:#fff;
      color: var(--dark-text);
      max-width: 1200px;
      margin: 0 auto;
      border: none;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }
    
    a{
        all: unset;
    }
    
    
    
    /* 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);
    }
    
    
    .nav-icon {
      font-size: 1.2rem;
      color: #444;
      position: relative;
    }
    
    
    /* Back button */
    .btn-back {
      background: transparent;
      color: var(--dark-text);
      border: none;
      padding: 8px 0;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
    }
    
    .btn-back:hover {
      color: var(--primary);
    }
    
    
    .btn-whatsapp {
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      border: none;
      padding: 10px 16px;
      border-radius: 30px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    }
    
    .btn-whatsapp:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    
    .btn-help {
      background: var(--muted);
      color: var(--dark-text);
      border: none;
      width: auto;
      height: auto;
      padding: 12px 12px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    
    .btn-help:hover {
      background: var(--primary-light);
      color: white;
      transform: scale(1.05);
    }
    
    .help-text {
      display: none;
      font-size: 0.85rem;
      margin-left: 5px;
    }
    
    
    /* Property type grid - initially hidden */
    .property-type-grid {
      padding: 20px 15px;
      display: none; /* Hidden by default */
    }
    
    .property-type-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      border-radius: 16px;
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--shadow);
      transition: var(--transition);
      cursor: pointer;
      text-align: center;
      padding: 20px 15px;
    }
    
    .property-type-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
      background: var(--muted);
    }
    
    .property-type-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 1.8rem;
      color: white;
      transition: var(--transition);
    }
    
    .property-type-card:hover .property-type-icon {
      background: var(--primary);
      transform: scale(1.1);
    }
    
    .property-type-label {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 8px;
    }
    
    .property-type-desc {
      color: var(--light-text);
      font-size: 0.85rem;
      line-height: 1.4;
    }
    
    /* Free Listing Promo */
    .free-listing-promo {
      background: linear-gradient(135deg, #c62828, #ff5f52);
      border-radius: 16px;
      margin: 25px 15px;
      padding: 25px;
      color: white;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    
    .free-listing-promo::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -20%;
      width: 200px;
      height: 200px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
    }
    
    .free-listing-promo::after {
      content: "";
      position: absolute;
      bottom: -30%;
      right: 10%;
      width: 150px;
      height: 150px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
    }
    
    .promo-content {
      position: relative;
      z-index: 2;
    }
    
    .promo-title {
      font-weight: 800;
      font-size: 1.4rem;
      margin-bottom: 10px;
    }
    
    .promo-subtitle {
      font-size: 1rem;
      margin-bottom: 20px;
      opacity: 0.9;
    }
    
    .promo-features {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 25px;
    }
    
    .promo-feature {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
    }
    
    .promo-feature i {
      background: rgba(255,255,255,0.2);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }
    
    .promo-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: white;
      color: var(--primary);
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 700;
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
    }
    
    .promo-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Benefits Section */
    .benefits-section {
      padding: 20px 15px;
    }
    
    .benefit-card {
      text-align: center;
      padding: 20px 15px;
      border-radius: 12px;
      transition: var(--transition);
    }
    
    .benefit-card:hover {
      background: var(--muted);
    }
    
    .benefit-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 1.5rem;
      color: var(--primary);
      transition: var(--transition);
    }
    
    .benefit-card:hover .benefit-icon {
      background: var(--primary);
      color: white;
      transform: scale(1.1);
    }
    
    .benefit-title {
      font-weight: 700;
      margin-bottom: 8px;
    }
    
    .benefit-desc {
      color: var(--light-text);
      font-size: 0.85rem;
    }
    
    /* Modal Styles */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: ;
    }
    
    .modal-content {
      background: white;
      border-radius: 20px;
      width: 100%;
      max-width: 800px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      animation: modalFadeIn 0.3s ease;
    }
    
    @keyframes modalFadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .modal-header {
      padding: 20px;
      padding-top: 30px;
      display: flex;
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      justify-content: space-between;
      align-items: center;
    }
    
    .modal-title {
      font-weight: 800;
      color: var(--dark-text);
      margin: 0;
    }
    
    .modal-close {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--light-text);
      cursor: pointer;
      transition: var(--transition);
    }
    
    .modal-close:hover {
      color: var(--primary);
      transform: scale(1.1);
    }
    
    .modal-body {
      padding: 25px;
    }
    
    
    /* Responsive adjustments */
    @media (max-width: 576px) {
      body {
        box-shadow: none;
      }
      
      .site-header {
        padding: 10px 15px;
      }
      
      .brand {
        font-size: 1.4rem;
      }
      
      .property-type-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
      
      .property-type-label {
        font-size: 0.95rem;
      }
      
      .free-listing-promo {
        padding: 20px;
      }
      
      .promo-title {
        font-size: 1.2rem;
      }
      
      .promo-features {
        flex-direction: column;
        gap: 10px;
      }
      
      .modal-content {
        max-height: calc(100vh - 20px);
      }
    }
  
