/* Trust Indicators Styles */
.trust-indicators {
  background: linear-gradient(135deg, #ff5c2c 0%, #fc8a5d 100%);
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Light theme variation for about-us and our-services pages */
.trust-indicators-light {
  background: transparent;
  border-bottom: none;
}

.trust-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 92, 44, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.trust-card.compact {
  padding: 15px;
  border-radius: 15px;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 92, 44, 0.25);
  border-color: rgba(255, 255, 255, 0.95);
  background: #ffffff;
}

.trust-icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.trust-card:hover .trust-icon-wrapper {
  transform: scale(1.05) rotate(3deg);
}

.trust-icon-wrapper.rating {
  background: linear-gradient(135deg, #ff5c2c, #ff7043);
  box-shadow: 0 5px 15px rgba(255, 92, 44, 0.3);
}

.trust-icon-wrapper.insured {
  background: linear-gradient(135deg, #fc8a5d, #ff9575);
  box-shadow: 0 5px 15px rgba(252, 138, 93, 0.3);
}

.trust-icon-wrapper.dogs {
  background: linear-gradient(135deg, #ff6e40, #ff8a65);
  box-shadow: 0 5px 15px rgba(255, 110, 64, 0.3);
}

.trust-icon-wrapper.experience {
  background: linear-gradient(135deg, #ff7952, #ff9e80);
  box-shadow: 0 5px 15px rgba(255, 121, 82, 0.3);
}

.trust-icon-wrapper i {
  color: white;
  font-size: 22px;
}

.trust-number {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff5c2c, #fc8a5d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 2px;
}

.trust-stars {
  font-size: 14px;
  line-height: 1;
}

.trust-label {
  font-size: 11px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.trust-sublabel {
  font-size: 12px;
  color: #7f8c8d;
  font-weight: 500;
}

.trust-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff5c2c, #ff7043);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.trust-number[data-animated="true"] {
  animation: countUp 0.8s ease-out;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .trust-indicators {
    padding: 30px 0;
  }
  
  .trust-card {
    margin-bottom: 15px;
    padding: 20px;
  }
  
  .trust-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .trust-icon-wrapper i {
    font-size: 24px;
  }
  
  .trust-number {
    font-size: 26px;
  }
  
  .trust-label {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .trust-card {
    display: flex;
    align-items: center;
    padding: 10px;
  }
  
  .trust-card.compact {
    padding: 8px;
  }
  
  .trust-icon-wrapper {
    margin-bottom: 0;
    margin-right: 10px;
    width: 35px;
    height: 35px;
  }
  
  .trust-icon-wrapper i {
    font-size: 18px;
  }
  
  .trust-content {
    flex: 1;
  }
  
  .trust-number {
    font-size: 18px;
  }
  
  .trust-label {
    font-size: 10px;
  }
  
  .trust-badge {
    display: none;
  }
}