/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --neo-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.5);
  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

/* Base Styles */
body {
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: var(--tertiary-color);
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}

/* Testimonials Template 4 */
.testimonials-4 {
  padding: clamp(40px, 5vw, 100px) clamp(15px, 3vw, 40px);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 20px);
}

.focus-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.card-content {
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
  top: -40px;
  left: -20px;
}

.highlight-text {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.results-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  margin: 20px 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.badge-icon {
  font-size: 1.2rem;
  animation: float 3s ease-in-out infinite;
}

.author-section {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.author-info p {
  margin: 5px 0 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

.highlight-primary {
  color: var(--primary-color);
  font-weight: 600;
}

.highlight-secondary {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .focus-card {
    padding: 30px 20px;
  }

  .author-section {
    flex-direction: column;
    padding: 20px;
  }

  .quote-icon {
    font-size: 3rem;
    top: -30px;
    left: -10px;
  }
}

@media (max-width: 480px) {
  .testimonials-4 {
    padding: 30px 15px;
  }

  .highlight-text {
    font-size: 1.3rem;
  }
}
