/* =========================================================
   REAL ESTATE – ULTRA MODERN / LUXURY LAW FIRM STYLE
   SINGLE FILE – DROP-IN READY
   ========================================================= */

/* ===============================
   HERO SECTION
   =============================== */

   .realestate2-hero {
    width: 100%;
    height: 100vh;
    background:
      radial-gradient(800px 400px at 50% 20%, rgba(184,151,106,0.25), transparent),
      url('../images/commercial.jpeg') center / cover no-repeat;
    position: relative;
    border-bottom: 6px solid #bb966a;
  }
  
  .realestate2-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.85)
    );
  }
  
  .realestate2-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .realestate2-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);
  }
  
  .realestate2-hero-overlay h1::after {
    content: '';
    display: block;
    width: 110px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8976a, transparent);
    margin: 26px auto 0;
  }
  
  



















/* IMAGE CARD */
.commercial-image-card {
  position: relative;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 50px 140px rgba(0,0,0,0.8);
}

.commercial-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.85)
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.image-overlay span {
  font-size: 18px;
  font-weight: 700;
  color: #e6d2a3;
  letter-spacing: 1px;
}

/* ICONS */
.icon-gold {
  background:white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 8px;
}

/* LIST ICON VARIANT */
.gold-list.with-icons li {
  padding-left: 30px;
}

.gold-list.with-icons li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #ffffff;
}

/* DIVIDERS */
.gold-divider {
  height: 3px;
  width: 90px;
  background: linear-gradient(90deg, #e1c07a, #b8976a);
  border: none;
  margin: 24px 0;
}

.soft-divider {
  height: 1px;
  background: rgba(184,151,106,0.4);
  border: none;
  margin: 28px 0;
}

  /* ===============================
   COMMERCIAL REAL ESTATE – PREMIUM
   =============================== */

.commercial-re-section {
    padding: 160px 0;
    background:
     white;
    font-family: 'Poppins', sans-serif;
    color: #eaeaea;
  }
  
  .glass-card {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 60px 70px;
    border-radius: 42px;
    background: #152943;
    border: 1px solid rgba(184,151,106,0.35);
    backdrop-filter: blur(22px);
    box-shadow: 0 60px 160px rgba(0,0,0,0.9);
  }
  
  .commercial-header h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 28px;
  }
  
  .glass-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .glass-card p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
  }
  
  .gold-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 28px;
    
  }
  
  .gold-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 12px;
    color: #ffffff;
  }
  
  .gold-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
  }
  
  .commercial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .cta-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 24px;
  }
  
  .btn-gold {
    padding: 16px 42px;
    border-radius: 999px;
    background: white;
    color: #121212;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 25px 80px rgba(184,151,106,0.6);
  }
  
  .btn-outline {
    padding: 16px 42px;
    border-radius: 999px;
    border: 2px solid rgba(184,151,106,0.7);
    color: #f1d596;
    font-weight: 800;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
  }
  
  /* RESPONSIVE */
  @media (max-width: 991px) {
    .commercial-grid {
      grid-template-columns: 1fr;
    }
  
    .glass-card {
      padding: 44px;
    }
  
    .commercial-header h2 {
      font-size: 36px;
    }
  }
  