/* 
UNIQUES SACCO - Promotional Slider Styles
Custom carousel for promotions
*/

.promo-slider {
  padding: 100px 0;
  background: #001f3f;
  position: relative;
  overflow: hidden;
  border-bottom: 10px solid #a4c639;
  box-shadow: 0 10px 30px rgba(164, 198, 57, 0.3);
}

.promo-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.promo-item {
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}

.promo-content {
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: all 0.3s;
}

.promo-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.promo-content span {
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #a4c639 0%, #8fb030 100%);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(164, 198, 57, 0.4);
  animation: pulse 2s infinite;
}

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

.promo-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1e1e1e;
  margin: 25px 0;
  line-height: 1.2;
}

.promo-content h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #a4c639 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-content p {
  font-size: 17px;
  color: #555;
  line-height: 30px;
  margin-bottom: 35px;
  font-weight: 400;
}

.promo-content .filled-button {
  background: linear-gradient(135deg, #a4c639 0%, #8fb030 100%);
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(164, 198, 57, 0.4);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-content .filled-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(164, 198, 57, 0.6);
}

.promo-item img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.promo-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.owl-promo .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #a4c639 !important;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.owl-promo .owl-nav button:hover {
  background: #fff !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.owl-promo .owl-nav .owl-prev {
  left: 20px;
}

.owl-promo .owl-nav .owl-next {
  right: 20px;
}

.owl-promo .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.owl-promo .owl-dot {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.owl-promo .owl-dot.active {
  background: #fff;
  width: 40px;
  border-radius: 7px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .promo-content h2 {
    font-size: 32px;
  }
  .promo-item {
    padding: 40px 20px;
  }
}
