/* ==============================
   ABOUT US PAGE STYLES
   ============================== */

/* ===== PAGE BANNER ===== */
.about-banner {
  position: relative;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600') center center / cover no-repeat;
  min-height: 277px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0 40px;
}
.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.about-banner .container {
  z-index: 2;
}
.about-banner-title {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.about-breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}
.about-breadcrumb .breadcrumb-item a {
  color: #c9a84c;
  text-decoration: none;
  font-size: 14px;
}
.about-breadcrumb .breadcrumb-item.active {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* ===== BECOME OUR BROKER SECTION ===== */
.broker-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600') center center / cover no-repeat;
  padding: 90px 0;
  overflow: hidden;
}
.broker-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}
.broker-section .container {
  z-index: 2;
}
.broker-label {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: #c9a84c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.broker-title {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}
.broker-desc {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.broker-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}
.broker-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 200px;
}
.broker-benefit i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(201, 168, 76, 0.12);
  color: #c9a84c;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.broker-benefit h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}
.broker-benefit p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 0;
}
.broker-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn-broker-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #c9a84c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-broker-primary:hover {
  background: #b89640;
  color: #fff;
}
.btn-broker-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-broker-outline:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}
.broker-img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* ===== OUR TEAM SECTION ===== */
.team-section {
  background: #f2f2f2;
  padding: 80px 0;
}
.team-label {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: #c9a84c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.team-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f2a3c;
}
.team-subtitle {
  color: #888;
  font-size: 15px;
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.7;
}
.team-card {
  text-align: center;
}
.team-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}
.team-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}
.team-name {
  font-size: 20px;
  font-weight: 700;
  color: #0f2a3c;
  margin-bottom: 4px;
}
.team-role {
  font-size: 14px;
  color: #888;
  margin-bottom: 0;
}
.team-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}
.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}
.team-social a:hover {
  background: #c9a84c;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .broker-title {
    font-size: 28px;
  }
  .broker-benefits {
    flex-direction: column;
  }
  .team-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about-banner {
    min-height: 179px;
    padding: 60px 0 30px;
  }
  .about-banner-title {
    font-size: 30px;
  }
  .broker-section {
    padding: 60px 0;
  }
  .broker-title {
    font-size: 24px;
  }
  .broker-actions {
    flex-direction: column;
  }
  .btn-broker-primary,
  .btn-broker-outline {
    text-align: center;
    justify-content: center;
  }
}
