/* Note: This file contains SCSS syntax. Use a preprocessor or VS Code extension to compile to CSS. */
:root {
  --testimonial-primary: #667eea;
  --testimonial-secondary: #764ba2;
  --testimonial-accent: #f093fb;
  --testimonial-dark: #0f172a;
  --testimonial-light: #f8fafc;
  --testimonial-border: #e2e8f0;
  --testimonial-shadow: rgba(0, 0, 0, 0.1);
}

/* ========================================
   TESTIMONIALS VARIETY PACK - MAIN STYLES
   25+ Modern Testimonial Layout Variations
   ======================================== */
/* Common Section Title Styling */
.testimonial-section-title {
  color: #94a3b8;
  font-size: 1.5rem;
  margin: 3rem 0 1.5rem 0;
  border-bottom: 2px solid #334155;
  padding-bottom: 0.75rem;
  font-weight: 600;
}

/* ========================================
   1. CLASSIC CARD GRID
   ======================================== */
.testimonial-grid-classic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card.classic {
  background: #1e293b;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card.classic .stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.testimonial-card.classic .quote {
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card.classic .author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card.classic .author-info .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}
.testimonial-card.classic .author-info h4 {
  color: #f1f5f9;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.testimonial-card.classic .author-info p {
  color: #94a3b8;
  margin: 0;
  font-size: 0.875rem;
}
.testimonial-card.classic:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.3);
}

/* ========================================
   2. MODERN GLASSMORPHISM
   ======================================== */
.testimonial-grid-glass {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.testimonial-card.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}
.testimonial-card.glass .quote-icon {
  font-size: 4rem;
  color: rgba(102, 126, 234, 0.3);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}
.testimonial-card.glass .quote {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-card.glass .author-glass {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.testimonial-card.glass .author-glass strong {
  color: #f1f5f9;
  font-size: 1rem;
}
.testimonial-card.glass .author-glass span {
  color: #94a3b8;
  font-size: 0.875rem;
}
.testimonial-card.glass .stars-modern {
  font-size: 1.1rem;
}
.testimonial-card.glass:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

/* ========================================
   3. HORIZONTAL SCROLL MARQUEE
   ======================================== */
.testimonial-marquee-wrapper {
  overflow: hidden;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.testimonial-marquee {
  display: flex;
  gap: 2rem;
  animation: scroll-horizontal 30s linear infinite;
}
.testimonial-marquee:hover {
  animation-play-state: paused;
}

.testimonial-marquee-item {
  flex-shrink: 0;
  background: #1e293b;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  min-width: 300px;
  border: 1px solid #334155;
}
.testimonial-marquee-item p {
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
  font-size: 1.05rem;
}
.testimonial-marquee-item span {
  color: #94a3b8;
  font-size: 0.875rem;
  font-style: italic;
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ========================================
   4. MASONRY GRID LAYOUT
   ======================================== */
.testimonial-masonry {
  column-count: 3;
  column-gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .testimonial-masonry {
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .testimonial-masonry {
    column-count: 1;
  }
}

.testimonial-masonry-item {
  background: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}
.testimonial-masonry-item.long {
  background: linear-gradient(135deg, #1e293b, #334155);
}
.testimonial-masonry-item .rating {
  color: #fbbf24;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.testimonial-masonry-item p {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.testimonial-masonry-item .author-simple {
  color: #94a3b8;
  font-size: 0.875rem;
  font-style: italic;
}
.testimonial-masonry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

/* ========================================
   5. CAROUSEL SLIDER
   ======================================== */
.testimonial-carousel-container {
  margin-bottom: 3rem;
  position: relative;
}

.testimonial-carousel {
  position: relative;
  min-height: 350px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 20px;
  padding: 3rem;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3rem;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.slide-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.slide-content .quote-large {
  font-size: 5rem;
  color: rgba(102, 126, 234, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.slide-content .quote-text {
  color: #f1f5f9;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.author-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.author-carousel .avatar-large {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}
.author-carousel h3 {
  color: #f1f5f9;
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
}
.author-carousel p {
  color: #94a3b8;
  margin: 0 0 0.5rem 0;
}
.author-carousel .stars {
  font-size: 1.2rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dots .dot.active {
  background: #667eea;
  width: 32px;
  border-radius: 6px;
}
.carousel-dots .dot:hover {
  background: #667eea;
}

/* ========================================
   6. VERTICAL TIMELINE
   ======================================== */
.testimonial-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding-left: 120px;
}
.testimonial-timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #667eea, #764ba2);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #667eea;
  box-shadow: 0 0 0 4px #0f172a, 0 0 0 6px #667eea;
}
.timeline-item .timeline-date {
  position: absolute;
  left: -110px;
  top: 5px;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 600;
}
.timeline-item .timeline-content {
  background: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 3px solid #667eea;
}
.timeline-item .timeline-content .stars-mini {
  color: #fbbf24;
  margin-bottom: 0.5rem;
}
.timeline-item .timeline-content p {
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
  line-height: 1.6;
}
.timeline-item .timeline-content .author-timeline {
  color: #94a3b8;
  font-size: 0.875rem;
  font-style: italic;
}

/* ========================================
   7. BENTO GRID MODERN
   ======================================== */
.testimonial-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .testimonial-bento {
    grid-template-columns: 1fr;
  }
}

.bento-item {
  background: #1e293b;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #334155;
  transition: all 0.3s ease;
  position: relative;
}
.bento-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 768px) {
  .bento-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.bento-item.wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .bento-item.wide {
    grid-column: span 1;
  }
}
.bento-item .featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.bento-item .quote-bento {
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.bento-item .author-bento {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bento-item .author-bento .avatar-bento {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}
.bento-item .author-bento h4 {
  color: #f1f5f9;
  margin: 0;
  font-size: 1rem;
}
.bento-item .author-bento p {
  color: #94a3b8;
  margin: 0;
  font-size: 0.875rem;
}
.bento-item .author-bento .stars-sm {
  font-size: 0.875rem;
}
.bento-item .author-bento-sm {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bento-item .author-bento-sm .name {
  color: #f1f5f9;
  font-weight: 600;
}
.bento-item .author-bento-sm .stars-xs {
  font-size: 0.875rem;
}
.bento-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  border-color: #667eea;
}

/* ========================================
   8. MINIMAL CLEAN DESIGN
   ======================================== */
.testimonial-minimal {
  max-width: 900px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.minimal-item {
  border-left: 3px solid #667eea;
  padding-left: 2rem;
  transition: all 0.3s ease;
}
.minimal-item .quote-minimal {
  color: #f1f5f9;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.minimal-item .author-minimal {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.minimal-item .author-minimal .name-minimal {
  color: #e2e8f0;
  font-weight: 600;
}
.minimal-item .author-minimal .role-minimal {
  color: #94a3b8;
  font-size: 0.875rem;
}
.minimal-item:hover {
  border-left-color: #764ba2;
  padding-left: 2.5rem;
}

/* ========================================
   9. 3D CARD STACK
   ======================================== */
.testimonial-stack-3d {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  margin-bottom: 3rem;
  perspective: 1000px;
  position: relative;
}

.stack-card {
  position: absolute;
  width: 350px;
  transform: translateY(calc(var(--index) * 20px)) translateZ(calc(var(--index) * -50px)) rotateX(calc(var(--index) * -5deg));
  transition: all 0.5s ease;
  z-index: calc(10 - var(--index));
}
.stack-card:hover {
  transform: translateY(calc(var(--index) * 20px - 20px)) translateZ(calc(var(--index) * -50px + 50px)) rotateX(0deg);
  z-index: 20;
}

.card-front {
  background: linear-gradient(135deg, #1e293b, #334155);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #475569;
}
.card-front .stars {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.card-front .quote-stack {
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.card-front .author-stack strong {
  color: #f1f5f9;
  display: block;
  margin-bottom: 0.25rem;
}
.card-front .author-stack span {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* ========================================
   10. SPLIT SCREEN DUAL
   ======================================== */
.testimonial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #1e293b;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .testimonial-split {
    grid-template-columns: 1fr;
  }
}

.split-left {
  padding: 3rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.split-left .quote-split {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.split-left .text-split {
  color: white;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.split-left .author-split h4 {
  color: white;
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
}
.split-left .author-split p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.split-right {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-right .stars-split {
  font-size: 2rem;
  color: #fbbf24;
  margin-bottom: 2rem;
}
.split-right .highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.split-right .highlights .highlight-item {
  color: #e2e8f0;
  font-size: 1.1rem;
  padding: 0.75rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 8px;
  border-left: 3px solid #667eea;
}

/* ========================================
   11. VIBRANT GRADIENT CARDS
   ======================================== */
.testimonial-gradient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gradient-card {
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.gradient-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1;
}
.gradient-card .card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 70%);
}
.gradient-card.gradient-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.gradient-card.gradient-blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.gradient-card.gradient-pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.gradient-card .quote-gradient {
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.gradient-card .author-gradient {
  position: relative;
  z-index: 1;
}
.gradient-card .author-gradient span {
  color: white;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.gradient-card .author-gradient .stars-glow {
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.gradient-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   12. VIDEO BACKGROUND STYLE
   ======================================== */
.testimonial-video-bg {
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.testimonial-video-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1), transparent 50%), radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.1), transparent 50%);
  animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.testimonial-content-video {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  padding: 2rem;
}
.testimonial-content-video .quote-video {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.testimonial-content-video .text-video {
  color: white;
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.author-video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.author-video .avatar-video {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}
.author-video h3 {
  color: white;
  margin: 0 0 0.25rem 0;
}
.author-video p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0.5rem 0;
}
.author-video .stars-video {
  font-size: 1.1rem;
}

/* ========================================
   13. NEON CYBERPUNK STYLE
   ======================================== */
.testimonial-neon-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  background: #000;
  padding: 3rem 2rem;
  border-radius: 16px;
}

.neon-card {
  background: #0a0a0a;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.neon-card .neon-border {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(10px);
  transition: all 0.3s ease;
}
.neon-card .stars-neon {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.neon-card .quote-neon {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.neon-card .author-neon .neon-text {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
  font-weight: 600;
}
.neon-card:hover {
  border-color: #00ffff;
  transform: translateY(-5px);
}
.neon-card:hover .neon-border {
  opacity: 1;
  filter: blur(15px);
}

/* ========================================
   14. FLOATING BUBBLES
   ======================================== */
.testimonial-bubbles {
  position: relative;
  min-height: 400px;
  margin-bottom: 3rem;
  background: radial-gradient(circle at 50% 50%, #1e293b, #0f172a);
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
}

.bubble-item {
  position: absolute;
  background: rgba(102, 126, 234, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}
.bubble-item p {
  color: #f1f5f9;
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
}
.bubble-item span {
  color: #94a3b8;
  font-size: 0.75rem;
}
.bubble-item.bubble-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.bubble-item.bubble-2 {
  width: 130px;
  height: 130px;
  top: 15%;
  right: 15%;
  animation-delay: 1s;
}
.bubble-item.bubble-3 {
  width: 140px;
  height: 140px;
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}
.bubble-item.bubble-4 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 3s;
}
.bubble-item.bubble-5 {
  width: 135px;
  height: 135px;
  bottom: 15%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* ========================================
   15. TESTIMONIAL WALL
   ======================================== */
.testimonial-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .testimonial-wall {
    grid-template-columns: 1fr;
  }
}

.wall-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wall-item {
  background: #1e293b;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid #334155;
  transition: all 0.2s ease;
}
.wall-item .stars-wall {
  color: #fbbf24;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.wall-item p {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
}
.wall-item span {
  color: #94a3b8;
  font-size: 0.825rem;
  font-style: italic;
}
.wall-item:hover {
  background: #334155;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* ========================================
   16. COMPACT LIST VIEW
   ======================================== */
.testimonial-compact {
  max-width: 900px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compact-item {
  background: #1e293b;
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #667eea;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .compact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.compact-item .rating-compact {
  flex-shrink: 0;
  font-size: 1.1rem;
}
.compact-item .quote-compact {
  color: #e2e8f0;
  margin: 0;
  flex-grow: 1;
  font-size: 1rem;
}
.compact-item .author-compact {
  color: #94a3b8;
  font-size: 0.875rem;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .compact-item .author-compact {
    white-space: normal;
  }
}
.compact-item:hover {
  background: #334155;
  border-left-width: 6px;
  padding-left: calc(1.5rem - 2px);
}

/* Continue in next part... */
/* ========================================
   17. HEXAGON GRID
   ======================================== */
.testimonial-hexagon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
}

.hex-item {
  width: 150px;
  height: 173px;
  position: relative;
}
.hex-item .hex-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}
.hex-item .hex-content .hex-quote {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.hex-item .hex-content .hex-author {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.hex-item .hex-content .hex-stars {
  font-size: 0.75rem;
}
.hex-item .hex-content:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* ========================================
   18. POLAROID STYLE
   ======================================== */
.testimonial-polaroid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 2rem;
}

.polaroid-card {
  width: 200px;
  background: white;
  padding: 1rem 1rem 2rem 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.polaroid-card.rotate-left {
  transform: rotate(-3deg);
}
.polaroid-card.rotate-right {
  transform: rotate(3deg);
}
.polaroid-card.rotate-left-small {
  transform: rotate(-1deg);
}
.polaroid-card .polaroid-img {
  width: 100%;
  aspect-ratio: 1;
  background: #e2e8f0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.polaroid-card .polaroid-img .placeholder-img {
  font-size: 3rem;
}
.polaroid-card .polaroid-caption p {
  color: #1e293b;
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
  font-family: "Courier New", monospace;
}
.polaroid-card .polaroid-caption span {
  color: #64748b;
  font-size: 0.75rem;
}
.polaroid-card .polaroid-caption .stars-pol {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
.polaroid-card:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* ========================================
   19. SOCIAL MEDIA STYLE
   ======================================== */
.testimonial-social {
  max-width: 600px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-card {
  background: #1e293b;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #334155;
  transition: all 0.2s ease;
}
.social-card:hover {
  background: #334155;
  border-color: #475569;
}

.social-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.social-header .social-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}
.social-header .social-info strong {
  color: #f1f5f9;
  display: block;
  margin-bottom: 0.25rem;
}
.social-header .social-info span {
  color: #94a3b8;
  font-size: 0.875rem;
}

.social-text {
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-footer {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #334155;
}
.social-footer span {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* ========================================
   20. FEATURED QUOTE SLIDER
   ======================================== */
.testimonial-featured-slider {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-slide {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .featured-slide {
    flex-direction: column;
  }
}

.featured-image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-image .featured-placeholder {
  font-size: 5rem;
}

.featured-content {
  flex-grow: 1;
}
.featured-content .quote-mark {
  font-size: 5rem;
  color: rgba(102, 126, 234, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.featured-content .featured-quote {
  color: #f1f5f9;
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.featured-author h4 {
  color: #f1f5f9;
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}
.featured-author p {
  color: #94a3b8;
  margin: 0 0 0.75rem 0;
}
.featured-author .stars-featured {
  font-size: 1.2rem;
}

/* ========================================
   21. ACCORDION EXPANDABLE
   ======================================== */
.testimonial-accordion {
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-testimonial {
  background: #1e293b;
  border-radius: 10px;
  border: 1px solid #334155;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion-testimonial:hover {
  border-color: #667eea;
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}
.accordion-header .stars-acc {
  flex-shrink: 0;
  font-size: 1rem;
}
.accordion-header strong {
  color: #f1f5f9;
  flex-grow: 1;
  font-size: 1rem;
}
.accordion-header .toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #667eea;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}
.accordion-header:hover .toggle {
  background: #764ba2;
  transform: rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content p {
  color: #e2e8f0;
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 0;
}

.accordion-testimonial.active .accordion-content {
  max-height: 500px;
}
.accordion-testimonial.active .toggle {
  transform: rotate(45deg);
}

/* ========================================
   22. STATS & TESTIMONIALS
   ======================================== */
.testimonial-stats {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  text-align: center;
}
.stat-item .stat-number {
  color: #667eea;
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 0.5rem 0;
}
.stat-item p {
  color: #94a3b8;
  margin: 0;
  font-size: 1.1rem;
}

.stats-testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stats-testimonial .stars-stats {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.stats-testimonial .quote-stats {
  color: #f1f5f9;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.stats-testimonial .author-stats {
  color: #94a3b8;
}

/* ========================================
   23. BADGE COLLECTION
   ======================================== */
.testimonial-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.badge-item {
  background: #1e293b;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #334155;
  transition: all 0.3s ease;
}
.badge-item .badge-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.badge-item p {
  color: #f1f5f9;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}
.badge-item span {
  color: #94a3b8;
  font-size: 0.875rem;
}
.badge-item:hover {
  transform: translateY(-5px);
  border-color: #667eea;
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);
  background: linear-gradient(135deg, #1e293b, #334155);
}

/* ========================================
   24. VERTICAL AUTO-SCROLL
   ======================================== */
.testimonial-vertical-carousel {
  background: #1e293b;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  max-height: 400px;
  overflow: hidden;
  position: relative;
}

.vertical-track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: scroll-vertical 20s linear infinite;
}
.vertical-track:hover {
  animation-play-state: paused;
}

.vertical-item {
  background: #334155;
  padding: 1.5rem;
  border-radius: 12px;
  flex-shrink: 0;
  border-left: 3px solid #667eea;
}
.vertical-item .stars-v {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.vertical-item p {
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}
.vertical-item span {
  color: #94a3b8;
  font-size: 0.875rem;
  font-style: italic;
}

@keyframes scroll-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* ========================================
   25. INTERACTIVE FLIP CARDS
   ======================================== */
.testimonial-flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  perspective: 1000px;
}

.flip-card {
  height: 300px;
}
.flip-card .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.flip-front {
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 1px solid #475569;
}
.flip-front .flip-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.flip-front h4 {
  color: #f1f5f9;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}
.flip-front p {
  color: #94a3b8;
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
}
.flip-front .flip-hint {
  color: #667eea;
  font-size: 0.875rem;
  font-style: italic;
}

.flip-back {
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: rotateY(180deg);
}
.flip-back .stars-flip {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.flip-back p {
  color: white;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
  .testimonial-section-title {
    font-size: 1.25rem;
  }
  .testimonial-grid-classic,
.testimonial-grid-glass {
    grid-template-columns: 1fr;
  }
  .testimonial-marquee-item {
    min-width: 250px;
  }
  .slide-content .quote-text {
    font-size: 1.25rem;
  }
  .hex-item {
    width: 120px;
    height: 139px;
  }
  .polaroid-card {
    width: 180px;
  }
}
/* ========================================
   ADDITIONAL UTILITIES
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.py-5 {
  padding: 3rem 0;
} /* ========================================
  NEW LAYOUTS 26-35 STYLES
  ======================================== */
/* ========================================
   26. DIAGONAL STACKED CARDS
   ======================================== */
.testimonial-diagonal-stack {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  perspective: 1000px;
  min-height: 350px;
  flex-wrap: wrap;
}

.diagonal-card {
  width: 280px;
  transform: rotate(calc(var(--order) * -5deg)) translateY(calc(var(--order) * -20px));
  transition: all 0.4s ease;
}
.diagonal-card:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.05);
  z-index: 10;
}

.diagonal-content {
  background: linear-gradient(135deg, #1e293b, #334155);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #475569;
}
.diagonal-content .stars-diagonal {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.diagonal-content .quote-diagonal {
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.diagonal-content .author-diagonal {
  color: #94a3b8;
  font-size: 0.875rem;
  font-style: italic;
}

/* ========================================
   27. RADIAL BURST LAYOUT
   ======================================== */
.testimonial-radial-container {
  position: relative;
  width: 100%;
  height: 500px;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radial-center {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(102, 126, 234, 0.5);
  z-index: 10;
}
.radial-center .center-badge {
  text-align: center;
  color: white;
}
.radial-center .center-badge h3 {
  font-size: 2.5rem;
  margin: 0 0 0.25rem 0;
  font-weight: 900;
}
.radial-center .center-badge p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.9;
}

.radial-item {
  position: absolute;
  width: 140px;
  padding: 1.25rem;
  background: #1e293b;
  border-radius: 12px;
  border: 1px solid #334155;
  text-align: center;
  transform: rotate(var(--angle)) translate(200px) rotate(calc(var(--angle) * -1));
  transition: all 0.3s ease;
}
.radial-item p {
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
}
.radial-item span {
  color: #94a3b8;
  font-size: 0.75rem;
}
.radial-item:hover {
  background: #334155;
  transform: rotate(var(--angle)) translate(220px) rotate(calc(var(--angle) * -1)) scale(1.1);
  border-color: #667eea;
}

/* ========================================
   28. NETFLIX-STYLE SLIDER
   ======================================== */
.testimonial-netflix-container {
  position: relative;
  margin-bottom: 3rem;
  padding: 0 4rem;
}

.netflix-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.netflix-slider::-webkit-scrollbar {
  display: none;
}

.netflix-card {
  flex: 0 0 280px;
  background: #1e293b;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}
.netflix-card .netflix-thumb {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}
.netflix-card h4 {
  color: #f1f5f9;
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
}
.netflix-card p {
  color: #e2e8f0;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.netflix-card .netflix-author {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.netflix-card .netflix-rating {
  font-size: 1rem;
}
.netflix-card:hover {
  transform: scale(1.05);
  border-color: #667eea;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.netflix-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(102, 126, 234, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.netflix-nav:hover {
  background: #764ba2;
  transform: translateY(-50%) scale(1.1);
}
.netflix-nav.netflix-prev {
  left: 0;
}
.netflix-nav.netflix-next {
  right: 0;
}

/* ========================================
   29. SEAMLESS INFINITE LOOP
   ======================================== */
.testimonial-infinite-loop {
  overflow: hidden;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.loop-track {
  display: flex;
  gap: 2rem;
  animation: infinite-scroll 40s linear infinite;
}
.loop-track:hover {
  animation-play-state: paused;
}

.loop-item {
  flex-shrink: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  min-width: 320px;
  border: 1px solid #334155;
}
.loop-item .loop-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}
.loop-item .loop-content strong {
  color: #f1f5f9;
  display: block;
  margin-bottom: 0.5rem;
}
.loop-item .loop-content p {
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
}
.loop-item .loop-content .loop-stars {
  font-size: 0.9rem;
}

@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ========================================
   30. VIDEO TESTIMONIALS GRID
   ======================================== */
.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-testimonial-card {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}
.video-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.3);
  border-color: #667eea;
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #334155, #1e293b);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumbnail .video-overlay {
  font-size: 4rem;
}
.video-thumbnail .play-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(102, 126, 234, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-thumbnail .play-icon:hover {
  background: #764ba2;
  transform: scale(1.1);
}

.video-info {
  padding: 1.5rem;
}
.video-info h4 {
  color: #f1f5f9;
  margin: 0 0 0.5rem 0;
}
.video-info p {
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}
.video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-info .video-meta span {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* ========================================
   31. PARALLAX QUOTE OVERLAY
   ======================================== */
.testimonial-parallax-container {
  position: relative;
  min-height: 500px;
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.15), transparent 50%), radial-gradient(circle at 70% 70%, rgba(118, 75, 162, 0.15), transparent 50%);
  animation: parallax-move 10s ease-in-out infinite;
}

@keyframes parallax-move {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}
.parallax-quote {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 3rem;
}
.parallax-quote .quote-symbol {
  font-size: 6rem;
  color: rgba(102, 126, 234, 0.3);
  line-height: 1;
  font-family: Georgia, serif;
}
.parallax-quote .parallax-text {
  color: #f1f5f9;
  font-size: 1.75rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.parallax-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.parallax-author .parallax-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}
.parallax-author h4 {
  color: #f1f5f9;
  margin: 0 0 0.25rem 0;
}
.parallax-author p {
  color: #94a3b8;
  margin: 0 0 0.5rem 0;
}
.parallax-author .parallax-stars {
  font-size: 1.1rem;
}

/* ========================================
   32. LIVE TICKER FEED
   ======================================== */
.testimonial-ticker-container {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
  border: 1px solid #334155;
}

.ticker-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-header .ticker-label {
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}
.ticker-header .ticker-pulse {
  color: #ff4444;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.ticker-feed {
  max-height: 300px;
  overflow-y: auto;
}

.ticker-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #334155;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  transition: all 0.2s ease;
}
.ticker-item:hover {
  background: #334155;
}
.ticker-item .ticker-time {
  color: #94a3b8;
  font-size: 0.75rem;
  min-width: 70px;
}
.ticker-item .ticker-rating {
  font-size: 0.9rem;
}
.ticker-item .ticker-text {
  color: #e2e8f0;
  flex-grow: 1;
  font-size: 0.95rem;
}
.ticker-item .ticker-text strong {
  color: #667eea;
}

/* ========================================
   33. SCALE EFFECT CAROUSEL
   ======================================== */
.testimonial-scale-carousel {
  position: relative;
  margin-bottom: 3rem;
  padding: 3rem 0;
}

.scale-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  perspective: 1000px;
  min-height: 350px;
}

.scale-card {
  flex: 0 0 350px;
  opacity: 0.5;
  transform: scale(0.85);
  transition: all 0.5s ease;
}
.scale-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

.scale-content {
  background: linear-gradient(135deg, #1e293b, #334155);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #475569;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.scale-content .scale-quote {
  color: #f1f5f9;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.scale-content .scale-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.scale-content .scale-author .scale-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}
.scale-content .scale-author strong {
  color: #f1f5f9;
  display: block;
}
.scale-content .scale-author span {
  color: #94a3b8;
  font-size: 0.875rem;
}
.scale-content .scale-rating {
  font-size: 1.2rem;
}

.scale-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.scale-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #667eea;
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.scale-btn:hover {
  background: #764ba2;
  transform: scale(1.1);
}

/* ========================================
   34. SPOTLIGHT FOCUS EFFECT
   ======================================== */
.testimonial-spotlight-container {
  margin-bottom: 3rem;
  padding: 3rem 0;
  background: #000;
  border-radius: 20px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.spotlight-card {
  position: relative;
  background: #0a0a0a;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #222;
  transition: all 0.4s ease;
}
.spotlight-card:hover {
  transform: translateY(-10px);
}
.spotlight-card:hover .spotl ight-glow {
  opacity: 1;
  filter: blur(30px);
}

.spotlight-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.4), transparent 70%);
  opacity: 0;
  filter: blur(20px);
  transition: all 0.4s ease;
  z-index: -1;
}

.spotlight-content {
  text-align: center;
}
.spotlight-content .spotlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.spotlight-content h4 {
  color: #f1f5f9;
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
}
.spotlight-content p {
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}
.spotlight-content .spotlight-author {
  color: #667eea;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.75rem;
}
.spotlight-content .spotlight-rating {
  font-size: 1.1rem;
}

/* ========================================
   35. MULTI-TIER RATING DISPLAY
   ======================================== */
.testimonial-rating-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: #1e293b;
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .testimonial-rating-tiers {
    grid-template-columns: 1fr;
  }
}

.rating-overview .overall-rating {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  margin-bottom: 2rem;
}
.rating-overview .overall-rating h2 {
  font-size: 4rem;
  color: white;
  margin: 0 0 0.5rem 0;
  font-weight: 900;
}
.rating-overview .overall-rating .overall-stars {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.rating-overview .overall-rating p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rating-bar-item span {
  color: #e2e8f0;
  font-size: 0.875rem;
  min-width: 60px;
}
.rating-bar-item span:last-child {
  min-width: 40px;
  text-align: right;
}

.rating-bar {
  flex-grow: 1;
  height: 8px;
  background: #334155;
  border-radius: 4px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 4px;
  transition: width 1s ease;
}

.rating-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-card {
  background: #334155;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}
.highlight-card h4 {
  color: #f1f5f9;
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
}
.highlight-card .highlight-stars {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.highlight-card p {
  color: #e2e8f0;
  line-height: 1.6;
  margin: 0 0 0.75rem 0;
}
.highlight-card .highlight-author {
  color: #94a3b8;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.75rem;
}
.highlight-card .helpful {
  color: #667eea;
  font-size: 0.875rem;
}

/*# sourceMappingURL=style.css.map */
