/* ========== TEMOIGNAGES.CSS - Testimonials Page ========== */

:root {
  --primary: #0066ff;
  --secondary: #00d4ff;
  --dark: #0a0e27;
  --darker: #050812;
  --text: #e8eef7;
  --text-muted: #a0aec0;
  --border: #1a2042;
  --success: #10b981;
 

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: linear-gradient(135deg, var(--darker) 0%, #0f1438 100%); color: var(--text); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
.header { background: rgba(10, 14, 39, 0.95); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 20px 0; position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5em; font-weight: 800; text-decoration: none; display: flex; align-items: center; gap: 12px; }
.logo-img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.3)); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-size: 1em; font-weight: 800; line-height: 1.2; }
.logo-tagline { font-size: 0.65em; color: var(--text-muted); font-weight: 300; line-height: 1.2; }
.tagline { font-size: 0.75em; color: var(--text-muted); margin-left: 10px; }
.nav { display: flex; gap: 30px; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: 0.95em; transition: all 0.3s ease; }
.nav a.active { color: var(--secondary); }
.nav a:hover { color: var(--secondary); }

/* ========== PAGE INTRO ========== */
.page-intro { padding: 80px 0; text-align: center; background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05)); }
.page-intro h1 { font-size: 3em; font-weight: 800; margin-bottom: 20px; background: linear-gradient(135deg, var(--secondary), var(--primary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.intro-text { font-size: 1.2em; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.testimonial-card { background: linear-gradient(135deg, rgba(26, 32, 66, 0.8), rgba(15, 20, 56, 0.8)); border: 1px solid var(--border); border-radius: 12px; padding: 35px; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-10px); border-color: var(--secondary); box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2); }

.testimonial-header { display: flex; gap: 15px; margin-bottom: 20px; }
.avatar { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; color: white; flex-shrink: 0; }
.testimonial-info { flex: 1; }
.testimonial-info h3 { margin-bottom: 5px; font-size: 1.1em; }
.testimonial-role { font-size: 0.9em; color: var(--text-muted); margin-bottom: 8px; }
.stars { color: #fbbf24; font-size: 0.95em; }

.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 15px; line-height: 1.8; }
.testimonial-meta { font-size: 0.85em; color: var(--text-muted); }

/* ========== STATS SECTION ========== */
.stats-section { padding: 100px 0; background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05)); }
.stats-section h2 { font-size: 2.5em; margin-bottom: 60px; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }

.stat-card { background: rgba(26, 32, 66, 0.6); border: 1px solid var(--border); border-radius: 12px; padding: 40px; text-align: center; transition: all 0.3s ease; }
.stat-card:hover { transform: translateY(-8px); border-color: var(--primary); background: rgba(0, 102, 255, 0.1); }
.stat-number { font-size: 2.8em; font-weight: 800; color: var(--secondary); margin-bottom: 10px; }
.stat-label { font-size: 1.1em; margin-bottom: 15px; }
.stat-card p { font-size: 0.9em; color: var(--text-muted); }

/* ========== CTA ========== */
.testimonials-cta { padding: 80px 0; text-align: center; }
.testimonials-cta h2 { font-size: 2.5em; margin-bottom: 20px; }
.testimonials-cta p { font-size: 1.1em; color: var(--text-muted); margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn { padding: 14px 32px; border: none; border-radius: 8px; font-size: 1em; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 102, 255, 0.5); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: rgba(0, 102, 255, 0.1); }

/* ========== FOOTER ========== */
.site-footer { background: rgba(5, 8, 18, 0.95); border-top: 1px solid var(--border); padding: 40px 0; }
.site-footer .container { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.site-footer p { margin: 0; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: var(--text-muted); font-size: 1.2em; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(0, 102, 255, 0.1); border-radius: 50%; }
.social-links a:hover { color: var(--secondary); background: rgba(0, 102, 255, 0.3); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: linear-gradient(135deg, #25d366, #20ba5a); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8em; text-decoration: none; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: all 0.3s ease; z-index: 50; animation: bounce 2s infinite; }
.whatsapp-float:hover { transform: scale(1.15); animation: none; }

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 768px) {
  .page-intro h1 { font-size: 2em; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 20px; }
  .testimonial-header { align-items: center; flex-direction: column; text-align: center; gap: 10px; }
  .avatar { width: 72px; height: 72px; font-size: 1.8em; }
  .testimonial-info h3 { font-size: 1.05em; }
  .testimonial-role { margin-bottom: 6px; }
  .testimonial-text { font-size: 0.98em; line-height: 1.6; }
  .testimonial-meta { font-size: 0.85em; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  /* Avoid WhatsApp float overlapping stats on small screens */
  .testimonials-section { padding-bottom: 140px; }
  .stats-grid { gap: 20px; }
  .stat-card { padding: 28px; }
  .stat-number { font-size: 2.2em; }
}

@media (max-width: 480px) {
  .testimonials-section { padding-bottom: 180px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 18px; }
  .stat-card { padding: 20px; }
  .stat-number { font-size: 1.9em; }
  .testimonial-card { padding: 18px; }
  .page-intro h1 { font-size: 1.6em; }
}
}
