/* ==============================
   PARTNER / PROMOTION SECTION
   ============================== */

.partner-section {
  background: #c9a84c;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.partner-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.08);
}

.partner-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 30px solid rgba(255, 255, 255, 0.08);
}

.partner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.partner-text {
  flex: 1;
}

.partner-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.partner-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.partner-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

.partner-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.partner-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.partner-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-contact span {
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.partner-contact span i {
  color: #0f2a3c;
}

.partner-contact span a {
  color: #fff;
  text-decoration: none;
}

.partner-contact span a:hover {
  text-decoration: underline;
}

.btn-partner {
  display: inline-block;
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-partner-primary {
  background: #0f2a3c;
  color: #fff;
  border: 2px solid #0f2a3c;
}

.btn-partner-primary:hover {
  background: #1a3d52;
  border-color: #1a3d52;
  color: #fff;
}

.btn-partner-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-partner-outline:hover {
  background: #fff;
  color: #c9a84c;
}

@media (max-width: 991px) {
  .partner-content {
    flex-direction: column;
    text-align: center;
  }
  .partner-title {
    font-size: 26px;
  }
  .partner-desc {
    max-width: 100%;
  }
  .partner-right {
    align-items: center;
  }
  .partner-actions {
    justify-content: center;
  }
  .partner-contact {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .partner-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-partner {
    text-align: center;
  }
  .partner-contact {
    flex-direction: column;
    gap: 8px;
  }
}
