/* dfcustombanner - Trust Banner */

.dfbanner-section {
  clear: both;
  width: 100%;
  float: none;
  box-sizing: border-box;
  padding: 50px 20px 0;
}

.dfbanner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
}

/* Title */
.dfbanner-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: inherit;
  margin-bottom: 40px;
  line-height: 1.4;
}

/* Badges row */
.dfbanner-badges {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Single badge */
.dfbanner-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 220px;
  max-width: 320px;
}

/* Badge image */
.dfbanner-badge-img-wrap {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
}

.dfbanner-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Badge caption */
.dfbanner-badge-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: inherit;
}

.dfbanner-badge-title {
  font-size: 15px;
  font-weight: 700;
  color: inherit;
  line-height: 1.3;
}

.dfbanner-badge-text {
  font-size: 13px;
  color: inherit;
  opacity: 0.85;
  line-height: 1.4;
}

/* Footer bar */
.dfbanner-footer {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 18px 20px;
  background: rgba(0,0,0,0.15);
}

.dfbanner-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.dfbanner-footer-text {
  font-size: 15px;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dfbanner-footer-icon {
  color: #c9a84c;
  font-size: 20px;
  line-height: 1;
}

.dfbanner-footer-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1.5px solid currentColor;
  border-radius: 30px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.dfbanner-footer-btn:hover {
  background: rgba(255,255,255,0.15);
  color: inherit;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .dfbanner-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .dfbanner-badge {
    max-width: 100%;
  }

  .dfbanner-title {
    font-size: 20px;
  }

  .dfbanner-footer-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
