/* ==============================
   CHANNEL PARTNER PAGE STYLES
   ============================== */

.cp-why-section {
  background: #f2f2f2;
  padding: 80px 0;
}
.cp-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;
}
.cp-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f2a3c;
}
.cp-subtitle {
  color: #888;
  font-size: 15px;
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.7;
}
.cp-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.cp-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.12);
  color: #c9a84c;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.cp-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0f2a3c;
  margin-bottom: 10px;
}
.cp-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== OUR CHANNEL PARTNERS ===== */
.cp-partners-section {
  background: #fff;
  padding: 80px 0;
}
.cp-partner-card {
  text-align: center;
  transition: transform 0.3s ease;
}
.cp-partner-card:hover {
  transform: translateY(-5px);
}
.cp-partner-img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}
.cp-partner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cp-partner-card:hover .cp-partner-img img {
  transform: scale(1.05);
}
.cp-partner-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: #0f2a3c;
  margin-bottom: 3px;
}
.cp-partner-card p {
  color: #888;
  font-size: 13px;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .cp-why-section {
    padding: 50px 0;
  }
  .cp-title {
    font-size: 26px;
  }
  .cp-partners-section {
    padding: 50px 0;
  }
  .cp-partner-img {
    height: 180px;
  }
}
