



/* ===============================
   BASE SECTION – CARD CANVAS
   =============================== */
   .estate-section {
    position: relative;
    background:
      rgb(255, 255, 255);
    padding: 140px 0;
    color: #e6e6e6;
    font-family: 'Poppins', sans-serif;
  }
  
  /* faint texture */
  .estate-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.25;
    pointer-events: none;
  }
  
  /* ===============================
     CENTERED HIGHLIGHT – HERO CARD
     =============================== */
  .estate-highlight {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 40px;
    margin-bottom: 80px;
    background:
      linear-gradient(#152943, #152943);
    border-radius: 60px;
   
 
  }
  
  
  
  .highlight-heading {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #fff;
  }
  
  .highlight-subtext {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
  }
  
  /* ===============================
     CARD STACK
     =============================== */
  .estate-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  
  /* ===============================
     MAIN CARDS – TRUE CARD LOOK
     =============================== */
  .estate-card {
    position: relative;
    border-radius: 32px;
    padding: 42px;
    background:
      linear-gradient(#152943, #152943);
    border: 1px solid rgba(184,151,106,0.25);
   
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  
 
  
  .estate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 55px 140px rgba(0,0,0,0.95);
  }
  
  /* TEXT POLISH */
  .estate-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #e2e2e2;
  }
  
  /* ===============================
     IMAGE CARD – EMBEDDED
     =============================== */
  .card-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
   
  }
  
  .card-image img {
    width: 100%;
    display: block;
    filter: contrast(1.05) brightness(0.95);
  }
  
  .image-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: 
#1c3659;
 
   
    padding: 14px 22px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.4px;
    text-align: center;
  }
  
  /* ===============================
     CTA BUTTONS – FIXED
     =============================== */
  .contact-inline {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
  }
  
  /* PRIMARY CTA */
  .contact-pill {
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d8b77a, #b8976a);
    color: #111;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow:
      0 12px 35px rgba(184,151,106,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.18);
    transition: all 0.3s ease;
  }
  
  .contact-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(184,151,106,0.65);
  }
  
  /* SECONDARY CTA */
  .contact-pill.outline {
    background: rgba(184,151,106,0.08);
    border: 1px solid rgba(184,151,106,0.6);
    color: #d8b77a;
    box-shadow: none;
  }
  
  .contact-pill.outline:hover {
    background: rgba(184,151,106,0.18);
  }
  
  /* ===============================
     RESPONSIVE
     =============================== */
  @media (max-width: 991px) {
    .highlight-heading {
      font-size: 34px;
    }
  
    .highlight-subtext {
      font-size: 18px;
    }
  
    .estate-card {
      padding: 32px;
    }
  
    .contact-inline {
      flex-direction: column;
    }
  
    .contact-pill {
      justify-content: center;
    }
  }
  