/**
 * Animated Buttons CSS
 * btn-9 style for provider cards
 */

@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

/* Base Button Styles */
.custom-btn {
  width: auto;
  min-width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
  border: none;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
}

/* btn-9 Style - Mavi Gradient Okunabilir */
.btn-9 {
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
  background: linear-gradient(135deg, #4facfe 0%, #667eea 50%, #764ba2 100%);
  background-size: 200% 200%;
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.5);
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.btn-9::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4facfe 0%, #667eea 50%, #764ba2 100%);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-9:after {
  position: absolute;
  content: " ";
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s ease;
  border-radius: 5px;
}

.btn-9:hover {
  background-position: 100% 0;
  color: #ffffff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.7);
  transform: translateY(-2px);
}

.btn-9:hover::before {
  opacity: 1;
  background-position: 100% 0;
}

.btn-9:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.btn-9.btn-lg {
  min-width: 200px;
  height: 50px;
  line-height: 50px;
  font-size: 1.1rem;
  padding: 10px 30px;
}

/* Provider Card Badges */
.provider-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.badge-cheapest {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px 0 rgba(102, 126, 234, 0.4);
}

.badge-popular {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  box-shadow: 0 4px 15px 0 rgba(245, 87, 108, 0.4);
}

.badge-trusted {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  box-shadow: 0 4px 15px 0 rgba(79, 172, 254, 0.4);
}

.badge-new {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  box-shadow: 0 4px 15px 0 rgba(67, 233, 123, 0.4);
}

.badge-premium {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white;
  box-shadow: 0 4px 15px 0 rgba(250, 112, 154, 0.4);
}

