/* Reviews Section - Full Width */
.rvx {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  width: 100%;
  max-width: 100vw;
}

.rvx > * {
  position: relative;
  z-index: 1;
}

/* Review Panel */
.rvx-panel {
  background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
  border-radius: 16px;
  padding: 40px;
  color: white;
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rvx-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(30, 64, 175, 0.3);
}

.rvx-panel-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.rvx-panel-logo {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
}

/* Review Window/Carousel */
.rvx-window {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.rvx-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rvx-card-img:hover {
  transform: scale(1.05);
}

/* Controls */
.rvx-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.rvx-arrow {
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
  font-size: 18px;
}

.rvx-arrow:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: #3B82F6;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

/* Dots */
.rvx-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.rvx-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rvx-dot.active {
  background: #3B82F6;
  width: 24px;
  border-radius: 4px;
}

/* Wrap */
.rvx-wrap {
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media (min-width: 1600px) {
  .rvx-wrap {
    max-width: 1400px;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .rvx {
    padding: 60px 15px;
  }

  .rvx-wrap {
    padding: 0 10px;
  }

  .rvx-panel {
    padding: 30px 20px;
  }

  .rvx-panel-title {
    font-size: 20px;
  }

  .rvx-controls {
    gap: 12px;
  }
}
