/* =========================================================
   REAL ESTATE – ULTRA MODERN / LUXURY LAW FIRM STYLE
   SINGLE FILE – DROP-IN READY
   ========================================================= */

/* ===============================
   HERO SECTION
   =============================== */

   .realestate3-hero {
    width: 100%;
    height: 100vh;
    background:
      radial-gradient(800px 400px at 50% 20%, rgba(184,151,106,0.25), transparent),
      url('../images/Sale-and-Purchase.jpg') center / cover no-repeat;
    position: relative;
    border-bottom: 6px solid #bb966a;
  }
  
  .realestate3-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.85)
    );
  }
  
  .realestate3-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .realestate3-hero-overlay h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-shadow: 0 10px 35px rgba(0,0,0,0.75);
  }
  
  .realestate3-hero-overlay h1::after {
    content: '';
    display: block;
    width: 110px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8976a, transparent);
    margin: 26px auto 0;
  }
  
  


/* ===============================
   REAL ESTATE SALES – NEW LAYOUT
   =============================== */

   .realestate-sales-section {
    padding: 140px 0;
    background:white;
    color: #eaeaea;
    font-family: 'Source Sans 3', sans-serif;
  }
  
  .sales-wrapper {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 70px;
    align-items: center;
  }
  
  /* LEFT VISUAL */
  .sales-visual .image-frame {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0,0,0,0.8);
  }
  
  .sales-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 24px;
    background: linear-gradient(90deg, rgba(0,0,0,0.85), transparent);
    color: #000000;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* CONTENT */
  .sales-content h2 {
    color: #000000;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 22px;
  }
  
  .sales-content h2 i {
    color: #000000 !important;
    margin-right: 10px;
  }
  
  .content-block p {
    color: #000000;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
  }
  
  .cta-inline {
    margin: 24px 0 30px;
    font-weight: 700;
    color: #e1c07a;
  }
  
  .cta-inline a {
    color: #e1c07a;
    text-decoration: none;
  }
  
  .cta-inline span {
    margin: 0 10px;
    opacity: 0.4;
  }
  
  .gold-rule {
    color: #000000;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    margin: 40px 0;
  }
  
  .sales-content h3 {
    font-size: 28px;
    margin-bottom: 22px;
  }
  
  .sales-content h3 i {
    color: #000000;
    margin-right: 8px;
  }
  
  /* STRATEGY LIST */
  .strategy-list {
    color: #000000;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .strategy-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 16px;
  }
  
  .strategy-list i {
    color: #000000;
    margin-top: 4px;
  }
  
  /* LEARN MORE */
  .learn-more {
    color: #000000;
    margin-top: 30px;
  }
  
  .learn-more a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
  }
  
  .learn-more i {
    margin-left: 6px;
  }
  
  /* CTA */
  .cta-footer {
    margin-top: 40px;
  }
  
  .gold-btn {
    display: inline-block;
    padding: 16px 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e1c07a, #b8976a);
    color: #121212;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(184,151,106,0.5);
  }
  
  /* RESPONSIVE */
  @media (max-width: 991px) {
    .sales-wrapper {
      grid-template-columns: 1fr;
    }
  
    .sales-content h2 {
      font-size: 34px;
    }
  }
  




  /* LEFT IMAGE COLLAGE */
.sales-visual {
    height: 100%;
  }
  
  .image-collage {
    height: 100%;
    display: grid;
    grid-template-rows: 1.2fr 1fr 0.8fr;
    gap: 18px;
  }
  
  .collage-img {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,0.75);
  }
  
  .collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Visual hierarchy */
  .collage-img.large {
    border-radius: 32px;
  }
  
  .collage-img.medium {
    opacity: 0.95;
  }
  
  .collage-img.small {
    opacity: 0.9;
  }
  
  /* Subtle glass overlay */
  .collage-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.55)
    );
    pointer-events: none;
  }
  