 .manaf-quotes {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--manaf-primary-darkest) 0%, var(--manaf-primary-darker) 100%);
  position: relative;
  overflow: hidden;
}

.manaf-quotes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c1272d' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.manaf-quotes .manaf-container {
  position: relative;
  z-index: 2;
}

.manaf-quotes-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--manaf-white);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.manaf-quotes-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 4px;
  background-color: var(--manaf-primary);
  border-radius: 2px;
}

.manaf-quotes-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.manaf-quote {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--manaf-radius-lg);
  padding: 50px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.manaf-quote.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.manaf-quote-text {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.6;
  color: var(--manaf-white);
  margin-bottom: 30px;
  position: relative;
  font-weight: 500;
  font-style: italic;
}

.manaf-quote-text::before,
.manaf-quote-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--manaf-primary);
  opacity: 0.5;
  position: absolute;
  font-family: serif;
}

.manaf-quote-text::before {
  top: -20px;
  right: -30px;
}

.manaf-quote-text::after {
  bottom: -40px;
  left: -30px;
}

.manaf-quote-author {
  font-size: 1.3rem;
  color: var(--manaf-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.manaf-quote-source {
  font-size: 0.9rem;
  color: var(--manaf-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.manaf-quote-source a {
  color: var(--manaf-gray);
  transition: color var(--manaf-transition-fast);
}

.manaf-quote-source a:hover {
  color: var(--manaf-primary);
}

.manaf-quote-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(193, 39, 45, 0.3);
  border-radius: var(--manaf-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--manaf-white);
  cursor: pointer;
  transition: all var(--manaf-transition-normal);
  z-index: 3;
  border: none;
}

.manaf-quote-nav:hover {
  background-color: var(--manaf-primary);
  transform: translateY(-50%) scale(1.1);
}

.manaf-quote-prev {
  left: -10px;
}

.manaf-quote-next {
  right: -10px;
}

.manaf-quote-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.manaf-quote-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--manaf-radius-full);
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--manaf-transition-fast);
}

.manaf-quote-dot.active {
  background-color: var(--manaf-primary);
  transform: scale(1.2);
}
 
@media (max-width: 768px) {
  .manaf-quotes {
    padding: 70px 0;
  }
  
  .manaf-quote {
    padding: 30px 20px;
  }
  
  .manaf-quote-text::before,
  .manaf-quote-text::after {
    font-size: 2rem;
  }
  
  .manaf-quote-text::before {
    right: -15px;
    top: -15px;
  }
  
  .manaf-quote-text::after {
    left: -15px;
    bottom: -30px;
  }
  
  .manaf-quote-nav {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}