/* ========================================
   MoovConseils - Effets Professionnels Statiques
   ======================================== */

/* Professional Card Effects */
.service-card, .client-card, .testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card:hover, .client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Professional Gradient Text Effects */
.gradient-text-pro {
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 25%, #357abd 50%, #2c5aa0 75%, #1e4a87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Strategic Color Accents avec Dégradé Harmonieux */
.accent-strategic {
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 50%, #2c5aa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.accent-innovation {
  background: linear-gradient(135deg, #1a472a 0%, #2e8b57 50%, #1a472a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.accent-premium {
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 25%, #357abd 50%, #1a472a 75%, #2e8b57 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Professional Button Effects */
.btn-pro {
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 25%, #357abd 50%, #1e4a87 100%);
  color: white;
  border: 2px none transparent;
  position: relative;
  overflow: hidden;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-pro:hover::before {
  left: 100%;
}

.btn-pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Professional Section Dividers */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #000000, transparent);
  margin: 60px auto;
  width: 80%;
}

/* Strategic Visual Elements */
.strategic-element {
  position: relative;
}

.strategic-element::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #2c5aa0, #1a472a, #2c5aa0);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.strategic-element:hover::before {
  opacity: 0.1;
}

/* Professional Typography Effects */
.text-shadow-pro {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-elegant {
  letter-spacing: 0.02em;
  line-height: 1.6;
  font-weight: 400;
}

/* Minimalist Borders */
.border-pro {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.border-pro-thick {
  border: 2px solid rgba(0, 0, 0, 0.1);
}

/* Professional Shadows */
.shadow-pro {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.shadow-pro-hover:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Strategic Icons Enhancement */
.icon-enhanced {
  position: relative;
  display: inline-block;
}

.icon-enhanced::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(44, 90, 160, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.icon-enhanced:hover::after {
  transform: scale(1.5);
}

/* Professional Grid Effects */
.grid-pro {
  display: grid;
  gap: 30px;
  padding: 20px;
}

.grid-pro > * {
  transition: all 0.3s ease;
}

/* Elite Badge Effects */
.badge-elite {
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 25%, #357abd 50%, #1e4a87 100%);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
  position: relative;
  overflow: hidden;
}

.badge-elite::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.badge-elite:hover::before {
  left: 100%;
}

/* Professional Focus States */
.focus-pro:focus {
  outline: 2px none #2c5aa0;
  outline-offset: 2px;
}

/* Minimalist Loading Effect */
.loading-pro {
  position: relative;
  overflow: hidden;
}

.loading-pro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2c5aa0, #1a472a);
  transform: translateX(-100%);
  animation: loading-slide 2s ease-in-out infinite;
}

@keyframes loading-slide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* Marketing 3.0 Highlight Section */
.marketing-highlight {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marketing-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.marketing-badge {
  margin-bottom: 30px;
  display: inline-block;
}

.marketing-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.marketing-subtitle {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.marketing-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 1.2rem;
  color: #2c5aa0;
}

@media (max-width: 768px) {
  .marketing-features {
    flex-direction: column;
    align-items: center;
  }
  
  .marketing-title {
    font-size: 2.2rem;
  }
}

/* Page Tarifs Styles */
.hero-simple {
  padding: 120px 0 80px;
  text-align: center;
}

.hero-content-center {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pricing-ranges {
  margin-top: 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  padding: 30px;
  border-radius: 15px;
  background: white;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #2c5aa0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
}

.pricing-header i {
  font-size: 2.5rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  display: block;
}

.pricing-header h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.pricing-ranges-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-type {
  font-weight: 500;
  color: #333;
}

.price-value {
  font-weight: 700;
  color: #2c5aa0;
  font-size: 1.1rem;
}

.pricing-benefits {
  margin-top: 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: white;
}

.benefit-item i {
  font-size: 2rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  display: block;
}

.benefit-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.benefit-item p {
  color: #666;
  line-height: 1.5;
}

.footer-simple {
  background: #f8f9fa;
  padding: 40px 0 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #2c5aa0;
}

@media (max-width: 768px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content-simple {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Page Contact Styles */
.contact-why {
  margin-top: 80px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.why-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: white;
}

.why-item i {
  font-size: 2rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  display: block;
}

.why-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.why-item p {
  color: #666;
  line-height: 1.5;
}

.contact {
  padding: 40px 0 80px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.contact-info h3,
.contact-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 90, 160, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: #2c5aa0;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.contact-details p {
  color: #666;
  margin: 0;
}

.calendly-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
}

.contact-form form {
  padding: 30px;
  border-radius: 12px;
  background: white;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}

/* Footer Contact Button */
.contact-cta {
  margin-top: 15px;
}

.btn-contact {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a472a 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
  border-color: white;
}

/* Process Section Modern */
.process-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f7fa 100%);
}

.process-timeline-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

.process-step-modern {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 25px;
  align-items: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step-modern:hover {
  transform: translateY(-5px);
}

.step-number-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 50%, #357abd 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.step-icon-modern {
  width: 50px;
  height: 50px;
  background: rgba(44, 90, 160, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-modern i {
  font-size: 1.5rem;
  color: #2c5aa0;
}

.step-content-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content-modern p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .process-step-modern {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .step-features {
    justify-content: center;
  }
}

/* Section Clients & Témoignages Intégrée */
.testimonials-section-integrated {
  margin-top: 60px;
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(26, 71, 42, 0.05) 100%);
  border-radius: 25px;
  border: 1px solid rgba(44, 90, 160, 0.1);
}

.testimonials-title-integrated {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.testimonial-card-modern {
  background: white;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 50%, #357abd 100%);
  border-radius: 20px 20px 0 0;
}

.testimonial-card-modern.institutional::before {
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
}

.testimonial-card-modern.professional::before {
  background: linear-gradient(135deg, #357abd 0%, #2c5aa0 100%);
}

.testimonial-card-modern.casual::before {
  background: linear-gradient(135deg, #1a472a 0%, #2e8b57 100%);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f0f0f0;
}

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

.avatar-placeholder {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  font-weight: 700;
  color: #333;
  margin: 0;
}

.testimonial-info span {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-content .stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-title-integrated {
    font-size: 1.8rem;
  }
}

/* Section CTA Projets */
.projects-cta-section {
  margin-top: 60px;
  padding: 40px 0;
}

.cta-content {
  text-align: center;
  padding: 50px 40px;
  background: white;
  border-radius: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-buttons .btn-pro {
  min-width: 180px;
  padding: 12px 20px;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-content {
    padding: 30px 20px;
  }
}

/* Styles Pages Clients */
.case-study-hero {
  padding: 120px 0 80px;
  text-align: center;
}

.client-logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.client-logo-large {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-status {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 30px;
  border-radius: 20px;
  text-align: left;
}

.status-info h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.launch-timeline {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.timeline-item i {
  font-size: 1.1rem;
}

.case-content {
  padding: 80px 0;
}

.case-section {
  margin-bottom: 60px;
  padding: 40px;
  border-radius: 20px;
}

.section-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.challenge-grid, .projections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.challenge-item, .projection-card {
  padding: 25px;
  border-radius: 15px;
  background: white;
  text-align: center;
  transition: all 0.3s ease;
}

.challenge-item i, .projection-icon i {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.projection-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 10px 0;
}

.tech-section {
  margin: 60px 0;
}

.tech-stack-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.tech-category {
  padding: 25px;
  background: white;
  border-radius: 15px;
}

.tech-category h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  background: rgba(44, 90, 160, 0.1);
  color: #2c5aa0;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.testimonial-section {
  margin: 60px 0;
  padding: 40px;
  border-radius: 20px;
}

.testimonial-card-modern {
  max-width: 800px;
  margin: 30px auto 0;
  padding: 30px;
  background: white;
  border-radius: 20px;
}

.quote-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.testimonial-content blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
  color: #444;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

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

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

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

.rating {
  margin-top: 5px;
}

.case-cta {
  padding: 80px 0;
  text-align: center;
}

.projections-section {
  margin: 60px 0;
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .client-logo-section {
    flex-direction: column;
    gap: 15px;
  }
  
  .challenge-grid, .projections-grid, .tech-stack-modern {
    grid-template-columns: 1fr;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
}