/* ================================================================
       TESTIMONI
       ================================================================ */
    .testi-section { padding: 80px 20px; }
    .testi-section .container { max-width: 1100px; margin: 0 auto; }
    .testi-section .section-header { text-align: center; margin-bottom: 48px; }
    .testi-section h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 700;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .testi-carousel { position: relative; overflow: hidden; }
    .testi-track {
      display: flex;
      transition: transform 0.5s ease;
    }
    .testi-card {
      flex: 0 0 33.333%;
      padding: 12px;
    }
    .testi-card-inner {
      background: rgba(255,214,0,0.05);
      backdrop-filter: blur(10px);
      border: var(--border-glass);
      border-radius: var(--radius);
      padding: 24px;
      height: 100%;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    .testi-card-inner:hover {
      box-shadow: 0 0 20px rgba(245,166,35,0.2);
      transform: translateY(-4px);
    }
    .testi-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .testi-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--white);
      flex-shrink: 0;
    }
    .testi-name { font-weight: 600; color: var(--secondary); }
    .testi-location { font-size: 0.8rem; color: var(--text-muted); }
    .testi-stars { color: var(--primary); font-size: 0.9rem; margin-bottom: 12px; }
    .testi-text { color: var(--text-muted); font-style: italic; line-height: 1.7; font-size: 0.95rem; }
    .testi-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-top: 32px;
    }
    .testi-arrow {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(255,214,0,0.3);
      background: transparent;
      color: var(--primary);
      font-size: 1.2rem;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .testi-arrow:hover { background: var(--primary); color: #000; }
    .testi-dots { display: flex; gap: 8px; }
    .testi-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(255,214,0,0.3);
      cursor: pointer;
      transition: var(--transition);
      border: none;
    }
    .testi-dot.active { background: var(--primary); }
    .testi-avatar-1 { background: linear-gradient(135deg, #FFD600, #FF6B00); }
    .testi-avatar-2 { background: linear-gradient(135deg, #2E7D32, #FFD600); }
    .testi-avatar-3 { background: linear-gradient(135deg, #FF6B00, #FFD600); }
    .testi-avatar-4 { background: linear-gradient(135deg, #FFD600, #2E7D32); }
    .testi-avatar-5 { background: linear-gradient(135deg, #2E7D32, #FF6B00); }
    .testi-avatar-6 { background: linear-gradient(135deg, #FF6B00, #2E7D32); }

    @media (max-width: 768px) {
      .testi-section { padding: 60px 16px; }
      .testi-carousel { overflow: hidden; max-width: 100%; }
      .testi-track { overflow: hidden; }
      .testi-card { flex: 0 0 100%; max-width: 100%; padding: 8px 0; }
      .testi-card-inner { padding: 20px 16px; }
    }
