/* ==============================
   INVESTMENT PROMO BANNER
   ============================== */

.invest-promo {
  background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600') center/cover no-repeat;
  position: relative;
  padding: 80px 0;
}

.invest-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 42, 60, 0.92) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.invest-promo .container {
  position: relative;
  z-index: 1;
}

.invest-promo-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.invest-promo-left {
  flex: 1;
}

.invest-promo-tag {
  display: inline-block;
  background: #c9a84c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.invest-promo-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.invest-promo-title span {
  color: #c9a84c;
}

.invest-promo-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 550px;
}

.invest-highlights {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.invest-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
}

.invest-highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.invest-highlight-icon i {
  color: #c9a84c;
  font-size: 18px;
}

.invest-highlight-text h6 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}

.invest-highlight-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.btn-invest {
  display: inline-block;
  background: #c9a84c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 15px;
}

.btn-invest:hover {
  background: #b8953d;
  color: #fff;
}

.btn-invest-outline {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-invest-outline:hover {
  border-color: #fff;
  color: #fff;
}

.invest-promo-right {
  flex: 0 0 340px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px 30px;
  backdrop-filter: blur(10px);
}

.invest-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.invest-stat {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.invest-stat:last-child {
  border-bottom: none;
}

.invest-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.invest-stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #c9a84c;
}

@media (max-width: 991px) {
  .invest-promo-content {
    flex-direction: column;
  }
  .invest-promo-title {
    font-size: 28px;
  }
  .invest-promo-right {
    flex: none;
    width: 100%;
  }
  .invest-highlights {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .invest-promo {
    padding: 50px 0;
  }
}
