/* Import Google Fonts - Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Styles globaux pour des écritures ultra-fines */
* {
  font-weight: 300 !important;
  font-family: 'Roboto', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400 !important;
  font-family: 'Roboto', sans-serif !important;
}

.brand, .nav-link, .cta-btn, .btn-primary, .tarif-btn, button, .hero-text h1, .hero-content h1, .section-title, .widget-title, .service-title, .feature-title {
  font-weight: 400 !important;
  font-family: 'Roboto', sans-serif !important;
}

/* Rendre tous les textes ultra-fins */
p, span, div, li, a {
  font-weight: 300 !important;
  font-family: 'Roboto', sans-serif !important;
}

/* Titres et éléments importants plus fins */
h1, h2, h3, h4, h5, h6, .title, .heading, .section-title, .widget-title {
  font-weight: 400 !important;
  font-family: 'Roboto', sans-serif !important;
}

/* Boutons et éléments d'action plus fins */
.btn, .cta-btn, .btn-primary, .tarif-btn, button, .nav-link, .brand {
  font-weight: 400 !important;
  font-family: 'Roboto', sans-serif !important;
}

/* Variables CSS globales */
:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #222;
  min-height: 100vh;
  font-weight: 300;
}

.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo-nav {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.brand {
  font-size: 1.5rem;
  font-weight: 400;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-link:hover .logo {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.logo-link:hover .brand {
  background: linear-gradient(45deg, #5a6cdb, #6b46c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logo moderne CSS */
.logo-modern {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 15px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  animation: logoPulse 3s ease-in-out infinite;
}

.logo-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Logo informatique - Ordinateur */
.logo-computer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 16px;
}

.computer-screen {
  width: 18px;
  height: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  position: relative;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.computer-screen::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 1px;
  opacity: 0.8;
}

.computer-base {
  width: 20px;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0 0 3px 3px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* Logo informatique - Lignes de code */
.logo-code {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 12px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.code-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5px;
  animation: codeBlink 2s ease-in-out infinite;
}

.code-line:nth-child(1) {
  width: 12px;
  animation-delay: 0s;
}

.code-line:nth-child(2) {
  width: 8px;
  animation-delay: 0.3s;
}

.code-line:nth-child(3) {
  width: 14px;
  animation-delay: 0.6s;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
  }
}

@keyframes codeBlink {
  0%, 100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

@keyframes logoDots {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Hover effects pour le logo moderne */
.logo-link:hover .logo-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.logo-link:hover .computer-screen {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.logo-link:hover .code-line {
  animation-duration: 1s;
  opacity: 1;
}

.logo-link:hover .logo-dots span {
  animation-duration: 1s;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #667eea;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.05rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(102, 126, 234, 0.1);
}

.nav-list li a:hover {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transform: translateY(-2px);
}

.hero {
  padding: 80px 0 60px 0;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.cta-btn.secondary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-img-wrap {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.hero-img-advanced {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.services-advanced {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 80px 0 60px 0;
  margin: 40px 0;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-advanced h2 {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 800;
}

.services-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 280px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 10px;
}

.service-card h3 {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

.service-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.services-details {
  margin-top: 60px;
}

.section-service {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 60px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.section-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.section-service .service-img-wrap {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-service .service-img-large {
  width: 300px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
}

.section-service .service-content {
  flex: 2 1 500px;
  padding: 0 20px;
}

.section-service .service-content h3 {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

.section-service .service-content p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-service.reverse {
  flex-direction: row-reverse;
}

.outils-advanced {
  padding: 80px 0 60px 0;
}

.outils-advanced h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.outils-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.outil-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.outil-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.outil-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 10px;
}

.outil-item span {
  display: block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-advanced {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 80px 0 60px 0;
  margin: 40px 0;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-advanced h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 800;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  gap: 8px;
}

.contact-form label {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 20px;
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 15px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #667eea;
  outline: none;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}

.footer-advanced {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  padding: 25px 0;
  margin-top: 40px;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
  width: 92%;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.specialites-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 80px 0 60px 0;
  margin: 40px 0;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.specialites-section h2 {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 800;
}

.widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.widget-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.widget-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.widget-card:hover::before {
  transform: scaleX(1);
}

.widget-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.widget-icon {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.widget-stats {
  text-align: right;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  margin-top: 2px;
}

.widget-card h3 {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
}

.widget-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.widget-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  flex-shrink: 0;
}

.widget-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.widget-btn {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  min-width: 120px;
}

.widget-btn.primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.widget-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.widget-btn.secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  border: 2px solid rgba(102, 126, 234, 0.5);
  font-weight: 600;
}

.widget-btn.secondary:hover {
  background: #667eea;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Section Liens Utiles */
.liens-utiles {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.liens-utiles .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 40px;
}

.liens-utiles h2 {
  font-size: 2.5rem;
  color: #667eea;
  font-weight: 800;
  flex: 1;
}

.section-image {
  flex-shrink: 0;
}

.section-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.section-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.lien-categorie {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.lien-categorie:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.lien-categorie h3 {
  color: #667eea;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.liens-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.liens-list li {
  margin-bottom: 12px;
}

.liens-list a {
  color: #555;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  display: block;
  transition: all 0.3s ease;
  background: rgba(102, 126, 234, 0.05);
  border-left: 3px solid transparent;
}

.liens-list a:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border-left-color: #667eea;
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
  }
  .services-cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .section-service, .section-service.reverse {
    flex-direction: column !important;
    gap: 0;
    text-align: center;
    padding: 0;
    margin: 20px 0 15px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
    position: relative;
  }
  
  .section-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  }
  .section-service .service-img-wrap {
    padding: 20px 20px 0 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
  }
  
  .section-service .service-img-wrap::before {
    content: 'SERVICE';
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
  }
  
  .section-service .service-img-large {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
  }
  .section-service .service-content {
    padding: 25px 20px 30px 20px;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    position: relative;
  }
  
  .section-service .service-content h3 {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .section-service .service-content h3::before {
    content: '💡';
    font-size: 1.2rem;
    filter: grayscale(0.3);
  }
  
  /* Icônes spécifiques pour chaque service */
  .section-service:nth-child(1) .service-content h3::before {
    content: '🎯';
  }
  
  .section-service:nth-child(2) .service-content h3::before {
    content: '⚖️';
  }
  
  .section-service:nth-child(3) .service-content h3::before {
    content: '🔧';
  }
  
  .section-service:nth-child(4) .service-content h3::before {
    content: '🚀';
  }
  
  .section-service:nth-child(5) .service-content h3::before {
    content: '🛡️';
  }
  
  .section-service:nth-child(6) .service-content h3::before {
    content: '📊';
  }
  
  .section-service .service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
  }
  
  .section-service .service-content p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 15px 0;
    position: relative;
  }
  
  .section-service .service-content p::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 15px auto 0 auto;
    border-radius: 1px;
    opacity: 0.6;
  }
  
  .section-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .section-service:hover .service-img-large {
    transform: scale(1.02);
    transition: transform 0.3s ease;
  }
  
  .section-service .service-img-large {
    transition: transform 0.3s ease;
  }
  
  .section-service .service-content h3::before {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }
  
  .section-service:hover .service-content h3::before {
    animation: none;
    transform: scale(1.2);
  }
  .outils-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .widgets-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .widget-actions {
    flex-direction: column;
  }
  .liens-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lien-categorie {
    padding: 25px 20px;
  }
  .liens-utiles .section-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .section-img {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .services-cards {
    flex-direction: column;
  }
  .service-card {
    max-width: 100%;
    padding: 25px 20px;
  }
  .section-service {
    padding: 0;
    margin: 15px 0 10px 0;
    border-radius: 18px;
  }
  
  .section-service .service-img-wrap {
    padding: 15px 15px 0 15px;
  }
  
  .section-service .service-img-large {
    height: 180px;
    border-radius: 12px;
  }
  
  .section-service .service-content {
    padding: 20px 15px 25px 15px;
    border-radius: 0 0 18px 18px;
  }
  
  .section-service .service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .section-service .service-content h3::before {
    font-size: 1rem;
  }
  
  .section-service .service-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .section-service .service-img-wrap::before {
    font-size: 0.65rem;
    padding: 3px 6px;
  }
  .contact-form {
    padding: 25px;
  }
  .outils-grid {
    grid-template-columns: 1fr;
  }
  .outil-item {
    max-width: 100%;
    padding: 25px 15px;
  }
  .widget-card {
    padding: 25px 20px;
  }
  .widget-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .widget-stats {
    text-align: center;
  }
  .liens-utiles h2 {
    font-size: 2rem;
  }
  .lien-categorie h3 {
    font-size: 1.1rem;
  }
  .section-img {
    height: 150px;
  }
}

/* Styles pour les images hero des pages spécialisées */
.hero-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Responsive pour les images hero */
@media (max-width: 900px) {
  .hero-image {
    order: -1;
    margin-bottom: 30px;
  }
  
  .hero-img {
    max-width: 100%;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .hero-img {
    height: 250px;
  }
}

/* Menu Moderne avec Dropdowns */
.nav-modern {
  position: relative;
}

.nav-list-modern {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--text-dark, #667eea);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.nav-item:hover .nav-link {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  padding: 1rem 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #2d3748;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(102, 126, 234, 0.05);
  color: #667eea;
  transform: translateX(5px);
}

.dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  margin-right: 1rem;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

.dropdown-text {
  flex: 1;
}

.dropdown-text h4 {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: inherit;
}

.dropdown-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.4;
}

.dropdown-item:hover .dropdown-text p {
  color: #94a3b8;
}

/* Menu Toggle pour Mobile - SUPPRIMÉ */
.nav-toggle {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Forcer la suppression du bouton hamburger sur mobile */
@media (max-width: 900px) {
  .nav-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #667eea;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(102, 126, 234, 0.5);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav-toggle:hover span {
  background: #764ba2;
}

/* Animation du hamburger menu */
.nav-toggle.active {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(102, 126, 234, 0.7);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive Design pour le Menu - MENU MOBILE SUPPRIMÉ */
@media (max-width: 900px) {
  .nav-modern {
    position: relative;
  }
  
  /* Supprimer complètement le menu mobile */
  .nav-list-modern {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: static !important;
    transform: none !important;
  }
  
  .nav-list-modern.active {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 600px) {
  .nav-list-modern {
    padding: 90px 1.5rem 1.5rem 1.5rem;
    width: 100vw;
    height: 100vh;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 1.3rem 0;
  }
  
  .dropdown-content {
    padding: 0;
  }
  
  .dropdown-item {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  
  .dropdown-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .dropdown-text h4 {
    font-size: 1rem;
  }
  
  .dropdown-text p {
    font-size: 0.9rem;
  }
}

/* Correction spécifique pour mobile */
@media (max-width: 480px) {
  .nav-list-modern {
    padding: 80px 1rem 1rem 1rem;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
  }
  
  .nav-link {
    font-size: 1.2rem;
    padding: 1.4rem 0;
  }
  
  .dropdown-item {
    padding: 0.9rem 0.75rem;
    font-size: 1.1rem;
  }
  
  .nav-toggle {
    padding: 0.75rem;
  }
  
  .nav-toggle span {
    width: 28px;
    height: 3px;
  }
}

/* Section Contact Avancée */
.contact-advanced {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.contact-advanced h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
}

.contact-info {
  margin-bottom: 50px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-map {
  grid-column: 1 / -1;
  margin-top: 30px;
}

.contact-map iframe {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-map iframe:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: white;
}

.contact-text p {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.contact-text a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: #f093fb;
  text-decoration: underline;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: white;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f093fb;
  background: rgba(255, 255, 255, 0.15);
}

.contact-form .cta-btn {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive pour les boutons du hero */
@media (max-width: 768px) {
  .hero-buttons {
    justify-content: center;
    gap: 0.8rem;
  }
  
  .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .cta-btn.secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }
  
  .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
  }
}

/* Responsive pour la section contact */
@media (max-width: 768px) {
  .contact-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-item {
    padding: 15px;
  }
  
  .contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .contact-advanced h2 {
    font-size: 2rem;
  }
}

/* Footer Avancé */
.footer-advanced {
  background: #2d3748;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #667eea;
}

.footer-section p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #cbd5e0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #667eea;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #a0aec0;
  margin: 0;
}

/* Responsive pour le footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-advanced {
    padding: 40px 0 20px;
  }
}

/* Section Tarifs */
.tarifs-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.tarifs-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d3748;
}

.tarifs-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

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

.tarif-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tarif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tarif-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tarif-header {
  text-align: center;
  margin-bottom: 20px;
}

.tarif-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.tarif-prix {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.prix {
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 600;
}

.montant {
  font-size: 2.2rem;
  font-weight: 800;
  color: #667eea;
  line-height: 1;
}

.periode {
  font-size: 1rem;
  color: #4a5568;
  font-weight: 600;
}

.tarif-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.tarif-features li {
  padding: 8px 0;
  color: #4a5568;
  position: relative;
  padding-left: 25px;
}

.tarif-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #48bb78;
  font-weight: bold;
  font-size: 1.1rem;
}

.tarif-btn {
  display: block;
  width: 100%;
  padding: 12px 0px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.tarif-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.tarifs-note {
  background: rgba(102, 126, 234, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tarifs-note p {
  margin: 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive pour les tarifs */
@media (max-width: 768px) {
  .tarifs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tarif-card {
    padding: 25px;
  }
  
  .tarif-header h3 {
    font-size: 1.2rem;
  }
  
  .montant {
    font-size: 2rem;
  }
  
  .tarifs-section h2 {
    font-size: 2rem;
  }
}

/* Section Contact Maintenance */
.contact-section-maintenance {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
}

.contact-section-maintenance h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
}

.contact-content-maintenance {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-maintenance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-details-maintenance {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item-maintenance {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-item-maintenance:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.contact-icon-maintenance {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-text-maintenance h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: white;
}

.contact-text-maintenance p {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.contact-text-maintenance a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text-maintenance a:hover {
  color: #90cdf4;
  text-decoration: underline;
}

.contact-map-maintenance {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-map-maintenance iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: all 0.3s ease;
}

.contact-map-maintenance iframe:hover {
  transform: scale(1.02);
}

/* Responsive pour la section contact maintenance */
@media (max-width: 768px) {
  .contact-info-maintenance {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-item-maintenance {
    padding: 15px;
  }
  
  .contact-icon-maintenance {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .contact-map-maintenance {
    height: 300px;
  }
  
  .contact-section-maintenance h2 {
    font-size: 2rem;
  }
}

/* Section Contact Audit */
.contact-section-audit {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
}

.contact-section-audit h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
}

.contact-content-audit {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-audit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-details-audit {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item-audit {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-item-audit:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.contact-icon-audit {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-text-audit h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: white;
}

.contact-text-audit p {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.contact-text-audit a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text-audit a:hover {
  color: #f56565;
  text-decoration: underline;
}

.contact-map-audit {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-map-audit iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: all 0.3s ease;
}

.contact-map-audit iframe:hover {
  transform: scale(1.02);
}

/* Responsive pour la section contact audit */
@media (max-width: 768px) {
  .contact-info-audit {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-item-audit {
    padding: 15px;
  }
  
  .contact-icon-audit {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .contact-map-audit {
    height: 300px;
  }
  
  .contact-section-audit h2 {
    font-size: 2rem;
  }
}

/* Section Contact Déploiement */
.contact-section-deploiement {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c5282 0%, #4a5568 100%);
  color: white;
}

.contact-section-deploiement h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
}

.contact-content-deploiement {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-deploiement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-details-deploiement {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item-deploiement {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-item-deploiement:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.contact-icon-deploiement {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-text-deploiement h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: white;
}

.contact-text-deploiement p {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.contact-text-deploiement a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text-deploiement a:hover {
  color: #63b3ed;
  text-decoration: underline;
}

.contact-map-deploiement {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-map-deploiement iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: all 0.3s ease;
}

.contact-map-deploiement iframe:hover {
  transform: scale(1.02);
}

/* Responsive pour la section contact déploiement */
@media (max-width: 768px) {
  .contact-info-deploiement {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-item-deploiement {
    padding: 15px;
  }
  
  .contact-icon-deploiement {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .contact-map-deploiement {
    height: 300px;
  }
  
  .contact-section-deploiement h2 {
    font-size: 2rem;
  }
}

/* Popup GDPR */
.gdpr-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gdpr-popup.active {
  opacity: 1;
  visibility: visible;
}

.gdpr-content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.gdpr-popup.active .gdpr-content {
  transform: translateY(0);
}

.gdpr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
}

.gdpr-header h3 {
  margin: 0;
  color: #2d3748;
  font-size: 1.3rem;
  font-weight: 600;
}

.gdpr-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #718096;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.gdpr-close:hover {
  background: #f7fafc;
  color: #2d3748;
}

.gdpr-body {
  margin-bottom: 25px;
}

.gdpr-body p {
  margin: 0 0 15px 0;
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

.gdpr-body p:last-child {
  margin-bottom: 0;
}

.gdpr-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.gdpr-link:hover {
  text-decoration: underline;
}

.gdpr-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.gdpr-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gdpr-btn-accept {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.gdpr-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.gdpr-btn-decline {
  background: #f7fafc;
  color: #4a5568;
  border: 1px solid #e2e8f0;
}

.gdpr-btn-decline:hover {
  background: #edf2f7;
  color: #2d3748;
}

/* Responsive pour la popup GDPR */
@media (max-width: 768px) {
  .gdpr-content {
    padding: 20px;
    margin: 20px;
  }
  
  .gdpr-header h3 {
    font-size: 1.1rem;
  }
  
  .gdpr-actions {
    flex-direction: column;
  }
  
  .gdpr-btn {
    width: 100%;
    padding: 15px;
  }
}

/* Page Politique de Confidentialité */
.privacy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.privacy-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
}

.privacy-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.privacy-content {
  padding: 80px 0;
  background: #f7fafc;
}

.privacy-section {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.privacy-section h2 {
  color: #2d3748;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #667eea;
}

.privacy-section h3 {
  color: #4a5568;
  font-size: 1.3rem;
  margin: 25px 0 15px 0;
}

.privacy-section p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.privacy-section li {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 8px;
}

.privacy-section strong {
  color: #2d3748;
  font-weight: 600;
}

.contact-info-privacy {
  background: #f7fafc;
  border-radius: 10px;
  padding: 25px;
  margin-top: 20px;
  border-left: 4px solid #667eea;
}

.contact-info-privacy p {
  margin: 10px 0;
  color: #4a5568;
}

.contact-info-privacy a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-privacy a:hover {
  text-decoration: underline;
}

/* Responsive pour la page de confidentialité */
@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 2.2rem;
  }
  
  .privacy-section {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  
  .privacy-section h3 {
    font-size: 1.1rem;
  }
  
  .contact-info-privacy {
    padding: 20px;
  }
}

/* Optimisation des services sur très petits écrans */
@media (max-width: 480px) {
  .section-service, .section-service.reverse {
    padding: 0;
    margin: 12px 0 6px 0;
    gap: 0;
    border-radius: 16px;
  }
  
  .section-service .service-img-wrap {
    padding: 12px 12px 0 12px;
  }
  
  .section-service .service-img-large {
    height: 160px;
    border-radius: 10px;
    margin-bottom: 0;
  }
  
  .section-service .service-content {
    padding: 18px 12px 22px 12px;
    border-radius: 0 0 16px 16px;
    margin-top: 0;
  }
  
  .section-service .service-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    padding-bottom: 8px;
  }
  
  .section-service .service-content h3::before {
    font-size: 0.9rem;
  }
  
  .section-service .service-content h3::after {
    width: 30px;
    height: 2px;
  }
  
  .section-service .service-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .section-service .service-content p::after {
    width: 40px;
    height: 1px;
    margin: 12px auto 0 auto;
  }
  
  .section-service .service-img-wrap::before {
    font-size: 0.6rem;
    padding: 2px 5px;
    top: 6px;
    right: 6px;
  }
}

/* Correction du débordement horizontal sur mobile */
@media (max-width: 480px) {
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  
  html {
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .main-header {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .nav-container {
    width: 100%;
    max-width: 100%;
    padding: 0.8rem 20px;
    box-sizing: border-box;
  }
  
  .logo-nav {
    max-width: 100%;
    overflow: hidden;
  }
  
  .hero {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 50px 20px 30px 20px;
    box-sizing: border-box;
  }
  
  .hero-flex {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .hero-img-advanced {
    max-width: 100%;
    width: 280px;
    height: auto;
  }
  
  .services-advanced,
  .specialites-section,
  .tarifs-section,
  .contact-advanced {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .footer-advanced {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

@media (max-width: 400px) and (min-height: 700px) {
  .container {
    padding: 0 18px;
    box-sizing: border-box;
  }
  
  .nav-container {
    padding: 0.6rem 18px;
    box-sizing: border-box;
  }
  
  .hero {
    padding: 40px 18px 25px 18px;
    box-sizing: border-box;
  }
  
  .section-service, .section-service.reverse {
    padding: 0;
    margin: 10px 0 5px 0;
    gap: 0;
    border-radius: 14px;
  }
  
  .section-service .service-img-wrap {
    padding: 10px 10px 0 10px;
  }
  
  .section-service .service-img-large {
    height: 140px;
    border-radius: 8px;
  }
  
  .section-service .service-content {
    padding: 15px 10px 20px 10px;
    border-radius: 0 0 14px 14px;
    margin-top: 0;
  }
  
  .section-service .service-content h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    padding-bottom: 6px;
  }
  
  .section-service .service-content h3::before {
    font-size: 0.8rem;
  }
  
  .section-service .service-content h3::after {
    width: 25px;
    height: 2px;
  }
  
  .section-service .service-content p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .section-service .service-content p::after {
    width: 35px;
    height: 1px;
    margin: 10px auto 0 auto;
  }
  
  .section-service .service-img-wrap::before {
    font-size: 0.55rem;
    padding: 2px 4px;
    top: 5px;
    right: 5px;
  }
}

/* Styles améliorés pour le formulaire de contact d'index.html - Couleurs claires */
.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 400;
  font-size: 0.95rem;
  text-shadow: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #475569;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(148, 163, 184, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #94a3b8;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 15px rgba(148, 163, 184, 0.1);
  transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #cbd5e1;
  font-style: italic;
}

.contact-form .cta-btn {
  background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(148, 163, 184, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.contact-form .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(148, 163, 184, 0.3);
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.contact-form .cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(148, 163, 184, 0.2);
}

/* Animation d'apparition pour le formulaire */
.contact-form {
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive pour le formulaire */
@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
    margin: 20px 0;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  
  .contact-form .cta-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* Titre "Contactez-nous" en blanc */
.contact-advanced h2 {
  color: #ffffff !important;
}

/* Responsive pour le titre contact */
@media (max-width: 768px) {
  .contact-advanced h2 {
    color: #ffffff !important;
  }
}

@media (max-width: 480px) {
  .contact-advanced h2 {
    color: #ffffff !important;
  }
}

/* Styles pour les dropdowns sur mobile */
@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .dropdown-menu.active {
    opacity: 1;
    max-height: 300px;
    padding: 0.5rem 0;
  }
  
  .dropdown-content {
    flex-direction: column;
    gap: 0;
  }
  
  .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    margin: 0;
  }
  
  .dropdown-item:last-child {
    border-bottom: none;
  }
  
  .dropdown-item:hover {
    background: rgba(102, 126, 234, 0.1);
  }
  
  .dropdown-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .dropdown-text p {
    font-size: 0.8rem;
  }
  
  /* Indicateur visuel pour les liens avec dropdown */
  .nav-item:has(.dropdown-menu) .nav-link::after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }
  
  .nav-item:has(.dropdown-menu.active) .nav-link::after {
    transform: rotate(180deg);
  }
}

/* Masquer la première partie des services sur toutes les tailles d'écran */
.services-cards {
  display: none;
}

/* Masquer la section services-details sur mobile */
@media (max-width: 900px) {
  .services-details {
    display: none;
  }
}

/* Section Infogérance pour Mobile */
@media (max-width: 900px) {
  .infogerance-mobile {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .infogerance-mobile h2 {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 800;
  }
  
  .infogerance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .infogerance-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .infogerance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  }
  
  .infogerance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .infogerance-header {
    padding: 20px 20px 20px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    text-align: center;
  }
  
  .infogerance-header::before {
    content: 'INFOGÉRANCE';
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
  }
  
  .infogerance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
  }
  
  .infogerance-content {
    padding: 25px 20px 30px 20px;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    text-align: center;
  }
  
  .infogerance-content h3 {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
  }
  
  .infogerance-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
  }
  
  .infogerance-content p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
    position: relative;
  }
  
  .infogerance-content p::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 15px auto 0 auto;
    border-radius: 1px;
    opacity: 0.6;
  }
  
  .infogerance-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: left;
  }
  
  .infogerance-features li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 30px;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .infogerance-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #48bb78;
    font-weight: bold;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
  }
}

/* Responsive pour la section infogérance mobile */
@media (max-width: 600px) {
  .infogerance-mobile {
    padding: 40px 0;
    margin: 30px 0;
  }
  
  .infogerance-mobile h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .infogerance-grid {
    padding: 0 15px;
    gap: 15px;
  }
  
  .infogerance-card {
    border-radius: 16px;
  }
  
  .infogerance-header {
    padding: 15px 15px 15px 15px;
    border-radius: 16px 16px 0 0;
    text-align: center;
  }
  
  .infogerance-header::before {
    font-size: 0.65rem;
    padding: 3px 6px;
  }
  
  .infogerance-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    border-radius: 16px;
    margin: 0 auto;
  }
  
  .infogerance-content {
    padding: 20px 15px 25px 15px;
    border-radius: 0 0 16px 16px;
  }
  
  .infogerance-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .infogerance-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .infogerance-features li {
    font-size: 0.85rem;
    padding: 6px 0;
    padding-left: 28px;
    line-height: 1.3;
  }
  
  .infogerance-features li::before {
    top: 6px;
    font-size: 0.85rem;
    width: 18px;
  }
}

@media (max-width: 480px) {
  .infogerance-mobile {
    padding: 30px 0;
    margin: 20px 0;
  }
  
  .infogerance-mobile h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .infogerance-grid {
    padding: 0 10px;
    gap: 12px;
  }
  
  .infogerance-card {
    border-radius: 14px;
  }
  
  .infogerance-header {
    padding: 12px 12px 12px 12px;
    border-radius: 14px 14px 0 0;
    text-align: center;
  }
  
  .infogerance-header::before {
    font-size: 0.6rem;
    padding: 2px 5px;
    top: 6px;
    right: 6px;
  }
  
  .infogerance-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 14px;
    margin: 0 auto;
  }
  
  .infogerance-content {
    padding: 18px 12px 22px 12px;
    border-radius: 0 0 14px 14px;
  }
  
  .infogerance-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .infogerance-content h3::after {
    width: 30px;
    height: 2px;
  }
  
  .infogerance-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .infogerance-content p::after {
    width: 40px;
    height: 1px;
    margin: 12px auto 0 auto;
  }
  
  .infogerance-features li {
    font-size: 0.8rem;
    padding: 5px 0;
    padding-left: 26px;
    line-height: 1.2;
  }
  
  .infogerance-features li::before {
    top: 5px;
    font-size: 0.8rem;
    width: 16px;
  }
}

/* Styles pour la section infogérance sur desktop */
@media (min-width: 901px) {
  .infogerance-mobile {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .infogerance-mobile h2 {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 800;
  }
  
  .infogerance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 40px;
  }
  
  .infogerance-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .infogerance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  }
  
  .infogerance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .infogerance-header {
    padding: 30px 30px 20px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    text-align: center;
  }
  
  .infogerance-header::before {
    content: 'INFOGÉRANCE';
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
  }
  
  .infogerance-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
  }
  
  .infogerance-content {
    padding: 30px 30px 40px 30px;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    text-align: center;
  }
  
  .infogerance-content h3 {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
  }
  
  .infogerance-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
  }
  
  .infogerance-content p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    position: relative;
  }
  
  .infogerance-content p::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 20px auto 0 auto;
    border-radius: 1px;
    opacity: 0.6;
  }
  
  .infogerance-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    text-align: left;
  }
  
  .infogerance-features li {
    padding: 10px 0;
    color: #4a5568;
    position: relative;
    padding-left: 35px;
    line-height: 1.5;
    font-size: 1rem;
  }
  
  .infogerance-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
  }
}

/* Masquer la section Services du footer sur toutes les tailles d'écran */
.footer-section:nth-child(3) {
  display: none;
}

/* Bouton Accueil pour les pages spécialisées */
.home-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.home-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.home-button:hover::before {
  left: 100%;
}

.home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}

.home-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.home-button .home-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.home-button:hover .home-icon {
  transform: translateX(-2px);
}

/* Responsive pour le bouton accueil */
@media (max-width: 768px) {
  .home-button {
    padding: 10px 16px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    margin-top: 15px;
  }
  
  .home-button .home-icon {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .home-button {
    padding: 8px 14px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    margin-top: 10px;
  }
  
  .home-button .home-icon {
    font-size: 0.85rem;
  }
}

/* Floating Call Button - Design Moderne */
.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-button .call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.call-button .call-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #5a6cdb 0%, #6b46c1 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.call-button .call-btn:hover::before {
  opacity: 1;
}

.call-button .call-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.call-button .call-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.call-button .call-text {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.call-button:hover .call-text {
  transform: scale(1.05);
}

/* Animation de pulsation */
.call-button .call-btn {
  animation: callPulse 2s infinite;
}

@keyframes callPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6), 0 0 0 10px rgba(102, 126, 234, 0.1);
  }
}

/* Media query pour mobile - Design amélioré */
@media (max-width: 768px) {
  .call-button {
    bottom: 20px;
    right: 20px;
  }
  
  .call-button .call-btn {
    width: 80px;
    height: 70px;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
  }
  
  .call-button .call-text {
    font-size: 0.85rem;
  }
  
  .call-button .call-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.7);
  }
}

/* Design pour très petits écrans */
@media (max-width: 480px) {
  .call-button {
    bottom: 15px;
    right: 15px;
  }
  
  .call-button .call-btn {
    width: 75px;
    height: 65px;
    font-size: 26px;
  }
  
  .call-button .call-text {
    font-size: 0.8rem;
  }
}

/* Design pour écrans ultra-petits */
@media (max-width: 360px) {
  .call-button {
    bottom: 12px;
    right: 12px;
  }
  
  .call-button .call-btn {
    width: 70px;
    height: 60px;
    font-size: 24px;
  }
  
  .call-button .call-text {
    font-size: 0.75rem;
  }
}

/* Styles responsives pour le logo moderne */
@media (max-width: 768px) {
  .logo-modern {
    width: 45px;
    height: 45px;
  }
  
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  
  .logo-circle {
    width: 30px;
    height: 30px;
  }
  
  .logo-circle::before {
    width: 18px;
    height: 18px;
  }
  
  .logo-dots span {
    width: 3px;
    height: 3px;
  }
  
  .logo-computer {
    width: 18px;
    height: 14px;
  }
  
  .computer-screen {
    width: 16px;
    height: 10px;
  }
  
  .computer-base {
    width: 18px;
    height: 3px;
  }
  
  .logo-code {
    width: 14px;
    height: 10px;
  }
  
  .code-line {
    height: 0.8px;
  }
}

@media (max-width: 480px) {
  .logo-modern {
    width: 40px;
    height: 40px;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .logo-circle {
    width: 28px;
    height: 28px;
  }
  
  .logo-circle::before {
    width: 16px;
    height: 16px;
  }
  
  .logo-dots span {
    width: 2.5px;
    height: 2.5px;
  }
  
  .logo-computer {
    width: 16px;
    height: 12px;
  }
  
  .computer-screen {
    width: 14px;
    height: 8px;
  }
  
  .computer-base {
    width: 16px;
    height: 2.5px;
  }
  
  .logo-code {
    width: 12px;
    height: 8px;
  }
  
  .code-line {
    height: 0.6px;
  }
}

@media (max-width: 360px) {
  .logo-modern {
    width: 35px;
    height: 35px;
  }
  
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  
  .logo-circle {
    width: 24px;
    height: 24px;
  }
  
  .logo-circle::before {
    width: 14px;
    height: 14px;
  }
  
  .logo-dots span {
    width: 2px;
    height: 2px;
  }
  
  .logo-computer {
    width: 14px;
    height: 10px;
  }
  
  .computer-screen {
    width: 12px;
    height: 6px;
  }
  
  .computer-base {
    width: 14px;
    height: 2px;
  }
  
  .logo-code {
    width: 10px;
    height: 6px;
  }
  
  .code-line {
    height: 0.5px;
  }
}
