/* ===============================
   BUSINESS HERO (REFINED)
   =============================== */

   .shareholder-hero {
    width: 100%;
    height: 100vh;
    background: url('../images/partner-1024x536.webp') center / cover no-repeat;
    position: relative;
    border-bottom: 5px solid #bb966a;
}

.shareholder-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.75)
    );
}

.shareholder-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.shareholder-hero-overlay h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.6px;
}

.shareholder-hero-overlay h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8976a, transparent);
    margin: 22px auto 0;
    border-radius: 2px;
}

/* ===============================
   HERO RESPONSIVE
   =============================== */

@media (max-width: 768px) {
    .shareholder-hero {
        height: 320px;
    }

    .shareholder-hero-overlay h1 {
        font-size: 34px;
    }
}







/* ================= SHAREHOLDER / MEMBER / PARTNER DISPUTES ================= */
.disputes-section {
    background: #f9f9f9;
    padding: 100px 0;
    position: relative;
  }
  
  /* Glass card */
  .disputes-card.glass-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .disputes-card.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  }
  
  .disputes-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }
  
  .disputes-divider {
    width: 80px;
    height: 3px;
    background: #000000;
    border: none;
    margin-bottom: 20px;
  }
  
  .disputes-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  

  .cta-icon{
    color: white !important;
  }

  .disputes-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Contact buttons */
  .disputes-contact-wrapper {
    text-align: center;
    margin: 25px 0;
  }
  
  .disputes-contact-line {
    border: none;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 10px 0;
  }
  
  .disputes-contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .disputes-contact-btn {
    background: #152943;
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }
  
  .disputes-contact-btn:hover {
    background: linear-gradient(135deg, #b8976a, #b8976a);
    transform: translateY(-3px);
  }
  
  /* CTA Links */
  .disputes-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-link.btn-glass {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 15px;
    border: none;
    background: #152943;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .cta-link.btn-glass i {
    color: #b8976a;
    font-size: 18px;
  }
  
  .cta-link.btn-glass:hover {
    background: #275276;
    color: #fff;
    transform: translateX(5px);
    text-decoration: none;
  }
  
  /* Footer contact text */
  .disputes-footer-contact {
    text-align: center;
    font-size: 16px;
  }
  
  .disputes-footer-contact a {
    color: #b8976a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .disputes-footer-contact a:hover {
    color: #ffd36d;
  }
  
  /* Image */
  .disputes-image {
    background: url('/images/lawimg.png') center/cover no-repeat;
    
    min-height: 800px;

  }
  

  
  /* Responsive */
  @media (max-width: 991px) {
    .disputes-card {
      padding: 40px 30px;
    }
  
    .disputes-title {
      font-size: 28px;
    }
  
    .disputes-text {
      font-size: 15px;
    }
  
    .disputes-contact-btn {
      width: 100%;
      justify-content: center;
    }
  
    .disputes-image {
      margin-top: 30px;
      min-height: 300px;
    }
  }
  