/* ========== ACCUEIL.CSS - Home Page Styling ========== */

:root {
  --primary: #0066ff;
  --primary-dark: #0052cc;
  --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; overflow-x: hidden; }

.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; animation: slideDown 0.5s ease; }
.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; }

.nav { display: flex; gap: 30px; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: 0.95em; transition: all 0.3s ease; position: relative; }
.nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: width 0.3s ease; }
.nav a:hover, .nav a.active { color: var(--secondary); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ========== HERO SECTION ========== */
.hero { padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 100, 255, 0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; animation: float 6s ease-in-out infinite; }
.hero::after { content: ''; position: absolute; top: 50%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; animation: float 8s ease-in-out infinite reverse; }

.hero .container { display: flex; align-items: center; gap: 60px; position: relative; z-index: 2; }

.hero-text { flex: 1; }
.hero h2 { font-size: 3.5em; font-weight: 800; line-height: 1.2; margin-bottom: 20px; background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: fadeInUp 0.8s ease; }
.hero-lead { font-size: 1.1em; color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; animation: fadeInUp 0.8s ease 0.2s both; }

.hero-stats { display: flex; gap: 40px; margin-bottom: 30px; animation: fadeInUp 0.8s ease 0.4s both; }
.stat { text-align: center; }
.stat-value { font-size: 2em; font-weight: 800; color: var(--secondary); display: block; }
.stat-label { font-size: 0.9em; color: var(--text-muted); }

.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }

.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); transform: translateY(-3px); }
.btn-lg { padding: 16px 40px; font-size: 1.1em; }

.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; }
.hero-shape { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.1)); border-radius: 50%; filter: blur(50px); animation: pulse 3s ease-in-out infinite; }
.hero-visual img { max-width: 100%; height: auto; filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.2)); animation: float 3s ease-in-out infinite; position: relative; z-index: 1; }

@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.1); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
  .hero .container { flex-direction: column; padding: 60px 0; gap: 40px; }
  .hero h2 { font-size: 2.2em; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
}

/* ========== MEANING SECTION ========== */
.meaning-section { padding: 80px 0; background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 102, 255, 0.05)); }
.meaning-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: 50px; text-align: center; }
.meaning-card h2 { font-size: 2em; margin-bottom: 40px; background: linear-gradient(135deg, var(--secondary), var(--primary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.meaning-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; }
.meaning-item { background: rgba(0, 102, 255, 0.1); border: 1px solid var(--primary); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: all 0.3s ease; }
.meaning-item:hover { border-color: var(--secondary); background: rgba(0, 212, 255, 0.1); transform: translateY(-5px); }
.meaning-label { font-size: 1.3em; color: var(--secondary); font-weight: 800; }
.meaning-text { color: var(--text-muted); font-size: 0.95em; line-height: 1.6; }
.meaning-tagline { font-size: 1.3em; color: var(--text); display: flex; align-items: center; justify-content: center; gap: 10px; }
.meaning-tagline i { color: var(--secondary); font-size: 1.5em; animation: float 6s ease-in-out infinite; }

@media (max-width: 768px) {
  .meaning-section { padding: 60px 0; }
  .meaning-card { padding: 30px; }
  .meaning-card h2 { font-size: 1.6em; margin-bottom: 25px; }
  .meaning-content { grid-template-columns: 1fr; gap: 20px; }
  .meaning-tagline { font-size: 1.1em; flex-direction: column; }
}

/* ========== ABOUT SECTION ========== */
.about { padding: 100px 0; background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05)); }
.about h2 { font-size: 2.5em; margin-bottom: 60px; text-align: center; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text h3 { font-size: 1.3em; margin: 20px 0 15px; color: var(--secondary); }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 15px; }
.values-list { list-style: none; }
.values-list li { padding: 10px 0; color: var(--text-muted); display: flex; align-items: center; gap: 12px; }
.values-list i { color: var(--success); }

.about-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.benefit-card { background: rgba(26, 32, 66, 0.6); border: 1px solid var(--border); border-radius: 12px; padding: 30px; text-align: center; transition: all 0.3s ease; }
.benefit-card:hover { transform: translateY(-10px); border-color: var(--secondary); background: rgba(0, 102, 255, 0.1); }
.benefit-card i { font-size: 2.5em; color: var(--secondary); margin-bottom: 15px; display: block; }
.benefit-card h4 { margin-bottom: 10px; }
.benefit-card p { color: var(--text-muted); font-size: 0.9em; }

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .about-benefits { grid-template-columns: 1fr; }
  .about h2 { font-size: 1.8em; }
}

/* ========== SERVICES PREVIEW ========== */
.services-preview { padding: 100px 0; }
.services-preview h2 { font-size: 2.5em; margin-bottom: 15px; text-align: center; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 60px; font-size: 1.1em; }

/* Team section */
.team-section { padding: 60px 0; }
.team-section .section-subtitle { margin-bottom: 24px; color: var(--text-muted); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.team-card { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 10px 30px rgba(10,20,60,0.12); text-align: center; color: var(--dark); border: 1px solid #e0e7ff; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; animation: slideUp 0.6s ease-out backwards; }
.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.team-card::after { content: ''; position: absolute; bottom: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,102,255,0.05), rgba(0,212,255,0.05)); transition: left 0.4s ease; z-index: 0; }
.team-card:hover::after { left: 0; }
.team-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 25px 60px rgba(0,102,255,0.25); border-color: var(--primary); }
.avatar { display:none; }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; display: block; margin: 0 auto 12px auto; object-fit: cover; box-shadow: 0 8px 20px rgba(0,102,255,0.2); transition: all 0.4s ease; position: relative; z-index: 1; }
.team-card:hover .team-avatar { transform: scale(1.1) rotateY(5deg); box-shadow: 0 12px 30px rgba(0,102,255,0.4); }
.team-name { margin: 8px 0 2px; font-size: 1.12rem; color: var(--darker); font-weight: 800; line-height: 1.1; position: relative; z-index: 1; transition: color 0.3s ease; }
.team-card:hover .team-name { color: var(--primary); }
.team-role { color: var(--primary); font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; position: relative; z-index: 1; transition: all 0.3s ease; }
.team-card:hover .team-role { color: var(--secondary); }
.team-bio { color: #475569; font-size: 0.95rem; margin-bottom: 15px; line-height: 1.5; position: relative; z-index: 1; }
.team-social { margin-top: 12px; display: flex; justify-content: center; gap: 8px; position: relative; z-index: 1; }
.team-social a { color: var(--primary); text-decoration: none; padding: 8px 12px; border-radius: 6px; background: rgba(0,102,255,0.1); transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; }
.team-social a:hover { background: rgba(0,102,255,0.25); color: var(--secondary); transform: scale(1.15) rotate(10deg); }

@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { padding: 25px; }
  .team-avatar { width: 80px; height: 80px; }
  .team-name { font-size: 1.05rem; }
}

@media (max-width: 600px) {
  .team-section { padding: 40px 0; }
  .team-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-card { padding: 20px; animation: slideUp 0.6s ease-out backwards; }
  .team-card:nth-child(1) { animation-delay: 0.05s; }
  .team-card:nth-child(2) { animation-delay: 0.1s; }
  .team-card:nth-child(3) { animation-delay: 0.15s; }
  .team-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 15px 35px rgba(0,102,255,0.15); }
  .team-avatar { width: 76px; height: 76px; }
  .team-card:hover .team-avatar { transform: scale(1.08); }
  .team-name { font-size: 1.08rem; }
  .team-role { font-size: 0.92rem; }
  .team-bio { font-size: 0.93rem; margin-bottom: 12px; }
  .team-social a { padding: 6px 10px; font-size: 0.9rem; }
  .team-social a:hover { transform: scale(1.12) rotate(8deg); }
  .avatar { width: 72px; height: 72px; font-size: 18px; }
}

@media (max-width: 480px) {
  .team-section { padding: 30px 0; }
  .team-grid { gap: 16px; }
  .team-card { padding: 18px; border-radius: 12px; }
  .team-avatar { width: 72px; height: 72px; margin-bottom: 10px; }
  .team-name { font-size: 1.04rem; margin: 6px 0 2px; }
  .team-role { font-size: 0.9rem; margin-bottom: 6px; }
  .team-bio { font-size: 0.9rem; margin-bottom: 10px; }
  .team-social { gap: 6px; }
  .team-social a { padding: 6px 10px; font-size: 0.85rem; }
}

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; }
.service-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: 40px 30px; text-align: center; transition: all 0.3s ease; cursor: pointer; }
.service-card:hover { transform: translateY(-10px); border-color: var(--secondary); box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2); background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.05)); }
.service-card i { font-size: 3em; color: var(--secondary); margin-bottom: 20px; display: block; transition: all 0.3s ease; }
.service-card:hover i { transform: scale(1.2) rotateY(360deg); }
.service-card h3 { font-size: 1.3em; margin-bottom: 15px; }
.service-card p { color: var(--text-muted); }

.cta-section { text-align: center; padding: 50px; background: rgba(0, 102, 255, 0.1); border-radius: 12px; border: 1px solid var(--primary); }
.cta-section p { margin-bottom: 20px; font-size: 1.1em; }

/* ========== WHY US SECTION ========== */
.why-us { padding: 100px 0; background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 102, 255, 0.05)); }
.why-us h2 { font-size: 2.5em; margin-bottom: 60px; text-align: center; }

.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.reason { padding: 30px; background: rgba(26, 32, 66, 0.6); border-left: 4px solid var(--secondary); border-radius: 8px; transition: all 0.3s ease; }
.reason:hover { transform: translateX(10px); background: rgba(0, 102, 255, 0.15); border-left-color: var(--primary); }
.reason-number { display: inline-block; font-size: 2em; font-weight: 800; color: var(--primary); margin-bottom: 15px; }
.reason h3 { margin-bottom: 10px; }
.reason p { color: var(--text-muted); }

/* ========== TESTIMONIALS PREVIEW ========== */
.testimonials-preview { padding: 100px 0; }
.testimonials-preview h2 { font-size: 2.5em; margin-bottom: 15px; text-align: center; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 50px; }
.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: 30px; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-8px); border-color: var(--secondary); box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15); }
.stars { color: #fbbf24; margin-bottom: 15px; font-size: 1.1em; }
.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { font-weight: 600; color: var(--text); }

.testimonials-preview .btn { margin-top: 30px; display: inline-flex; }

/* ========== FINAL CTA ========== */
.final-cta { padding: 80px 0; background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.1)); text-align: center; }
.final-cta h2 { font-size: 2.5em; margin-bottom: 20px; }
.final-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; }

/* ========== 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; }
.footer-copy { color: var(--text-muted); }
.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); transform: translateY(-3px); }

/* ========== 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); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); animation: none; }

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 768px) {
  .site-footer .container { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .reasons { grid-template-columns: 1fr; }
  .about-benefits { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 1.4em; }
}
